/* ============================================================
   YAĞMUR BEAUTY GÜZELLİK SALONU — Ana Stil Dosyası
   ============================================================ */

/* ------------------------------------------------------------
   1. CSS CUSTOM PROPERTIES (Değişkenler)
   ------------------------------------------------------------ */
:root {
    /* === RENK PALETİ === */

    /* Ana renkler */
    --color-primary:        #b5536a;    /* Koyu gül kurusu */
    --color-primary-light:  #c97a8c;    /* Gül kurusu açık ton */
    --color-primary-dark:   #8f3d51;    /* Gül kurusu koyu ton */
    --color-primary-muted:  #d4a0ad;    /* Gül kurusu pastel */

    /* Arkaplan ve yüzey */
    --color-bg:             #fdfbfc;    /* Krem/beyaz arkaplan */
    --color-bg-alt:         #f9e4ec;    /* Açık pembe alternatif arkaplan */
    --color-bg-soft:        #fdf2f5;    /* Çok hafif pembe ton */
    --color-surface:        #ffffff;    /* Beyaz kart yüzeyi */

    /* Metin */
    --color-text:           #3d2c33;    /* Koyu kahve-gri ana metin */
    --color-text-light:     #6b5a62;    /* Açık metin */
    --color-text-muted:     #96858c;    /* Soluk metin */

    /* Vurgu ve aksiyon */
    --color-accent:         #c9956b;    /* Gold / altın vurgu */
    --color-accent-light:   #dbb88d;    /* Açık gold */
    --color-whatsapp:       #25D366;    /* WhatsApp yeşili */

    /* Kenarlık ve ayırıcı */
    --color-border:         #e8d5db;    /* Pembe tonlu kenarlık */
    --color-border-light:   #f2e4e9;    /* Açık kenarlık */

    /* Hero overlay */
    --color-overlay:        rgba(61, 44, 51, 0.55); /* Koyu overlay */


    /* === TİPOGRAFİ === */

    /* Font aileleri */
    --font-heading:  'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body:     'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

    /* Font boyutları (major third scale — 1.25) */
    --text-xs:    0.75rem;    /* 12px */
    --text-sm:    0.875rem;   /* 14px */
    --text-base:  1rem;       /* 16px */
    --text-lg:    1.125rem;   /* 18px */
    --text-xl:    1.25rem;    /* 20px */
    --text-2xl:   1.563rem;   /* 25px */
    --text-3xl:   1.953rem;   /* 31px */
    --text-4xl:   2.441rem;   /* 39px */
    --text-5xl:   3.052rem;   /* 49px */
    --text-6xl:   3.815rem;   /* 61px */

    /* Font ağırlıkları */
    --weight-light:    300;
    --weight-regular:  400;
    --weight-medium:   500;
    --weight-semibold: 600;
    --weight-bold:     700;

    /* Satır yükseklikleri */
    --leading-tight:    1.2;
    --leading-snug:     1.375;
    --leading-normal:   1.6;
    --leading-relaxed:  1.75;


    /* === BOŞLUK (SPACING) === */
    --space-1:   0.25rem;   /*  4px */
    --space-2:   0.5rem;    /*  8px */
    --space-3:   0.75rem;   /* 12px */
    --space-4:   1rem;      /* 16px */
    --space-5:   1.25rem;   /* 20px */
    --space-6:   1.5rem;    /* 24px */
    --space-8:   2rem;      /* 32px */
    --space-10:  2.5rem;    /* 40px */
    --space-12:  3rem;      /* 48px */
    --space-16:  4rem;      /* 64px */
    --space-20:  5rem;      /* 80px */
    --space-24:  6rem;      /* 96px */

    /* Section boşlukları */
    --section-padding-y: 5rem;
    --section-padding-y-mobile: 3rem;


    /* === GÖLGE (SHADOW) === */
    --shadow-sm:   0 1px 3px rgba(61, 44, 51, 0.06), 0 1px 2px rgba(61, 44, 51, 0.04);
    --shadow-md:   0 4px 16px rgba(61, 44, 51, 0.08), 0 2px 4px rgba(61, 44, 51, 0.04);
    --shadow-lg:   0 10px 32px rgba(61, 44, 51, 0.1), 0 4px 8px rgba(61, 44, 51, 0.05);
    --shadow-xl:   0 20px 48px rgba(61, 44, 51, 0.12), 0 8px 16px rgba(61, 44, 51, 0.06);


    /* === KENAR YUVARLAKLIK (BORDER RADIUS) === */
    --radius-sm:   0.375rem;  /*  6px */
    --radius-md:   0.5rem;    /*  8px */
    --radius-lg:   0.75rem;   /* 12px */
    --radius-xl:   1rem;      /* 16px */
    --radius-2xl:  1.5rem;    /* 24px */
    --radius-full: 9999px;


    /* === GEÇİŞ (TRANSITION) === */
    --transition-fast:   150ms ease;
    --transition-normal: 250ms ease;
    --transition-slow:   400ms ease;


    /* === LAYOUT === */
    --container-max:   1200px;
    --container-padding: 1.5rem;
    --header-height:    4.5rem;


    /* === Z-INDEX KATMANLARI === */
    --z-base:       1;
    --z-dropdown:   100;
    --z-sticky:     200;
    --z-overlay:    300;
    --z-modal:      400;
    --z-toast:      500;
}


