/* ============================================
   HASEM MOBİLYA - ANA STİL DOSYASI
   Yumuşak & Lüks Modern Tasarım Sistemi
   ============================================ */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* ---- CSS Değişkenleri (Tema Renkleri & Tasarım Belirteçleri) ---- */
:root {
    /* Ana renkler */
    --primary: #12141a;
    --primary-light: #1b1e27;
    --primary-surface: #242834;
    
    /* Vurgulu Lüks Altın & Sıcak Şampanya */
    --accent: #c99a4e;
    --accent-light: #e5bf7e;
    --accent-dark: #a87930;
    --accent-glow: rgba(201, 154, 78, 0.25);
    --accent-subtle: rgba(201, 154, 78, 0.08);

    /* Zemin ve Yüzey Renkleri */
    --white: #ffffff;
    --off-white: #fbf9f6;
    --light-gray: #f3efe8;
    --surface-card: #ffffff;
    
    /* Metin & Çerçeve */
    --text: #1a1d24;
    --text-muted: #5e6472;
    --text-light: #878d9b;
    --border: #ebe5dc;
    --border-light: #f3efe9;

    /* Yumuşak Gradyanlar */
    --gradient-accent: linear-gradient(135deg, #dfb76c 0%, #c99a4e 50%, #af7e32 100%);
    --gradient-dark: linear-gradient(145deg, #181b24 0%, #101217 100%);
    --gradient-card: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(251, 249, 246, 0.95) 100%);
    --gradient-hero: linear-gradient(135deg, #13151c 0%, #1c202a 60%, #161922 100%);
    --gradient-subtle: linear-gradient(180deg, #fbf9f6 0%, #f3efe8 100%);

    /* Yumuşak Gölgeler */
    --shadow-xs: 0 2px 6px rgba(26, 29, 36, 0.04);
    --shadow-sm: 0 4px 14px rgba(26, 29, 36, 0.06);
    --shadow-md: 0 8px 24px rgba(26, 29, 36, 0.08);
    --shadow-lg: 0 16px 40px rgba(26, 29, 36, 0.1);
    --shadow-xl: 0 24px 60px rgba(26, 29, 36, 0.14);
    --shadow-glow: 0 8px 30px rgba(201, 154, 78, 0.3);

    /* Yumuşak Yuvarlatılmış Köşeler */
    --radius-xs: 8px;
    --radius-sm: 14px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --radius-xl: 36px;
    --radius-full: 9999px;

    /* Geçişler */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition: 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-smooth: 0.5s cubic-bezier(0.16, 1, 0.3, 1);

    /* Navbar yüksekliği */
    --nav-height: 84px;
}

/* Karanlık tema değişkenleri */
[data-theme="dark"] {
    --primary: #0a0b0e;
    --primary-light: #12141a;
    --primary-surface: #191c24;
    
    --white: #12141a;
    --off-white: #0d0f14;
    --light-gray: #171a22;
    --surface-card: #151821;
    
    --text: #f3f4f6;
    --text-muted: #a4abb8;
    --text-light: #707786;
    --border: #232734;
    --border-light: #1b1e28;

    --gradient-card: linear-gradient(180deg, rgba(26, 30, 40, 0.8) 0%, rgba(18, 20, 26, 0.9) 100%);
    --gradient-subtle: linear-gradient(180deg, #0d0f14 0%, #12141a 100%);
    
    --shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.25);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.35);
    --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.45);
    --shadow-xl: 0 24px 60px rgba(0, 0, 0, 0.55);
}

/* ============================================
   SIFIRLAMA & TEMEL AYARLAR
   ============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--nav-height) + 20px);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text);
    background-color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    transition: background-color 0.4s ease, color 0.4s ease;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--text);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

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

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

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition-fast);
}

ul { list-style: none; }

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   YÜKLEYİCİ (LOADER)
   ============================================ */
.loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s var(--transition-smooth), visibility 0.6s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.loader-furniture {
    display: flex;
    gap: 8px;
    align-items: flex-end;
    height: 32px;
}

.loader-shape {
    width: 12px;
    height: 24px;
    background: var(--gradient-accent);
    border-radius: var(--radius-xs);
    animation: loaderPulse 0.9s cubic-bezier(0.45, 0, 0.55, 1) infinite alternate;
}

.loader-shape.s2 { animation-delay: 0.2s; height: 32px; }
.loader-shape.s3 { animation-delay: 0.4s; height: 20px; }

@keyframes loaderPulse {
    0% { transform: scaleY(0.4); opacity: 0.4; }
    100% { transform: scaleY(1); opacity: 1; }
}

.loader-brand {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
}

.loader-brand span { color: var(--accent); }

/* ============================================
   NAVİGASYON (NAVBAR)
   ============================================ */
/* ---- Kaydırma İlerleme Çubuğu (Scroll Progress Bar) ---- */
.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, #c99a4e, #f6e27a, #dfb76c, #a87930);
    background-size: 200% 100%;
    z-index: 99999;
    box-shadow: 0 0 10px rgba(201, 154, 78, 0.7);
    transition: width 0.1s ease-out;
}

