/*
 * Belleza Güzellik & Kuaför — WordPress Tema Ana Stil Dosyası
 * Hazırlayan: Sevde (Web Tasarımcı) · Yasko Stüdyo · 2026-06-25
 *
 * SCSS 7-1 yapısına göre bölümlenmiş, elle derlenmiş.
 * Tüm renkler/fontlar var(--belleza-*) CSS değişkenleri ile.
 * Yusuf'un wp_add_inline_style() :root override'ları bu değişkenleri ezer.
 *
 * Bölümler:
 *  1. ABSTRACTS  — :root CSS değişken varsayılanları
 *  2. BASE       — reset, tipografi
 *  3. COMPONENTS — butonlar, kartlar, formlar, slider
 *  4. LAYOUT     — header, footer, grid, nav
 *  5. PAGES      — front-page sections, inner pages
 *  6. RESPONSIVE — media queries (mobile-first son katman)
 */

/* =============================================================================
   1. ABSTRACTS — CSS Değişken Varsayılanları (:root)
   Yusuf'un wp_add_inline_style() bu bloku override edecek — burada sadece
   demo varsayılanlarını veriyoruz. Asla sabit hex kullanma, var() kullan.
   ============================================================================= */
:root {
    /* Renk Paleti — KİLİTLİ SÖZLEŞME: --belleza-* isimlendirme */
    --belleza-primary:    #7B2D42;      /* bordo — ana vurgu */
    --belleza-accent:     #9E3D55;      /* bordo açık — hover */
    --belleza-blush:      #E8C4CE;      /* soluk pembe */
    --belleza-cream:      #FAF6F1;      /* krem zemin */
    --belleza-ivory:      #F3EDE4;      /* fildişi — kart arka planı */
    --belleza-dark:       #2C1A22;      /* koyu — metin/footer */
    --belleza-text:       #5A3F48;      /* orta ton metin */

    /* Font Aileler */
    --belleza-font-head:  'Playfair Display', Georgia, serif;
    --belleza-font-body:  'Poppins', 'Segoe UI', sans-serif;

    /* Ek Renk Token (sözleşme dışı ama iç kullanım için) */
    --belleza-rose-gold:  #B7717F;
    --belleza-text-light: #8E7078;
    --belleza-white:      #FFFFFF;
    --belleza-divider:    #E9DDD8;

    /* Boyut & Boşluk */
    --belleza-container:  1200px;
    --belleza-pad:        clamp(1rem, 4vw, 2rem);
    --belleza-radius-sm:  6px;
    --belleza-radius-md:  12px;
    --belleza-radius-lg:  24px;

    /* Gölgeler */
    --belleza-shadow-sm:  0 2px 8px rgba(44, 26, 34, 0.08);
    --belleza-shadow-md:  0 6px 24px rgba(44, 26, 34, 0.12);
    --belleza-shadow-lg:  0 16px 48px rgba(44, 26, 34, 0.16);

    /* Geçiş */
    --belleza-transition: 0.3s ease;
}

/* =============================================================================
   2. BASE — Reset & Temel Tipografi
   ============================================================================= */

/* --- 2.1 Reset --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--belleza-font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--belleza-dark);
    background-color: var(--belleza-cream);
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--belleza-transition);
}

ul, ol {
    list-style: none;
}

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

/* --- 2.2 Erişilebilirlik --- */
.skip-link,
.screen-reader-text {
    position: absolute;
    top: -100%;
    left: 0;
    background: var(--belleza-primary);
    color: var(--belleza-white);
    padding: 0.5rem 1rem;
    z-index: 9999;
    font-size: 0.875rem;
    transition: top var(--belleza-transition);
}

.skip-link:focus,
.screen-reader-text:focus {
    top: 0;
}