/* ------------------------------------------------------------
   2. CSS RESET + BASE
   ------------------------------------------------------------ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: var(--weight-regular);
    line-height: var(--leading-normal);
    color: var(--color-text);
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul, ol {
    list-style: none;
}

button {
    cursor: pointer;
    font: inherit;
    border: none;
    background: none;
    color: inherit;
}


/* ------------------------------------------------------------
   3. YARDIMCI SINIFLAR (UTILITIES)
   ------------------------------------------------------------ */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

.section {
    padding-top: var(--section-padding-y);
    padding-bottom: var(--section-padding-y);
}

.section--alt {
    background-color: var(--color-bg-alt);
}


/* ------------------------------------------------------------
   4. ORTAK SECTION BAŞLIK STİLİ
   ------------------------------------------------------------ */
.section__header {
    text-align: center;
    margin-bottom: var(--space-16);
}

.section__label {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: var(--weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-primary);
    margin-bottom: var(--space-3);
}

.section__title {
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    font-weight: var(--weight-bold);
    color: var(--color-text);
    line-height: var(--leading-tight);
    margin-bottom: var(--space-5);
}

.section__divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
}

.section__divider-line {
    display: block;
    width: 50px;
    height: 1.5px;
    background: linear-gradient(
        to right,
        transparent,
        var(--color-primary-light),
        transparent
    );
}

.section__divider-icon {
    font-size: var(--text-lg);
    color: var(--color-primary);
}


/* ------------------------------------------------------------
   5. BUTONLAR
   ------------------------------------------------------------ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: var(--weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-full);
    transition:
        background-color var(--transition-normal),
        color var(--transition-normal),
        border-color var(--transition-normal),
        box-shadow var(--transition-normal);
    cursor: pointer;
    white-space: nowrap;
}

.btn--primary {
    background-color: var(--color-primary);
    color: #fff;
    border: 2px solid var(--color-primary);
}

.btn--primary:hover,
.btn--primary:focus-visible {
    background-color: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    box-shadow: var(--shadow-md);
}

.btn--outline {
    background-color: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.7);
}

.btn--outline:hover,
.btn--outline:focus-visible {
    background-color: #fff;
    color: var(--color-primary);
    border-color: #fff;
}


/* ------------------------------------------------------------
   6. HEADER / STICKY NAVIGATION
   ------------------------------------------------------------ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    z-index: var(--z-sticky);
    transition: background-color var(--transition-normal),
                box-shadow var(--transition-normal);
}

/* header scroll durumunda JS ile eklenecek */
.header--scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

/* Logo */
.nav__logo {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: var(--weight-bold);
    color: var(--color-text);
    transition: color var(--transition-fast);
}

.nav__logo:hover {
    color: var(--color-primary);
}

.nav__logo-icon {
    font-size: var(--text-2xl);
    color: var(--color-primary);
}

.nav__logo-accent {
    color: var(--color-primary);
}

/* Menü */
.nav__menu {
    display: flex;
    align-items: center;
    gap: var(--space-1);
}

.nav__link {
    position: relative;
    display: block;
    padding: var(--space-2) var(--space-4);
    font-size: var(--text-sm);
    font-weight: var(--weight-medium);
    color: var(--color-text-light);
    border-radius: var(--radius-md);
    transition: color var(--transition-fast),
                background-color var(--transition-fast);
}

.nav__link:hover {
    color: var(--color-primary);
    background-color: var(--color-bg-soft);
}

.nav__link--active {
    color: var(--color-primary);
}

.nav__link--active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background-color: var(--color-primary);
    border-radius: var(--radius-full);
}

/* Hamburger toggle */
.nav__toggle {
    display: none;  /* Masaüstünde gizli */
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    transition: background-color var(--transition-fast);
    z-index: var(--z-overlay);
}

.nav__toggle:hover {
    background-color: var(--color-bg-soft);
}

.nav__toggle-bar {
    display: block;
    width: 22px;
    height: 2px;
    background-color: var(--color-text);
    border-radius: var(--radius-full);
    transition:
        transform var(--transition-normal),
        opacity var(--transition-normal);
}

/* Hamburger açıkken (JS ile toggle) */
.nav__toggle--open .nav__toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav__toggle--open .nav__toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav__toggle--open .nav__toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 768px) {
    .nav__toggle {
        display: flex;
    }

    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-1);
        padding: calc(var(--header-height) + var(--space-6)) var(--space-6) var(--space-8);
        background-color: #fff;
        box-shadow: var(--shadow-xl);
        transition: right var(--transition-slow);
        z-index: var(--z-dropdown);
    }

    .nav__menu--open {
        right: 0;
    }

    .nav__link {
        width: 100%;
        padding: var(--space-3) var(--space-4);
        font-size: var(--text-base);
    }

    /* Menü arka plan overlay */
    .nav__overlay {
        position: fixed;
        inset: 0;
        background-color: rgba(0, 0, 0, 0.4);
        z-index: calc(var(--z-dropdown) - 1);
        opacity: 0;
        pointer-events: none;
        transition: opacity var(--transition-normal);
    }

    .nav__overlay--visible {
        opacity: 1;
        pointer-events: auto;
    }
}


/* ------------------------------------------------------------
   7. HERO SECTION
   ------------------------------------------------------------ */
.hero {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    min-height: 100svh;
    text-align: center;
    background-color: #2d1520; /* En koyu fallback */
    overflow: hidden;
    isolation: isolate;
}

/* === Arkaplan sistemi === */

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