/* ============================================
   LÜKS HEADER & ÜST BİLGİ BARI (TOPBAR)
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.topbar {
    background: rgba(18, 20, 26, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    line-height: 1;
    overflow: hidden;
    max-height: 42px;
    opacity: 1;
    transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.3s ease;
}

[data-theme="dark"] .topbar {
    background: rgba(10, 11, 14, 0.98);
    border-bottom: 1px solid rgba(201, 154, 78, 0.15);
}

.site-header.scrolled .topbar {
    max-height: 0;
    opacity: 0;
    pointer-events: none;
}

.topbar-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 9px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.topbar-left, .topbar-right {
    display: flex;
    align-items: center;
    gap: 14px;
    white-space: nowrap;
}

.topbar-item {
    display: flex;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 400;
}

.topbar-item i {
    color: var(--accent);
    font-size: 0.85rem;
}

.topbar-divider {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.15);
}

.topbar-center {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.topbar-ticker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.78rem;
    color: #ffffff;
}

.topbar-badge {
    padding: 3px 10px;
    background: var(--gradient-accent);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 0.5px;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 2px 8px rgba(201, 154, 78, 0.3);
}

.topbar-ticker strong {
    color: var(--accent-light);
    font-weight: 600;
}

.topbar-link {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.3px;
    transition: color 0.2s ease;
}

.topbar-link i {
    color: var(--accent);
    font-size: 0.85rem;
    animation: phoneWiggle 2.5s infinite ease;
}

@keyframes phoneWiggle {
    0%, 100% { transform: rotate(0); }
    10%, 30% { transform: rotate(-12deg); }
    20%, 40% { transform: rotate(12deg); }
    50% { transform: rotate(0); }
}

.topbar-link:hover {
    color: var(--accent-light);
}

.topbar-socials {
    display: flex;
    align-items: center;
    gap: 12px;
}

.topbar-socials a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    transition: color 0.2s ease, transform 0.2s ease;
}

.topbar-socials a:hover {
    color: var(--accent-light);
    transform: translateY(-1px);
}

/* ============================================
   ANA NAVİGASYON (NAVBAR)
   ============================================ */
.navbar {
    width: 100%;
    height: var(--nav-height);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background: transparent;
    display: flex;
    align-items: center;
}

.site-header {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-header.scrolled {
    padding-top: 15px;
    pointer-events: none; /* Let clicks pass through the padding area */
}

.site-header.scrolled .navbar {
    height: 72px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(201, 154, 78, 0.25);
    box-shadow: 0 15px 40px rgba(18, 20, 26, 0.08), 0 0 20px rgba(201, 154, 78, 0.05);
    border-radius: 50px;
    max-width: 1240px;
    margin: 0 auto;
    width: calc(100% - 40px);
    pointer-events: auto; /* Re-enable pointer events for the navbar */
}

[data-theme="dark"] .site-header.scrolled .navbar {
    background: rgba(12, 14, 19, 0.88);
    border: 1px solid rgba(201, 154, 78, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(201, 154, 78, 0.1);
}

.nav-container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

/* ---- Lüks Monogram Logo ---- */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1002;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-emblem {
    position: relative;
    width: 44px;
    height: 44px;
    background: var(--gradient-dark);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(201, 154, 78, 0.4);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25), inset 0 1px 1px rgba(255, 255, 255, 0.15);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}

.site-header.scrolled .logo-emblem {
    background: var(--primary);
}

.emblem-monogram {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.5px;
}

.emblem-ring {
    position: absolute;
    inset: -2px;
    border-radius: 14px;
    border: 1.5px solid transparent;
    background: linear-gradient(135deg, rgba(201, 154, 78, 0.8), transparent 60%, rgba(201, 154, 78, 0.4)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.nav-logo:hover .logo-emblem {
    transform: translateY(-2px) scale(1.05);
    border-color: var(--accent);
    box-shadow: 0 6px 22px rgba(201, 154, 78, 0.4);
}

.nav-logo:hover .emblem-ring {
    opacity: 1;
}

.logo-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: #ffffff;
    line-height: 1.1;
    transition: color 0.3s ease;
}

.site-header.scrolled .logo-title {
    color: var(--text);
}

.logo-dot {
    color: var(--accent);
}

.logo-tagline {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    color: var(--accent-light);
    text-transform: uppercase;
    margin-top: 2px;
    transition: color 0.3s ease;
}

.site-header.scrolled .logo-tagline {
    color: var(--accent-dark);
}

/* ---- Menü Linkleri & Pill Wrapper ---- */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 5px 8px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.3s ease;
}

.site-header.scrolled .nav-menu {
    background: rgba(243, 239, 232, 0.6);
    border-color: rgba(235, 229, 220, 0.8);
}

[data-theme="dark"] .site-header.scrolled .nav-menu {
    background: rgba(25, 28, 36, 0.6);
    border-color: rgba(35, 39, 52, 0.8);
}

.nav-item {
    position: relative;
    list-style: none;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    border-radius: var(--radius-full);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
    cursor: pointer;
}

.site-header.scrolled .nav-link {
    color: var(--text-muted);
}

.nav-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
}

.site-header.scrolled .nav-link:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.9);
}

.nav-link.active {
    color: #ffffff !important;
    background: var(--gradient-accent) !important;
    font-weight: 600;
    box-shadow: 0 4px 14px rgba(201, 154, 78, 0.35);
}

.nav-arrow {
    font-size: 0.65rem;
    transition: transform 0.3s ease;
}

.nav-item.has-dropdown:hover .nav-arrow {
    transform: rotate(180deg);
}

/* Vurgulu Atölye Butonu */
.nav-link.nav-highlight {
    padding: 4px 6px;
}

.nav-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    background: rgba(201, 154, 78, 0.15);
    border: 1px solid rgba(201, 154, 78, 0.35);
    border-radius: var(--radius-full);
    color: var(--accent-light);
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-badge-pill i {
    color: var(--accent);
}

.nav-link.nav-highlight:hover .nav-badge-pill {
    background: var(--gradient-accent);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(201, 154, 78, 0.4);
    transform: translateY(-1px);
}