:focus-visible {
    outline: 2px solid var(--belleza-rose-gold);
    outline-offset: 3px;
    border-radius: 3px;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

/* --- 2.3 Tipografi --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--belleza-font-head);
    line-height: 1.25;
    color: var(--belleza-dark);
}

.section-tag {
    display: inline-block;
    font-family: var(--belleza-font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--belleza-rose-gold);
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-lead {
    font-size: 1.0625rem;
    color: var(--belleza-text);
    max-width: 52ch;
    margin-inline: auto;
    margin-bottom: 3rem;
}

/* =============================================================================
   3. COMPONENTS — Butonlar, Kartlar, Formlar
   ============================================================================= */

/* --- 3.1 Yardımcı Sınıflar --- */
.container {
    max-width: var(--belleza-container);
    margin-inline: auto;
    padding-inline: var(--belleza-pad);
    width: 100%;
}

.section-pad {
    padding-block: clamp(4rem, 8vw, 7rem);
}

.section-pad--sm {
    padding-block: clamp(2.5rem, 5vw, 4rem);
}

.text-center { text-align: center; }

/* --- 3.2 Butonlar --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8125rem 2rem;
    font-family: var(--belleza-font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    border-radius: var(--belleza-radius-sm);
    transition: background-color var(--belleza-transition),
                color var(--belleza-transition),
                box-shadow var(--belleza-transition),
                transform var(--belleza-transition);
    white-space: nowrap;
    cursor: pointer;
    text-decoration: none;
}

.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
    background-color: var(--belleza-primary);
    color: var(--belleza-white);
    border: 1.5px solid var(--belleza-primary);
}
.btn-primary:hover {
    background-color: var(--belleza-accent);
    border-color: var(--belleza-accent);
    box-shadow: var(--belleza-shadow-md);
}

.btn-outline {
    border: 1.5px solid var(--belleza-primary);
    color: var(--belleza-primary);
    background: transparent;
}
.btn-outline:hover {
    background-color: var(--belleza-primary);
    color: var(--belleza-white);
}

.btn-white {
    background-color: var(--belleza-white);
    color: var(--belleza-primary);
    border: 1.5px solid transparent;
}
.btn-white:hover {
    background-color: var(--belleza-cream);
    box-shadow: var(--belleza-shadow-md);
}

.btn-sm { padding: 0.5625rem 1.25rem; font-size: 0.875rem; }

/* Yusuf'un stub sınıfları ile uyum (belleza-btn-primary) */
.belleza-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8125rem 2rem;
    font-family: var(--belleza-font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    border-radius: var(--belleza-radius-sm);
    background-color: var(--belleza-primary);
    color: var(--belleza-white);
    border: 1.5px solid var(--belleza-primary);
    transition: background-color var(--belleza-transition), transform var(--belleza-transition);
    text-decoration: none;
    cursor: pointer;
}
.belleza-btn-primary:hover {
    background-color: var(--belleza-accent);
    transform: translateY(-2px);
}
.belleza-btn--sm { padding: 0.5rem 1.125rem; font-size: 0.875rem; }
.belleza-btn--lg { padding: 1rem 2.5rem; font-size: 1.0625rem; }

/* --- 3.3 Servis Kartı --- */
.service-card {
    background-color: var(--belleza-cream);
    border: 1px solid var(--belleza-divider);
    border-radius: var(--belleza-radius-md);
    padding: 2rem 1.75rem;
    transition: box-shadow var(--belleza-transition),
                transform var(--belleza-transition),
                border-color var(--belleza-transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--belleza-primary), var(--belleza-rose-gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--belleza-transition);
}

.service-card:hover {
    box-shadow: var(--belleza-shadow-md);
    transform: translateY(-4px);
    border-color: var(--belleza-blush);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
    width: 52px; height: 52px;
    background-color: var(--belleza-ivory);
    border-radius: var(--belleza-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: background-color var(--belleza-transition);
}
.service-card:hover .service-icon { background-color: var(--belleza-blush); }
.service-icon svg { width: 26px; height: 26px; color: var(--belleza-primary); }

.service-name {
    font-family: var(--belleza-font-head);
    font-size: 1.1875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--belleza-dark);
}

.service-desc {
    font-size: 0.9rem;
    color: var(--belleza-text);
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.service-price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}
.service-price .amount {
    font-family: var(--belleza-font-head);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--belleza-primary);
}
.service-price .unit {
    font-size: 0.8125rem;
    color: var(--belleza-text-light);
}

/* --- 3.4 Ekip Kartı (ana sayfa önizleme) --- */
.team-card { text-align: center; position: relative; }

.team-card-img {
    position: relative;
    border-radius: var(--belleza-radius-lg);
    overflow: hidden;
    aspect-ratio: 3/4;
    margin-bottom: 1.25rem;
    box-shadow: var(--belleza-shadow-sm);
}
.team-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.5s ease;
}
.team-card:hover .team-card-img img { transform: scale(1.04); }

.team-card-social {
    position: absolute; inset: 0;
    background: rgba(123, 45, 66, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    opacity: 0;
    transition: opacity var(--belleza-transition);
    border-radius: var(--belleza-radius-lg);
}
.team-card:hover .team-card-social { opacity: 1; }

.team-card-social a {
    width: 36px; height: 36px;
    background: var(--belleza-white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--belleza-primary);
    transition: transform var(--belleza-transition);
}
.team-card-social a:hover { transform: scale(1.1); }
.team-card-social svg { width: 16px; height: 16px; }

.team-name {
    font-family: var(--belleza-font-head);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--belleza-dark);
}
.team-role { font-size: 0.875rem; color: var(--belleza-rose-gold); font-weight: 500; }

/* --- 3.5 Ekip Tam Sayfa Kartı --- */
.team-full-card {
    background: var(--belleza-white);
    border-radius: var(--belleza-radius-md);
    overflow: hidden;
    box-shadow: var(--belleza-shadow-sm);
    border: 1px solid var(--belleza-divider);
    transition: box-shadow var(--belleza-transition), transform var(--belleza-transition);
}
.team-full-card:hover {
    box-shadow: var(--belleza-shadow-md);
    transform: translateY(-3px);
}
.team-full-img { aspect-ratio: 3/4; overflow: hidden; }
.team-full-img img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: top;
    transition: transform 0.5s ease;
}
.team-full-card:hover .team-full-img img { transform: scale(1.04); }
.team-full-body { padding: 1.5rem; }
.team-full-name { font-family: var(--belleza-font-head); font-size: 1.25rem; margin-bottom: 0.25rem; color: var(--belleza-dark); }
.team-full-role { font-size: 0.875rem; color: var(--belleza-rose-gold); font-weight: 600; margin-bottom: 0.75rem; }
.team-full-bio { font-size: 0.9rem; color: var(--belleza-text); line-height: 1.65; margin-bottom: 1rem; }

.team-expertise { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1rem; }
.expertise-tag {
    font-size: 0.75rem; font-weight: 500;
    background-color: var(--belleza-ivory);
    color: var(--belleza-primary);
    padding: 0.25rem 0.6rem;
    border-radius: 100px;
    border: 1px solid var(--belleza-blush);
}

