/* ==========================================================
   ŞEREFOĞLU HUKUK & DANIŞMANLIK - PRESTİJ TASARIM SİSTEMİ
   Modern, Asil, Hızlı ve Mobil Duyarlı CSS Mimarisi
   ========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600&family=Cinzel:wght@600;700;800&family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:wght@600;700;800&display=swap');

@font-face {
    font-family: "AmericanaStd-Regular";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("../fonts/AmericanaStd-Regular.woff2") format("woff2");
}

:root {
    /* Renk Paleti */
    --c-navy-dark: #070d1e;
    --c-navy: #0b152d;
    --c-navy-light: #152449;
    --c-navy-card: #121c38;
    
    --c-gold: #c5a880;
    --c-gold-hover: #d4ba96;
    --c-gold-dark: #9a7d55;
    --c-gold-gradient: linear-gradient(135deg, #d4ba96 0%, #c5a880 50%, #9a7d55 100%);
    
    --c-white: #ffffff;
    --c-slate-50: #f8fafc;
    --c-slate-100: #f1f5f9;
    --c-slate-200: #e2e8f0;
    --c-slate-400: #94a3b8;
    --c-slate-600: #475569;
    --c-slate-700: #334155;
    --c-slate-900: #0f172a;
    
    --c-success: #10b981;
    --c-warning: #f59e0b;
    --c-danger: #ef4444;

    /* Tipografi */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Gölgeler & Efektler */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 10px 25px -5px rgba(11, 21, 45, 0.08);
    --shadow-lg: 0 20px 40px -10px rgba(11, 21, 45, 0.16);
    --shadow-gold: 0 8px 25px rgba(197, 168, 128, 0.28);
    --glass-bg: rgba(255, 255, 255, 0.85);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    --transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: var(--font-sans);
    color: var(--c-slate-700);
    background-color: var(--c-slate-50);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--c-navy);
    line-height: 1.3;
    font-weight: 700;
}

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

ul {
    list-style: none;
}

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

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Üst Bar (Top Bar) */
.topbar {
    background-color: var(--c-navy-dark);
    color: var(--c-slate-400);
    font-size: 0.85rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar-contact {
    display: flex;
    gap: 20px;
}

.topbar-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--c-slate-200);
}

.topbar-item i {
    color: var(--c-gold);
}

.topbar-item:hover {
    color: var(--c-gold);
}

/* Header & Nav */
.site-header {
    background-color: var(--c-white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    height: 84px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo-symbol {
    width: 44px;
    height: 44px;
    background: var(--c-gold-gradient);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-navy-dark);
    font-size: 1.4rem;
    font-weight: 700;
    box-shadow: var(--shadow-gold);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--c-navy);
}

.logo-subtitle {
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--c-gold-dark);
    font-weight: 600;
}

/* Menü */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    font-weight: 600;
    font-size: 0.81rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--c-navy);
    position: relative;
    padding: 8px 0;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--c-gold-dark);
    transition: width 0.25s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--c-gold-dark);
}

.nav-arrow {
    font-size: 0.60rem;
    color: var(--c-slate-400);
    transition: transform 0.2s ease, color 0.2s ease;
}

.nav-dropdown:hover .nav-arrow {
    transform: rotate(180deg);
    color: var(--c-gold-dark);
}

/* Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    background: var(--c-white);
    border-radius: 4px;
    box-shadow: 0 16px 36px rgba(11, 21, 45, 0.08);
    padding: 8px 0;
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: all 0.2s ease;
    border: 1px solid rgba(11, 21, 45, 0.08);
    z-index: 1050;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 10px 20px;
    font-size: 0.84rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--c-navy);
    transition: all 0.15s ease;
}

.dropdown-item:hover {
    background-color: #faf9f6;
    color: var(--c-gold-dark);
    padding-left: 24px;
}

.dropdown-divider {
    height: 1px;
    background: #f0ede6;
    margin: 6px 0;
}

/* Üst Sağ Aksiyon Alanı & Dil Seçici */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.10em;
    text-transform: uppercase;
}