.site-header.scrolled .nav-badge-pill {
    color: var(--accent-dark);
    background: rgba(201, 154, 78, 0.1);
}

/* ---- Mega Menu Dropdown ---- */
.nav-dropdown-menu.mega-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(10px) scale(0.98);
    width: 580px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-radius: var(--radius-md);
    border: 1px solid rgba(201, 154, 78, 0.25);
    box-shadow: 0 20px 50px rgba(18, 20, 26, 0.12), 0 0 0 1px rgba(255, 255, 255, 0.5) inset;
    padding: 16px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1050;
}

[data-theme="dark"] .nav-dropdown-menu.mega-menu {
    background: rgba(18, 21, 28, 0.96);
    border: 1px solid rgba(201, 154, 78, 0.2);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.55);
}

.nav-item.has-dropdown:hover .mega-menu,
.nav-item.has-dropdown.dropdown-open .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0) scale(1);
    pointer-events: auto;
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 12px;
}

.mega-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: var(--off-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}

[data-theme="dark"] .mega-card {
    background: rgba(25, 28, 38, 0.6);
    border-color: rgba(45, 50, 68, 0.6);
}

.mega-card-icon {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-xs);
    background: rgba(201, 154, 78, 0.12);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    transition: all 0.25s ease;
}

.mega-card-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.mega-card-info strong {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.2;
    margin-bottom: 2px;
    transition: color 0.2s ease;
}

.mega-card-info span {
    font-size: 0.72rem;
    color: var(--text-muted);
    line-height: 1.3;
}

.mega-card-arrow {
    font-size: 0.75rem;
    color: var(--text-light);
    opacity: 0;
    transform: translateX(-6px);
    transition: all 0.25s ease;
}

.mega-card:hover {
    background: #ffffff;
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(201, 154, 78, 0.15);
}

[data-theme="dark"] .mega-card:hover {
    background: rgba(30, 35, 48, 0.9);
}

.mega-card:hover .mega-card-icon {
    background: var(--gradient-accent);
    color: #ffffff;
}

.mega-card:hover .mega-card-info strong {
    color: var(--accent);
}

.mega-card:hover .mega-card-arrow {
    opacity: 1;
    transform: translateX(0);
    color: var(--accent);
}

.mega-menu-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 14px;
    background: rgba(201, 154, 78, 0.08);
    border: 1px dashed rgba(201, 154, 78, 0.35);
    border-radius: var(--radius-sm);
}

.mega-footer-content {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    color: var(--text);
    font-weight: 500;
}

.mega-footer-content i {
    color: var(--accent);
    font-size: 0.9rem;
}

.mega-footer-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-dark);
    white-space: nowrap;
    transition: gap 0.2s ease, color 0.2s ease;
}

[data-theme="dark"] .mega-footer-cta {
    color: var(--accent-light);
}

.mega-footer-cta:hover {
    gap: 9px;
    color: var(--accent);
}

/* ---- Sağ Aksiyon Butonları ---- */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.nav-action-btn {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.95rem;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.site-header.scrolled .nav-action-btn {
    color: var(--text);
    background: var(--light-gray);
    border-color: var(--border);
}

.nav-action-btn:hover {
    color: var(--accent);
    background: rgba(201, 154, 78, 0.15);
    border-color: var(--accent);
    transform: translateY(-2px);
}

.theme-toggle:hover {
    transform: rotate(30deg) translateY(-2px);
}

/* WhatsApp Butonu & Pulse Efekti */
.nav-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    background: linear-gradient(135deg, #25d366 0%, #1da851 100%);
    color: #ffffff;
    border-radius: var(--radius-full);
    font-size: 0.86rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
    color: #ffffff;
}

.wa-status-pulse {
    width: 7px;
    height: 7px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    animation: waPulse 1.8s infinite;
}

@keyframes waPulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(255, 255, 255, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

/* Teklif Al CTA Butonu */
.nav-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: var(--gradient-accent);
    color: #ffffff;
    border-radius: var(--radius-full);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 18px rgba(201, 154, 78, 0.4);
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: skewX(-20deg);
    animation: ctaShimmer 4s infinite ease-in-out;
}

@keyframes ctaShimmer {
    0% { left: -100%; }
    30%, 100% { left: 180%; }
}

.nav-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 154, 78, 0.55);
    color: #ffffff;
}

.nav-cta-btn:hover .cta-icon {
    transform: translateX(3px);
}

.cta-icon {
    font-size: 0.75rem;
    transition: transform 0.25s ease;
}

/* Hamburger Menü Butonu */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    padding: 10px;
    z-index: 1002;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    cursor: pointer;
}

.site-header.scrolled .nav-toggle {
    background: var(--light-gray);
    border-color: var(--border);
}

.nav-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background: #ffffff;
    border-radius: 2px;
    transition: var(--transition);
}

.site-header.scrolled .nav-toggle span {
    background: var(--text);
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
    background: var(--text);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(10px);
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
    background: var(--text);
}

/* Mobil Menü Başlık & Kapatma Butonu (Varsayılan olarak gizli) */
.mobile-drawer-header,
.mobile-drawer-actions {
    display: none;
}

/* Mobil Menü Backdrop */
.nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(10, 11, 14, 0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;
}

.nav-backdrop.active {
    opacity: 1;
    visibility: visible;
}

/* ============================================
   CANLI ARAMA MODALI (SEARCH MODAL)
   ============================================ */
.search-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 100px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.search-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 11, 14, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.search-modal-card {
    position: relative;
    width: 640px;
    max-width: 92vw;
    background: var(--surface-card);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(201, 154, 78, 0.3);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    overflow: hidden;
    transform: translateY(-20px) scale(0.96);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2;
}

