/* =========================================
   TEMEL
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #0b111c;
    --bg2: #111a29;
    --cream: #eee9df;
    --text: #f5f2eb;
    --dark: #171717;
    --muted: #9ca3ad;
    --accent: #b83b35;
    --gold: #b59a67;
    --border: rgba(255,255,255,.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
}

body.no-scroll {
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
    overflow: hidden;
}

a {
    color: inherit;
}

button,
input,
textarea,
select {
    font: inherit;
}


/* =========================================
   LOADER
========================================= */

.loader {
    position: fixed;
    inset: 0;
    background: #0b111c;
    z-index: 99999;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 25px;

    transition: .6s;
}

.loader.hide {
    opacity: 0;
    visibility: hidden;
}

.loader-logo {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 3px;
    line-height: .85;
}

.loader-logo span {
    display: block;
    color: var(--accent);
    font-size: 11px;
    letter-spacing: 5px;
}

.loader-line {
    width: 150px;
    height: 2px;
    background: #333;
    overflow: hidden;
}

.loader-line::after {
    content: "";
    display: block;
    width: 40%;
    height: 100%;
    background: var(--accent);
    animation: loading 1.2s infinite ease-in-out;
}

@keyframes loading {
    from {
        transform: translateX(-120%);
    }

    to {
        transform: translateX(400%);
    }
}


/* =========================================
   NAVBAR
========================================= */

.navbar {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 88px;

    padding: 0 8%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    z-index: 500;

    transition: .3s;
}

.navbar.scrolled,
.navbar.menu-open {
    background: rgba(7,12,20,.94);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(181,154,103,.16);
    box-shadow: 0 5px 30px rgba(0,0,0,.2);
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    z-index: 600;
}

.logo img {
    display: block;
    width: 110px;
    height: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links a {
    text-decoration: none;
    color: rgba(255,255,255,.72);
    font-size: 13px;
    transition: .25s;
}

.nav-links a:hover {
    color: #fff;
}


/* =========================================
   MOBİL MENÜ
========================================= */

.menu-toggle {
    display: none;

    border: 0;
    background: transparent;

    flex-direction: column;
    gap: 6px;

    cursor: pointer;
    z-index: 600;
}

.menu-toggle span {
    width: 27px;
    height: 2px;
    background: #fff;
    transition: .3s;
}


/* =========================================
   HERO
========================================= */

.hero {
    min-height: 100vh;
    min-height: 100svh; /* iOS/Android adres çubuğu açılıp kapanınca zıplamayı önler */
    height: 850px;

    position: relative;

    display: flex;
    align-items: center;

    padding: 120px 8% 80px;

    background:
        url("images/dukananasayfa.jpeg")
        center / cover no-repeat;

    background-color: #080e17;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.94),
            rgba(0,0,0,.76) 38%,
            rgba(0,0,0,.25) 75%,
            rgba(0,0,0,.15)
        );
}

/*
   Bu iki katman SADECE mobilde devreye girer
   (aşağıdaki @media içinde açılır).
   Masaüstünde .hero'nun kendi background-cover'ı
   zaten fotoğrafı doğru gösteriyor.
*/

.hero-bg-blur,
.hero-photo {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
}