/* --- 3.6 Testimonial Kartı --- */
.testimonial-inner {
    background: var(--belleza-white);
    border-radius: var(--belleza-radius-md);
    padding: 2rem;
    height: 100%;
    box-shadow: var(--belleza-shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border: 1px solid var(--belleza-divider);
}

.testimonial-stars { display: flex; gap: 3px; color: #F59E0B; }
.testimonial-stars svg { width: 16px; height: 16px; }

.testimonial-quote {
    font-size: 0.9375rem;
    color: var(--belleza-text);
    line-height: 1.7;
    flex: 1;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    border-top: 1px solid var(--belleza-divider);
    padding-top: 1rem;
}

.testimonial-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid var(--belleza-blush);
}

.testimonial-name { font-family: var(--belleza-font-head); font-size: 1rem; font-weight: 600; color: var(--belleza-dark); }
.testimonial-meta { font-size: 0.8125rem; color: var(--belleza-text-light); }

/* --- 3.7 Slider Kontrolleri --- */
.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2.5rem;
}

.slider-btn {
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 1.5px solid var(--belleza-primary);
    color: var(--belleza-primary);
    display: flex; align-items: center; justify-content: center;
    transition: background-color var(--belleza-transition), color var(--belleza-transition);
    background: transparent;
    cursor: pointer;
}
.slider-btn:hover,
.slider-btn:focus-visible {
    background-color: var(--belleza-primary);
    color: var(--belleza-white);
}
.slider-btn svg { width: 18px; height: 18px; }

.slider-dots { display: flex; gap: 6px; }
.slider-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background-color: var(--belleza-blush);
    cursor: pointer;
    transition: background-color var(--belleza-transition), transform var(--belleza-transition);
    border: none;
}
.slider-dot.is-active {
    background-color: var(--belleza-primary);
    transform: scale(1.3);
}

/* --- 3.8 Fiyat Listesi --- */
.price-section { margin-bottom: 3rem; }

.price-section-title {
    font-family: var(--belleza-font-head);
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--belleza-primary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--belleza-divider);
}
.price-section-title svg { width: 22px; height: 22px; color: var(--belleza-rose-gold); }

.price-list { display: flex; flex-direction: column; gap: 0; }

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0.875rem 0;
    border-bottom: 1px solid var(--belleza-divider);
    gap: 1rem;
}
.price-row:last-child { border-bottom: none; }

.price-item-name { font-size: 0.9375rem; color: var(--belleza-dark); }
.price-item-detail { font-size: 0.8125rem; color: var(--belleza-text-light); margin-top: 0.125rem; }
.price-item-dots {
    flex: 1;
    height: 1px;
    border-top: 1px dashed var(--belleza-divider);
    margin-inline: 0.75rem;
    align-self: center;
}
.price-item-price {
    font-family: var(--belleza-font-head);
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--belleza-primary);
    white-space: nowrap;
}

/* --- 3.9 Form --- */
.contact-form {
    background: var(--belleza-white);
    border-radius: var(--belleza-radius-md);
    padding: 2.5rem;
    box-shadow: var(--belleza-shadow-sm);
    border: 1px solid var(--belleza-divider);
}

.form-title {
    font-family: var(--belleza-font-head);
    font-size: 1.5rem;
    margin-bottom: 1.75rem;
    color: var(--belleza-dark);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.375rem; margin-bottom: 1rem; }
.form-group.full { grid-column: 1 / -1; }

.form-group label { font-size: 0.875rem; font-weight: 500; color: var(--belleza-text); }
.form-group label span { color: var(--belleza-primary); }

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.9375rem;
    font-family: var(--belleza-font-body);
    color: var(--belleza-dark);
    background: var(--belleza-cream);
    border: 1.5px solid var(--belleza-divider);
    border-radius: var(--belleza-radius-sm);
    transition: border-color var(--belleza-transition), box-shadow var(--belleza-transition);
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--belleza-rose-gold);
    box-shadow: 0 0 0 3px rgba(183, 113, 127, 0.12);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select { appearance: none; cursor: pointer; }

/* Harita placeholder */
.map-placeholder,
.map-embed {
    border-radius: var(--belleza-radius-sm);
    overflow: hidden;
    height: 140px;
    margin-top: 1rem;
    background: rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.35);
    border: 1px dashed rgba(255,255,255,0.12);
    gap: 0.5rem;
}
.map-embed {
    height: 320px;
    background: var(--belleza-ivory);
    color: var(--belleza-text-light);
    border: 1px solid var(--belleza-divider);
    flex-direction: column;
}
.map-embed svg { width: 40px; height: 40px; color: var(--belleza-primary); opacity: 0.4; }

/* --- 3.10 Blog / Post Kartları --- */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.post-card {
    border: 1px solid var(--belleza-divider);
    border-radius: var(--belleza-radius-md);
    overflow: hidden;
    background: var(--belleza-white);
    transition: box-shadow var(--belleza-transition), transform var(--belleza-transition);
}
.post-card:hover { box-shadow: var(--belleza-shadow-md); transform: translateY(-3px); }
.post-card__thumbnail img { width: 100%; height: 200px; object-fit: cover; display: block; }
.post-card__body { padding: 1.5rem; }
.post-card__title { font-size: 1.125rem; margin-bottom: 0.5rem; }
.post-card__title a { color: var(--belleza-dark); transition: color var(--belleza-transition); }
.post-card__title a:hover { color: var(--belleza-primary); }
.post-card__excerpt { font-size: 0.9rem; color: var(--belleza-text); margin-bottom: 1rem; }
.post-card__footer { margin-top: 1rem; }

/* =============================================================================
   4. LAYOUT — Header, Footer, Nav
   ============================================================================= */