/* Ana gradient — güzellik salonu atmosferi */
.hero__bg-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 40%, #b5536a 0%, transparent 70%),
        radial-gradient(ellipse 60% 50% at 20% 80%, #8f3d51 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 80% 20%, #c97a8c 0%, transparent 55%),
        linear-gradient(180deg, #2d1520 0%, #3d1f2c 30%, #4a2535 60%, #2d1520 100%);
}

/* Yumuşak ışık orb'ları */
.hero__bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.45;
    animation: hero-orb-float 10s ease-in-out infinite;
}

.hero__bg-orb--1 {
    width: 500px;
    height: 500px;
    top: -10%;
    left: -5%;
    background: radial-gradient(circle, #e8a0b4 0%, transparent 70%);
    animation-delay: 0s;
}

.hero__bg-orb--2 {
    width: 400px;
    height: 400px;
    bottom: 5%;
    right: -8%;
    background: radial-gradient(circle, #dbb88d 0%, transparent 70%);
    animation-delay: -3.5s;
    opacity: 0.3;
}

.hero__bg-orb--3 {
    width: 350px;
    height: 350px;
    top: 50%;
    left: 40%;
    background: radial-gradient(circle, #f4cfd8 0%, transparent 70%);
    animation-delay: -6s;
    opacity: 0.35;
}

@keyframes hero-orb-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25%      { transform: translate(30px, -25px) scale(1.08); }
    50%      { transform: translate(-15px, 20px) scale(0.95); }
    75%      { transform: translate(-25px, -15px) scale(1.05); }
}

/* Overlay */
.hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(45, 21, 32, 0.25) 0%,
            rgba(45, 21, 32, 0.15) 40%,
            rgba(45, 21, 32, 0.35) 100%
        );
    z-index: 1;
}

/* === İçerik === */

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 780px;
    padding-top: var(--header-height);
    padding-bottom: var(--space-8);
}

.hero__subtitle {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: var(--weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--color-accent-light);
    margin-bottom: var(--space-5);
}

.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, var(--text-6xl));
    font-weight: var(--weight-bold);
    color: #fff;
    line-height: var(--leading-tight);
    margin-bottom: var(--space-6);
}

.hero__title-accent {
    display: inline-block;
    background: linear-gradient(
        135deg,
        #e8a0b4 0%,
        #f9e4ec 30%,
        #dbb88d 65%,
        #c9956b 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    /* Fallback */
    color: #f9e4ec;
}

.hero__description {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.8);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-10);
}

/* === Butonlar === */

.hero__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
    flex-wrap: wrap;
    margin-bottom: var(--space-12);
}

/* === Mini bilgi rozetleri === */

.hero__badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-8);
    flex-wrap: wrap;
}

.hero__badge {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--text-xs);
    font-weight: var(--weight-medium);
    letter-spacing: 0.04em;
}

.hero__badge i {
    font-size: var(--text-sm);
    color: var(--color-accent-light);
}

/* === Scroll-down indicator === */

.hero__scroll {
    position: absolute;
    bottom: var(--space-8);
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    color: rgba(255, 255, 255, 0.55);
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    animation: hero-scroll-bounce 2.4s ease-in-out infinite;
    transition: color var(--transition-fast);
}

.hero__scroll:hover {
    color: #fff;
}

.hero__scroll-text {
    font-weight: var(--weight-medium);
}

.hero__scroll .fa-chevron-down {
    font-size: var(--text-sm);
}

@keyframes hero-scroll-bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-8px);
    }
    60% {
        transform: translateX(-50%) translateY(-4px);
    }
}


/* === FADE-IN ANIMASYONLARI === */

.fade-in-up {
    opacity: 0;
    transform: translateY(28px);
    animation: fadeInUp 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
    animation-delay: var(--delay, 0ms);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ------------------------------------------------------------
   8. HAKKIMIZDA SECTION
   ------------------------------------------------------------ */
.about__grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: var(--space-16);
    align-items: center;
}

/* === Sol: İçerik === */

.about__heading {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: var(--weight-semibold);
    color: var(--color-text);
    margin-bottom: var(--space-6);
    line-height: var(--leading-snug);
}

.about__heading-accent {
    color: var(--color-primary);
    position: relative;
}

.about__heading-accent::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, var(--color-primary), var(--color-primary-muted));
    border-radius: var(--radius-full);
    opacity: 0.5;
}

.about__text {
    color: var(--color-text-light);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-4);
    font-size: var(--text-base);
}

.about__text strong {
    color: var(--color-text);
    font-weight: var(--weight-semibold);
}

/* === Özellik listesi === */

.about__features {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    margin-top: var(--space-8);
    margin-bottom: var(--space-8);
}

.about__feature {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
}

.about__feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background-color: var(--color-bg-alt);
    border-radius: var(--radius-lg);
    font-size: var(--text-lg);
    color: var(--color-primary);
    transition:
        background-color var(--transition-fast),
        transform var(--transition-fast);
}

.about__feature:hover .about__feature-icon {
    background-color: var(--color-primary);
    color: #fff;
    transform: scale(1.05);
}

.about__feature-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-top: 2px;
}

.about__feature-body strong {
    font-size: var(--text-sm);
    font-weight: var(--weight-semibold);
    color: var(--color-text);
}

.about__feature-body span {
    font-size: var(--text-xs);
    color: var(--color-text-muted);
    line-height: var(--leading-relaxed);
}

/* === İmza === */

.about__signature {
    margin-top: var(--space-6);
    padding-top: var(--space-6);
    border-top: 1px solid var(--color-border-light);
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
}

.about__signature-line {
    display: none; /* Masaüstünde gizli, mobilde opsiyonel */
}