.lang-btn {
    color: #94a3b8;
    transition: color 0.2s ease;
    cursor: pointer;
    text-decoration: none;
}

.lang-btn:hover {
    color: var(--c-navy);
}

.lang-btn.active {
    color: var(--c-navy);
    font-weight: 700;
    border-bottom: 1.5px solid var(--c-gold-dark);
    padding-bottom: 1px;
}

.lang-pipe {
    color: #cbd5e1;
    font-size: 0.72rem;
    user-select: none;
}

.header-cta-btn {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    padding: 9px 20px;
    border-radius: 3px;
    border: 1px solid var(--c-navy);
    color: var(--c-navy);
    background: transparent;
    transition: all 0.25s ease;
    white-space: nowrap;
    display: inline-block;
}

.header-cta-btn:hover {
    background: var(--c-navy);
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(11, 21, 45, 0.15);
}

/* Butonlar */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background: var(--c-gold-gradient);
    color: var(--c-navy-dark);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(197, 168, 128, 0.38);
}

.btn-navy {
    background-color: var(--c-navy);
    color: var(--c-white);
}

.btn-navy:hover {
    background-color: var(--c-navy-light);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 1.5px solid var(--c-gold);
    color: var(--c-gold);
}

.btn-outline:hover {
    background: var(--c-gold);
    color: var(--c-navy-dark);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
    border-radius: var(--radius-sm);
}

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

/* Mobil Menü Butonu */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.6rem;
    color: var(--c-navy);
    cursor: pointer;
}

/* ==========================================================
   ERDEM & ERDEM MİMARİ STANDARDI: HEADER, DRAWER & HERO SİSTEMİ
   ========================================================== */

/* 3 Sütunlu Erdem Header (Sayfa Başında Çerçevesiz ve Şeffaf, Kayınca Beliren Lüks Cam Çerçeve) */
.erdem-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid transparent;
    box-shadow: none;
    transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}

.erdem-header.scrolled {
    background: rgba(9, 13, 22, 0.94);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.35);
}

/* Scrolled state: dark bg → white text/icons/logo */
.erdem-header.scrolled .erdem-nav-link {
    color: #cbd5e1;
}
.erdem-header.scrolled .erdem-nav-link:hover {
    color: #ffffff;
}
.erdem-header.scrolled .logo-white-ver {
    display: block;
}
.erdem-header.scrolled .logo-dark-ver {
    display: none;
}
.erdem-header.scrolled .erdem-lang-item {
    color: #94a3b8;
}
.erdem-header.scrolled .erdem-lang-item:hover {
    color: #ffffff;
}
.erdem-header.scrolled .erdem-lang-item.active {
    color: #ffffff;
}
.erdem-header.scrolled .erdem-lang-sep {
    color: #475569;
}
.erdem-header.scrolled .erdem-search-btn {
    color: #cbd5e1;
}
.erdem-header.scrolled .erdem-search-btn:hover {
    color: #ffffff;
}
.erdem-header.scrolled .burger-line {
    background: #ffffff;
}

/* ==========================================================
   ERDEM & ERDEM STANDARDI: ULTRA GENİŞ PRESTİJ LAYOUT (1720px)
   ========================================================== */
.erdem-container-wide,
.erdem-header-inner,
.erdem-hero-container {
    width: 100% !important;
    max-width: 1720px !important;
    padding-left: 60px !important;
    padding-right: 60px !important;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1400px) {
    .erdem-container-wide,
    .erdem-header-inner,
    .erdem-hero-container {
        padding-left: 40px !important;
        padding-right: 40px !important;
    }
}

@media (max-width: 992px) {
    .erdem-container-wide,
    .erdem-header-inner,
    .erdem-hero-container {
        padding-left: 24px !important;
        padding-right: 24px !important;
    }
}