/* --- 4.1 Site Header --- */
.site-header,
#masthead {
    position: sticky;
    top: 0;
    z-index: 900;
    background-color: var(--belleza-white);
    border-bottom: 1px solid var(--belleza-divider);
    box-shadow: var(--belleza-shadow-sm);
    transition: box-shadow var(--belleza-transition), background-color var(--belleza-transition);
}

.site-header.is-scrolled { box-shadow: var(--belleza-shadow-md); }

.site-header__inner,
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 1.5rem;
}

/* --- 4.2 Logo --- */
.site-logo,
.site-header__logo-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
    text-decoration: none;
    color: inherit;
}

.logo-icon { width: 36px; height: 36px; }

.logo-text {
    font-family: var(--belleza-font-head);
    font-size: 1.625rem;
    font-weight: 700;
    color: var(--belleza-primary);
    letter-spacing: -0.01em;
    display: block;
}

.logo-sub {
    font-family: var(--belleza-font-body);
    font-size: 0.625rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--belleza-text-light);
    display: block;
    line-height: 1;
    margin-top: -2px;
}

/* WP custom logo img */
.site-header__logo .custom-logo-link img {
    max-height: 48px;
    width: auto;
}

/* --- 4.3 Ana Navigasyon --- */
.nav-primary ul,
.nav-menu--primary,
.site-header__nav ul {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-primary a,
.nav-menu--primary a,
.site-header__nav a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--belleza-text);
    padding: 0.4rem 0.75rem;
    border-radius: var(--belleza-radius-sm);
    transition: color var(--belleza-transition), background-color var(--belleza-transition);
    display: block;
}

.nav-primary a:hover,
.nav-primary a[aria-current="page"],
.nav-menu--primary a:hover,
.nav-menu--primary .current-menu-item > a,
.nav-menu--primary .current_page_item > a {
    color: var(--belleza-primary);
    background-color: var(--belleza-ivory);
}

/* --- 4.4 Header Eylemler --- */
.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

/* --- 4.5 Hamburger --- */
.hamburger,
.site-header__hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px; height: 40px;
    padding: 8px;
    border-radius: var(--belleza-radius-sm);
    transition: background-color var(--belleza-transition);
    flex-shrink: 0;
    background: none;
    border: none;
    cursor: pointer;
}
.hamburger:hover,
.site-header__hamburger:hover { background-color: var(--belleza-ivory); }

.hamburger span,
.hamburger-bar {
    display: block;
    height: 2px;
    background-color: var(--belleza-primary);
    border-radius: 2px;
    transition: transform var(--belleza-transition), opacity var(--belleza-transition), width var(--belleza-transition);
    transform-origin: center;
}
.hamburger span:nth-child(2) { width: 75%; }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; width: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --- 4.6 Mobil Menü Overlay --- */
.mobile-nav {
    display: none;
    position: fixed;
    inset: 72px 0 0 0;
    background-color: var(--belleza-white);
    z-index: 800;
    padding: 2rem var(--belleza-pad);
    overflow-y: auto;
    flex-direction: column;
    gap: 0.5rem;
    border-top: 1px solid var(--belleza-divider);
}
.mobile-nav.is-open { display: flex; }

.mobile-nav a {
    display: block;
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--belleza-text);
    padding: 0.875rem 1rem;
    border-radius: var(--belleza-radius-sm);
    border-bottom: 1px solid var(--belleza-divider);
    transition: color var(--belleza-transition), background-color var(--belleza-transition);
}
.mobile-nav a:hover {
    color: var(--belleza-primary);
    background-color: var(--belleza-ivory);
}
.mobile-nav .btn { margin-top: 1rem; justify-content: center; width: 100%; }

/* --- 4.7 Site Footer --- */
.site-footer,
#colophon {
    background-color: var(--belleza-dark);
    color: rgba(255,255,255,0.70);
    padding-top: clamp(3rem, 6vw, 5rem);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
}

.site-footer__inner { /* Yusuf stub uyum */ }

/* Footer logo */
.footer-brand .logo-text,
.site-footer__brand .logo-text { color: var(--belleza-blush); }
.footer-brand .logo-sub,
.site-footer__brand .logo-sub { color: rgba(255,255,255,0.40); }

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    max-width: 30ch;
}

.social-links { display: flex; gap: 0.625rem; }
.social-link {
    width: 36px; height: 36px;
    border-radius: var(--belleza-radius-sm);
    background: rgba(255,255,255,0.08);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.65);
    transition: background-color var(--belleza-transition), color var(--belleza-transition);
}
.social-link:hover {
    background-color: var(--belleza-rose-gold);
    color: var(--belleza-white);
}
.social-link svg { width: 16px; height: 16px; }

.footer-heading {
    font-family: var(--belleza-font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--belleza-blush);
    margin-bottom: 1.25rem;
}

.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { font-size: 0.9rem; color: rgba(255,255,255,0.60); transition: color var(--belleza-transition); }
.footer-links a:hover { color: var(--belleza-blush); }

/* Yusuf'un footer nav sınıfı */
.nav-menu--footer a { font-size: 0.9rem; color: rgba(255,255,255,0.60); transition: color var(--belleza-transition); display: block; padding: 0.25rem 0; }
.nav-menu--footer a:hover { color: var(--belleza-blush); }

.footer-contact-item {
    display: flex;
    gap: 0.625rem;
    font-size: 0.875rem;
    margin-bottom: 0.875rem;
    align-items: flex-start;
}
.footer-contact-item svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px; color: var(--belleza-rose-gold); }
.footer-contact-item a { color: rgba(255,255,255,0.80); }
.footer-contact-item a:hover { color: var(--belleza-blush); }