.eyebrow,
.section-small {
    color: var(--accent);

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 4px;

    margin-bottom: 22px;

    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.eyebrow::before,
.section-small::before {
    content: "";
    display: inline-block;
    width: 24px;
    height: 1px;
    background: var(--gold);
}

.hero h1 {
    font-family: "Playfair Display", Georgia, serif;

    font-size: clamp(70px,9vw,135px);
    font-weight: 500;

    line-height: .88;
    letter-spacing: -5px;

    margin-bottom: 30px;

    text-shadow: 0 4px 24px rgba(0,0,0,.45);
}

.hero h1 span {
    color: #c64a42;
}

.hero-text {
    max-width: 510px;

    color: #c8c8c8;

    line-height: 1.8;
    font-size: 17px;

    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.primary-btn,
.secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    text-decoration: none;

    padding: 17px 26px;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: .5px;

    transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s, background .35s, border-color .35s, color .35s;
}

.primary-btn {
    background: linear-gradient(135deg,#c54a42,#9c302b);
    color: #fff;

    box-shadow: 0 10px 30px rgba(156,48,43,.28);
}

.primary-btn:hover {
    background: #111827;
    transform: translateY(-3px);
    box-shadow: 0 16px 34px rgba(0,0,0,.35);
}

.secondary-btn {
    border: 1px solid rgba(255,255,255,.35);
}

.secondary-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
    background: rgba(181,154,103,.08);
}

.hero-bottom {
    position: absolute;

    left: 8%;
    bottom: 35px;

    z-index: 2;

    display: flex;
    align-items: center;
    gap: 15px;

    color: #aaa;

    font-size: 9px;
    letter-spacing: 3px;
}

.scroll-line {
    width: 70px;
    height: 1px;
    background: var(--accent);
}

.hero-number {
    position: absolute;

    right: 8%;
    bottom: 35px;

    z-index: 2;

    display: flex;
    gap: 7px;

    color: #aaa;
    font-size: 12px;
}

.hero-number span:first-child {
    color: #fff;
}


/* =========================================
   GENEL SECTION
========================================= */

::selection {
    background: var(--gold);
    color: #1a1408;
}

.section {
    position: relative;

    padding: 140px 8%;
}

.section::before {
    content: "";

    position: absolute;

    top: 0;
    left: 50%;

    transform: translateX(-50%);

    width: 60px;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--gold),
            transparent
        );

    opacity: .55;
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;

    gap: 50px;

    margin-bottom: 75px;
}

.section-heading h2,
.about h2,
.location h2,
.reviews h2 {
    font-family: "Playfair Display", Georgia, serif;

    font-size: clamp(48px,6vw,88px);
    font-weight: 500;

    line-height: 1.02;
    letter-spacing: -3px;
}

.section-heading > p {
    max-width: 340px;

    color: var(--muted);

    line-height: 1.8;
    font-size: 15px;
}


/* =========================================
   HAKKIMIZDA
========================================= */

.about {
    background:
        linear-gradient(
            135deg,
            #111a29,
            #0c1420
        );

    display: grid;

    grid-template-columns: 150px minmax(0,1fr);

    gap: 60px;
}

.about-number {
    color: var(--accent);

    font-size: 13px;
    font-weight: 700;
}

.about h2 span {
    color: var(--accent);
}

.about-content > p:last-of-type {
    max-width: 650px;

    color: var(--muted);

    font-size: 17px;
    line-height: 1.9;

    margin-top: 35px;
}

.about-stats {
    margin-top: 55px;

    padding-top: 30px;

    border-top: 1px solid var(--border);

    display: flex;
    gap: 70px;
}