.erdem-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 94px;
    gap: 28px;
    transition: height 0.3s ease;
}

.erdem-header.scrolled .erdem-header-inner {
    height: 78px;
}

.erdem-nav-left {
    display: flex;
    align-items: center;
    gap: 40px;
    flex: 1;
}

.erdem-nav-link {
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #334155;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.erdem-nav-link:hover {
    color: #0f172a;
}

.erdem-header-center {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.erdem-logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.erdem-logo-link img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.logo-white-ver {
    display: none;
}

.logo-dark-ver {
    display: block;
}

.erdem-header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
    flex: 1;
}

.erdem-lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: #64748b;
}

.erdem-lang-item {
    color: #64748b;
    transition: color 0.2s ease;
    cursor: pointer;
    text-decoration: none;
}

.erdem-lang-item:hover {
    color: #0f172a;
}

.erdem-lang-item.active {
    color: #0f172a;
    font-weight: 700;
    border-bottom: 1.5px solid var(--c-gold);
    padding-bottom: 1px;
}

.erdem-lang-sep {
    color: #94a3b8;
    font-size: 0.72rem;
}

.erdem-search-btn {
    color: #334155;
    font-size: 1.05rem;
    transition: color 0.2s ease;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.erdem-search-btn:hover {
    color: #0f172a;
}

/* 3 Çizgili Hamburger Butonu */
.erdem-burger-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.burger-line {
    width: 24px;
    height: 1.5px;
    background: #1e293b;
    transition: transform 0.25s ease, opacity 0.25s ease;
    display: block;
}

.erdem-burger-btn:hover .burger-line {
    background: var(--c-gold);
}

/* ==========================================================
   OFF-CANVAS DRAWER MENÜSÜ (Tam Ekran/Yan Çekmece)
   ========================================================== */
.erdem-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.erdem-drawer-overlay.active {
    visibility: visible;
    opacity: 1;
}

.erdem-drawer-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(4, 7, 13, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.erdem-drawer-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 960px;
    height: 100%;
    background: #090d16;
    color: #ffffff;
    box-shadow: -10px 0 50px rgba(0, 0, 0, 0.5);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    padding: 40px 60px;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.erdem-drawer-overlay.active .erdem-drawer-content {
    transform: translateX(0);
}

.erdem-drawer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.erdem-drawer-close {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.6rem;
    cursor: pointer;
    transition: transform 0.2s, color 0.2s;
}

.erdem-drawer-close:hover {
    color: var(--c-gold);
    transform: rotate(90deg);
}

.erdem-drawer-body {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    padding-top: 40px;
}

.drawer-col-title {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--c-gold);
    text-transform: uppercase;
    margin-bottom: 22px;
}

.drawer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.drawer-links a {
    color: #e2e8f0;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s, transform 0.2s;
    display: inline-block;
}

.drawer-links a:hover {
    color: var(--c-gold);
    transform: translateX(5px);
}

.drawer-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border: 1px solid var(--c-gold);
    color: var(--c-gold);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.25s;
    text-decoration: none;
}

.drawer-cta-link:hover {
    background: var(--c-gold);
    color: #0b152d;
}

/* ==========================================================
   ERDEM HERO & ANITSAL BAŞLIK
   ========================================================== */
.erdem-hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.erdem-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    transform: scale(1.02);
}

.erdem-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0) 100%);
}

.erdem-hero-container {
    position: relative;
    z-index: 3;
    padding-top: 40px;
    padding-bottom: 60px;
}

.erdem-hero-content {
    max-width: 980px;
}

.erdem-hero-title {
    font-family: "Cinzel", Georgia, "Times New Roman", serif;
    font-size: 4.2rem;
    line-height: 1.15;
    color: #1a1f2e;
    font-weight: 600;
    font-style: normal;
    letter-spacing: 0.01em;
    margin-bottom: 28px;
    text-shadow: 0 2px 12px rgba(255, 255, 255, 0.5);
}