.footer-hours {
    background: rgba(255,255,255,0.05);
    border-radius: var(--belleza-radius-sm);
    padding: 1rem;
    font-size: 0.875rem;
}
.footer-hours-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding-block: 0.3rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-hours-row:last-child { border-bottom: none; }
.footer-hours-day { color: rgba(255,255,255,0.50); }
.footer-hours-time { color: var(--belleza-blush); font-weight: 500; }

.footer-bottom,
.site-footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-block: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 0.8125rem;
}
.footer-bottom a, .site-footer__bottom a { color: rgba(255,255,255,0.45); transition: color var(--belleza-transition); }
.footer-bottom a:hover, .site-footer__bottom a:hover { color: var(--belleza-blush); }

.site-footer__copyright a { color: var(--belleza-blush); }

/* =============================================================================
   5. PAGES — Sayfa Özel Stilleri
   ============================================================================= */

/* --- 5.1 Hero (Ana Sayfa) --- */
.hero {
    position: relative;
    min-height: clamp(520px, 80vh, 800px);
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--belleza-dark);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../img/hero-salon.jpg');
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
    will-change: transform;
}
.hero-bg::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(
        105deg,
        rgba(44, 26, 34, 0.80) 0%,
        rgba(123, 45, 66, 0.55) 55%,
        rgba(44, 26, 34, 0.30) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 640px;
    color: var(--belleza-white);
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--belleza-blush);
    margin-bottom: 1.25rem;
}
.hero-eyebrow::before {
    content: '';
    display: inline-block;
    width: 32px; height: 1.5px;
    background-color: var(--belleza-rose-gold);
}

.hero-title {
    font-family: var(--belleza-font-head);
    font-size: clamp(2.25rem, 6vw, 4rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--belleza-white);
    margin-bottom: 1.25rem;
}
.hero-title em { font-style: italic; color: var(--belleza-blush); }

.hero-desc {
    font-size: 1.0625rem;
    color: rgba(255,255,255,0.80);
    margin-bottom: 2.25rem;
    max-width: 46ch;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.5);
    font-size: 0.6875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: scrollBounce 2s ease-in-out infinite;
}
.hero-scroll svg { width: 20px; height: 20px; }

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(6px); }
}

/* --- 5.2 Hizmetler Bölümü --- */
.services { background-color: var(--belleza-white); }
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}

/* --- 5.3 Galeri / Önce-Sonra --- */
.gallery { background-color: var(--belleza-ivory); }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
.gallery-item {
    border-radius: var(--belleza-radius-md);
    overflow: hidden;
    aspect-ratio: 4/3;
    position: relative;
}
.gallery-item:first-child { grid-column: span 2; aspect-ratio: 16/7; }
.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.04); }

.gallery-item-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(44,26,34,0.5) 0%, transparent 60%);
    opacity: 0;
    transition: opacity var(--belleza-transition);
    display: flex;
    align-items: flex-end;
    padding: 1.25rem;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-label { color: var(--belleza-white); font-size: 0.875rem; font-weight: 500; }

/* Before/After Slider */
.before-after-wrap {
    position: relative;
    border-radius: var(--belleza-radius-md);
    overflow: hidden;
    user-select: none;
    aspect-ratio: 16/9;
    max-width: 800px;
    margin-inline: auto;
    margin-top: 2rem;
    box-shadow: var(--belleza-shadow-lg);
}
.ba-img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
}
.ba-after { clip-path: inset(0 50% 0 0); z-index: 1; }
.ba-slider-line {
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 3px; height: 100%;
    background: var(--belleza-white);
    z-index: 3;
    pointer-events: none;
}
.ba-handle {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 44px; height: 44px;
    background: var(--belleza-white);
    border-radius: 50%;
    z-index: 4;
    box-shadow: var(--belleza-shadow-md);
    display: flex; align-items: center; justify-content: center;
    cursor: ew-resize;
    touch-action: none;
}
.ba-handle svg { width: 20px; height: 20px; color: var(--belleza-primary); }
.ba-label {
    position: absolute;
    top: 1rem;
    padding: 0.3125rem 0.75rem;
    background: rgba(44,26,34,0.65);
    backdrop-filter: blur(4px);
    color: var(--belleza-white);
    font-size: 0.75rem; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase;
    border-radius: 100px;
    z-index: 2;
}
.ba-label-before { left: 1rem; }
.ba-label-after  { right: 1rem; z-index: 3; }

/* --- 5.4 Ekip Bölümü --- */
.team { background-color: var(--belleza-white); }
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 2rem;
}
.team-full-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

/* --- 5.5 İstatistik Şeridi --- */
.stats-strip {
    background: linear-gradient(135deg, var(--belleza-primary) 0%, var(--belleza-dark) 100%);
    color: var(--belleza-white);
    padding-block: clamp(3rem, 5vw, 4.5rem);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 2rem;
    text-align: center;
}
.stat-item { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.stat-number {
    font-family: var(--belleza-font-head);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--belleza-blush);
    line-height: 1;
}
.stat-plus { font-size: 0.7em; vertical-align: super; color: var(--belleza-rose-gold); }
.stat-label { font-size: 0.9rem; color: rgba(255,255,255,0.75); letter-spacing: 0.03em; }
.stat-divider { width: 1px; height: 60px; background: rgba(255,255,255,0.15); margin: auto; }