.about-stats div {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.about-stats strong {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 29px;
}

.about-stats span {
    color: var(--muted);
    font-size: 12px;
}


/* =========================================
   HİZMETLER
========================================= */

.services {
    background:
        linear-gradient(
            135deg,
            #f0ece4,
            #e6e0d5
        );

    color: var(--dark);
}

.service-list {
    border-top: 1px solid #cfcac1;
}

.service-item {
    position: relative;

    display: grid;

    grid-template-columns:
        65px
        minmax(0,1fr)
        100px;

    gap: 30px;

    align-items: center;

    padding: 32px 0 32px 22px;

    margin-left: -22px;

    border-bottom: 1px solid rgba(23,23,23,.14);

    transition: padding .35s, background .35s;
}

.service-item::before {
    content: "";

    position: absolute;

    left: 0;
    top: 12%;
    bottom: 12%;

    width: 2px;

    background: var(--gold);

    transform: scaleY(0);
    transform-origin: center;

    transition: transform .35s ease;
}

.service-item:hover {
    padding-left: 34px;
    background: rgba(0,0,0,.03);
}

.service-item:hover::before {
    transform: scaleY(1);
}

.service-index {
    color: var(--accent);

    font-size: 12px;
    font-weight: 700;
}

.service-info h3 {
    font-family: "Playfair Display", Georgia, serif;

    font-size: 31px;
    font-weight: 500;

    margin-bottom: 6px;
}

.service-info p {
    color: #777;
    font-size: 14px;
    line-height: 1.6;
}

.price {
    color: var(--accent);

    font-size: 19px;
    font-weight: 700;

    white-space: nowrap;
}

.price-note {
    margin-top: 25px;

    color: #888;

    font-size: 12px;
}


/* =========================================
   NAKİT BİLGİSİ
========================================= */

.cash-notice {
    margin-top: 45px;

    padding: 28px 30px;

    border: 1px solid rgba(184,59,53,.35);

    background: rgba(184,59,53,.06);
}

.cash-notice strong {
    display: block;

    color: var(--accent);

    font-size: 11px;
    letter-spacing: 2px;

    margin-bottom: 14px;
}

.cash-notice p {
    color: #555;

    font-size: 13px;
    line-height: 1.7;

    margin: 4px 0;
}


/* =========================================
   GALERİ
========================================= */

.gallery {
    background:
        radial-gradient(
            circle at 50% 0%,
            #18263a,
            #0b111c 42%,
            #080d15
        );
}

.gallery-grid {
    width: 100%;

    display: grid;

    grid-template-columns: repeat(4,minmax(0,1fr));

    gap: 14px;
}

.gallery-item {
    position: relative;

    width: 100%;

    aspect-ratio: 4 / 3;

    overflow: hidden;

    cursor: zoom-in;

    background: #222;

    border: 1px solid rgba(181,154,103,.18);

    box-shadow:
        0 20px 60px rgba(0,0,0,.28);

    transition: border-color .4s, box-shadow .4s;
}

.gallery-item:hover {
    border-color: rgba(181,154,103,.6);
    box-shadow:
        0 25px 70px rgba(0,0,0,.4),
        0 0 0 1px rgba(181,154,103,.25);
}

.gallery-item img {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    max-width: none;

    display: block;

    object-fit: cover;

    object-position: center;

    image-rendering: auto;

    transition: transform .8s cubic-bezier(.22,1,.36,1);
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-overlay {
    position: absolute;

    inset: 0;

    display: flex;

    justify-content: space-between;
    align-items: flex-end;

    padding: 20px;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.7),
            transparent 55%
        );

    opacity: 0;

    transition: .3s;

    font-size: 11px;

    letter-spacing: 1px;

    color: #fff;

    pointer-events: none;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-actions {
    text-align: center;
    margin-top: 45px;
}

.gallery-all-btn {
    border: 1px solid rgba(255,255,255,.3);

    background: transparent;

    color: #fff;

    padding: 17px 28px;

    cursor: pointer;

    font-weight: 700;
    font-size: 12px;

    transition: .25s;
}

.gallery-all-btn:hover {
    background: #fff;
    color: #111;
}


/* =========================================
   VİDEO
========================================= */

.video-section {
    background: #0d1522;
}

.video-showcase {
    width: 100%;
    max-width: 900px;

    margin: 50px auto 0;

    border-radius: 24px;

    overflow: hidden;

    background: #111;

    box-shadow:
        0 25px 70px rgba(0,0,0,.18);
}

.video-showcase video {
    display: block;

    width: 100%;
    height: auto;

    max-height: 720px;

    margin: auto;

    object-fit: contain;
}


/* =========================================
   YORUMLAR
========================================= */

.reviews {
    background: #111a29;
}

.review-card {
    position: relative;

    max-width: 1200px;
    margin: 0 auto;

    padding: 0;

    background: transparent;
    border: none;
    box-shadow: none;

    display: block;

    overflow: visible;
}

.review-card::before {
    display: none;
}


/* =========================
   PUAN
========================= */

.review-rating {
    display: flex;
    align-items: baseline;
    gap: 18px;

    margin-bottom: 45px;
}

.review-rating strong {
    font-family: "Playfair Display", Georgia, serif;

    font-size: 52px;
    font-weight: 600;

    color: #f1eadf;
}

.review-rating span {
    color: var(--muted);

    font-size: 13px;
    letter-spacing: .04em;
}


/* =========================
   YORUM KARTLARI
========================= */

.review-list {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;

    margin-bottom: 45px;
}

.review-item {
    position: relative;

    min-height: 260px;

    padding: 38px 32px 32px;

    background:
        linear-gradient(
            145deg,
            #18263a,
            #0e1725
        );

    border: 1px solid rgba(181,154,103,.18);

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    overflow: hidden;

    transition:
        transform .35s ease,
        border-color .35s ease,
        box-shadow .35s ease;
}


/* Büyük tırnak */

.review-item::before {
    content: "\201C";

    position: absolute;

    top: -35px;
    right: 18px;

    font-family: "Playfair Display", Georgia, serif;

    font-size: 150px;
    line-height: 1;

    color: rgba(181,154,103,.07);

    pointer-events: none;
}


/* Hover */

.review-item:hover {
    transform: translateY(-6px);

    border-color: rgba(181,154,103,.38);

    box-shadow:
        0 25px 60px rgba(0,0,0,.25);
}


/* Yorum */

.review-item p {
    position: relative;
    z-index: 1;

    margin: 0;

    color: #e8e3da;

    font-size: 16px;
    line-height: 1.75;
}


/* İsim */

.review-item span {
    position: relative;
    z-index: 1;

    display: block;

    margin-top: 30px;

    color: var(--muted);

    font-size: 12px;

    letter-spacing: .04em;
}


/* =========================
   GOOGLE BUTONU
========================= */

.review-card > .primary-btn {
    display: inline-flex;
}
/* =========================================
   KONUM
========================================= */

.location {
    background:
        linear-gradient(
            135deg,
            #a9342f,
            #7d2925
        );

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    color: #fff;
}

.location .section-small {
    color: #1a1a1a;
}

.location-info {
    display: flex;

    flex-direction: column;

    justify-content: flex-end;

    gap: 32px;
}

.contact-block {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-block span {
    color: rgba(0,0,0,.65);

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
}

.contact-block p,
.contact-block a {
    font-size: 18px;
    line-height: 1.7;
    text-decoration: none;
}

.map-btn {
    display: inline-flex;

    align-self: flex-start;

    text-decoration: none;

    background: #111827;

    padding: 17px 25px;

    font-size: 12px;
    font-weight: 700;

    transition: .3s;
}

.map-btn:hover {
    background: #f4f0e8;
    color: #111;
}


/* =========================================
   FOOTER
========================================= */

footer {
    padding: 80px 8% 30px;

    background:
        linear-gradient(
            135deg,
            #070c13,
            #0d1725
        );

    border-top: 1px solid rgba(181,154,103,.16);
}

.footer-top {
    display: flex;

    justify-content: space-between;
    align-items: flex-start;

    gap: 60px;

    padding-bottom: 70px;
}

.footer-logo img {
    width: 145px;

    display: block;

    margin-bottom: 25px;
}

.footer-logo p {
    color: #858d98;
}

.footer-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #aaa;

    text-decoration: none;

    font-size: 13px;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #222;

    padding-top: 25px;

    display: flex;

    justify-content: space-between;

    color: #666;

    font-size: 11px;
}


/* =========================================
   WHATSAPP
========================================= */

.whatsapp-float {
    position: fixed;

    right: 25px;
    bottom: 25px;

    z-index: 400;

    display: flex;

    align-items: center;

    gap: 10px;

    text-decoration: none;

    background: #25d366;

    color: #fff;

    padding: 14px 19px;

    border-radius: 50px;

    box-shadow:
        0 8px 25px rgba(0,0,0,.3);

    transition: .3s;
}

.whatsapp-float:hover {
    transform: translateY(-4px);
}

.whatsapp-icon {
    font-size: 22px;
}

.whatsapp-text {
    font-size: 12px;
    font-weight: 700;
}


/* =========================================
   FOTOĞRAF BÜYÜTME
   EN ÜST KATMAN
========================================= */

.image-modal {
    position: fixed;

    inset: 0;

    width: 100vw;
    height: 100vh;

    z-index: 100000;

    background: rgba(0,0,0,.94);

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 30px;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition: opacity .35s ease, visibility .35s;
}

.image-modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.image-modal img {
    display: block;

    width: auto;
    height: auto;

    max-width: 94vw;
    max-height: 90vh;

    object-fit: contain;

    image-rendering: auto;

    box-shadow:
        0 20px 80px rgba(0,0,0,.7);

    transform: scale(.94);

    transition: transform .4s cubic-bezier(.22,1,.36,1);
}

.image-modal.active img {
    transform: scale(1);
}

.modal-close {
    position: fixed;

    top: 20px;
    right: 25px;

    width: 48px;
    height: 48px;

    border: 1px solid rgba(255,255,255,.25);

    border-radius: 50%;

    background: rgba(0,0,0,.5);

    color: #fff;

    font-size: 34px;

    cursor: pointer;

    z-index: 100001;
}

.modal-close:hover {
    background: var(--accent);
}


/* =========================================
   TÜM ÇALIŞMALAR MODAL
========================================= */

.gallery-modal {
    position: fixed;

    inset: 0;

    width: 100vw;
    height: 100vh;

    z-index: 9000;

    background: rgba(0,0,0,.96);

    display: flex;

    overflow-y: auto;

    padding: 80px 6% 50px;

    align-items: flex-start;
    justify-content: center;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition: opacity .35s ease, visibility .35s;
}

.gallery-modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.gallery-modal-inner {
    width: min(1200px,100%);

    position: relative;

    transform: translateY(16px);

    transition: transform .4s cubic-bezier(.22,1,.36,1);
}

.gallery-modal.active .gallery-modal-inner {
    transform: translateY(0);
}

.gallery-modal-inner h2 {
    font-family: "Playfair Display", Georgia, serif;

    font-size: clamp(42px,6vw,80px);

    font-weight: 500;

    margin-bottom: 45px;
}

.all-gallery-grid {
    display: grid;

    grid-template-columns:
        repeat(3,minmax(0,1fr));

    gap: 14px;
}

.all-gallery-item {
    position: relative;

    aspect-ratio: 1 / 1;

    overflow: hidden;

    cursor: zoom-in;

    background: #181818;
}

.all-gallery-item img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center;

    image-rendering: auto;

    transition: .5s;
}