.about__owner {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-style: italic;
    color: var(--color-primary);
    font-weight: var(--weight-semibold);
}

.about__owner-title {
    font-size: var(--text-xs);
    color: var(--color-text-muted);
    letter-spacing: 0.04em;
}

/* === Sağ: Görsel === */

.about__image {
    position: relative;
}

.about__image-wrapper {
    position: relative;
}

.about__image-placeholder {
    aspect-ratio: 4 / 5;
    background: linear-gradient(
        135deg,
        var(--color-bg-alt) 0%,
        var(--color-bg-soft) 50%,
        #fdf2f5 100%
    );
    border-radius: var(--radius-2xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    color: var(--color-primary-muted);
    font-size: var(--text-5xl);
    border: 2px dashed var(--color-border);
    position: relative;
    z-index: 1;
}

.about__image-placeholder span {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: var(--weight-semibold);
    color: var(--color-primary);
}

.about__image-placeholder small {
    font-family: var(--font-body);
    font-size: var(--text-xs);
    color: var(--color-text-muted);
}

/* Dekoratif çerçeve */
.about__image-frame {
    position: absolute;
    top: 16px;
    left: 16px;
    right: -16px;
    bottom: -16px;
    border: 2px solid var(--color-primary-muted);
    border-radius: var(--radius-2xl);
    z-index: 0;
    opacity: 0.4;
}

/* Deneyim rozeti */
.about__experience-badge {
    position: absolute;
    bottom: -12px;
    left: -12px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    background: linear-gradient(
        135deg,
        var(--color-primary) 0%,
        var(--color-primary-dark) 100%
    );
    color: #fff;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-lg);
}

.about__experience-years {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: var(--weight-bold);
    line-height: 1;
}

.about__experience-label {
    font-size: 0.6rem;
    font-weight: var(--weight-medium);
    text-align: center;
    line-height: 1.3;
    letter-spacing: 0.04em;
    opacity: 0.9;
}

/* === Responsive === */
@media (max-width: 768px) {
    .about__grid {
        grid-template-columns: 1fr;
        gap: var(--space-10);
    }

    .about__image {
        order: -1; /* Mobilde görsel üste */
        max-width: 400px;
        margin: 0 auto;
    }

    .about__heading {
        font-size: var(--text-xl);
    }

    .about__experience-badge {
        bottom: -8px;
        left: -8px;
        width: 72px;
        height: 72px;
    }

    .about__experience-years {
        font-size: var(--text-xl);
    }
}


/* ------------------------------------------------------------
   9. HİZMETLER SECTION
   ------------------------------------------------------------ */
.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
    max-width: 1000px;
    margin: 0 auto;
}

/* 4. ve 5. kartları ortala (3+2 düzeni) */
.services__grid .service-card:nth-child(4) {
    grid-column: 1 / -1;
    justify-self: center;
    max-width: calc(50% - var(--space-3));
    width: 100%;
}

.services__grid .service-card:nth-child(5) {
    grid-column: 1 / -1;
    justify-self: center;
    max-width: calc(50% - var(--space-3));
    width: 100%;
}

/* 4. ve 5. kartları yan yana (son satır 2'li) */
@media (min-width: 769px) {
    .services__grid {
        /* 4. ve 5. kartları 2 sütunlu son satıra yerleştir */
        grid-template-areas:
            "c1 c2 c3"
            ".   c4 c5";
    }

    .services__grid .service-card:nth-child(1) { grid-area: c1; }
    .services__grid .service-card:nth-child(2) { grid-area: c2; }
    .services__grid .service-card:nth-child(3) { grid-area: c3; }
    .services__grid .service-card:nth-child(4) {
        grid-area: c4;
        grid-column: auto;
        justify-self: stretch;
        max-width: none;
    }
    .services__grid .service-card:nth-child(5) {
        grid-area: c5;
        grid-column: auto;
        justify-self: stretch;
        max-width: none;
    }
}

/* === Kart === */
.service-card {
    background-color: var(--color-surface);
    border-radius: var(--radius-xl);
    padding: var(--space-8) var(--space-6) var(--space-6);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border-light);
    transition:
        transform var(--transition-normal),
        box-shadow var(--transition-normal);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

/* === İkon === */
.service-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 76px;
    height: 76px;
    background: linear-gradient(
        135deg,
        var(--color-bg-alt) 0%,
        #fdf2f5 100%
    );
    border-radius: var(--radius-2xl);
    font-size: var(--text-2xl);
    color: var(--color-primary);
    margin-bottom: var(--space-5);
    transition:
        background var(--transition-normal),
        color var(--transition-normal),
        transform var(--transition-normal);
}

.service-card:hover .service-card__icon {
    background: linear-gradient(
        135deg,
        var(--color-primary) 0%,
        var(--color-primary-light) 100%
    );
    color: #fff;
    transform: scale(1.06);
}

/* === Başlık === */
.service-card__title {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: var(--weight-semibold);
    color: var(--color-text);
    margin-bottom: var(--space-3);
}

/* === Açıklama === */
.service-card__description {
    font-size: var(--text-sm);
    color: var(--color-text-light);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-6);
    flex-grow: 1;
}

/* === Kart içi buton === */
.service-card__btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-family: var(--font-body);
    font-size: var(--text-xs);
    font-weight: var(--weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-primary);
    padding: 0.6rem 1.5rem;
    border: 1.5px solid var(--color-primary);
    border-radius: var(--radius-full);
    transition:
        background-color var(--transition-normal),
        color var(--transition-normal),
        gap var(--transition-normal);
    margin-top: auto;
}

