:root {
    --bg-dark: #000000;
    --card-bg: #111111;
    --green: #72bf44;
    --blue: #3498db;
    --yellowlow: #977b40;
    --yellow: #faaf40;
}

body {
    background-color: #0d0d0d;
    color: #ffffff;
    font-family: sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    scrollbar-width: none !important;
}

/*scrollbar gizleme*/
html::-webkit-scrollbar,
body::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    /* Taşmayı önleyen en kritik komut */
}

html,
body {
    scroll-behavior: smooth;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
}

.stack {
    display: grid;
    width: 100%;
}

.stack>* {
    grid-area: 1 / 1;
}

.ustkatman {
    z-index: 10;
    pointer-events: none;
    width: 100%;
    overflow-x: hidden;
}

.altkatman {
    z-index: 1;
    width: 100%;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
}

.ustkatman>* {
    pointer-events: auto;
}

/*arama ve konum gönder üstkatman*/
.container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: min(2vw, 10px);
    position: fixed;
    bottom: min(20vw, 100px);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-20px);
    transition: all 0.4s ease;
}

.container.visible {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.custom-btn {
    position: relative;
    background: rgba(20, 20, 20, 0.35);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 0px 20px 20px 0px;
    display: inline-flex;
    width: auto;
    gap: 15px;
    align-items: center;
    padding: 0 0 0 min(4vw, 20px);
    text-decoration: none;
    overflow: hidden;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    transition:
        transform 0.2s ease,
        background 0.3s ease;
}

.custom-btn:active .icon-box img,
.scroll-top-btn:active img {
    transform: scale(0.85);
    transition: transform 0.1s;
}

.btn-text {
    color: white;
    font-size: min(2.4vw, 12px);
    font-weight: 700;
    z-index: 2;
}

.icon-box {
    width: min(10vw, 50px);
    height: min(10vw, 50px);
    border-radius: min(3vw, 15px) min(3vw, 15px) min(3vw, 15px) min(2vw, 10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.action-row .btn-green .icon-box {
    border-radius: min(3vw, 15px) min(3vw, 15px) min(2vw, 10px) min(3vw, 15px) !important;
}

.callimage {
    width: min(4.8vw, 24px);
    height: min(4.8vw, 24px);
}

.locationonimage {
    width: min(4.8vw, 24px);
    height: min(4.8vw, 24px);
}

.homeimage {
    width: min(4.8vw, 24px);
    height: min(4.8vw, 24px);
}

.keyboarddoublearrowupimage {
    width: min(4.8vw, 24px);
    height: min(4.8vw, 24px);
}

.blur-bg {
    position: absolute;
    right: -10px;
    width: 150px;
    height: 100%;
    filter: blur(40px);
    opacity: 0.4;
    z-index: 1;
}

.btn-red .icon-box {
    background-color: #ff4b42;
}

.btn-red .blur-bg {
    background-color: #ff4b42;
}


.btn-green .icon-box {
    background-color: #72bf44;
}

.btn-green .blur-bg {
    background-color: #72bf44;
}

/*yukarı git butonu*/
.scroll-top-btn {
    position: fixed;
    bottom: min(10vw, 50px);
    right: 0;
    padding: min(2.4vw, 12px) min(3.6vw, 18px) min(2.4vw, 12px) min(3.6vw, 18px);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: min(3vw, 15px) 0px 0px min(3vw, 15px);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateX(30px);
    transition: all 0.4s ease;
    overflow: hidden;
    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.scroll-top-btn::before {
    content: '';
    position: absolute;
    left: -10px;
    width: 30px;
    height: 100%;
    background-color: #4caf4fa2;
    filter: blur(20px);
    opacity: 0.8;
    pointer-events: none;
}

h1,
h2 {
    font-size: min(5vw, 25px);
    margin-bottom: 10px;
}

.back-home {
    align-self: flex-start;
    display: flex;
    align-items: center;
    background: var(--card-bg);
    border: 1px solid #333;
    margin: min(3vw, 15px) 0px 0px min(3vw, 15px);
    padding: 0px min(3vw, 15px) 0px 0px;
    border-radius: 30px;
    text-decoration: none;
    color: white;
    gap: min(2vw, 10px);
    font-size: min(2.4vw, 12px);
}


.icon-circle {
    width: min(7vw, 35px);
    height: min(7vw, 35px);
    padding: 0px 4px 0px 4px;
    border-radius: min(3vw, 15px) min(3vw, 15px) min(3vw, 15px) min(2vw, 10px);
    display: flex;
    justify-content: center;
    align-items: center;
}

.section-header,
.payment-section {
    text-align: center;
    width: 100%;
}

.description {
    font-size: min(2.8vw, 14px);
    line-height: 1.5;
    color: #ccc;
    padding: 0 10px;
}

.gradient-line {
    width: 150px;
    height: 1px;
    margin: 8px auto;
    background: linear-gradient(90deg, var(--yellowlow), rgba(204, 153, 51, 1));
    border-radius: 80%;
}

.action-row {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.action-row .btn-green {
    border-radius: 20px 0px 0px 20px;
    flex-direction: row;
    padding: 0 20px 0 0px;
}

.main-content-card {
    position: relative;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding-bottom: 25px;
    border-radius: 0 0 30px 30px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    z-index: 1;
}

.lcp-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -2;
}

.main-content-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: -1;
}

/*title*/
.wrapper {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.badge {
    background-color: #d492361e;
    border: 1px solid #d49336;
    color: #d49336;
    padding: 3px 12px;
    border-radius: min(1.6vw, 8px);
    font-size: min(2vw, 10px);
    font-weight: 400;
    margin-bottom: min(3vw, 15px);
    margin-top: min(8vw, 40px);
    letter-spacing: 1px;
}

.wrappernormal {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 20px;
}

.wrappernormalcenter {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.badgenormal {
    background-color: #0000001e;
    border: 1px solid #444444;
    color: #979797;
    padding: 3px 12px;
    border-radius: min(1.6vw, 8px);
    font-size: min(2vw, 10px);
    font-weight: 400;
    margin-bottom: min(3vw, 15px);
    letter-spacing: 1px;
}

.title-container {
    margin: 0;
    line-height: 0.95;
}

.text-white {
    font-size: min(6vw, 30px);
    font-weight: 800;
    display: block;
    letter-spacing: -2px;
}

.text-orange {
    font-size: min(7.6vw, 38px);
    font-weight: 800;
    font-style: italic;
    color: #d49336;
    display: block;
    letter-spacing: -2px;
}

/*ödeme yöntemleri*/
.payment-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: min(3vw, 15px);
    margin-top: min(4vw, 20px);
    margin-bottom: min(6vw, 30px);
}

.pay-item {
    background: #181818;
    display: flex;
    align-items: center;
    padding: 0px min(3vw, 15px) 0px 0px;
    border-radius: min(6vw, 30px);
    gap: 10px;
    font-size: min(2.6vw, 13px);
    font-weight: bold;
    line-height: 0;
}

.pay-icon {
    width: min(8vw, 40px);
    height: min(8vw, 40px);
    border-radius: min(3vw, 15px) min(3vw, 15px) min(3vw, 15px) min(2vw, 10px);
    display: flex;
    justify-content: center;
    align-items: center;
}

.paymentsimage {
    width: min(4.8vw, 24px);
    height: min(4.8vw, 24px);
}

.havaleeftimage {
    width: min(4.8vw, 24px);
    height: min(4.8vw, 24px);
}

.creditcardimage {
    width: min(4.8vw, 24px);
    height: min(4.8vw, 24px);
}

.metin-kutusu {
    width: 90%;
    margin: 0 auto;
    font-size: min(3.2vw, 16px);
    margin-bottom: min(6vw, 30px);
    text-align: center;
    font-weight: 600;
    color: white;
}

.yellow-bg {
    background-color: var(--yellow);
}

.green-bg {
    background-color: var(--green);
}

.blue-bg {
    background-color: var(--blue);
}

.site-footer {
    padding: 10px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.footer-content {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-text {
    color: #a0a0a0;
    font-size: min(2.8vw, 14px);
    font-weight: 400;
    margin: 0;
    letter-spacing: 0.5px;
}

.footer-text span {
    font-weight: 400;
    font-size: min(2.8vw, 14px);
    margin-left: 5px;
}

.footer-link-badge {
    cursor: pointer !important;
    position: relative;
    z-index: 999;
    display: inline-block;
    background-color: #ffb443;
    color: #000;
    padding: 3px 8px;
    border-radius: 6px;
    font-size: min(2.4vw, 12px);
    font-weight: 500;
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer-link-badge:hover {
    opacity: 0.9;
}

/*paragraflar*/
.service-box {
    background-color: #121212;
    border: 1.5px solid #222;
    border-radius: 25px;
    padding: min(4vw, 20px);
    margin: 0 auto min(2vw, 10px) auto;
    position: relative;
    box-shadow: 0 10px 30px rgba(27, 27, 27, 0.5);
}

.service-box h3 {
    color: var(--yellow);
    font-size: min(3.36vw, 16.8px);
    margin-top: 0;
    margin-bottom: -10px;
    font-weight: 700;
}

.service-box p {
    color: #b0b0b0;
    font-size: min(2.8vw, 14px);
    line-height: 1.5;
    margin-bottom: 15px;
}

.service-box:not(:has(p:not(:empty))) h3 {
    color: #fff !important;
}

.service-box:not(:has(p:not(:empty))) .gradient-line-paragraf {
    background: #fff !important;
}

.gradient-line-paragraf {
    width: 100%;
    height: min(0.2vw, 1px);
    margin: min(3vw, 15px) 0px 0px 0px;
    background: linear-gradient(90deg, #7A977B40, rgba(204, 153, 51, 1));
    border-radius: 80%;
}

/*hizmetlerimiz*/
.services-container {
    padding: 20px 20px 30px 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.service-card {
    background-color: #111;
    width: 100%;
    max-width: 600px;
    border-radius: min(6vw, 30px);
    display: flex;
    align-items: center;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.service-card.reverse {
    flex-direction: row-reverse;
}

.icon-box-hizmetlerimiz {
    width: min(20vw, 100px);
    height: min(20vw, 100px);
    background: linear-gradient(135deg, #a67c37 0%, #d49336 50%, #7a5520 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    border-radius: min(4vw, 20px);
}

.icon-box-hizmetlerimiz img {
    width: min(12vw, 60px);
    height: auto;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.5));
}

.text-content {
    padding: 0 min(4vw, 20px);
    color: #fff;
    font-family: sans-serif;
    line-height: 1.5;
}

.text-content p {
    font-size: min(2.8vw, 14px);
    font-weight: 500;
    margin: 0;
}

.text-content span {
    margin-left: 0px;
}

/*galeri*/
.gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    margin: 0 auto min(6vw, 30px) auto;
    margin-top: min(2vw, 10px);
}

.header-left {
    width: 90%;
}

.header-left p {
    color: #a0a0a0;
    font-size: min(3.2vw, 16px);
    line-height: 1.4;
    margin: 0px 10px 0px 0px;
    word-wrap: break-word;
}


.header-right {
    display: none;
    flex-direction: column;
    text-align: right;
}

.stat-number {
    color: #d49336;
    font-size: 36px;
    font-weight: 800;
    font-style: italic;
    line-height: 1;
}

.stat-label {
    color: #666;
    font-size: 10px;
    font-weight: bold;
    letter-spacing: 1px;
    margin-top: 5px;
}

.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin: 0 auto;
    margin-bottom: min(6vw, 30px);
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1 / 1.1;
    cursor: pointer;
    flex: 0 0 calc((100% - 36px) / 4);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.zoom-icon {
    position: absolute;
    top: 0px;
    left: 0px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    width: min(6vw, 30px);
    height: min(6vw, 30px);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0px 0px 10px 0px;
    font-size: min(3vw, 15px);
    transition: 0.3s;
}

.gallery-item:hover .zoom-icon {
    background: #d49336;
}

/*SSS*/
.faq-section {
    padding: 20px 0;
    width: 100%;
}

.faq-container {
    max-width: none;
    margin: 20px auto 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: #111111;
    border: 1px solid #222;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 10px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    user-select: none;
}

.faq-question span {
    font-size: min(3.4vw, 17px);
    font-weight: 700;
    color: #ffffff;
}

.faq-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.4s ease;
    filter: invert(70%);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
    background: #1d1d1d;
}

.faq-answer p {
    padding: 10px 25px 10px;
    color: #a0a0a0;
    font-size: min(3vw, 15px);
    line-height: 1.6;
    margin: 0;
}

.faq-item.active {
    border-color: #d49336;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    transition: max-height 0.4s cubic-bezier(1, 0, 1, 0);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    filter: invert(65%) sepia(21%) saturate(1637%) hue-rotate(352deg) brightness(91%) contrast(80%);
}

/*resim büyütme*/
.modal {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(20px);
    overflow: hidden;
}

.modal-controls {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 100000;
}

.close-modal-pill {
    position: absolute;
    z-index: 100000;
    display: flex;
    align-items: center;
    background: #ffffff;
    border: none;
    border-radius: 15px;
    padding: 0;
    padding-right: 15px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.2s ease;
    height: 30px;
    overflow: hidden;
}

.close-modal-pill:hover {
    transform: scale(1.05);
}

.icon-side {
    background: linear-gradient(135deg, #d49336 0%, #faaf40 100%);
    width: 42px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    margin-right: 10px;
}

.text-side {
    color: #000000;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
}

.modal-content-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s ease-out;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

body.modal-open {
    overflow: hidden;
}

@media (min-width: 600px) {

    .altkatman {
        max-width: 80%;
    }

    .main-content-card {
        max-width: 90%;
    }

    .metin-kutusu {
        width: 50%;
        margin-bottom: min(8vw, 40px);
    }


    .text-white {
        font-size: 60px;
    }

    .text-orange {
        font-size: 75px;
    }

    .badge {
        font-size: 14px;
    }

    .badgenormal {
        font-size: 14px;
    }

    .wrappernormal {
        width: 87%;
        margin-left: auto;
        margin-right: auto;
    }

    .services-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        max-width: 87%;
        ;
        margin: 0 auto;
    }

    .service-card {
        max-width: 100%;
        height: 100%;
    }

    .gallery-header {
        width: 100%;
    }

    .header-left {
        width: 48%;
    }

    .header-right {
        display: flex;
    }

    .gallery-item {
        flex: 0 0 calc((100% - 72px) / 7);
    }
}