/* --- 5.6 Testimonial Slider --- */
.testimonials { background-color: var(--belleza-cream); }
.testimonial-slider-wrap { position: relative; overflow: hidden; }
.testimonial-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}
.testimonial-card {
    flex: 0 0 100%;
    padding: 0 clamp(0px, 4vw, 3rem);
}

/* --- 5.7 CTA Bandı --- */
.cta-band {
    background: linear-gradient(105deg, var(--belleza-ivory) 0%, var(--belleza-blush) 100%);
    border-top: 1px solid var(--belleza-divider);
    border-bottom: 1px solid var(--belleza-divider);
}
.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}
.cta-text h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); color: var(--belleza-dark); margin-bottom: 0.5rem; }
.cta-text p { color: var(--belleza-text); font-size: 1rem; }
.cta-actions { display: flex; gap: 1rem; align-items: center; flex-shrink: 0; flex-wrap: wrap; }
.cta-tel {
    font-family: var(--belleza-font-head);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--belleza-primary);
    display: flex; align-items: center; gap: 0.4rem;
}
.cta-tel svg { width: 20px; height: 20px; }

/* --- 5.8 İç Sayfa Hero --- */
.page-hero {
    background: linear-gradient(135deg, var(--belleza-primary) 0%, var(--belleza-dark) 100%);
    color: var(--belleza-white);
    padding-block: clamp(3rem, 7vw, 5rem);
}
.page-hero-title {
    font-family: var(--belleza-font-head);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--belleza-white);
    margin-bottom: 0.75rem;
}
.page-hero-lead { color: rgba(255,255,255,0.75); max-width: 50ch; margin-top: 0.5rem; }

/* Breadcrumb */
.breadcrumb {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.60);
    margin-bottom: 0.75rem;
}
.breadcrumb a { color: var(--belleza-blush); transition: color var(--belleza-transition); }
.breadcrumb a:hover { color: var(--belleza-white); }
.breadcrumb-sep { color: rgba(255,255,255,0.30); }

/* --- 5.9 Tekil Post / Arşiv --- */
.single-post { max-width: 780px; margin-inline: auto; }
.single-post__header { margin-bottom: 2rem; }
.single-post__thumbnail { border-radius: var(--belleza-radius-md); overflow: hidden; margin-bottom: 1.5rem; }
.single-post__thumbnail img { width: 100%; height: auto; }
.single-post__title { font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: 0.75rem; color: var(--belleza-dark); }
.single-post__meta { font-size: 0.875rem; color: var(--belleza-text-light); margin-bottom: 1rem; }
.single-post__content { line-height: 1.8; }
.single-post__content p { margin-bottom: 1.25rem; }
.single-post__content h2, .single-post__content h3 { margin-top: 2rem; margin-bottom: 0.75rem; }
.single-post__tags { margin-top: 2rem; font-size: 0.875rem; }
.single-post__tags a { color: var(--belleza-primary); }

.entry-meta { font-size: 0.875rem; color: var(--belleza-text-light); }
.page-links { margin-top: 2rem; font-size: 0.9rem; }

.post-navigation { display: flex; justify-content: space-between; gap: 2rem; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--belleza-divider); }
.nav-subtitle { display: block; font-size: 0.75rem; color: var(--belleza-text-light); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.25rem; }
.nav-title { font-family: var(--belleza-font-head); font-size: 1.0625rem; color: var(--belleza-primary); }

/* Arşiv başlık */
.archive-header, .search-header { margin-bottom: 2.5rem; }
.archive-title, .search-title { font-size: clamp(1.5rem, 3vw, 2rem); color: var(--belleza-dark); }
.search-title span { color: var(--belleza-primary); }
.archive-description { font-size: 0.9375rem; color: var(--belleza-text); margin-top: 0.5rem; }

/* No results */
.no-results { text-align: center; padding: 4rem 0; }
.no-results .page-title { margin-bottom: 1rem; color: var(--belleza-dark); }

/* --- 5.10 404 Sayfası --- */
.error-404 { text-align: center; padding: 5rem 0; }
.error-404__header { margin-bottom: 2rem; }
.error-404__title {
    font-family: var(--belleza-font-head);
    font-size: clamp(5rem, 15vw, 9rem);
    color: var(--belleza-primary);
    opacity: 0.15;
    line-height: 1;
    margin-bottom: 0;
}
.error-404__subtitle {
    font-family: var(--belleza-font-head);
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    color: var(--belleza-dark);
    margin-top: -0.5rem;
}
.error-404__content { max-width: 480px; margin-inline: auto; }
.error-404__content p { color: var(--belleza-text); margin-bottom: 1.5rem; }

/* WP Arama Formu */
.search-form { display: flex; gap: 0.5rem; max-width: 480px; margin-inline: auto; margin-top: 1.5rem; }
.search-form .search-field {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--belleza-divider);
    border-radius: var(--belleza-radius-sm);
    font-family: var(--belleza-font-body);
    font-size: 0.9375rem;
    background: var(--belleza-white);
    color: var(--belleza-dark);
    outline: none;
}
.search-form .search-field:focus { border-color: var(--belleza-rose-gold); }
.search-form .search-submit {
    padding: 0.75rem 1.25rem;
    background: var(--belleza-primary);
    color: var(--belleza-white);
    border: none;
    border-radius: var(--belleza-radius-sm);
    font-family: var(--belleza-font-body);
    font-weight: 600;
    cursor: pointer;
    transition: background-color var(--belleza-transition);
}
.search-form .search-submit:hover { background: var(--belleza-accent); }