.search-modal.active .search-modal-card {
    transform: translateY(0) scale(1);
}

.search-modal-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 24px;
    border-bottom: 1px solid var(--border);
    background: var(--off-white);
}

[data-theme="dark"] .search-modal-header {
    background: rgba(22, 25, 34, 0.9);
}

.search-input-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-grow: 1;
    position: relative;
}

.search-input-icon {
    color: var(--accent);
    font-size: 1.15rem;
}

.search-input-wrap input {
    width: 100%;
    border: none;
    background: transparent;
    font-family: inherit;
    font-size: 1.05rem;
    color: var(--text);
    outline: none;
}

.search-input-wrap input::placeholder {
    color: var(--text-light);
}

.search-clear-btn {
    color: var(--text-light);
    font-size: 1rem;
    cursor: pointer;
    display: none;
    transition: color 0.2s ease;
}

.search-clear-btn.visible {
    display: block;
}

.search-clear-btn:hover {
    color: var(--accent);
}

.search-close-btn {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    background: var(--light-gray);
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.search-close-btn:hover {
    color: #ffffff;
    background: var(--accent);
    transform: rotate(90deg);
}

.search-modal-body {
    padding: 24px;
    max-height: 60vh;
    overflow-y: auto;
}

.search-quick-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.quick-tag-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
}

.quick-tag-label i {
    color: #e65100;
}

.quick-tag-btn {
    padding: 5px 14px;
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    transition: all 0.2s ease;
}

.quick-tag-btn:hover {
    background: var(--accent-subtle);
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-1px);
}

.suggestion-title {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-light);
    margin-bottom: 14px;
}

.suggestion-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.suggestion-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: all 0.25s ease;
}

[data-theme="dark"] .suggestion-item {
    background: rgba(22, 25, 34, 0.6);
}

.sug-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-xs);
    background: rgba(201, 154, 78, 0.12);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.suggestion-item strong {
    font-size: 0.88rem;
    color: var(--text);
    display: block;
}

.suggestion-item small {
    font-size: 0.74rem;
    color: var(--text-muted);
}

.suggestion-item:hover {
    border-color: var(--accent);
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

[data-theme="dark"] .suggestion-item:hover {
    background: rgba(28, 32, 44, 0.9);
}

/* Canlı Arama Sonuç Kartları */
.live-search-results {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 14px;
    background: var(--off-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: all 0.25s ease;
}

[data-theme="dark"] .search-result-item {
    background: rgba(25, 28, 38, 0.6);
}

.search-result-item img {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-xs);
    object-fit: cover;
}

.search-result-info {
    flex-grow: 1;
}

.search-result-info h5 {
    font-size: 0.92rem;
    color: var(--text);
    margin-bottom: 2px;
}

.search-result-info span {
    font-size: 0.75rem;
    color: var(--accent);
    font-weight: 600;
}

.search-result-item:hover {
    border-color: var(--accent);
    transform: translateX(4px);
}

/* ============================================
   BUTONLAR & ETKİLEŞİM ELEMANLARI
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: var(--radius-full);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid transparent;
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-accent);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(201, 154, 78, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(201, 154, 78, 0.5);
    color: #ffffff;
}

.btn-outline {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: #ffffff;
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-light-outline {
    background: transparent;
    color: var(--text);
    border-color: var(--border);
}

.btn-light-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-subtle);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #25d366;
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.5);
    color: #ffffff;
}

.btn-sm {
    padding: 10px 22px;
    font-size: 0.86rem;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-full {
    width: 100%;
}

/* ============================================
   BÖLÜM BAŞLIKLARI & ROZETLER
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: var(--accent-subtle);
    color: var(--accent-dark);
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: 1px solid rgba(201, 154, 78, 0.2);
}

[data-theme="dark"] .section-tag {
    color: var(--accent-light);
}

.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 16px;
    letter-spacing: -0.03em;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.75;
}

.gradient-text {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* ============================================
   HERO BÖLÜMÜ
   ============================================ */
.hero {
    min-height: 100vh;
    background: var(--gradient-hero);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: calc(var(--nav-height) + 55px);
    padding-bottom: 60px;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
}

.shape-1 {
    width: 550px;
    height: 550px;
    background: var(--accent);
    top: -150px;
    right: -100px;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: #6366f1;
    bottom: -100px;
    left: -100px;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: var(--accent-light);
    top: 40%;
    left: 45%;
}

.hero-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(201, 154, 78, 0.12);
    color: var(--accent-light);
    font-size: 0.88rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    border: 1px solid rgba(201, 154, 78, 0.3);
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero-badge i {
    color: var(--accent);
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.12;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.hero-desc {
    font-size: 1.12rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 540px;
    margin-bottom: 36px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

/* Hero İstatistikleri */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number-wrap {
    display: flex;
    align-items: baseline;
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.stat-suffix {
    color: var(--accent);
    font-size: 1.5rem;
    margin-left: 2px;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 6px;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 42px;
    background: rgba(255, 255, 255, 0.12);
}

/* Hero Görseli & Yüzen Kartlar */
.hero-visual {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
}

.hero-image-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 480px;
}

.hero-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.hero-image-wrapper:hover .hero-image-main img {
    transform: scale(1.04);
}

.hero-float-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    padding: 16px 22px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 3;
    animation: floatGentle 4s ease-in-out infinite alternate;
}

[data-theme="dark"] .hero-float-card {
    background: rgba(25, 28, 36, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.float-card-1 {
    top: 30px;
    left: -35px;
}

.float-card-1 i {
    font-size: 1.6rem;
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
    padding: 12px;
    border-radius: var(--radius-sm);
}

.float-card-1 strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text);
}

.float-card-1 small {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.float-card-2 {
    bottom: 30px;
    right: -25px;
    animation-delay: 1.5s;
    flex-direction: column;
    align-items: flex-start;
}

.mini-rating {
    display: flex;
    gap: 4px;
    color: #f59e0b;
    font-size: 0.9rem;
}

.float-card-2 small {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text);
    margin-top: 4px;
}

@keyframes floatGentle {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}

/* ============================================
   HAKKIMIZDA BÖLÜMÜ
   ============================================ */
.about {
    padding: 120px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 70px;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    height: 460px;
}

.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-accent {
    position: absolute;
    bottom: -35px;
    right: -30px;
    width: 240px;
    height: 200px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 6px solid var(--white);
    box-shadow: var(--shadow-xl);
}

[data-theme="dark"] .about-img-accent {
    border-color: var(--white);
}

.about-img-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    top: -20px;
    left: -20px;
    background: var(--gradient-accent);
    color: #ffffff;
    padding: 18px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-glow);
    display: flex;
    align-items: center;
    gap: 12px;
}