.hero-line {
    display: block;
}

.erdem-hero-lead {
    font-size: 1.02rem;
    color: rgba(226, 232, 240, 0.88);
    line-height: 1.7;
    max-width: 580px;
    margin-bottom: 34px;
    font-weight: 300;
    letter-spacing: 0.2px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.erdem-btn-explore {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 36px;
    border: 1px solid rgba(26, 31, 46, 0.45);
    background: rgba(26, 31, 46, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #1a1f2e;
    font-size: 0.84rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    text-decoration: none;
}

.erdem-btn-explore:hover {
    background: #1a1f2e;
    color: #ffffff;
    border-color: #1a1f2e;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.erdem-btn-explore i {
    transition: transform 0.25s ease;
}

.erdem-btn-explore:hover i {
    transform: translateX(4px);
}

.erdem-scroll-indicator {
    position: absolute;
    bottom: 35px;
    left: 60px;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

@media (min-width: 1840px) {
    .erdem-scroll-indicator {
        left: calc((100vw - 1720px) / 2 + 60px);
    }
}

.scroll-text {
    writing-mode: vertical-rl;
    font-size: 0.65rem;
    letter-spacing: 3px;
    color: rgba(26, 31, 46, 0.5);
    text-transform: uppercase;
}

.scroll-bar {
    width: 1px;
    height: 45px;
    background: linear-gradient(180deg, rgba(26, 31, 46, 0.6) 0%, rgba(26, 31, 46, 0) 100%);
    animation: scrollPulse 2s infinite ease-in-out;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.7); transform-origin: top; }
    50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
}

/* ==========================================================
   AKREDİTASYON & PRESTİJ BANDI (#0D0E10)
   ========================================================== */
.erdem-trust-band {
    background: #0D0E10;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 22px 0;
}

.erdem-trust-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.trust-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    color: #cbd5e1;
    letter-spacing: 0.3px;
}

.trust-dot {
    width: 6px;
    height: 6px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 8px #10b981;
}

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

/* ==========================================================
   BÖLÜM 01: KOYU HİZMETLER ZEMİNİ (#0D0E10)
   ========================================================== */
.erdem-section-dark {
    background: #0D0E10;
    padding: 120px 0 130px 0;
    color: #ffffff;
}

.erdem-num-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: #10b981;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.erdem-heading-dark {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    line-height: 1.20;
    color: #ffffff;
    max-width: 1050px;
    margin-bottom: 22px;
}

.erdem-lead-dark {
    color: #94a3b8;
    font-size: 1.15rem;
    line-height: 1.8;
    max-width: 900px;
    margin-bottom: 60px;
}

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

.erdem-service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px 32px;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    transition: all 0.35s ease;
    text-decoration: none;
    color: inherit;
}

.erdem-service-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: #10b981;
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.service-icon-wrap {
    width: 54px;
    height: 54px;
    color: #10b981;
    margin-bottom: 24px;
    transition: transform 0.3s ease;
}

.erdem-service-card:hover .service-icon-wrap {
    transform: scale(1.1);
}

.service-svg-icon {
    width: 100%;
    height: 100%;
}

.service-title {
    font-family: var(--font-heading);
    font-size: 1.28rem;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 14px;
    line-height: 1.35;
}

.service-desc {
    color: #94a3b8;
    font-size: 0.90rem;
    line-height: 1.7;
    margin-bottom: 22px;
    flex: 1;
}

.service-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #10b981;
    transition: gap 0.25s;
}

.erdem-service-card:hover .service-arrow {
    gap: 12px;
}

/* ==========================================================
   BÖLÜM 02: AÇIK KIRIK BEYAZ BİLGİ BANKASI (#F8F9FA)
   ========================================================== */