/* --- 5.11 İletişim Sayfası --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
}
.contact-info-box {
    background: var(--belleza-white);
    border-radius: var(--belleza-radius-md);
    padding: 2rem;
    box-shadow: var(--belleza-shadow-sm);
    border: 1px solid var(--belleza-divider);
}
.contact-info-item {
    display: flex;
    gap: 1rem;
    padding-block: 1.125rem;
    border-bottom: 1px solid var(--belleza-divider);
    align-items: flex-start;
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon {
    width: 44px; height: 44px;
    background: var(--belleza-ivory);
    border-radius: var(--belleza-radius-sm);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    color: var(--belleza-primary);
}
.contact-info-icon svg { width: 20px; height: 20px; }
.contact-info-label {
    font-size: 0.75rem; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--belleza-text-light); margin-bottom: 0.25rem;
}
.contact-info-value { font-size: 0.9375rem; color: var(--belleza-dark); font-weight: 500; }

.contact-hours-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; margin-top: 0.5rem; }
.contact-hours-table tr td { padding: 0.3rem 0; }
.contact-hours-table td:last-child { text-align: right; color: var(--belleza-primary); font-weight: 600; }

/* Booking fallback */
.belleza-booking-fallback {
    text-align: center;
    padding: 3rem;
    border: 2px dashed var(--belleza-divider);
    border-radius: var(--belleza-radius-md);
    color: var(--belleza-text-light);
}
.belleza-booking-fallback__text { margin-bottom: 1.5rem; }

/* --- 5.12 İletişim Sayfası — CF7 Form Stilleri (.wpcf7) --- */

/*
 * Contact Form 7 çıktısı .wpcf7 container'ı içinde gelir.
 * Temanın palet değişkenleriyle uyumlu hale getirildi.
 * Fallback statik form (.contact-static-form) ile aynı görünümü paylaşır.
 */

.wpcf7-form,
.contact-static-form {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* CF7 paragraf wrapper'ları → form-group görünümü */
.wpcf7-form p {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    margin-bottom: 1rem;
}

/* Etiketler */
.wpcf7-form label,
.contact-static-form label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--belleza-text);
    display: block;
    margin-bottom: 0.375rem;
}

/* Input, textarea, select — CF7 + statik */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="url"],
.wpcf7-form input[type="date"],
.wpcf7-form input[type="number"],
.wpcf7-form select,
.wpcf7-form textarea,
.contact-static-form input,
.contact-static-form select,
.contact-static-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.9375rem;
    font-family: var(--belleza-font-body);
    color: var(--belleza-dark);
    background: var(--belleza-cream);
    border: 1.5px solid var(--belleza-divider);
    border-radius: var(--belleza-radius-sm);
    transition: border-color var(--belleza-transition), box-shadow var(--belleza-transition);
    outline: none;
    appearance: none;
}

.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form input[type="tel"]:focus,
.wpcf7-form input[type="url"]:focus,
.wpcf7-form input[type="date"]:focus,
.wpcf7-form input[type="number"]:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus,
.contact-static-form input:focus,
.contact-static-form select:focus,
.contact-static-form textarea:focus {
    border-color: var(--belleza-rose-gold);
    box-shadow: 0 0 0 3px rgba(183, 113, 127, 0.12);
}

.wpcf7-form textarea,
.contact-static-form textarea {
    resize: vertical;
    min-height: 130px;
}

/* CF7 Gönder Butonu */
.wpcf7-form input[type="submit"],
.wpcf7-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    background: var(--belleza-primary);
    color: var(--belleza-white);
    font-family: var(--belleza-font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    border: none;
    border-radius: var(--belleza-radius-sm);
    cursor: pointer;
    transition: background-color var(--belleza-transition), transform var(--belleza-transition);
    width: 100%;
    margin-top: 0.5rem;
}

.wpcf7-form input[type="submit"]:hover,
.wpcf7-submit:hover {
    background: var(--belleza-accent);
    transform: translateY(-1px);
}

.wpcf7-form input[type="submit"]:focus-visible,
.wpcf7-submit:focus-visible {
    outline: 2px solid var(--belleza-primary);
    outline-offset: 3px;
}

/* CF7 Doğrulama Hata / Başarı Mesajları */
.wpcf7-response-output {
    margin: 1rem 0 0;
    padding: 0.875rem 1rem;
    border-radius: var(--belleza-radius-sm);
    font-size: 0.9rem;
    border: 1.5px solid transparent;
}

.wpcf7-mail-sent-ok {
    background: rgba(123, 45, 66, 0.06);
    border-color: var(--belleza-primary);
    color: var(--belleza-primary);
}

.wpcf7-mail-sent-ng,
.wpcf7-aborted {
    background: rgba(200, 50, 50, 0.06);
    border-color: #c83232;
    color: #c83232;
}

.wpcf7-spam-blocked,
.wpcf7-validation-errors {
    background: rgba(183, 113, 127, 0.08);
    border-color: var(--belleza-rose-gold);
    color: var(--belleza-accent);
}

/* Alan geçersiz işareti */
.wpcf7-not-valid {
    border-color: var(--belleza-accent) !important;
}

.wpcf7-not-valid-tip {
    font-size: 0.8125rem;
    color: var(--belleza-accent);
    margin-top: 0.25rem;
    display: block;
}

/* CF7 yükleniyor spinner kapla */
.wpcf7-form.submitting .wpcf7-submit { opacity: 0.7; pointer-events: none; }

/* --- 5.13 İletişim Sayfası Düzeni (card + harita) --- */