.service-card__btn:hover {
    background-color: var(--color-primary);
    color: #fff;
    gap: var(--space-3);
}

.service-card__btn .fa-arrow-right {
    font-size: 0.7em;
    transition: transform var(--transition-normal);
}

.service-card__btn:hover .fa-arrow-right {
    transform: translateX(3px);
}

/* === Responsive === */
@media (max-width: 768px) {
    .services__grid {
        grid-template-columns: 1fr;
        max-width: 440px;
    }

    .services__grid .service-card:nth-child(4),
    .services__grid .service-card:nth-child(5) {
        grid-column: auto;
        max-width: none;
    }
}


/* ------------------------------------------------------------
   10. ÖNCESİ / SONRASI (GALLERY) SECTION
   ------------------------------------------------------------ */

/* === Filtre butonları === */
.gallery__filters {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-2);
    margin-bottom: var(--space-12);
}

.gallery__filter {
    font-family: var(--font-body);
    font-size: var(--text-xs);
    font-weight: var(--weight-medium);
    color: var(--color-text-light);
    background-color: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    padding: 0.55rem 1.25rem;
    cursor: pointer;
    transition:
        background-color var(--transition-fast),
        color var(--transition-fast),
        border-color var(--transition-fast),
        box-shadow var(--transition-fast);
    white-space: nowrap;
}

.gallery__filter:hover {
    color: var(--color-primary);
    border-color: var(--color-primary-muted);
    background-color: var(--color-bg-soft);
}

.gallery__filter--active {
    background-color: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
    box-shadow: var(--shadow-sm);
}

.gallery__filter--active:hover {
    background-color: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    color: #fff;
}

/* === Galeri grid === */
.gallery__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: var(--space-6);
    margin-bottom: var(--space-10);
}

/* === Kart === */
.gallery-card {
    background-color: var(--color-surface);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border-light);
    transition:
        transform var(--transition-normal),
        box-shadow var(--transition-normal),
        opacity var(--transition-normal);
}

.gallery-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

/* Filtreleme animasyonu */
.gallery-card.is-hidden {
    display: none;
}

/* === Öncesi/Sonrası yan yana görsel alanı === */
.gallery-card__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
}

.gallery-card__side {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
}

/* Öncesi-Sonrası ayırıcı çizgi */
.gallery-card__side--before {
    border-right: 1px dashed var(--color-border-light);
}

.gallery-card__image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    background: linear-gradient(
        135deg,
        var(--color-bg-soft) 0%,
        var(--color-bg-alt) 100%
    );
    color: var(--color-primary-muted);
    font-size: var(--text-2xl);
}

.gallery-card__side--after .gallery-card__image-placeholder {
    background: linear-gradient(
        135deg,
        var(--color-bg-alt) 0%,
        #fdf2f5 100%
    );
}

.gallery-card__image-placeholder span {
    font-family: var(--font-body);
    font-size: var(--text-xs);
    color: var(--color-text-muted);
    font-weight: var(--weight-medium);
}

/* === Etiketler (Öncesi / Sonrası) === */
.gallery-card__label {
    position: absolute;
    top: 10px;
    padding: 0.25rem 0.75rem;
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: var(--weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: var(--radius-full);
    z-index: 1;
}

.gallery-card__label--before {
    left: 10px;
    background-color: rgba(61, 44, 51, 0.75);
    color: #fff;
}

.gallery-card__label--after {
    right: 10px;
    background-color: var(--color-primary);
    color: #fff;
}

/* === Kart alt bilgisi === */
.gallery-card__info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-3) var(--space-4);
    border-top: 1px solid var(--color-border-light);
}

.gallery-card__category {
    font-size: var(--text-xs);
    color: var(--color-primary);
    font-weight: var(--weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.gallery-card__title {
    font-size: var(--text-sm);
    color: var(--color-text-light);
    font-weight: var(--weight-medium);
}

/* === Boş durum === */
.gallery__empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
    padding: var(--space-16) var(--space-6);
    color: var(--color-text-muted);
    text-align: center;
}

.gallery__empty[hidden] {
    display: none;
}

.gallery__empty i {
    font-size: var(--text-4xl);
    color: var(--color-primary-muted);
}

.gallery__empty p {
    font-size: var(--text-sm);
}

/* === Müşteri onay notu === */
.gallery__disclaimer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    font-size: var(--text-xs);
    color: var(--color-text-muted);
    text-align: center;
    padding-top: var(--space-8);
    border-top: 1px solid var(--color-border-light);
}

.gallery__disclaimer i {
    color: var(--color-primary);
    font-size: var(--text-sm);
}

/* === Responsive === */
@media (max-width: 768px) {
    .gallery__grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }

    .gallery__filters {
        gap: var(--space-1);
    }

    .gallery__filter {
        font-size: 0.7rem;
        padding: 0.45rem 1rem;
    }
}


/* ------------------------------------------------------------
   11. SSS (FAQ) SECTION
   ------------------------------------------------------------ */
.faq__list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

/* === Accordion item === */
.faq__item {
    background-color: var(--color-surface);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition:
        border-color var(--transition-normal),
        box-shadow var(--transition-normal),
        background-color var(--transition-normal);
}

.faq__item[open] {
    border-color: var(--color-primary-muted);
    box-shadow: var(--shadow-md);
    background-color: #fefafb;
}