.exp-number {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
}

.exp-text {
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.25;
    text-transform: uppercase;
}

.about-content h3 {
    font-size: 2.2rem;
    margin-bottom: 22px;
}

.about-content p {
    color: var(--text-muted);
    font-size: 1.02rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 32px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--off-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.about-feature:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
    border-color: var(--accent);
}

.feature-icon {
    width: 44px;
    height: 44px;
    background: var(--accent-subtle);
    color: var(--accent-dark);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

[data-theme="dark"] .feature-icon {
    color: var(--accent-light);
}

.about-feature strong {
    display: block;
    font-size: 0.98rem;
    color: var(--text);
    margin-bottom: 2px;
}

.about-feature span {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* ============================================
   HİZMETLER BÖLÜMÜ
   ============================================ */
.services {
    padding: 120px 0;
    background: var(--off-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--surface-card);
    padding: 36px 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.service-card.featured {
    border-color: var(--accent);
    background: linear-gradient(180deg, var(--surface-card) 0%, rgba(201, 154, 78, 0.05) 100%);
    box-shadow: var(--shadow-md);
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-accent);
    color: #ffffff;
    padding: 5px 14px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-subtle);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-dark);
    font-size: 1.5rem;
    margin-bottom: 24px;
    transition: var(--transition);
}

[data-theme="dark"] .service-icon {
    color: var(--accent-light);
}

.service-card:hover .service-icon {
    background: var(--gradient-accent);
    color: #ffffff;
    transform: scale(1.08) rotate(-4deg);
}

.service-card h3 {
    font-size: 1.35rem;
    margin-bottom: 14px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 24px;
    flex-grow: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-dark);
    font-weight: 600;
    font-size: 0.92rem;
    transition: var(--transition-fast);
}

[data-theme="dark"] .service-link {
    color: var(--accent-light);
}

.service-link:hover {
    gap: 14px;
    color: var(--accent);
}

/* ============================================
   ÖZEL İMALAT & MOBİLYACI ATÖLYESİ VİTRİNİ (ANA SAYFA)
   ============================================ */
.atelier-spotlight {
    padding: 120px 0;
    background: var(--gradient-dark);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.atelier-spotlight .section-title {
    color: #ffffff;
}

.atelier-spotlight .section-desc {
    color: rgba(255, 255, 255, 0.7);
}

.atelier-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}

.atelier-visual {
    position: relative;
}

.atelier-main-img {
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
    height: 480px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

.atelier-main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.atelier-badge-card {
    position: absolute;
    bottom: -25px;
    left: -25px;
    background: rgba(25, 28, 36, 0.92);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(201, 154, 78, 0.3);
    padding: 20px 24px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow-xl);
}

.atelier-badge-card i {
    font-size: 2rem;
    color: var(--accent);
}

.atelier-badge-card strong {
    display: block;
    color: #ffffff;
    font-size: 1.05rem;
}

.atelier-badge-card span {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.85rem;
}

.atelier-content h3 {
    font-size: 2.3rem;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.25;
}

.atelier-content p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 28px;
}

.atelier-features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 36px;
}

.atelier-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 500;
}

.atelier-feature-item i {
    color: var(--accent);
    font-size: 1.1rem;
}

.atelier-cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ============================================
   ÜRÜNLER BÖLÜMÜ
   ============================================ */
.products {
    padding: 120px 0;
    background: var(--white);
}

.product-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    background: var(--off-white);
    color: var(--text-muted);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.filter-btn:hover {
    color: var(--text);
    border-color: var(--accent);
    background: var(--white);
}

.filter-btn.active {
    background: var(--gradient-accent);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 4px 16px rgba(201, 154, 78, 0.35);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.product-card {
    background: var(--surface-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.product-card.hidden {
    display: none;
}

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: var(--light-gray);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--gradient-accent);
    color: #ffffff;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.product-badge.bestseller {
    background: #ef4444;
}

.product-overlay {
    position: absolute;
    bottom: 14px;
    right: 14px;
    display: flex;
    gap: 8px;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
}

.product-card:hover .product-overlay {
    opacity: 1;
    transform: translateY(0);
}

.product-action {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

.product-action:hover {
    background: var(--accent);
    color: #ffffff;
    transform: scale(1.1);
}

.product-info {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-category {
    font-size: 0.78rem;
    color: var(--accent-dark);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

[data-theme="dark"] .product-category {
    color: var(--accent-light);
}

.product-info h4 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    color: var(--text);
}

.product-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid var(--border-light);
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #f59e0b;
}

.product-inquire-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--accent-dark);
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition-fast);
}