.erdem-section-light {
    background: #F8F9FA;
    padding: 110px 0;
    border-bottom: 1px solid #e2e8f0;
}

.erdem-heading-light {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    color: var(--c-navy);
    line-height: 1.25;
    margin-bottom: 12px;
}

.erdem-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 26px;
    border: 1px solid var(--c-navy);
    color: var(--c-navy);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.25s;
    background: transparent;
    text-decoration: none;
}

.erdem-link-btn:hover {
    background: var(--c-navy);
    color: #ffffff;
    transform: translateY(-2px);
}

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

.erdem-content-card {
    background: #ffffff;
    padding: 34px 28px;
    border-radius: 4px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.erdem-content-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
    border-color: #cbd5e1;
}

.content-card-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--c-gold-dark);
    margin-bottom: 12px;
}

.content-card-title {
    font-family: var(--font-heading);
    font-size: 1.18rem;
    color: var(--c-navy);
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 12px;
}

.content-card-desc {
    color: #64748b;
    font-size: 0.88rem;
    line-height: 1.65;
    margin-bottom: 20px;
}

.content-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.80rem;
    color: #94a3b8;
    border-top: 1px solid #f1f5f9;
    padding-top: 14px;
}

/* ==========================================================
   BÖLÜM 03: HESAPLAMA ARAÇLARI (#FFFFFF)
   ========================================================== */
.erdem-section-white {
    background: #ffffff;
    padding: 110px 0;
}

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

@media (max-width: 1200px) {
    .erdem-section-white .erdem-grid-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 680px) {
    .erdem-section-white .erdem-grid-cards {
        grid-template-columns: 1fr;
    }
}

.erdem-calc-card {
    background: #fafafa;
    border: 1px solid #e5e7eb;
    padding: 36px 28px;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
}

.erdem-calc-card:hover {
    background: #ffffff;
    border-color: var(--c-navy);
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(11, 21, 45, 0.08);
}

.calc-card-num {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--c-gold-dark);
    font-weight: 700;
    margin-bottom: 14px;
}

.calc-card-title {
    font-family: var(--font-heading);
    font-size: 1.22rem;
    color: var(--c-navy);
    font-weight: 700;
    margin-bottom: 10px;
}

.calc-card-desc {
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.calc-card-arrow {
    font-size: 0.80rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--c-navy);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.25s;
}

.erdem-calc-card:hover .calc-card-arrow {
    gap: 12px;
    color: var(--c-gold-dark);
}

/* ==========================================================
   ERDEM CTA SECTION
   ========================================================== */
.erdem-cta-section {
    background: #090d16;
    padding: 100px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .erdem-nav-left { display: none; }
    .erdem-hero-title { font-size: 3rem; }
    .erdem-services-grid,
    .erdem-grid-cards { grid-template-columns: 1fr; }
    .erdem-drawer-body { grid-template-columns: 1fr; gap: 30px; }
    .erdem-drawer-content { padding: 30px 24px; }
    .erdem-scroll-indicator { display: none; }
    .trust-divider { display: none; }
    .erdem-trust-inner { justify-content: center; text-align: center; }
}

@media (max-width: 991px) {
    .hero-luminous-cover {
        min-height: auto;
        padding: 70px 0 80px 0;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.90) 100%),
                    url('../images/white_arch_hero_bg.jpg') center center / cover no-repeat;
    }
    .hero-cover-title {
        font-size: 2.5rem;
    }
    .hero-cover-lead {
        font-size: 1.05rem;
    }
}

/* Minimalist Faaliyet Alanları Çizgisel Tablosu (Sayfayı Kalabalıktan Arındıran Lüks Liste) */
.practice-row-list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--c-slate-200);
    margin-top: 30px;
}

.practice-row-item {
    display: grid;
    grid-template-columns: 80px 1.4fr 2fr 100px;
    align-items: center;
    padding: 28px 20px;
    border-bottom: 1px solid var(--c-slate-200);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    border-radius: var(--radius-sm);
}