/* === Soru satırı (summary) === */
.faq__question {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: var(--space-4);
    padding: var(--space-5) var(--space-6);
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: var(--weight-semibold);
    color: var(--color-text);
    cursor: pointer;
    user-select: none;
    list-style: none;
    transition: color var(--transition-fast);
}

.faq__question::-webkit-details-marker {
    display: none;
}

.faq__question:hover {
    color: var(--color-primary);
}

.faq__item[open] .faq__question {
    color: var(--color-primary);
}

/* === İkon === */
.faq__icon {
    flex-shrink: 0;
    margin-top: 3px;
    font-size: 0.75rem;
    color: var(--color-primary);
    transition: transform var(--transition-normal);
}

.faq__item[open] .faq__icon {
    transform: rotate(45deg);
}

/* === Cevap === */

/* Cevap grid container — aç/kapa animasyonu için */
.faq__answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows var(--transition-slow);
}

.faq__item[open] .faq__answer {
    grid-template-rows: 1fr;
}

/* Cevap içeriği — overflow'u gizle */
.faq__answer > p {
    overflow: hidden;
    padding: 0 var(--space-6);
    font-size: var(--text-sm);
    color: var(--color-text-light);
    line-height: var(--leading-relaxed);
}

.faq__item[open] .faq__answer > p {
    padding-bottom: var(--space-6);
}

/* Cevap içindeki vurgulu metin */
.faq__answer strong {
    color: var(--color-text);
    font-weight: var(--weight-semibold);
}

/* === Responsive === */
@media (max-width: 480px) {
    .faq__question {
        font-size: var(--text-sm);
        padding: var(--space-4);
    }

    .faq__answer > p {
        padding-left: var(--space-4);
        padding-right: var(--space-4);
    }

    .faq__item[open] .faq__answer > p {
        padding-bottom: var(--space-4);
    }
}


/* ------------------------------------------------------------
   12. İLETİŞİM SECTION
   ------------------------------------------------------------ */

/* Section alt başlık */
.section__subtitle {
    font-size: var(--text-sm);
    color: var(--color-text-light);
    margin-top: var(--space-4);
    text-align: center;
}

/* === Grid: sol (bilgi + harita) / sağ (form) === */
.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: start;
}

.contact__left {
    display: flex;
    flex-direction: column;
    gap: var(--space-8);
}

/* === İletişim bilgi kartları === */
.contact__info {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.contact__card {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    background-color: var(--color-surface);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-lg);
    padding: var(--space-4) var(--space-5);
    transition:
        box-shadow var(--transition-normal),
        border-color var(--transition-fast);
}

.contact__card:hover {
    border-color: var(--color-primary-muted);
    box-shadow: var(--shadow-sm);
}

.contact__card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background-color: var(--color-bg-alt);
    border-radius: var(--radius-lg);
    font-size: var(--text-base);
    color: var(--color-primary);
}

.contact__card-body {
    flex: 1;
    min-width: 0;
}

.contact__card-title {
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: var(--weight-semibold);
    color: var(--color-text);
    margin-bottom: var(--space-1);
}

.contact__card-body p {
    font-size: var(--text-sm);
    color: var(--color-text-light);
    line-height: var(--leading-relaxed);
}

/* Tıklanabilir link */
.contact__link {
    display: inline-block;
    font-size: var(--text-sm);
    color: var(--color-primary);
    font-weight: var(--weight-semibold);
    transition: color var(--transition-fast);
}

.contact__link:hover {
    color: var(--color-primary-dark);
    text-decoration: underline;
}

/* WhatsApp butonu */
.contact__whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    margin-top: var(--space-3);
    padding: 0.45rem 1rem;
    font-size: var(--text-xs);
    font-weight: var(--weight-semibold);
    color: #fff;
    background-color: #25D366;
    border-radius: var(--radius-full);
    transition:
        background-color var(--transition-fast),
        transform var(--transition-fast);
}

.contact__whatsapp-btn:hover {
    background-color: #20bd5a;
    transform: translateY(-1px);
}

/* === Çalışma saatleri === */
.contact__hours {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
}

.contact__hours-row {
    display: flex;
    justify-content: space-between;
    gap: var(--space-4);
    font-size: var(--text-sm);
    color: var(--color-text-light);
}

.contact__hours-row--closed {
    color: var(--color-primary);
    font-weight: var(--weight-medium);
}

/* === Harita === */
.contact__map {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border-light);
}

.contact__map-wrapper {
    position: relative;
    aspect-ratio: 4 / 3;
    background-color: var(--color-bg-alt);
}

.contact__map-iframe {
    position: relative;
    z-index: 1;
}

/* Harita yüklenemezse fallback */
.contact__map-fallback {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    z-index: 0;
    color: var(--color-primary-muted);
    font-size: var(--text-3xl);
}

.contact__map-fallback span {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: var(--weight-medium);
    color: var(--color-text-muted);
}

.contact__map-fallback small {
    font-size: var(--text-xs);
    color: var(--color-text-muted);
}

.contact__map-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-1);
    margin-top: var(--space-2);
    font-size: var(--text-xs);
    color: var(--color-primary);
    font-weight: var(--weight-semibold);
}

.contact__map-link:hover {
    text-decoration: underline;
}

/* === İletişim Formu === */
.contact__form {
    background-color: var(--color-surface);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    box-shadow: var(--shadow-sm);
}

.contact__form-title {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: var(--weight-semibold);
    color: var(--color-text);
    margin-bottom: var(--space-6);
}