.all-gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-modal-close {
    position: fixed;

    top: 20px;
    right: 25px;

    width: 48px;
    height: 48px;

    border: 1px solid rgba(255,255,255,.25);

    border-radius: 50%;

    background: rgba(0,0,0,.5);

    color: #fff;

    font-size: 34px;

    cursor: pointer;

    z-index: 9001;
}

.gallery-modal-close:hover {
    background: var(--accent);
}


/* =========================================
   YUKARI
========================================= */

.scroll-top {
    position: fixed;

    right: 25px;
    bottom: 90px;

    z-index: 350;

    width: 45px;
    height: 45px;

    border: 0;

    background: #222;

    color: #fff;

    cursor: pointer;

    opacity: 0;
    visibility: hidden;

    transform: translateY(10px);

    transition: .3s;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--accent);
}


/* =========================================
   REVEAL
========================================= */

.reveal {
    opacity: 0;

    transform: translateY(35px);

    transition:
        opacity .7s,
        transform .7s;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .navbar {
        height: 75px;
        padding: 0 6%;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;

        top: 0;
        right: -100%;

        width: min(80%,380px);
        height: 100vh;
        height: 100dvh;

        z-index: 550;

        background: #151515;

        display: flex;

        flex-direction: column;

        justify-content: center;

        gap: 35px;

        overflow-y: auto;
        padding: 40px 0;

        transition: right .4s;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 20px;
        color: #fff;
    }

    .menu-toggle.active span:nth-child(1) {
        transform:
            translateY(8px)
            rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform:
            translateY(-8px)
            rotate(-45deg);
    }

    .section {
        padding: 100px 6%;
    }

    .hero {
        height: 800px;
        padding: 110px 6% 90px;

        align-items: flex-end;

        /*
           Fotoğrafın kendisi artık cover ile
           kırpılmıyor; katmanlar hallediyor.
        */
        background: none;
        background-color: #05080d;
    }

    .hero-bg-blur {
        display: block;

        position: absolute;
        inset: -30px;

        background:
            url("images/dukananasayfa.jpeg")
            center / cover no-repeat;

        filter: blur(30px) brightness(.5) saturate(1.15);
        transform: scale(1.12);
    }

    .hero-photo {
        display: block;

        position: absolute;
        inset: 0;

        background:
            url("images/dukananasayfa.jpeg")
            center top / contain no-repeat;
    }

    .hero-overlay {
        background:
            linear-gradient(
                to top,
                rgba(5,8,13,.96) 0%,
                rgba(5,8,13,.86) 22%,
                rgba(5,8,13,.4) 48%,
                rgba(5,8,13,.05) 68%,
                rgba(5,8,13,0) 80%
            );
    }

    .hero-content {
        max-width: 100%;
    }

    .hero h1 {
        letter-spacing: -3px;
    }

    .about,
    .location {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-stats {
        flex-wrap: wrap;
        gap: 35px;
    }

    .section-heading {
        flex-direction: column;
        align-items: flex-start;

        gap: 25px;

        margin-bottom: 55px;
    }

    .service-item {
        grid-template-columns:
            40px
            minmax(0,1fr)
            80px;

        gap: 15px;
    }

   



   
/* =========================================================
   GALERİ - 4'LÜ ÖNİZLEME
   ========================================================= */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 18px;
    width: 100%;
}

.gallery-grid .gallery-item {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #111;
    border: 1px solid rgba(181,154,103,.18);
    cursor: zoom-in;
}

.gallery-grid .gallery-item img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    max-width: none;

    object-fit: cover;
    object-position: center;

    display: block;
    image-rendering: auto;

    transition: transform .5s ease;
}