.practice-row-item:hover {
    background: rgba(197, 168, 128, 0.05);
    padding-left: 28px;
}

.practice-row-item:hover .practice-row-title {
    color: var(--c-gold-dark);
}

.practice-row-item:hover .practice-row-arrow i {
    transform: translateX(6px);
    color: var(--c-gold-dark);
}

.practice-row-num {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--c-gold);
    font-weight: 700;
}

.practice-row-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--c-navy);
    transition: color 0.3s ease;
}

.practice-row-desc {
    font-size: 0.93rem;
    color: var(--c-slate-600);
    line-height: 1.6;
}

.practice-row-arrow {
    text-align: right;
}

.practice-row-arrow i {
    font-size: 1.3rem;
    color: var(--c-slate-400);
    transition: all 0.3s ease;
}

@media (max-width: 991px) {
    .practice-row-item {
        grid-template-columns: 60px 1fr;
        gap: 12px;
        padding: 20px 12px;
    }
    .practice-row-desc {
        grid-column: 2 / -1;
    }
    .practice-row-arrow {
        display: none;
    }
}

/* Hero Sağdaki İnteraktif Ön Değerlendirme Kartı */
.hero-card {
    background: rgba(18, 28, 56, 0.9);
    border: 1px solid rgba(197, 168, 128, 0.25);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.hero-card-header {
    text-align: center;
    margin-bottom: 24px;
}

.hero-card-header h3 {
    color: var(--c-white);
    font-size: 1.5rem;
    margin-bottom: 6px;
}

.hero-card-header p {
    color: var(--c-slate-400);
    font-size: 0.88rem;
}

/* Hızlı Hesaplama Seçenekleri */
.quick-calc-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 24px;
}

.quick-calc-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    padding: 14px 10px;
    color: var(--c-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    font-size: 0.85rem;
    font-weight: 500;
}

.quick-calc-btn i {
    font-size: 1.5rem;
    color: var(--c-gold);
}

.quick-calc-btn:hover,
.quick-calc-btn.active {
    background: rgba(197, 168, 128, 0.18);
    border-color: var(--c-gold);
    color: var(--c-gold);
}

/* Bölüm Başlıkları (Section Headers) */
.section {
    padding: 90px 0;
}

.section-light {
    background-color: var(--c-white);
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 55px;
}

.section-tag {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--c-gold-dark);
    margin-bottom: 12px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.section-tag::before,
.section-tag::after {
    content: '';
    display: inline-block;
    width: 22px;
    height: 1px;
    background: var(--c-gold);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.55rem;
    font-weight: 700;
    color: var(--c-navy);
    margin-bottom: 14px;
    letter-spacing: -0.015em;
    line-height: 1.22;
}

.section-title span,
.section-title em {
    color: var(--c-gold-dark);
    font-style: italic;
}

.title-divider {
    width: 56px;
    height: 3px;
    background: var(--c-gold-gradient);
    margin: 14px auto 18px;
    border-radius: 2px;
}

.section-desc {
    color: var(--c-slate-600);
    font-size: 1.08rem;
    line-height: 1.65;
}

/* Sayfa Üst Başlık Bannerı (İç Sayfalar İçin Prestijli Kütüphane Silüeti) */
.page-header-banner {
    position: relative;
    background: linear-gradient(135deg, rgba(8, 14, 28, 0.94) 0%, rgba(12, 21, 42, 0.90) 100%),
                url('../images/bg-hero-chambers.jpg') center center / cover no-repeat;
    color: var(--c-white);
    padding: 65px 0 70px;
    border-bottom: 1px solid rgba(197, 168, 128, 0.25);
}

.page-header-banner h1 {
    color: var(--c-white);
    font-family: var(--font-heading);
    font-size: 2.65rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.015em;
    line-height: 1.2;
}