.contact__form-group {
    margin-bottom: var(--space-4);
}

.contact__form-label {
    display: block;
    font-size: var(--text-xs);
    font-weight: var(--weight-medium);
    color: var(--color-text-light);
    margin-bottom: var(--space-1);
    letter-spacing: 0.02em;
}

.contact__form-label span {
    color: var(--color-primary);
}

/* Input & Textarea */
.contact__form-input,
.contact__form-textarea {
    width: 100%;
    font-family: var(--font-body);
    font-size: var(--text-sm);
    color: var(--color-text);
    background-color: var(--color-bg-soft);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-md);
    padding: 0.7rem 0.9rem;
    transition:
        border-color var(--transition-fast),
        box-shadow var(--transition-fast);
    outline: none;
}

.contact__form-input:focus,
.contact__form-textarea:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(181, 83, 106, 0.1);
}

.contact__form-input::placeholder,
.contact__form-textarea::placeholder {
    color: var(--color-text-muted);
}

.contact__form-textarea {
    resize: vertical;
    min-height: 100px;
}

/* Select */
.contact__form-select-wrapper {
    position: relative;
}

.contact__form-select {
    width: 100%;
    font-family: var(--font-body);
    font-size: var(--text-sm);
    color: var(--color-text);
    background-color: var(--color-bg-soft);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-md);
    padding: 0.7rem 2.2rem 0.7rem 0.9rem;
    appearance: none;
    cursor: pointer;
    outline: none;
    transition:
        border-color var(--transition-fast),
        box-shadow var(--transition-fast);
}

.contact__form-select:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(181, 83, 106, 0.1);
}

.contact__form-select-icon {
    position: absolute;
    top: 50%;
    right: 0.9rem;
    transform: translateY(-50%);
    font-size: 0.7rem;
    color: var(--color-text-muted);
    pointer-events: none;
}

/* Validation error */
.contact__form-input.is-error,
.contact__form-textarea.is-error {
    border-color: #d9534f;
}

.contact__form-error {
    display: block;
    font-size: var(--text-xs);
    color: #d9534f;
    margin-top: var(--space-1);
    min-height: 1.2em;
}

/* Submit button */
.contact__form-submit {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    width: 100%;
    justify-content: center;
    padding: 0.85rem 2rem;
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: var(--weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #fff;
    background-color: var(--color-primary);
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition:
        background-color var(--transition-normal),
        transform var(--transition-fast);
    margin-top: var(--space-4);
}

.contact__form-submit:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-1px);
}

.contact__form-submit:active {
    transform: translateY(0);
}

/* Başarı mesajı */
.contact__form-success {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    margin-top: var(--space-5);
    padding: var(--space-4);
    background-color: #edf7ed;
    border: 1px solid #c8e6c9;
    border-radius: var(--radius-md);
    color: #2e7d32;
}

.contact__form-success[hidden] {
    display: none;
}

.contact__form-success i {
    font-size: var(--text-xl);
    flex-shrink: 0;
}

.contact__form-success strong {
    display: block;
    font-size: var(--text-sm);
    margin-bottom: 2px;
}

.contact__form-success p {
    font-size: var(--text-xs);
    margin: 0;
    color: #388e3c;
}

/* === Responsive === */
@media (max-width: 768px) {
    .contact__grid {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }

    .contact__form {
        padding: var(--space-6);
    }
}


/* ------------------------------------------------------------
   13. FOOTER
   ------------------------------------------------------------ */
.footer {
    background-color: #2d1520;
    color: rgba(255, 255, 255, 0.7);
    padding-top: var(--space-16);
    padding-bottom: var(--space-6);
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--space-10);
    margin-bottom: var(--space-12);
}

/* === Marka === */
.footer__logo {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: var(--weight-bold);
    color: #fff;
    margin-bottom: var(--space-4);
    transition: opacity var(--transition-fast);
}

.footer__logo:hover {
    opacity: 0.85;
}

.footer__logo span {
    color: var(--color-primary-light);
}

.footer__description {
    font-size: var(--text-sm);
    line-height: var(--leading-relaxed);
    max-width: 320px;
    color: rgba(255, 255, 255, 0.55);
}

/* === Başlıklar === */
.footer__heading {
    font-family: var(--font-heading);
    font-size: var(--text-base);
    font-weight: var(--weight-semibold);
    color: #fff;
    margin-bottom: var(--space-5);
}

/* === Linkler === */
.footer__links ul,
.footer__services ul,
.footer__contact-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.footer__links a,
.footer__services a {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.55);
    transition: color var(--transition-fast);
}

.footer__links a:hover,
.footer__services a:hover {
    color: var(--color-primary-light);
}

/* === İletişim listesi === */
.footer__contact-list li {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.55);
}

.footer__contact-list li i {
    width: 18px;
    color: var(--color-primary-light);
    text-align: center;
    flex-shrink: 0;
}

.footer__contact-list a {
    color: rgba(255, 255, 255, 0.55);
    transition: color var(--transition-fast);
}

.footer__contact-list a:hover {
    color: var(--color-primary-light);
}

/* === Sosyal medya === */
.footer__social {
    display: flex;
    gap: var(--space-2);
    margin-top: var(--space-6);
}

.footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.07);
    border-radius: var(--radius-full);
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--text-sm);
    transition:
        background-color var(--transition-fast),
        color var(--transition-fast),
        transform var(--transition-fast);
}

.footer__social-link:hover {
    background-color: var(--color-primary);
    color: #fff;
    transform: translateY(-2px);
}