[data-theme="dark"] .product-inquire-btn {
    color: var(--accent-light);
}

.product-inquire-btn:hover {
    gap: 10px;
}

/* ============================================
   SAYILARLA BİZ (İSTATİSTİKLER)
   ============================================ */
.counters {
    padding: 80px 0;
    background: var(--off-white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.counters-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.counter-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--surface-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.counter-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.counter-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    background: var(--accent-subtle);
    color: var(--accent-dark);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

[data-theme="dark"] .counter-icon {
    color: var(--accent-light);
}

.counter-number {
    font-family: 'Outfit', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1;
    margin-bottom: 8px;
}

.counter-label {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* ============================================
   SÜREÇ (NASIL ÇALIŞIYORUZ)
   ============================================ */
.process {
    padding: 120px 0;
    background: var(--white);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    margin-top: 20px;
}

.process-step {
    background: var(--surface-card);
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    position: relative;
    transition: var(--transition);
}

.process-step:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.step-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--border);
    line-height: 1;
    transition: var(--transition);
}

.process-step:hover .step-number {
    color: var(--accent);
    opacity: 0.5;
}

.step-icon {
    width: 56px;
    height: 56px;
    background: var(--accent-subtle);
    color: var(--accent-dark);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 22px;
}

[data-theme="dark"] .step-icon {
    color: var(--accent-light);
}

.process-step h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.process-step p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.7;
}

/* ============================================
   MÜŞTERİ YORUMLARI & SLIDER
   ============================================ */
.testimonials {
    padding: 120px 0;
    background: var(--off-white);
    overflow: hidden;
}

.testimonials-slider {
    position: relative;
    margin-top: 40px;
}

.testimonial-track {
    display: flex;
    gap: 30px;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-card {
    min-width: calc(33.333% - 20px);
    background: var(--surface-card);
    padding: 36px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

.testimonial-stars {
    color: #f59e0b;
    font-size: 0.95rem;
    margin-bottom: 18px;
    display: flex;
    gap: 4px;
}

.testimonial-card p {
    color: var(--text);
    font-size: 0.98rem;
    line-height: 1.8;
    margin-bottom: 26px;
    font-style: italic;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
}

.testimonial-author img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent);
}

.testimonial-author strong {
    display: block;
    font-size: 1rem;
    color: var(--text);
}

.testimonial-author span {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.testimonial-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.testimonial-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--surface-card);
    border: 1px solid var(--border);
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.testimonial-btn:hover {
    background: var(--gradient-accent);
    color: #ffffff;
    border-color: transparent;
    transform: scale(1.06);
}

.testimonial-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: var(--transition-fast);
}

.dot.active {
    background: var(--accent);
    width: 26px;
    border-radius: 6px;
}

/* ============================================
   BLOG BÖLÜMÜ
   ============================================ */
.blog {
    padding: 120px 0;
    background: var(--white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: var(--surface-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.blog-image {
    position: relative;
    height: 230px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.08);
}

.blog-date {
    position: absolute;
    bottom: 14px;
    left: 14px;
    background: rgba(18, 20, 26, 0.85);
    backdrop-filter: blur(10px);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 600;
}

.blog-content {
    padding: 26px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-category {
    font-size: 0.78rem;
    color: var(--accent-dark);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

[data-theme="dark"] .blog-category {
    color: var(--accent-light);
}

.blog-content h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-content p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-dark);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

[data-theme="dark"] .blog-link {
    color: var(--accent-light);
}

.blog-link:hover {
    gap: 12px;
}

.blog-more {
    text-align: center;
    margin-top: 48px;
}

/* ============================================
   SIKÇA SORULAN SORULAR (SSS)
   ============================================ */
.faq {
    padding: 120px 0;
    background: var(--off-white);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: start;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--surface-card);
    margin-bottom: 14px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover,
.faq-item.active {
    border-color: var(--accent);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 26px;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text);
    text-align: left;
    cursor: pointer;
    background: transparent;
}

.faq-question i {
    font-size: 0.85rem;
    color: var(--accent);
    transition: transform 0.35s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 400px;
    padding: 0 26px 24px;
}

.faq-answer p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
}

.faq-visual {
    position: relative;
}

.faq-image-wrapper {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    height: 480px;
}

.faq-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.faq-cta-card {
    position: absolute;
    bottom: -30px;
    left: -25px;
    background: var(--surface-card);
    padding: 26px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
}

.faq-cta-card h4 {
    font-size: 1.2rem;
    margin-bottom: 6px;
}

.faq-cta-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

/* ============================================
   DOĞRUDAN İLETİŞİM & ETKİLEŞİM MERKEZİ (FORMSUZ)
   ============================================ */
.contact {
    padding: 120px 0;
    background: var(--white);
}

.contact-channels-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.contact-action-card {
    background: var(--surface-card);
    padding: 38px 32px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.contact-action-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent);
}

.contact-action-card.featured-channel {
    background: linear-gradient(180deg, var(--surface-card) 0%, rgba(37, 211, 102, 0.04) 100%);
    border-color: rgba(37, 211, 102, 0.4);
}

.channel-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(37, 211, 102, 0.15);
    color: #25d366;
    padding: 5px 12px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
}

.channel-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 24px;
}

.channel-icon.whatsapp {
    background: rgba(37, 211, 102, 0.12);
    color: #25d366;
}