.gallery-grid .gallery-item:hover img {
    transform: scale(1.035);
}


/* =========================================================
   TÜM GALERİ
   ========================================================= */

.gallery-modal {
    position: fixed;
    inset: 0;

    width: 100vw;
    height: 100vh;

    z-index: 9000;

    display: flex;
    align-items: flex-start;
    justify-content: center;

    padding: 70px 5% 40px;

    background: rgba(7,12,20,.98);

    overflow-y: auto;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        opacity .25s ease,
        visibility .25s ease;
}

.gallery-modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.gallery-modal-inner {
    position: relative;

    width: min(1250px, 100%);

    padding: 0;

    background: transparent;
}

.all-gallery-grid {
    display: grid;

    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 12px;

    width: 100%;
}

.all-gallery-item {
    position: relative;

    width: 100%;
    aspect-ratio: 4 / 3;

    overflow: hidden;

    background: #111;

    cursor: zoom-in;
}

.all-gallery-item img {
    display: block;

    width: 100%;
    height: 100%;

    max-width: none;

    object-fit: cover;
    object-position: center;

    image-rendering: auto;

    transition: transform .45s ease;
}

.all-gallery-item:hover img {
    transform: scale(1.035);
}


/* =========================================================
   BÜYÜK FOTOĞRAF
   HER ŞEYİN ÜZERİNDE
   ========================================================= */