.page-header-banner p {
    color: var(--c-slate-200);
    font-size: 1.08rem;
    max-width: 780px;
    line-height: 1.6;
}

/* Uzmanlık Alanları Kartları */
.practice-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.practice-card {
    background: var(--c-white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--c-slate-200);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.practice-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: var(--c-gold-gradient);
    transition: var(--transition);
}

.practice-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(197, 168, 128, 0.4);
}

.practice-card:hover::after {
    width: 100%;
}

.practice-icon {
    width: 65px;
    height: 65px;
    background: rgba(197, 168, 128, 0.12);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-gold-dark);
    font-size: 1.8rem;
    margin-bottom: 24px;
}

.practice-title {
    font-size: 1.45rem;
    margin-bottom: 12px;
}

.practice-desc {
    color: var(--c-slate-600);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.practice-list {
    margin-bottom: 24px;
    font-size: 0.9rem;
}

.practice-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: var(--c-slate-700);
}

.practice-list li i {
    color: var(--c-gold-dark);
    font-size: 0.85rem;
}

.practice-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: var(--c-navy);
    font-size: 0.92rem;
}

.practice-link:hover {
    color: var(--c-gold-dark);
    transform: translateX(4px);
}

/* Hesaplama Robotları Hub Alanı */
.calc-banner {
    background: linear-gradient(135deg, rgba(7, 13, 30, 0.94) 0%, rgba(11, 21, 45, 0.90) 100%),
                url('../images/bg-justice-istanbul.jpg') center center / cover no-repeat;
    color: var(--c-white);
    border-radius: var(--radius-lg);
    padding: 60px 50px;
    position: relative;
    overflow: hidden;
    margin-top: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(197, 168, 128, 0.25);
}

.cta-section {
    background: linear-gradient(135deg, rgba(7, 13, 30, 0.93) 0%, rgba(11, 21, 45, 0.91) 100%),
                url('../images/bg-office-istanbul.jpg') center center / cover no-repeat;
    color: var(--c-white);
    padding: 85px 0;
    text-align: center;
    position: relative;
}

.calc-banner-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.calc-banner-text h3 {
    color: var(--c-white);
    font-size: 2.1rem;
    margin-bottom: 14px;
}

.calc-banner-text p {
    color: var(--c-slate-200);
    font-size: 1.05rem;
    margin-bottom: 28px;
}

.calc-tools-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.calc-tool-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    padding: 20px;
    transition: var(--transition);
    display: block;
}

.calc-tool-card:hover {
    background: rgba(197, 168, 128, 0.15);
    border-color: var(--c-gold);
    transform: translateY(-4px);
}

.calc-tool-title {
    color: var(--c-white);
    font-family: var(--font-sans);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.calc-tool-title i {
    color: var(--c-gold);
}

.calc-tool-desc {
    color: var(--c-slate-400);
    font-size: 0.82rem;
    line-height: 1.4;
}

/* Emsal Kararlar & Makaleler Kartları */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: var(--c-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--c-slate-200);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

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

.blog-card-body {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-tag {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--c-gold-dark);
    background: rgba(197, 168, 128, 0.12);
    padding: 4px 10px;
    border-radius: var(--radius-full);
    display: inline-block;
    align-self: flex-start;
    margin-bottom: 14px;
}

.blog-title {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.blog-excerpt {
    color: var(--c-slate-600);
    font-size: 0.92rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid var(--c-slate-100);
    font-size: 0.82rem;
    color: var(--c-slate-400);
}

/* Başvuru Sihirbazı (Lead Intake Form) */
.wizard-card {
    background: var(--c-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--c-slate-200);
    padding: 45px;
    max-width: 850px;
    margin: 0 auto;
}

.wizard-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
}

.wizard-steps::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 40px;
    right: 40px;
    height: 2px;
    background: var(--c-slate-200);
    z-index: 1;
}