.contact-page { padding-block: clamp(3rem, 6vw, 5rem); }

.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 3rem;
    align-items: start;
}

/* Sol kolon — iletişim bilgileri */
.contact-aside {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Sağ kolon — form */
.contact-form-wrap {
    background: var(--belleza-white);
    border-radius: var(--belleza-radius-md);
    padding: 2.5rem;
    box-shadow: var(--belleza-shadow-sm);
    border: 1px solid var(--belleza-divider);
}

.contact-form-title {
    font-family: var(--belleza-font-head);
    font-size: 1.5rem;
    color: var(--belleza-dark);
    margin-bottom: 0.375rem;
}

.contact-form-desc {
    font-size: 0.9rem;
    color: var(--belleza-text-light);
    margin-bottom: 1.75rem;
}

/* Harita embed wrapper */
.contact-map-wrap {
    border-radius: var(--belleza-radius-md);
    overflow: hidden;
    height: 220px;
    border: 1px solid var(--belleza-divider);
    box-shadow: var(--belleza-shadow-sm);
}

.contact-map-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Harita yokken placeholder */
.contact-map-placeholder {
    width: 100%;
    height: 100%;
    background: var(--belleza-ivory);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: var(--belleza-text-light);
    font-size: 0.875rem;
}

.contact-map-placeholder svg {
    width: 36px;
    height: 36px;
    color: var(--belleza-primary);
    opacity: 0.35;
}

/* Sosyal medya bağlantıları (iletişim sayfası) */
.contact-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.25rem;
}

.contact-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--belleza-ivory);
    color: var(--belleza-primary);
    transition: background-color var(--belleza-transition), color var(--belleza-transition);
    border: 1px solid var(--belleza-divider);
}

.contact-social-link:hover,
.contact-social-link:focus-visible {
    background: var(--belleza-primary);
    color: var(--belleza-white);
}

.contact-social-link svg { width: 18px; height: 18px; }

/* --- 5.14 Randevu Sayfası --- */

.booking-page { padding-block: clamp(3rem, 6vw, 5rem); }

.booking-layout {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* Randevu formu ana alanı */
.booking-main-wrap {
    background: var(--belleza-white);
    border-radius: var(--belleza-radius-md);
    padding: 2.5rem;
    box-shadow: var(--belleza-shadow-sm);
    border: 1px solid var(--belleza-divider);
    min-height: 420px;
}

.booking-main-title {
    font-family: var(--belleza-font-head);
    font-size: 1.5rem;
    color: var(--belleza-dark);
    margin-bottom: 0.375rem;
}

.booking-main-desc {
    font-size: 0.9rem;
    color: var(--belleza-text-light);
    margin-bottom: 2rem;
}

/* Yan bilgi kartı */
.booking-aside {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.booking-info-card {
    background: var(--belleza-white);
    border-radius: var(--belleza-radius-md);
    padding: 1.75rem;
    box-shadow: var(--belleza-shadow-sm);
    border: 1px solid var(--belleza-divider);
}

.booking-info-card-title {
    font-family: var(--belleza-font-head);
    font-size: 1.125rem;
    color: var(--belleza-dark);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--belleza-divider);
}

.booking-hours-list { list-style: none; padding: 0; margin: 0; }
.booking-hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.4rem 0;
    font-size: 0.875rem;
    border-bottom: 1px solid var(--belleza-divider);
    gap: 1rem;
}
.booking-hours-item:last-child { border-bottom: none; }
.booking-hours-day { color: var(--belleza-text); }
.booking-hours-time { color: var(--belleza-primary); font-weight: 600; }

.booking-note {
    background: var(--belleza-ivory);
    border-left: 3px solid var(--belleza-rose-gold);
    border-radius: 0 var(--belleza-radius-sm) var(--belleza-radius-sm) 0;
    padding: 1rem 1.25rem;
    font-size: 0.875rem;
    color: var(--belleza-text);
    line-height: 1.6;
}

/* Amelia widget genel override — tema paleti */
.amelia-container,
.amelia-app-container {
    font-family: var(--belleza-font-body) !important;
}

/* =============================================================================
   6. RESPONSIVE — Media Queries
   ============================================================================= */

@media (min-width: 768px) {
    .testimonial-card { flex: 0 0 50%; }
}

@media (min-width: 1024px) {
    .testimonial-card { flex: 0 0 33.333%; }
}

@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-page-grid { grid-template-columns: 1fr; }
    .booking-layout { grid-template-columns: 1fr; }
    .booking-main-wrap { order: 1; }
    .booking-aside { order: 2; }
}

@media (max-width: 768px) {
    .nav-primary,
    .site-header__nav,
    .header-cta { display: none; }

    .hamburger,
    .site-header__hamburger { display: flex; }

    .hero-actions .btn-outline { display: none; }

    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item:first-child { grid-column: span 1; aspect-ratio: 4/3; }

    .cta-inner { flex-direction: column; text-align: center; }
    .cta-actions { justify-content: center; }

    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; text-align: center; }

    .stat-divider { display: none; }
    .form-row { grid-template-columns: 1fr; }

    .post-navigation { flex-direction: column; }
}

@media (max-width: 480px) {
    .services-grid,
    .team-grid,
    .team-full-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .hero-title { font-size: 2rem; }
    .contact-form { padding: 1.5rem; }
    .contact-form-wrap { padding: 1.5rem; }
    .booking-main-wrap { padding: 1.5rem; }
    .booking-info-card { padding: 1.25rem; }
}

@media (max-width: 360px) {
    .stats-grid { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
}