.channel-icon.phone {
    background: var(--accent-subtle);
    color: var(--accent-dark);
}

[data-theme="dark"] .channel-icon.phone {
    color: var(--accent-light);
}

.channel-icon.location {
    background: rgba(99, 102, 241, 0.12);
    color: #6366f1;
}

.contact-action-card h3 {
    font-size: 1.45rem;
    margin-bottom: 12px;
}

.contact-action-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 28px;
    flex-grow: 1;
}

.channel-badge-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 14px;
    justify-content: center;
}

.channel-badge-info i {
    color: #10b981;
}

/* İletişim Detayları Alt Şeridi */
.contact-bottom-bar {
    background: var(--off-white);
    padding: 30px 40px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-detail-icon {
    width: 46px;
    height: 46px;
    background: var(--surface-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-dark);
    font-size: 1.1rem;
    flex-shrink: 0;
}

[data-theme="dark"] .contact-detail-icon {
    color: var(--accent-light);
}

.contact-detail-item strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text);
    margin-bottom: 2px;
}

.contact-detail-item span,
.contact-detail-item a {
    color: var(--text-muted);
    font-size: 0.88rem;
}

.contact-detail-item a:hover {
    color: var(--accent);
}

.contact-social-links {
    display: flex;
    gap: 10px;
}

.contact-social-links a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--surface-card);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.contact-social-links a:hover {
    background: var(--gradient-accent);
    color: #ffffff;
    border-color: transparent;
    transform: translateY(-3px);
}

/* ============================================
   HARİTA & SHOWROOM
   ============================================ */
.map-section {
    position: relative;
    background: var(--light-gray);
    overflow: hidden;
}

.map-section iframe {
    display: block;
    width: 100%;
    height: 420px;
    border: 0;
}

.map-overlay-info {
    position: absolute;
    top: 24px;
    left: 24px;
    background: var(--surface-card);
    padding: 20px 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    z-index: 2;
    max-width: 320px;
}

.map-overlay-info h4 {
    font-size: 1.05rem;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.map-overlay-info h4 i {
    color: var(--accent);
}

.map-overlay-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

/* ============================================
   DİJİTAL KATALOG & İLHAM REHBERİ (FORMSUZ)
   ============================================ */
.catalog-banner {
    padding: 80px 0;
    background: var(--gradient-dark);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.catalog-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.catalog-info h3 {
    font-size: 2.2rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.catalog-info p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.05rem;
    max-width: 580px;
}

.catalog-cta-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 80px 0 0;
    background: var(--primary);
    color: #ffffff;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 24px;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-fast);
}

.footer-socials a:hover {
    background: var(--gradient-accent);
    color: #ffffff;
    transform: translateY(-3px);
}

.footer-links h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 22px;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.92rem;
    transition: var(--transition-fast);
}

.footer-links ul li a:hover {
    color: var(--accent-light);
    padding-left: 6px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 26px 0;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.88rem;
}

.footer-bottom strong {
    color: var(--accent-light);
}

/* ============================================
   YUKARI DÖN & YÜZEN ETKİLEŞİMLER
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--gradient-accent);
    color: #ffffff;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: var(--shadow-glow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
}

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

.back-to-top:hover {
    transform: translateY(-4px) scale(1.05);
}

/* ============================================
   MOBİLYACI SAYFASI ÖZEL STİLLERİ (mobilyaci.html)
   ============================================ */
.craft-hero {
    min-height: 80vh;
    background: var(--gradient-hero);
    display: flex;
    align-items: center;
    position: relative;
    padding-top: calc(var(--nav-height) + 30px);
    padding-bottom: 80px;
    overflow: hidden;
}

.craft-hero-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.craft-hero-title {
    font-size: 3.6rem;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 22px;
}

.wood-types-section {
    padding: 120px 0;
    background: var(--off-white);
}

.wood-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-top: 40px;
}

.wood-card {
    background: var(--surface-card);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.wood-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent);
}

.wood-image {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.wood-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.wood-card:hover .wood-image img {
    transform: scale(1.08);
}

.wood-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(18, 20, 26, 0.85);
    backdrop-filter: blur(8px);
    color: #ffffff;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
}

.wood-info {
    padding: 26px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.wood-info h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.wood-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 16px;
    flex-grow: 1;
}

.wood-specs {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 14px;
    border-top: 1px solid var(--border-light);
    font-size: 0.82rem;
    color: var(--text-muted);
}

.wood-spec-item {
    display: flex;
    justify-content: space-between;
}

.wood-spec-item strong {
    color: var(--text);
}

/* Usta İmalat Alanları */
.custom-craft-categories {
    padding: 120px 0;
    background: var(--white);
}

.craft-category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.craft-cat-card {
    background: var(--surface-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.craft-cat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent);
}

.craft-cat-img {
    height: 240px;
    overflow: hidden;
}

.craft-cat-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.craft-cat-card:hover .craft-cat-img img {
    transform: scale(1.08);
}

.craft-cat-content {
    padding: 28px;
}

.craft-cat-content h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
}

.craft-cat-content p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.craft-cat-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.craft-tag {
    padding: 5px 12px;
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-muted);
}

/* ============================================
   ANİMASYONLAR (FADE-UP)
   ============================================ */