.step-item {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.step-circle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--c-slate-100);
    border: 2px solid var(--c-slate-200);
    color: var(--c-slate-600);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    transition: var(--transition);
}

.step-item.active .step-circle {
    background: var(--c-gold-gradient);
    border-color: var(--c-gold);
    color: var(--c-navy-dark);
    box-shadow: var(--shadow-gold);
}

.step-item.completed .step-circle {
    background: var(--c-navy);
    border-color: var(--c-navy);
    color: var(--c-white);
}

.step-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--c-slate-600);
}

.step-item.active .step-label {
    color: var(--c-navy);
}

/* Form Grupları */
.form-group {
    margin-bottom: 22px;
}

.form-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--c-navy);
    margin-bottom: 8px;
}

.form-control,
.form-select {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--c-slate-200);
    border-radius: var(--radius-md);
    font-family: var(--font-sans);
    font-size: 0.96rem;
    color: var(--c-navy);
    background-color: var(--c-white);
    transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
    outline: none;
    border-color: var(--c-gold);
    box-shadow: 0 0 0 4px rgba(197, 168, 128, 0.15);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Hesaplama Sayfası Özel Tasarımı */
.calc-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: flex-start;
}

.calc-box {
    background: var(--c-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--c-slate-200);
    padding: 40px;
}

.calc-result-box {
    background: linear-gradient(135deg, var(--c-navy-dark) 0%, var(--c-navy) 100%);
    color: var(--c-white);
    border-radius: var(--radius-lg);
    padding: 40px;
    position: sticky;
    top: 105px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(197, 168, 128, 0.3);
}

.calc-result-title {
    color: var(--c-gold);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    font-weight: 600;
}

.calc-result-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--c-white);
    margin-bottom: 12px;
}

.calc-result-items {
    margin: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.calc-result-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    margin-bottom: 12px;
    color: var(--c-slate-200);
}

.calc-result-row strong {
    color: var(--c-gold);
}

/* Footer */
.site-footer {
    background-color: var(--c-navy-dark);
    color: var(--c-slate-400);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    color: var(--c-white);
    font-size: 1.15rem;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background: var(--c-gold);
}

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

.footer-links a {
    color: var(--c-slate-400);
    font-size: 0.92rem;
}

.footer-links a:hover {
    color: var(--c-gold);
    transform: translateX(4px);
    display: inline-block;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

/* WhatsApp Floating Butonu */
.whatsapp-floating {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.9rem;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-floating:hover {
    transform: scale(1.1);
    color: #ffffff;
}

/* Mobil Duyarlılık (Responsive) */
@media (max-width: 992px) {
    .hero-grid,
    .calc-banner-grid,
    .calc-layout {
        grid-template-columns: 1fr;
    }
    
    .practice-grid,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .nav-menu {
        display: none;
    }

    .header-actions {
        display: none !important;
    }

    .mobile-toggle {
        display: block;
    }

    .mobile-menu-active .nav-menu {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--c-white);
        box-shadow: var(--shadow-lg);
        padding: 24px;
        border-top: 1px solid var(--c-slate-200);
        gap: 16px;
    }

    .mobile-menu-active .nav-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        border: none;
        padding: 8px 0 8px 12px;
        transform: none;
        background: #fcfbfa;
        border-left: 2px solid var(--c-gold);
        margin-top: 6px;
    }

    .mobile-menu-active .header-actions {
        display: flex !important;
        justify-content: space-between;
        padding-top: 16px;
        margin-top: 12px;
        border-top: 1px solid #f0ede6;
        width: 100%;
    }
}

@media (max-width: 640px) {
    .practice-grid,
    .blog-grid,
    .quick-calc-options,
    .calc-tools-grid,
    .form-row,
    .hero-stats,
    .footer-grid {
        grid-template-columns: 1fr;
    }

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

    .wizard-card,
    .calc-box,
    .calc-result-box {
        padding: 24px;
    }
}