/* === Footer alt === */
.footer__bottom {
    padding-top: var(--space-6);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.35);
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
}

.footer__domain {
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.25);
}

/* === Responsive === */
@media (max-width: 768px) {
    .footer__grid {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }

    .footer__description {
        max-width: 100%;
    }

    .footer__bottom {
        text-align: center;
    }
}


/* ------------------------------------------------------------
   14. WHATSAPP SABIT BUTON
   ------------------------------------------------------------ */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: var(--z-toast);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #fff;
    font-size: 28px;
    border-radius: 50%;
    box-shadow:
        0 4px 16px rgba(37, 211, 102, 0.4),
        0 2px 6px rgba(0, 0, 0, 0.15);
    transition:
        transform var(--transition-normal),
        box-shadow var(--transition-normal),
        background-color var(--transition-normal);
    animation: whatsapp-float-in 0.6s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
    animation-delay: 1.2s;
    opacity: 0;
    transform: scale(0);
}

.whatsapp-float:hover {
    transform: scale(1.08);
    background-color: #20bd5a;
    box-shadow:
        0 6px 24px rgba(37, 211, 102, 0.5),
        0 4px 10px rgba(0, 0, 0, 0.2);
}

.whatsapp-float:active {
    transform: scale(0.95);
}

/* Dışa doğru yayılan pulse halkası */
.whatsapp-float__pulse {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, 0.5);
    animation: whatsapp-pulse 2s ease-out infinite;
}

@keyframes whatsapp-float-in {
    from {
        opacity: 0;
        transform: scale(0);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes whatsapp-pulse {
    0% {
        transform: scale(0.95);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 52px;
        height: 52px;
        font-size: 24px;
    }
}


/* ------------------------------------------------------------
   15. RESPONSIVE GENEL AYARLAR
   ------------------------------------------------------------ */
@media (max-width: 1200px) {
    :root {
        --container-padding: 1.25rem;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding-y: var(--section-padding-y-mobile);
        --header-height: 4rem;
    }

    .section__title {
        font-size: var(--text-3xl);
    }

    .hero__title {
        font-size: var(--text-4xl);
    }

    .hero__subtitle {
        font-size: var(--text-xs);
    }

    .hero__description {
        font-size: var(--text-base);
    }

    .btn {
        padding: 0.75rem 1.75rem;
        font-size: var(--text-xs);
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: var(--text-3xl);
    }

    .hero__actions {
        flex-direction: column;
        width: 100%;
    }

    .hero__actions .btn {
        width: 100%;
    }

    .section__title {
        font-size: var(--text-2xl);
    }

    .services__grid {
        grid-template-columns: 1fr;
    }

    .gallery__grid {
        grid-template-columns: 1fr 1fr;
    }
}


/* ------------------------------------------------------------
   15. ACCESSIBILITY (ERİŞİLEBİLİRLİK)
   ------------------------------------------------------------ */
:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Reduced motion tercihi */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}


/* === Service Card Detail Link === */
.service-card__title-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.service-card__title-link:hover {
  color: var(--color-primary);
}
.service-card__btn--detail {
  background: transparent !important;
  color: var(--color-primary) !important;
  border: 1px solid var(--color-primary) !important;
  margin-right: 0.5rem;
  display: inline-block;
}
.service-card__btn--detail:hover {
  background: var(--color-primary) !important;
  color: #fff !important;
}
.service-card__btn {
  display: inline-block;
}

/* === Nav Brand Logo Size (tüm alt sayfalar) === */
.nav__brand {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    gap: 0.6rem;
    text-decoration: none;
    color: var(--color-text);
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
    transition: color var(--transition-fast);
    flex-shrink: 0;
}
.nav__brand:hover {
    color: var(--color-primary);
}
.nav__brand img.nav__logo {
    width: 36px !important;
    height: 36px !important;
    max-width: 36px !important;
    max-height: 36px !important;
    object-fit: contain;
    border-radius: 4px;
    flex-shrink: 0;
    display: block;
}

/* === Service/Blog Page Nav Alignment === */
.nav {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 1.5rem;
    min-height: 56px;
    padding: 0.6rem 0;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}
.nav > * {
    flex-shrink: 0;
}
.nav__link {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.4rem 0.6rem;
    transition: color var(--transition-fast);
    white-space: nowrap;
}
.nav__link:hover {
    color: var(--color-primary);
}
.nav > * {
    align-self: center;
}

/* === Service/Blog Hero Section === */
section[style*="background:linear-gradient"] {
    padding: 5rem 0 4rem;
    text-align: center;
}
section[style*="background:linear-gradient"] h1 {
    margin: 0.5rem 0 1rem;
    line-height: 1.2;
}
section[style*="background:linear-gradient"] p {
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.6;
}

/* === Content Section Spacing === */
section[style*="max-width:800px"] {
    padding: 2.5rem 1.5rem;
}
section[style*="max-width:800px"] h2 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--color-primary-light, #c97a8c);
    padding-bottom: 0.5rem;
}
section[style*="max-width:800px"] h3 {
    margin-top: 1.2rem;
    margin-bottom: 0.6rem;
    color: var(--color-primary-dark, #8f3d51);
}
section[style*="max-width:800px"] p,
section[style*="max-width:800px"] ul,
section[style*="max-width:800px"] ol {
    margin-bottom: 1rem;
    line-height: 1.75;
}
section[style*="max-width:800px"] ul li,
section[style*="max-width:800px"] ol li {
    margin-bottom: 0.4rem;
}