.image-modal {
    position: fixed;
    inset: 0;

    width: 100vw;
    height: 100vh;

    /* GALERİDEN DAHA YÜKSEK */
    z-index: 100000;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 25px;

    background: rgba(0,0,0,.96);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        opacity .25s ease,
        visibility .25s ease;
}

.image-modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}


/* Gerçek fotoğraf */

.image-modal img {
    display: block;

    width: min(94vw, 1200px) !important;
    height: auto !important;

    max-width: 94vw !important;
    max-height: 90vh !important;

    object-fit: contain !important;
    object-position: center;

    transform: none !important;
    filter: none !important;

    image-rendering: auto;

    box-shadow: 0 25px 100px rgba(0,0,0,.7);
}


/* Kapatma */

.modal-close {
    position: fixed;

    top: 20px;
    right: 25px;

    z-index: 100001;

    width: 48px;
    height: 48px;

    border: 1px solid rgba(255,255,255,.3);
    border-radius: 50%;

    background: rgba(0,0,0,.55);

    color: #fff;

    font-size: 32px;

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: var(--accent);
}


/* =========================================================
   MOBİL
   ========================================================= */

@media (max-width: 900px) {

    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .all-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .gallery-modal {
        padding: 65px 15px 30px;
    }

    .image-modal {
        padding: 15px;
    }

    .image-modal img {
        max-width: 96vw !important;
        max-height: 88vh !important;
    }
}


@media (max-width: 600px) {

    .gallery-grid {
        gap: 6px;
    }

    .all-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 6px;
    }

    .image-modal img {
        max-width: 96vw !important;
        max-height: 84vh !important;
    }
}
}
/* SADECE GALERİDE AÇILAN FOTOĞRAF */
.image-modal #modalImage {
    width: 75vw !important;
    height: 80vh !important;
    max-width: 90vw !important;
    max-height: 85vh !important;
    object-fit: contain !important;
}
@media (max-width: 800px) {
    .review-list {
        grid-template-columns: 1fr;
    }

    .review-rating {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        margin-bottom: 30px;
    }

    .review-rating strong {
        font-size: 42px;
    }

    .review-item {
        min-height: 220px;
    }
}
/* =========================
   YORUMLAR - MOBİL
========================= */

@media (max-width: 700px) {

    .review-list {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .review-item {
        min-height: auto;
        padding: 30px 26px 26px;
    }

    .review-item p {
        font-size: 15px;
        line-height: 1.7;
    }

    .review-item span {
        margin-top: 24px;
    }

    .review-rating {
        margin-bottom: 30px;
        gap: 12px;
    }

    .review-rating strong {
        font-size: 44px;
    }

    .review-card > .primary-btn {
        width: 100%;
        justify-content: center;
    }
}