.fade-up {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE (DUYARLI TASARIM)
   ============================================ */

/* Tablet & Küçük Masaüstü (1024px) */
@media (max-width: 1024px) {
    :root {
        --nav-height: 76px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }

    .hero-desc {
        margin: 0 auto 36px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        max-width: 600px;
        margin: 0 auto;
    }

    .hero-title {
        font-size: 3.2rem;
    }

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

    .about-images {
        max-width: 550px;
        margin: 0 auto 30px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .atelier-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .atelier-features-list {
        justify-content: center;
    }

    .atelier-cta-group {
        justify-content: center;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .counters-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-channels-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .faq-visual {
        max-width: 600px;
        margin: 0 auto;
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .wood-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .craft-category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .catalog-banner-content {
        flex-direction: column;
        text-align: center;
    }

    .catalog-info p {
        margin: 0 auto;
    }

    .catalog-cta-actions {
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobil Cihazlar (768px) */
@media (max-width: 768px) {
    :root {
        --nav-height: 70px;
    }

    .topbar {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-actions .nav-whatsapp-btn,
    .nav-actions .nav-cta-btn {
        display: none;
    }

    /* Mobil Çekmece Menüsü (Sleek Luxury Drawer) */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 340px;
        max-width: 88vw;
        height: 100vh;
        background: var(--surface-card);
        border-radius: 0;
        border: none;
        border-left: 1px solid var(--border);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.35);
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        padding: 0 0 40px;
        gap: 0;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1001;
        overflow-y: auto;
    }

    [data-theme="dark"] .nav-menu {
        background: #141720;
    }

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

    /* Mobil Çekmece Başlığı */
    .mobile-drawer-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 20px 24px;
        border-bottom: 1px solid var(--border);
        background: var(--off-white);
        position: sticky;
        top: 0;
        z-index: 10;
    }

    [data-theme="dark"] .mobile-drawer-header {
        background: #10121a;
    }

    .drawer-logo {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .drawer-monogram {
        width: 36px;
        height: 36px;
        border-radius: 10px;
        background: var(--gradient-dark);
        border: 1px solid rgba(201, 154, 78, 0.4);
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: 'Outfit', sans-serif;
        font-size: 0.95rem;
        font-weight: 800;
        background: var(--gradient-accent);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .drawer-logo strong {
        display: block;
        font-size: 0.95rem;
        font-family: 'Outfit', sans-serif;
        color: var(--text);
    }

    .drawer-logo small {
        display: block;
        font-size: 0.7rem;
        color: var(--accent-dark);
    }

    [data-theme="dark"] .drawer-logo small {
        color: var(--accent-light);
    }

    .drawer-close-btn {
        width: 36px;
        height: 36px;
        border-radius: var(--radius-full);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--text-muted);
        background: var(--light-gray);
        font-size: 0.95rem;
        cursor: pointer;
        transition: all 0.2s ease;
    }

    .drawer-close-btn:hover {
        color: #ffffff;
        background: var(--accent);
    }

    .nav-item {
        width: 100%;
        padding: 4px 16px;
    }

    .nav-link {
        width: 100%;
        font-size: 1rem;
        padding: 12px 16px;
        color: var(--text) !important;
        border-radius: var(--radius-sm);
        justify-content: space-between;
    }

    .nav-link:hover,
    .nav-link.active {
        background: var(--accent-subtle);
        color: var(--accent) !important;
    }

    .nav-link.active {
        background: var(--gradient-accent) !important;
        color: #ffffff !important;
    }

    /* Mobilde Mega Menu Akordeon Yapısı */
    .nav-dropdown-menu.mega-menu {
        position: static;
        width: 100%;
        transform: none !important;
        box-shadow: none;
        border: 1px solid var(--border-light);
        background: var(--off-white);
        padding: 10px;
        margin-top: 6px;
        margin-bottom: 6px;
        display: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    [data-theme="dark"] .nav-dropdown-menu.mega-menu {
        background: rgba(22, 25, 34, 0.8);
    }

    .nav-item.has-dropdown.dropdown-open .mega-menu {
        display: block;
    }

    .mega-menu-grid {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .mega-card {
        padding: 10px 12px;
    }

    .mega-menu-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    /* Mobil Drawer Alt Aksiyon Kartı */
    .mobile-drawer-actions {
        display: block;
        padding: 20px 20px 0;
        margin-top: 10px;
        border-top: 1px solid var(--border);
    }

    .drawer-contact-box {
        display: flex;
        flex-direction: column;
        gap: 10px;
        background: var(--off-white);
        padding: 16px;
        border-radius: var(--radius-md);
        border: 1px solid var(--border);
    }

    [data-theme="dark"] .drawer-contact-box {
        background: #181b24;
    }

    .drawer-contact-title {
        font-size: 0.78rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        color: var(--text-light);
    }

    .drawer-phone-btn {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 0.95rem;
        font-weight: 700;
        color: var(--text);
        padding: 8px 12px;
        background: var(--surface-card);
        border-radius: var(--radius-sm);
        border: 1px solid var(--border);
    }

    .drawer-phone-btn i {
        color: var(--accent);
    }

    .hero-title {
        font-size: 2.6rem;
    }

    .section-title {
        font-size: 2.1rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .stat-divider {
        width: 50px;
        height: 1px;
    }

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

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

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

    .process-timeline {
        grid-template-columns: 1fr;
    }

    .contact-channels-grid {
        grid-template-columns: 1fr;
    }

    .contact-bottom-bar {
        flex-direction: column;
        align-items: flex-start;
    }

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

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

    .craft-category-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        min-width: calc(100% - 10px);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .hero-float-card {
        display: none;
    }

    .about-img-accent {
        display: none;
    }
}

/* Küçük Mobil (480px) */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2.15rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

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

    .hero-buttons .btn {
        width: 100%;
    }

    .atelier-features-list {
        grid-template-columns: 1fr;
    }

    .contact-action-card {
        padding: 28px 22px;
    }
}
