/* ============================================
   PREMIUM HUKUK BÜROSU - GLOBAL STYLE GUIDE
   $50,000 LUXURY LIGHT THEME DESIGN SYSTEM
   ============================================ */

:root {
    /* Luxury Gold Palette */
    --gold: #B8860B;
    --gold-light: #D4A84B;
    --gold-dark: #996515;
    --gold-glow: rgba(184, 134, 11, 0.3);
    
    /* Premium Light Palette */
    --bg-primary: #FFFFFF;
    --bg-secondary: #F8F9FA;
    --bg-tertiary: #F1F3F5;
    --bg-card: #FFFFFF;
    --bg-elevated: #FFFFFF;
    
    /* Navy Blue - Primary Brand Color */
    --navy: #1A365D;
    --navy-light: #2C5282;
    --navy-dark: #0F2942;
    
    /* Typography Colors */
    --text-dark: #1A202C;
    --text-primary: #2D3748;
    --text-secondary: #4A5568;
    --text-muted: #718096;
    --text-light: #A0AEC0;
    --text-white: #FFFFFF;
    
    /* Legacy support (dark theme variables mapped to light) */
    --dark-primary: var(--bg-primary);
    --dark-secondary: var(--bg-secondary);
    --dark-tertiary: var(--bg-tertiary);
    --dark-card: var(--bg-card);
    --dark-elevated: var(--bg-elevated);
    
    /* Premium Fonts */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    
    /* Luxury Transitions */
    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: 0.3s var(--transition-smooth);
    --transition-medium: 0.5s var(--transition-smooth);
    --transition-slow: 0.8s var(--transition-smooth);
    
    /* Premium Shadows - Softer for Light Theme */
    --shadow-sm: 0 2px 8px rgba(26, 54, 93, 0.08);
    --shadow-md: 0 8px 30px rgba(26, 54, 93, 0.12);
    --shadow-lg: 0 20px 60px rgba(26, 54, 93, 0.15);
    --shadow-gold: 0 8px 30px rgba(184, 134, 11, 0.2);
    --shadow-gold-lg: 0 15px 50px rgba(184, 134, 11, 0.25);
    --shadow-card: 0 4px 20px rgba(26, 54, 93, 0.08);
    --shadow-card-hover: 0 12px 40px rgba(26, 54, 93, 0.15);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--navy);
    letter-spacing: -0.02em;
}

p { color: var(--text-gray); margin-bottom: 1rem; }
a { text-decoration: none; color: inherit; transition: var(--transition-fast); }
img { max-width: 100%; height: auto; }

/* Premium Selection */
::selection {
    background: var(--gold);
    color: var(--dark-primary);
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--dark-primary); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-light); }

/* PREMIUM NAVBAR - LIGHT THEME */
.premium-navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 9999;
    padding: 25px 0;
    transition: all 0.4s var(--transition-smooth);
    background: linear-gradient(180deg, rgba(26, 54, 93, 0.85) 0%, rgba(26, 54, 93, 0.4) 60%, transparent 100%);
}

.premium-navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    padding: 15px 0;
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(26, 54, 93, 0.1);
    border-bottom: 1px solid rgba(26, 54, 93, 0.08);
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 40px;
}

.navbar-logo { 
    display: flex; 
    align-items: center; 
    gap: 18px;
    transition: var(--transition-fast);
}

.navbar-logo:hover {
    transform: scale(1.02);
}

.logo-icon {
    width: 60px; 
    height: 60px;
    background: linear-gradient(135deg, var(--navy), var(--navy-dark));
    display: flex; 
    align-items: center; 
    justify-content: center;
    border-radius: 14px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-fast);
}

.navbar-logo:hover .logo-icon {
    transform: rotate(-5deg);
}

.logo-icon i { 
    font-size: 1.9rem; 
    color: var(--gold); 
}

.logo-text h1 { 
    font-size: 1.6rem; 
    color: var(--navy); 
    margin: 0; 
    font-weight: 700; 
    letter-spacing: 0.5px; 
    transition: var(--transition-fast);
}

.premium-navbar:not(.scrolled) .logo-text h1 {
    color: var(--text-white);
}

.premium-navbar.scrolled .logo-text h1 {
    color: var(--navy);
}

.logo-text span { 
    font-size: 0.75rem; 
    color: var(--gold); 
    font-family: var(--font-body); 
    text-transform: uppercase; 
    letter-spacing: 3px; 
    display: block;
    margin-top: 2px;
}

.navbar-menu { 
    display: flex; 
    align-items: center; 
    gap: 45px; 
}

.nav-links { 
    display: flex; 
    list-style: none; 
    gap: 40px; 
    margin: 0; 
    padding: 0; 
    align-items: center;
}

.nav-links > li {
    position: relative;
}

.nav-links > li > a {
    color: var(--navy);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    padding: 8px 0;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 5px;
}

.premium-navbar:not(.scrolled) .nav-links > li > a {
    color: var(--text-white);
}

.nav-links > li > a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transition: width 0.4s var(--transition-smooth);
}

.nav-links > li > a:hover::after { 
    width: 100%; 
}

.nav-links > li > a:hover { 
    color: var(--gold); 
}

/* ==================== NAVBAR DROPDOWN ==================== */
.nav-dropdown {
    position: relative;
}

.nav-dropdown > a,
.nav-dropdown .dropdown-toggle {
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 5px;
}

.nav-links > .nav-dropdown > a {
    color: var(--navy);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    padding: 8px 0;
    transition: var(--transition-fast);
}

.premium-navbar:not(.scrolled) .nav-links > .nav-dropdown > a {
    color: var(--text-white);
}

.nav-links > .nav-dropdown > a:hover {
    color: var(--gold);
}

/* Yellow underline animation for dropdown toggle */
.nav-links > .nav-dropdown > a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transition: width 0.4s var(--transition-smooth);
}

.nav-links > .nav-dropdown > a:hover::after {
    width: 100%;
}

.nav-dropdown .dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-white);
    min-width: 220px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease;
    list-style: none;
    padding: 15px 0;
    margin: 0;
    z-index: 9999;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Bridge element to prevent gap issues */
.nav-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 15px;
    background: transparent;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.nav-dropdown .dropdown-menu li {
    margin: 0;
}

.nav-dropdown .dropdown-menu li a {
    display: block;
    padding: 10px 25px;
    color: var(--navy);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
    transition: all 0.3s ease;
}

.nav-dropdown .dropdown-menu li a::after {
    display: none;
}

.nav-dropdown .dropdown-menu li a:hover {
    background: var(--bg-cream);
    color: var(--gold-dark);
    padding-left: 30px;
}

.nav-dropdown .dropdown-menu .dropdown-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gray-light), transparent);
    margin: 10px 15px;
}

/* Mobile Dropdown */
.mobile-dropdown {
    position: relative;
}

.mobile-dropdown > a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.mobile-dropdown-menu {
    display: none;
    list-style: none;
    padding: 15px 0;
    margin: 10px 0 0 0;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 10px;
}

.mobile-dropdown.active .mobile-dropdown-menu {
    display: block;
}

.mobile-dropdown-menu li {
    margin-bottom: 10px !important;
}

.mobile-dropdown-menu li a {
    font-size: 1.1rem !important;
    color: var(--text-gray) !important;
}

.mobile-dropdown-menu li a:hover {
    color: var(--gold-dark) !important;
}

.navbar-right { 
    display: flex; 
    align-items: center; 
    gap: 25px; 
}

/* Navbar Phone Button */
.navbar-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--navy), var(--navy-dark));
    color: var(--text-white);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-md);
}

.navbar-phone i {
    font-size: 0.9rem;
}

.navbar-phone:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--text-white);
    background: linear-gradient(135deg, var(--navy-light), var(--navy));
}

.navbar-social { 
    display: flex; 
    gap: 18px; 
}

.navbar-social a { 
    color: var(--text-white); 
    font-size: 1rem; 
    opacity: 0.7; 
    transition: var(--transition-fast); 
}

.navbar-social a:hover { 
    color: var(--gold); 
    opacity: 1;
    transform: translateY(-2px);
}
.lang-selector {
    display: flex; align-items: center; gap: 8px;
    color: var(--text-white); font-size: 0.9rem;
    cursor: pointer; padding: 8px 15px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 5px;
    transition: var(--transition-fast);
}
.lang-selector:hover { border-color: var(--navy); color: var(--navy); }

/* Mobile Menu Button - Base Styles */
.mobile-menu-btn { 
    display: none; 
    flex-direction: column; 
    align-items: center;
    justify-content: center;
    gap: 5px; 
    cursor: pointer; 
    padding: 10px; 
    background: none; 
    border: none; 
    width: 44px;
    height: 44px;
}
.mobile-menu-btn span { 
    width: 22px; 
    height: 2px; 
    background: var(--navy); 
    transition: var(--transition-fast);
    display: block;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: #ffffff;
    z-index: 10003;
    padding: 100px 30px;
    opacity: 0; visibility: hidden;
    transition: var(--transition-fast);
    overflow-y: auto;
}
.mobile-menu.active { display: block; opacity: 1; visibility: visible; }
.mobile-menu-close { position: absolute; top: 25px; right: 25px; font-size: 2rem; color: var(--navy); cursor: pointer; background: none; border: none; z-index: 10; }
.mobile-nav-links { list-style: none; padding: 0; margin: 0; text-align: center; }
.mobile-nav-links li { margin-bottom: 25px; }
.mobile-nav-links a { color: var(--navy); font-size: 1.5rem; font-family: var(--font-heading); transition: var(--transition-fast); }
.mobile-nav-links a:hover { color: var(--gold-dark); }

/* HERO - LUXURY DESIGN */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 950px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    background: var(--dark-primary);
    padding-bottom: 180px;
    max-width: 100vw;
}

/* Hero Video Container - Seamless Loop */
.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

/* Hero Video - Smooth Loop Fix */
.hero-video,
#hero-video {
    display: block !important;
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%) scale(1.02);
    object-fit: cover;
    filter: brightness(0.35) saturate(0.9);
    z-index: 1;
    transition: opacity 0.5s ease;
}

/* Premium Overlay with Gradient */
.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: 
        linear-gradient(180deg, rgba(10,10,10,0.4) 0%, rgba(10,10,10,0.2) 40%, rgba(10,10,10,0.7) 100%),
        linear-gradient(90deg, rgba(10,10,10,0.6) 0%, transparent 50%, rgba(10,10,10,0.6) 100%);
    z-index: 2;
}

/* Luxury Particles Effect */
.hero-particles {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 3;
    pointer-events: none;
    background-image: 
        radial-gradient(1px 1px at 100px 200px, rgba(197, 160, 101, 0.4), transparent),
        radial-gradient(1px 1px at 200px 400px, rgba(197, 160, 101, 0.3), transparent),
        radial-gradient(1px 1px at 400px 100px, rgba(197, 160, 101, 0.5), transparent),
        radial-gradient(1px 1px at 500px 300px, rgba(255, 255, 255, 0.2), transparent),
        radial-gradient(1px 1px at 700px 500px, rgba(197, 160, 101, 0.3), transparent);
    animation: particleFloat 20s linear infinite;
}

@keyframes particleFloat {
    0% { transform: translateY(0); }
    100% { transform: translateY(-100px); }
}

/* Premium Decoration Lines */
.hero-decoration {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 4;
    pointer-events: none;
}

.decoration-line {
    position: absolute;
    width: 1px;
    height: 200px;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
    opacity: 0.3;
}

.decoration-line.left { left: 10%; top: 20%; }
.decoration-line.right { right: 10%; bottom: 30%; }

/* Hero Content */
.hero-content { 
    position: relative; 
    z-index: 10; 
    text-align: center; 
    max-width: 1000px; 
    padding: 0 30px; 
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(197, 160, 101, 0.1);
    border: 1px solid rgba(197, 160, 101, 0.3);
    padding: 12px 28px;
    border-radius: 50px;
    margin-bottom: 35px;
    animation: fadeInUp 1s ease;
}

.badge-icon {
    width: 28px;
    height: 28px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-icon i {
    font-size: 0.75rem;
    color: var(--dark-primary);
}

.badge-text {
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Hero Title - Premium Typography */
.hero-title { 
    font-size: 5.5rem; 
    font-weight: 700; 
    color: var(--text-white); 
    line-height: 1.05; 
    margin-bottom: 30px; 
    text-shadow: 0 4px 30px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-title .title-line {
    display: block;
    font-weight: 400;
    letter-spacing: -2px;
}

.hero-title .title-highlight { 
    color: var(--gold);
    display: block;
    font-style: italic;
    position: relative;
}

.hero-title .title-highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: var(--gold);
    opacity: 0.5;
}

.hero-description { 
    font-size: 1.25rem; 
    color: var(--text-light); 
    max-width: 650px; 
    margin: 0 auto 45px; 
    line-height: 1.9;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.4s both;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    animation: fadeInUp 1s ease 0.6s both;
}

.btn-gold-premium {
    display: inline-flex; 
    align-items: center; 
    gap: 12px;
    background: linear-gradient(135deg, var(--navy), var(--navy-dark)); 
    color: #ffffff;
    padding: 20px 50px; 
    border-radius: 60px;
    font-weight: 600; 
    font-size: 0.95rem;
    text-transform: uppercase; 
    letter-spacing: 2px;
    border: none;
    position: relative;
    overflow: hidden;
    transition: var(--transition-medium);
    box-shadow: var(--shadow-md);
}

.btn-gold-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: var(--transition-medium);
}

.btn-gold-premium:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    color: #ffffff;
}

.btn-gold-premium:hover::before {
    left: 100%;
}

.btn-outline-premium {
    display: inline-flex;
    align-items: center;
    padding: 20px 40px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 60px;
    color: #ffffff;
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition-fast);
}

.btn-outline-premium:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(197, 160, 101, 0.1);
}

/* Hero Trust Badges */
.hero-trust-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    animation: fadeInUp 1s ease 0.8s both;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.trust-badge i {
    color: var(--gold);
    font-size: 1rem;
}

/* Hero Scroll Indicator */
.hero-scroll { 
    position: absolute; 
    bottom: 180px; 
    left: 50%; 
    transform: translateX(-50%); 
    z-index: 10; 
}

.hero-scroll a { 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    gap: 15px; 
    color: var(--text-white); 
    font-size: 0.75rem; 
    letter-spacing: 3px; 
    text-transform: uppercase; 
    opacity: 0.7; 
    transition: var(--transition-fast); 
}

.hero-scroll a:hover { 
    opacity: 1; 
    color: var(--gold); 
}

.scroll-indicator {
    width: 28px;
    height: 45px;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 20px;
    position: relative;
}

.scroll-dot {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--gold);
    border-radius: 4px;
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%, 100% { top: 8px; opacity: 1; }
    50% { top: 24px; opacity: 0.3; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* PREMIUM OVERLAP CARDS */
.overlap-cards { 
    position: absolute; 
    bottom: -160px; 
    left: 50%; 
    transform: translateX(-50%); 
    z-index: 100; 
    width: 100%; 
    max-width: 1300px; 
    padding: 0 30px; 
}

.overlap-cards-grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 0;
}

.overlap-card { 
    padding: 55px 45px; 
    text-align: center; 
    transition: all 0.5s var(--transition-smooth); 
    position: relative; 
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid rgba(26, 54, 93, 0.08);
}

.overlap-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--navy), transparent);
    opacity: 0;
    transition: var(--transition-fast);
}

.overlap-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.03), transparent);
    opacity: 0;
    transition: var(--transition-fast);
    z-index: -1;
}

.overlap-card:hover { 
    transform: translateY(-20px);
    background: var(--bg-card);
    box-shadow: var(--shadow-card-hover);
}

.overlap-card:hover::before {
    opacity: 1;
}

.overlap-card:hover::after {
    opacity: 1;
}

/* Featured Card */
.overlap-card.featured {
    background: linear-gradient(135deg, var(--bg-card), var(--bg-secondary));
    border-color: rgba(26, 54, 93, 0.15);
}

.overlap-card.featured::before {
    opacity: 1;
}

/* Card Badge */
.card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--navy);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Card Number */
.card-number {
    position: absolute;
    top: 20px;
    left: 25px;
    font-size: 4rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: rgba(26, 54, 93, 0.05);
    line-height: 1;
}

/* Icon with Border - Luxury Theme */
.overlap-card-icon { 
    width: 90px; 
    height: 90px; 
    background: transparent; 
    border: 2px solid rgba(26, 54, 93, 0.2); 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    margin: 0 auto 30px; 
    transition: all 0.5s var(--transition-smooth);
    position: relative;
}

.overlap-card-icon::before {
    content: '';
    position: absolute;
    inset: -5px;
    border: 1px solid rgba(26, 54, 93, 0.1);
    border-radius: 50%;
    transition: var(--transition-fast);
}

.overlap-card:hover .overlap-card-icon { 
    border-color: var(--navy); 
    transform: scale(1.1) rotate(5deg); 
    background: rgba(26, 54, 93, 0.05);
    box-shadow: 0 0 30px rgba(26, 54, 93, 0.1);
}

.overlap-card:hover .overlap-card-icon::before {
    inset: -10px;
    opacity: 0;
}

.overlap-card-icon i { 
    font-size: 2rem; 
    color: var(--navy);
    transition: var(--transition-fast);
}

.overlap-card:hover .overlap-card-icon i {
    transform: scale(1.1);
}

.overlap-card h4 { 
    font-size: 1.5rem; 
    color: var(--navy); 
    margin-bottom: 18px; 
    font-weight: 600;
    letter-spacing: -0.5px;
}

.overlap-card p { 
    color: var(--text-secondary); 
    font-size: 0.95rem; 
    line-height: 1.8; 
    margin-bottom: 25px; 
}

/* Card Link - Premium */
.card-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--navy);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition-fast);
    position: relative;
}

.card-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--navy);
    transition: var(--transition-fast);
}

.card-link:hover {
    gap: 15px;
    color: var(--navy-light);
}

.card-link:hover::after {
    width: 100%;
}

.card-link i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.card-link:hover i {
    transform: translateX(5px);
}

/* FLOATING WIDGETS */
.floating-widgets { position: fixed; left: 25px; top: 50%; transform: translateY(-50%); z-index: 9998; display: flex; flex-direction: column; gap: 15px; }
.floating-widget { width: 55px; height: 55px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--text-white); font-size: 1.3rem; transition: var(--transition-fast); box-shadow: 0 5px 20px rgba(0,0,0,0.3); }
.floating-widget:hover { transform: scale(1.15); color: var(--text-white); }
.floating-widget.whatsapp { background: #25D366; }
.floating-widget.whatsapp:hover { box-shadow: 0 5px 25px rgba(37,211,102,0.5); }
.floating-widget.email-float { background: #EA4335; }
.floating-widget.email-float:hover { box-shadow: 0 5px 25px rgba(234,67,53,0.5); }
.floating-widget.phone { background: var(--gold); }
.floating-widget.phone:hover { box-shadow: 0 5px 25px rgba(197,160,101,0.5); }

/* SECTIONS - LUXURY SPACING */
.section-padding { padding: 120px 0; }
.section-padding-top { padding-top: 260px; }

.section-header { 
    text-align: center; 
    max-width: 750px; 
    margin: 0 auto 80px; 
}

.section-subtitle { 
    color: var(--navy); 
    font-size: 0.85rem; 
    text-transform: uppercase; 
    letter-spacing: 4px; 
    margin-bottom: 18px; 
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    padding: 0 20px;
}

.section-subtitle i {
    font-size: 1rem;
    opacity: 0.8;
}

.section-subtitle::before,
.section-subtitle::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background: var(--navy);
    opacity: 0.5;
}

.section-subtitle::before { left: -20px; }
.section-subtitle::after { right: -20px; }

.section-title { 
    font-size: 3.2rem; 
    color: var(--navy); 
    margin-bottom: 25px; 
    line-height: 1.15;
    position: relative;
    display: inline-block;
    letter-spacing: -1px;
}

.section-header .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--navy), transparent);
}

.section-desc { 
    color: var(--text-secondary); 
    font-size: 1.1rem; 
    line-height: 1.9;
    margin-top: 15px;
}

/* ABOUT - PREMIUM LIGHT DESIGN */
.about-section { 
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
    padding-top: 200px;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: 0;
    width: 600px;
    max-width: 100%;
    height: 600px;
    background: radial-gradient(circle, rgba(26, 54, 93, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.about-image-wrapper { position: relative; }

.about-image { 
    border-radius: 20px; 
    overflow: hidden; 
    box-shadow: var(--shadow-lg);
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(26, 54, 93, 0.1);
    border-radius: 20px;
    z-index: 1;
    pointer-events: none;
}

.about-image img { 
    width: 100%; 
    height: 550px; 
    object-fit: cover;
    transition: var(--transition-slow);
}

.about-image:hover img {
    transform: scale(1.05);
}

.experience-badge { 
    position: absolute; 
    bottom: -40px; 
    right: 0; 
    background: linear-gradient(135deg, var(--navy), var(--navy-dark)); 
    color: var(--text-white); 
    padding: 35px; 
    border-radius: 20px; 
    text-align: center; 
    box-shadow: var(--shadow-lg);
}

.experience-badge .number { 
    display: block; 
    font-size: 3.5rem; 
    font-weight: 700; 
    font-family: var(--font-heading); 
    line-height: 1; 
    color: var(--gold);
}

.experience-badge .text { 
    font-size: 0.85rem; 
    text-transform: uppercase; 
    letter-spacing: 2px; 
    margin-top: 8px;
    font-weight: 600;
}

.about-content h2 { 
    font-size: 3rem; 
    margin-bottom: 30px; 
    line-height: 1.15;
    letter-spacing: -1px;
    color: var(--navy);
}

.about-content .lead { 
    font-size: 1.2rem; 
    color: var(--text-secondary); 
    margin-bottom: 25px; 
    line-height: 1.9; 
}

.about-features { 
    display: grid; 
    grid-template-columns: repeat(2, 1fr); 
    gap: 18px; 
    margin-top: 40px; 
}

.about-feature { 
    display: flex; 
    align-items: center; 
    gap: 15px; 
    padding: 18px 20px; 
    background: var(--bg-card); 
    border-radius: 12px; 
    transition: var(--transition-fast);
    border: 1px solid rgba(26, 54, 93, 0.08);
    box-shadow: var(--shadow-sm);
    border: 1px solid transparent;
}

.about-feature:hover { 
    background: var(--bg-secondary); 
    transform: translateX(8px);
    border-color: rgba(26, 54, 93, 0.15);
    box-shadow: var(--shadow-card-hover);
}

.about-feature i { 
    color: var(--gold); 
    font-size: 1.4rem; 
}

.about-feature span { 
    color: var(--text-primary); 
    font-weight: 500;
    font-size: 0.95rem;
}

/* PROCESS SECTION - PREMIUM LIGHT TIMELINE */
.process-section {
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    position: relative;
    padding: 0 20px;
}

.process-step::before {
    content: attr(data-step);
    position: absolute;
    top: -40px;
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    color: rgba(197, 160, 101, 0.08);
    letter-spacing: -3px;
}

.process-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-gold);
    transition: var(--transition-fast);
}

.process-step:hover .process-icon {
    transform: scale(1.1);
    box-shadow: var(--shadow-gold-lg);
}

.process-icon i {
    font-size: 2rem;
    color: var(--dark-primary);
}

.process-content h4 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    color: var(--navy);
    font-weight: 600;
}

.process-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 220px;
    margin: 0 auto;
}

.process-line {
    position: absolute;
    top: 50px;
    left: 60%;
    width: calc(100% - 20%);
    height: 2px;
    background: linear-gradient(90deg, var(--gold), rgba(197, 160, 101, 0.3));
    z-index: 1;
}

.process-step:last-child .process-line {
    display: none;
}

.btn-gold-outline {
    display: inline-flex;
    align-items: center;
    padding: 18px 40px;
    border: 2px solid var(--navy);
    color: var(--navy);
    background: transparent;
    border-radius: 60px;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-fast);
    text-decoration: none;
}

.btn-gold-outline:hover {
    background: linear-gradient(135deg, var(--navy), var(--navy-dark));
    color: #ffffff;
    box-shadow: var(--shadow-md);
}

@media (max-width: 991px) {
    .process-timeline {
        flex-direction: column;
        gap: 50px;
    }
    
    .process-step {
        flex-direction: row;
        text-align: left;
        padding: 0;
    }
    
    .process-step::before {
        left: -20px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 3rem;
    }
    
    .process-icon {
        margin-bottom: 0;
        margin-right: 25px;
        flex-shrink: 0;
        width: 80px;
        height: 80px;
    }
    
    .process-content p {
        max-width: 100%;
    }
    
    .process-line {
        top: 100%;
        left: 40px;
        width: 2px;
        height: 50px;
        background: linear-gradient(180deg, var(--gold), rgba(197, 160, 101, 0.3));
    }
}

/* SERVICES - LUXURY LIGHT CARDS */
.services-section { 
    background: var(--bg-secondary);
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(26, 54, 93, 0.15), transparent);
}

.services-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(26, 54, 93, 0.02) 0%, transparent 70%);
    pointer-events: none;
}

.service-card { 
    background: var(--bg-card); 
    border-radius: 24px; 
    overflow: hidden; 
    transition: all 0.5s var(--transition-smooth); 
    height: 100%; 
    border: none;
    position: relative;
    box-shadow: 0 10px 40px rgba(26, 54, 93, 0.08);
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg, transparent 0%, transparent 40%, var(--gold) 60%, transparent 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: var(--transition-fast);
}

.service-card:hover { 
    transform: translateY(-12px) scale(1.02); 
    box-shadow: 0 25px 60px rgba(26, 54, 93, 0.15);
}

.service-card:hover::before {
    opacity: 1;
}

.service-image { 
    position: relative; 
    height: 220px; 
    overflow: hidden; 
}

.service-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(26, 54, 93, 0.4) 100%);
    opacity: 0;
    transition: var(--transition-fast);
}

.service-card:hover .service-image::after {
    opacity: 1;
}

.service-image img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: var(--transition-slow); 
}

.service-card:hover .service-image img { 
    transform: scale(1.08); 
}

.service-icon { 
    position: absolute; 
    bottom: -30px; 
    left: 30px; 
    width: 70px; 
    height: 70px; 
    background: linear-gradient(135deg, var(--gold), var(--gold-dark)); 
    border-radius: 20px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    box-shadow: 0 10px 30px rgba(184, 134, 11, 0.35);
    transition: var(--transition-fast);
    z-index: 2;
}

.service-card:hover .service-icon {
    transform: translateY(-5px) rotate(-5deg);
    box-shadow: 0 15px 40px rgba(184, 134, 11, 0.45);
}

.service-icon i { 
    font-size: 1.7rem; 
    color: #fff; 
}

.service-content { 
    padding: 50px 30px 30px; 
    position: relative;
}

.service-content::before {
    content: '';
    position: absolute;
    top: 20px;
    right: 25px;
    width: 50px;
    height: 50px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231A365D' stroke-width='1' opacity='0.08'%3E%3Cpath d='M5 12h14M12 5l7 7-7 7'/%3E%3C/svg%3E") no-repeat center;
    opacity: 0;
    transition: var(--transition-fast);
}

.service-card:hover .service-content::before {
    opacity: 1;
    transform: translateX(5px);
}

.service-content h4 { 
    font-size: 1.35rem; 
    margin-bottom: 15px; 
    transition: var(--transition-fast);
    letter-spacing: -0.5px;
    color: var(--navy);
    font-weight: 700;
}

.service-card:hover .service-content h4 { 
    color: var(--navy); 
}

.service-content p { 
    font-size: 0.95rem; 
    margin-bottom: 25px; 
    line-height: 1.8; 
    color: var(--text-secondary);
}

.service-link { 
    color: var(--gold-dark); 
    font-weight: 600; 
    font-size: 0.85rem; 
    display: inline-flex; 
    align-items: center; 
    gap: 10px; 
    transition: var(--transition-fast);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 12px 0;
    border-top: 1px solid rgba(26, 54, 93, 0.08);
    width: 100%;
}

.service-link:hover { 
    gap: 15px; 
    color: var(--navy); 
}

.service-link i {
    font-size: 0.75rem;
    transition: var(--transition-fast);
}

.service-card:hover .service-link i {
    transform: translateX(5px);
}

/* STATS - LUXURY LIGHT COUNTER SECTION */
.stats-section { 
    background: linear-gradient(135deg, var(--navy), var(--navy-dark)); 
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, transparent 49.5%, rgba(255, 255, 255, 0.05) 49.5%, rgba(255, 255, 255, 0.05) 50.5%, transparent 50.5%),
        linear-gradient(0deg, transparent 49.5%, rgba(255, 255, 255, 0.05) 49.5%, rgba(255, 255, 255, 0.05) 50.5%, transparent 50.5%);
    background-size: 100px 100px;
    pointer-events: none;
}

.stat-item { 
    text-align: center; 
    padding: 40px 20px;
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.stat-item:last-child::after {
    display: none;
}

.stat-icon { 
    width: 90px; 
    height: 90px; 
    background: rgba(255, 255, 255, 0.1); 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    margin: 0 auto 25px; 
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-fast);
}

.stat-item:hover .stat-icon {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--gold);
}

.stat-icon i { 
    font-size: 2.2rem; 
    color: var(--gold); 
}

.stat-number { 
    font-size: 3.5rem; 
    font-weight: 700; 
    color: #ffffff; 
    margin-bottom: 10px; 
    font-family: var(--font-heading);
    background: linear-gradient(135deg, #ffffff, var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-text { 
    color: rgba(255, 255, 255, 0.7); 
    font-size: 0.95rem; 
    text-transform: uppercase; 
    letter-spacing: 2px; 
}

/* TEAM - PREMIUM LIGHT CARDS */
.team-section { 
    background: var(--bg-primary);
    position: relative;
}

.team-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(26, 54, 93, 0.15), transparent);
}

.team-section::after {
    content: '⚖';
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    font-size: 15rem;
    color: rgba(26, 54, 93, 0.03);
    pointer-events: none;
}

.team-card { 
    background: var(--bg-card); 
    border-radius: 24px; 
    overflow: hidden; 
    transition: all 0.5s var(--transition-smooth); 
    border: none;
    box-shadow: 0 10px 40px rgba(26, 54, 93, 0.08);
    position: relative;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    z-index: 0;
}

.team-card:hover { 
    transform: translateY(-12px) scale(1.02); 
    box-shadow: 0 25px 60px rgba(26, 54, 93, 0.15);
}

.team-image { 
    position: relative; 
    height: 280px; 
    overflow: hidden; 
    margin: 25px;
    margin-bottom: 0;
    border-radius: 20px;
    z-index: 1;
    box-shadow: 0 15px 35px rgba(26, 54, 93, 0.2);
}

.team-image img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: var(--transition-slow);
}

.team-card:hover .team-image img { 
    transform: scale(1.05); 
}

/* Team Placeholder - Premium */
.team-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #f1f5f9 0%, #e2e8f0 50%, #cbd5e1 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    gap: 15px;
}

.team-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(26, 54, 93, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(184, 134, 11, 0.04) 0%, transparent 50%);
}

.team-placeholder::after {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.08), rgba(26, 54, 93, 0.15));
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
}

.team-placeholder i {
    font-size: 4rem;
    color: var(--navy);
    opacity: 0.35;
    transition: var(--transition-fast);
    position: relative;
    z-index: 1;
}

.team-card:hover .team-placeholder i {
    opacity: 0.35;
    transform: scale(1.1);
}

.team-social { 
    position: absolute; 
    bottom: 15px; 
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    padding: 12px 20px; 
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    display: flex; 
    justify-content: center; 
    gap: 12px; 
    border-radius: 50px;
    opacity: 0;
    transition: var(--transition-fast); 
    box-shadow: 0 10px 30px rgba(26, 54, 93, 0.2);
}

.team-card:hover .team-social { 
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.team-social a { 
    width: 40px; 
    height: 40px; 
    background: var(--navy); 
    color: #fff; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    transition: var(--transition-fast);
    font-size: 0.9rem;
}

.team-social a:hover { 
    background: var(--gold); 
    color: #fff;
    transform: translateY(-3px); 
}

.team-content { 
    padding: 25px 30px 30px; 
    text-align: center; 
    background: var(--bg-card);
    position: relative;
}

.team-content::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    border-radius: 3px;
}

.team-content h4 { 
    font-size: 1.25rem; 
    margin-bottom: 8px; 
    color: var(--navy); 
    font-weight: 700;
    letter-spacing: -0.5px;
}

.team-title { 
    color: var(--gold-dark); 
    font-size: 0.85rem; 
    margin: 0; 
    font-weight: 500; 
    letter-spacing: 2px; 
    text-transform: uppercase; 
}

/* BLOG - LUXURY LIGHT CARDS */
.blog-section { 
    background: var(--bg-secondary);
    position: relative;
}

.blog-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(26, 54, 93, 0.15), transparent);
}

.blog-section::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: 5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(26, 54, 93, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.blog-card { 
    background: var(--bg-card); 
    border-radius: 20px; 
    overflow: hidden; 
    transition: all 0.5s var(--transition-smooth); 
    height: 100%; 
    border: 1px solid rgba(26, 54, 93, 0.08);
    box-shadow: var(--shadow-card);
}

.blog-card:hover { 
    transform: translateY(-12px); 
    border-color: rgba(26, 54, 93, 0.15);
    box-shadow: var(--shadow-card-hover);
}

.blog-image { 
    position: relative; 
    height: 240px; 
    overflow: hidden; 
}

.blog-image img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: var(--transition-slow);
}

.blog-card:hover .blog-image img { 
    transform: scale(1.1); 
}

.blog-date { 
    position: absolute; 
    top: 20px; 
    left: 20px; 
    background: var(--navy); 
    color: #ffffff; 
    padding: 15px 18px; 
    border-radius: 12px; 
    text-align: center; 
    line-height: 1;
    box-shadow: var(--shadow-md);
}

.blog-date .day { 
    font-size: 1.6rem; 
    font-weight: 700; 
    display: block; 
    font-family: var(--font-heading); 
}

.blog-date .month { 
    font-size: 0.7rem; 
    text-transform: uppercase; 
    letter-spacing: 1px;
    margin-top: 3px;
    display: block;
}

.blog-content { 
    padding: 30px; 
}

.blog-meta { 
    display: flex; 
    gap: 18px; 
    font-size: 0.85rem; 
    color: var(--text-muted); 
    margin-bottom: 18px; 
}

.blog-meta i {
    color: var(--navy);
    margin-right: 5px;
}

.blog-content h4 { 
    font-size: 1.25rem; 
    margin-bottom: 15px; 
    line-height: 1.4;
    letter-spacing: -0.5px;
}

.blog-content h4 a { 
    color: var(--navy); 
    transition: var(--transition-fast); 
}

.blog-content h4 a:hover { 
    color: var(--gold-dark); 
}

.blog-content p { 
    font-size: 0.95rem; 
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-secondary);
}

.blog-link { 
    color: var(--navy); 
    font-weight: 600; 
    font-size: 0.85rem; 
    display: inline-flex; 
    align-items: center; 
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-link:hover { 
    gap: 15px; 
    color: var(--gold-dark); 
}

/* CTA - PREMIUM LIGHT DESIGN */
.cta-section { 
    background: linear-gradient(135deg, var(--navy), var(--navy-dark)); 
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 60%);
    animation: ctaGlow 10s linear infinite;
}

@keyframes ctaGlow {
    0%, 100% { transform: translate(-30%, -30%); }
    50% { transform: translate(30%, 30%); }
}

.cta-content { 
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-badge {
    width: 80px;
    height: 80px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    animation: ctaBadgePulse 2s ease-in-out infinite;
}

.cta-badge i {
    font-size: 2rem;
    color: var(--navy);
}

@keyframes ctaBadgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.cta-content h2 { 
    color: #ffffff; 
    font-size: 3rem; 
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.cta-content p { 
    color: rgba(255, 255, 255, 0.8); 
    font-size: 1.15rem; 
    margin-bottom: 35px;
    opacity: 0.9;
}

.btn-dark { 
    display: inline-flex; 
    align-items: center; 
    gap: 12px; 
    background: #ffffff; 
    color: var(--navy); 
    padding: 22px 50px; 
    border-radius: 60px; 
    font-weight: 600; 
    font-size: 1rem; 
    text-transform: uppercase; 
    letter-spacing: 2px; 
    transition: var(--transition-fast);
    box-shadow: var(--shadow-lg);
}

.btn-dark:hover { 
    background: var(--gold); 
    color: var(--navy); 
    transform: translateY(-5px); 
    box-shadow: 0 20px 50px rgba(0,0,0,0.3); 
}

/* CONTACT - PREMIUM LIGHT DESIGN */
.contact-section { 
    background: var(--bg-primary);
    position: relative;
    z-index: 1;
}

.contact-section .section-header {
    position: relative;
    z-index: 2;
}

.contact-info-card { 
    background: var(--bg-card); 
    border-radius: 20px; 
    padding: 50px; 
    height: 100%; 
    border: 1px solid rgba(26, 54, 93, 0.08);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(26, 54, 93, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.contact-info-item { 
    display: flex; 
    gap: 25px; 
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 1px solid rgba(26, 54, 93, 0.08);
}

.contact-info-item:last-child { 
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.contact-icon { 
    width: 70px; 
    height: 70px; 
    background: rgba(26, 54, 93, 0.05); 
    border-radius: 16px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    flex-shrink: 0;
    border: 1px solid rgba(26, 54, 93, 0.1);
    transition: var(--transition-fast);
}

.contact-info-item:hover .contact-icon {
    background: rgba(26, 54, 93, 0.1);
    transform: scale(1.05);
}

.contact-icon i { 
    font-size: 1.6rem; 
    color: var(--navy); 
}

.contact-info-item h5 { 
    font-size: 1.15rem; 
    margin-bottom: 8px;
    letter-spacing: -0.5px;
    color: var(--navy);
}

.contact-info-item p { 
    margin: 0; 
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.contact-info-item a { 
    color: var(--text-secondary); 
    transition: var(--transition-fast); 
}

.contact-info-item a:hover { 
    color: var(--navy); 
}

.contact-form-card { 
    background: var(--bg-card); 
    border-radius: 20px; 
    padding: 50px; 
    border: 1px solid rgba(26, 54, 93, 0.08);
    box-shadow: var(--shadow-card);
}

.form-group { 
    margin-bottom: 25px; 
}

.form-control { 
    background: var(--bg-secondary); 
    border: 1px solid rgba(26, 54, 93, 0.1); 
    border-radius: 12px; 
    padding: 18px 22px; 
    color: var(--text-dark); 
    font-size: 1rem; 
    transition: var(--transition-fast);
}

.form-control:focus { 
    background: var(--bg-primary); 
    border-color: var(--navy); 
    color: var(--text-dark); 
    box-shadow: 0 0 0 4px rgba(26, 54, 93, 0.1); 
}

.form-control::placeholder { 
    color: var(--text-muted);
    font-size: 0.95rem;
}

textarea.form-control { 
    min-height: 160px; 
    resize: vertical; 
}

.btn-submit { 
    width: 100%; 
    background: linear-gradient(135deg, var(--navy), var(--navy-dark)); 
    color: #ffffff; 
    padding: 20px; 
    border: none; 
    border-radius: 12px; 
    font-weight: 600; 
    font-size: 1rem; 
    text-transform: uppercase; 
    letter-spacing: 2px; 
    transition: var(--transition-fast); 
    cursor: pointer;
    box-shadow: var(--shadow-md);
}

.btn-submit:hover { 
    transform: translateY(-3px); 
    box-shadow: var(--shadow-lg);
}

/* MAP CARD - PREMIUM LIGHT DESIGN */
.map-card {
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(26, 54, 93, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-card);
}

.map-header {
    background: linear-gradient(135deg, var(--navy), var(--navy-dark));
    color: #ffffff;
    padding: 18px 25px;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
}

.map-container {
    flex: 1;
    position: relative;
    min-height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border: none;
}

.map-info {
    background: var(--bg-secondary);
    padding: 15px 25px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
}

.contact-cta {
    padding-top: 20px;
    border-top: 1px solid rgba(26, 54, 93, 0.08);
}

.contact-cta .btn-gold {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 30px;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-header h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--navy);
}

.form-header p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* NEWSLETTER SECTION - LIGHT */
.newsletter-section {
    background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--bg-secondary) 100%);
    padding: 0;
    position: relative;
    overflow: hidden;
}

.newsletter-card {
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.05) 0%, rgba(26, 54, 93, 0.02) 100%);
    border: 1px solid rgba(26, 54, 93, 0.1);
    border-radius: 20px;
    padding: 50px;
    position: relative;
    margin: -50px 0 0 0;
    z-index: 10;
}

.newsletter-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(26, 54, 93, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.newsletter-content h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    color: var(--navy);
}

.newsletter-content h3 i {
    color: var(--navy);
}

.newsletter-content p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.95rem;
}

.newsletter-form .input-group {
    background: var(--bg-card);
    border-radius: 60px;
    padding: 8px;
    border: 1px solid rgba(26, 54, 93, 0.1);
    box-shadow: var(--shadow-sm);
}

.newsletter-form .form-control {
    background: transparent;
    border: none;
    padding: 15px 25px;
    color: var(--text-dark);
    font-size: 1rem;
}

.newsletter-form .form-control:focus {
    background: transparent;
    box-shadow: none;
}

.newsletter-form .form-control::placeholder {
    color: var(--text-muted);
}

.btn-newsletter {
    background: linear-gradient(135deg, var(--navy), var(--navy-dark));
    color: #ffffff;
    border: none;
    padding: 15px 35px;
    border-radius: 60px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: var(--transition-fast);
    white-space: nowrap;
}

.btn-newsletter:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.newsletter-note {
    display: block;
    margin-top: 15px;
    color: var(--text-muted);
    font-size: 0.85rem;
}

@media (max-width: 991px) {
    .newsletter-card {
        padding: 40px 30px;
        margin-top: 0;
    }
    
    .newsletter-content {
        margin-bottom: 30px;
        text-align: center;
    }
    
    .newsletter-content h3 {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .newsletter-form .input-group {
        flex-direction: column;
        border-radius: 16px;
        gap: 10px;
    }
    
    .btn-newsletter {
        width: 100%;
        justify-content: center;
    }
}

/* ==================== MODERN SEARCH MODAL ==================== */
.search-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.search-modal.active {
    opacity: 1;
    visibility: visible;
}

.search-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 25, 47, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.search-modal-content {
    position: relative;
    max-width: 700px;
    margin: 60px auto;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    transform: translateY(-30px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    max-height: calc(100vh - 120px);
    display: flex;
    flex-direction: column;
}

.search-modal.active .search-modal-content {
    transform: translateY(0) scale(1);
}

.search-modal-header {
    padding: 20px 24px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 16px;
    background: #f8f9fa;
}

.search-input-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
}

.search-input-icon {
    position: absolute;
    left: 16px;
    color: var(--gold);
    font-size: 1.1rem;
}

.search-modal-input {
    width: 100%;
    padding: 14px 45px 14px 50px;
    border: 2px solid transparent;
    border-radius: 12px;
    font-size: 1.1rem;
    font-family: var(--font-body);
    background: #fff;
    transition: all 0.3s ease;
}

.search-modal-input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(198, 166, 100, 0.15);
}

.search-modal-input::placeholder {
    color: #999;
}

.search-clear-btn {
    position: absolute;
    right: 12px;
    width: 28px;
    height: 28px;
    border: none;
    background: #e9ecef;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    color: #666;
    transition: all 0.2s ease;
}

.search-clear-btn:hover {
    background: #dee2e6;
    color: #333;
}

.search-clear-btn.visible {
    display: flex;
}

.search-modal-close {
    width: 70px;
    height: 44px;
    border: 1px solid #dee2e6;
    background: #fff;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #666;
    font-size: 0.75rem;
    transition: all 0.2s ease;
}

.search-modal-close i {
    font-size: 0.9rem;
}

.search-modal-close:hover {
    background: #f8f9fa;
    border-color: #ccc;
    color: #333;
}

.search-modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 0;
}

.search-results-container {
    min-height: 300px;
}

/* Initial State */
.search-initial-state {
    padding: 30px;
}

.search-shortcuts {
    margin-bottom: 30px;
}

.search-shortcuts h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #666;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.shortcut-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.shortcut-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 15px;
    background: #f8f9fa;
    border-radius: 12px;
    color: var(--navy);
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
}

.shortcut-item:hover {
    background: var(--navy);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(10, 25, 47, 0.2);
}

.shortcut-item i {
    font-size: 1.5rem;
    color: var(--gold);
}

.shortcut-item:hover i {
    color: var(--gold);
}

.shortcut-item span {
    font-size: 0.85rem;
    font-weight: 500;
}

.search-tips {
    background: linear-gradient(135deg, #f8f9fa, #fff);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #eee;
}

.search-tips h5 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 12px;
}

.search-tips ul {
    margin: 0;
    padding-left: 20px;
}

.search-tips li {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 6px;
}

/* Loading State */
.search-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 30px;
    color: #666;
    gap: 16px;
}

.search-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #eee;
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Results List */
.search-results-list {
    padding: 12px;
}

.search-result-item-modal {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    color: inherit;
}

.search-result-item-modal:hover,
.search-result-item-modal.focused {
    background: #f8f9fa;
}

.search-result-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--navy), #1a3a5c);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.search-result-icon i {
    color: var(--gold);
    font-size: 1.2rem;
}

.search-result-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.search-result-info {
    flex: 1;
    min-width: 0;
}

.search-result-type-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gold);
    background: rgba(198, 166, 100, 0.1);
    padding: 3px 8px;
    border-radius: 4px;
    margin-bottom: 6px;
}

.search-result-title-modal {
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-result-desc-modal {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.search-result-arrow {
    color: #ccc;
    transition: all 0.2s ease;
    flex-shrink: 0;
    align-self: center;
}

.search-result-item-modal:hover .search-result-arrow {
    color: var(--gold);
    transform: translateX(4px);
}

/* No Results */
.search-no-results {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 30px;
    text-align: center;
    color: #999;
}

.search-no-results i {
    margin-bottom: 16px;
    opacity: 0.5;
}

.search-no-results h4 {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 8px;
}

.search-no-results p {
    font-size: 0.9rem;
    margin: 0;
}

/* Footer */
.search-modal-footer {
    padding: 16px 24px;
    background: #f8f9fa;
    border-top: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.search-keyboard-hints {
    display: flex;
    gap: 20px;
    color: #999;
    font-size: 0.8rem;
}

.search-keyboard-hints kbd {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 2px 6px;
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: #666;
    margin-right: 4px;
}

.search-full-link {
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.search-full-link:hover {
    color: var(--navy);
}

/* Responsive */
@media (max-width: 768px) {
    .search-modal-content {
        margin: 16px;
        max-height: calc(100vh - 32px);
        border-radius: 16px;
    }
    
    .search-modal-header {
        padding: 14px 16px;
        flex-direction: row;
        gap: 10px;
        align-items: center;
    }
    
    .search-input-wrapper {
        flex: 1;
    }
    
    .search-modal-input {
        padding: 12px 40px 12px 44px;
        font-size: 1rem;
    }
    
    .search-modal-close {
        width: auto;
        min-width: 44px;
        height: 44px;
        border-radius: 50%;
        padding: 0;
    }
    
    .search-modal-close span {
        display: none;
    }
    
    .search-modal-close i {
        font-size: 1rem;
    }
    
    .shortcut-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .shortcut-item {
        padding: 16px 12px;
    }
    
    .search-initial-state {
        padding: 20px;
    }
    
    .search-tips {
        padding: 16px;
    }
    
    .search-keyboard-hints {
        display: none;
    }
    
    .search-modal-footer {
        justify-content: center;
        padding: 12px 16px;
    }
}

/* FOOTER - PREMIUM LIGHT DESIGN */
.premium-footer { 
    background: var(--navy); 
    border-top: 1px solid rgba(255,255,255,0.05);
    position: relative;
}

.premium-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer-main { 
    padding: 100px 0 60px; 
}

.footer-brand h3 { 
    font-size: 2rem; 
    margin-bottom: 20px;
    letter-spacing: -1px;
    color: #ffffff;
}

.footer-brand p { 
    font-size: 0.95rem; 
    margin-bottom: 30px; 
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.7);
}

.footer-social { 
    display: flex; 
    gap: 12px; 
}

.footer-social a { 
    width: 50px; 
    height: 50px; 
    background: rgba(255, 255, 255, 0.1); 
    border-radius: 12px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    color: #ffffff; 
    transition: var(--transition-fast);
    border: 1px solid transparent;
}

.footer-social a:hover { 
    background: var(--gold); 
    color: var(--navy);
    transform: translateY(-5px);
}

.footer-title { 
    font-size: 1.3rem; 
    color: #ffffff; 
    margin-bottom: 30px; 
    position: relative; 
    padding-bottom: 18px;
    letter-spacing: -0.5px;
}

.footer-title::after { 
    content: ''; 
    position: absolute; 
    bottom: 0; 
    left: 0; 
    width: 50px; 
    height: 2px; 
    background: var(--gold); 
}

.footer-links { 
    list-style: none; 
    padding: 0; 
    margin: 0; 
}

.footer-links li { 
    margin-bottom: 15px; 
}

.footer-links a { 
    color: rgba(255, 255, 255, 0.7); 
    font-size: 0.95rem; 
    transition: var(--transition-fast); 
    display: inline-flex; 
    align-items: center; 
    gap: 10px; 
}

.footer-links a:hover { 
    color: var(--gold); 
    padding-left: 8px; 
}

.footer-links a i { 
    font-size: 0.75rem; 
    color: var(--gold);
    opacity: 0.7;
}

.footer-contact-item { 
    display: flex; 
    gap: 18px; 
    margin-bottom: 25px; 
}

.footer-contact-item i { 
    color: var(--gold); 
    font-size: 1.2rem; 
    margin-top: 4px; 
}

.footer-contact-item p { 
    margin: 0; 
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom { 
    border-top: 1px solid rgba(255,255,255,0.1); 
    padding: 30px 0; 
}

.footer-bottom p { 
    margin: 0; 
    font-size: 0.9rem; 
    color: rgba(255, 255, 255, 0.5); 
}

/* CALLBACK / SİZİ ARAYALIM SECTION - LIGHT */
.callback-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.95), rgba(15, 41, 66, 0.9)), 
                url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.callback-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.9), rgba(15, 41, 66, 0.95));
}
.callback-form-wrapper {
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(26, 54, 93, 0.1);
    border-radius: 20px;
    padding: 50px;
    backdrop-filter: blur(10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}
.callback-header {
    text-align: center;
    margin-bottom: 40px;
}
.callback-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(26, 54, 93, 0.08);
    color: var(--navy);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}
.callback-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 15px;
}
.callback-header h2 span { color: var(--gold-dark); }
.callback-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto;
}
.callback-form .form-floating {
    position: relative;
}
.callback-form .form-control,
.callback-form .form-select {
    background: var(--bg-secondary);
    border: 1px solid rgba(26, 54, 93, 0.1);
    border-radius: 12px;
    color: var(--text-dark);
    padding: 20px 15px 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}
.callback-form .form-control:focus,
.callback-form .form-select:focus {
    background: var(--bg-primary);
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(26, 54, 93, 0.1);
    color: var(--text-dark);
}
.callback-form .form-floating label {
    color: var(--text-muted);
    font-size: 0.95rem;
}
.callback-form .form-floating > .form-control:focus ~ label,
.callback-form .form-floating > .form-control:not(:placeholder-shown) ~ label,
.callback-form .form-floating > .form-select ~ label {
    color: var(--navy);
    opacity: 1;
}
.callback-form .form-select option {
    background: var(--bg-card);
    color: var(--text-dark);
}
.btn-callback {
    width: 100%;
    background: linear-gradient(135deg, var(--navy), var(--navy-dark));
    color: #ffffff;
    border: none;
    border-radius: 50px;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.4s ease;
}
.btn-callback:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(26, 54, 93, 0.3);
}
.callback-trust {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}
.trust-item i {
    color: var(--navy);
}

/* UTILITIES - LIGHT */
.btn-outline-gold { display: inline-flex; align-items: center; gap: 10px; background: transparent; color: var(--navy); padding: 15px 35px; border-radius: 50px; font-weight: 600; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 1px; border: 2px solid var(--navy); transition: var(--transition-fast); }
.btn-outline-gold:hover { background: var(--navy); color: #ffffff; }
.text-gold { color: var(--navy) !important; }
.bg-dark-secondary { background: var(--bg-secondary) !important; }

/* PAGE HEADER - LIGHT */
.page-header { background: linear-gradient(135deg, rgba(26, 54, 93, 0.95), rgba(15, 41, 66, 0.9)), url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?auto=format&fit=crop&w=1920&q=80'); background-size: cover; background-position: center; padding: 180px 0 100px; text-align: center; }
.page-header h1 { font-size: 3rem; margin-bottom: 15px; color: #ffffff; }
.page-header .breadcrumb { background: transparent; justify-content: center; margin: 0; }
.page-header .breadcrumb-item a { color: rgba(255, 255, 255, 0.7); }
.page-header .breadcrumb-item a:hover { color: var(--gold); }
.page-header .breadcrumb-item.active { color: var(--gold); }
.page-header .breadcrumb-item + .breadcrumb-item::before { color: rgba(255, 255, 255, 0.5); }

/* ==================== PAGE HERO - HESAPLAYICILAR ==================== */
.page-hero {
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.95), rgba(15, 41, 66, 0.95)), 
                url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    padding: 160px 0 80px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.page-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-hero .page-subtitle {
    display: inline-block;
    background: rgba(200, 170, 110, 0.2);
    color: var(--gold);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.page-hero .page-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-hero .page-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin: 0;
}

/* RESPONSIVE - PREMIUM BREAKPOINTS */
@media (max-width: 1199px) { 
    .hero-title { font-size: 4rem; } 
    .hero-title .title-line { font-size: 3.5rem; }
    .overlap-card { padding: 40px 30px; }
    .section-title { font-size: 2.8rem; }
}

@media (max-width: 991px) {
    .navbar-menu { display: none; }
    .mobile-menu-btn { display: flex; }
    .mobile-menu { display: block; }
    .hero-title { font-size: 3.5rem; }
    .hero-title .title-line { font-size: 3rem; }
    .hero-title .title-highlight { font-size: 3rem; }
    .hero-description { font-size: 1.05rem; }
    .hero-buttons { flex-direction: column; gap: 15px; }
    .hero-trust-badges { flex-wrap: wrap; justify-content: center; gap: 20px; }
    .overlap-cards { bottom: -80px; }
    .overlap-card { padding: 35px 25px; }
    .overlap-card h4 { font-size: 1.25rem; }
    .section-title { font-size: 2.5rem; }
    .about-content h2 { font-size: 2.5rem; }
    .floating-widgets { left: 15px; }
    .floating-widget { width: 48px; height: 48px; font-size: 1.1rem; }
}

@media (max-width: 767px) {
    .hero-section { min-height: 750px; }
    .hero-title { font-size: 2.8rem; }
    .hero-title .title-line { font-size: 2.5rem; }
    .hero-title .title-highlight { font-size: 2.5rem; }
    .hero-badge { padding: 10px 20px; }
    .badge-text { font-size: 0.75rem; letter-spacing: 1px; }
    .hero-trust-badges { gap: 15px; }
    .trust-badge { font-size: 0.8rem; }
    .overlap-cards { 
        position: relative; 
        bottom: 0; 
        transform: none; 
        margin-top: -40px;
        padding: 0 20px;
    }
    .overlap-cards-grid { 
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .overlap-card { 
        padding: 40px 30px;
        border-radius: 20px;
    }
    .card-number { display: none; }
    .overlap-card-icon { width: 80px; height: 80px; }
    .overlap-card-icon i { font-size: 1.8rem; }
    .section-padding { padding: 80px 0; }
    .section-padding-top { padding-top: 100px; }
    .section-title { font-size: 2.2rem; }
    .section-subtitle::before,
    .section-subtitle::after { display: none; }
    .experience-badge { 
        right: 10px; 
        bottom: -25px;
        padding: 25px;
    }
    .experience-badge .number { font-size: 2.5rem; }
    .about-content h2 { font-size: 2rem; }
    .about-features { grid-template-columns: 1fr; }
    .stat-item::after { display: none; }
    /* Floating widgets hidden on mobile - replaced by mobile action bar */
    .floating-widgets { 
        display: none !important;
    }
    .cta-content h2 { font-size: 2rem; }
    /* Callback Form Mobile */
    .callback-section { padding: 60px 0; background-attachment: scroll; }
    .callback-form-wrapper { padding: 35px 25px; border-radius: 15px; }
    .callback-header h2 { font-size: 1.8rem; }
    .callback-header p { font-size: 0.95rem; }
    .callback-trust { gap: 15px; }
    .contact-info-card,
    .contact-form-card { padding: 30px 25px; }
}

@media (max-width: 575px) {
    .navbar-container { padding: 0 15px; }
    .logo-icon { width: 50px; height: 50px; }
    .logo-icon i { font-size: 1.5rem; }
    .logo-text h1 { font-size: 1.3rem; }
    .hero-title { font-size: 2.2rem; }
    .hero-title .title-line { font-size: 2rem; }
    .hero-title .title-highlight { font-size: 2rem; }
    .hero-title .title-highlight::after { width: 80px; height: 2px; }
    .hero-description { font-size: 0.95rem; }
    .btn-gold-premium { padding: 16px 35px; font-size: 0.85rem; }
    .btn-outline-premium { padding: 16px 30px; font-size: 0.85rem; }
    .stat-number { font-size: 2.5rem; }
    .section-title { font-size: 1.8rem; }
    .overlap-card { padding: 35px 25px; }
    .callback-form-wrapper { padding: 25px 18px; }
    .btn-callback { padding: 16px 30px; font-size: 0.95rem; }
    .footer-main { padding: 60px 0 40px; }
}

/* ============================================
   PARALLAX SECTION - Güvenilir Çözümler (LIGHT)
   ============================================ */
.parallax-section {
    position: relative;
    padding: 150px 0;
    overflow: hidden;
}
.parallax-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
}
.parallax-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.92), rgba(15, 41, 66, 0.95));
    z-index: 2;
}
.parallax-content { position: relative; z-index: 3; }
.parallax-subtitle {
    color: var(--gold);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 20px;
    display: block;
}
.parallax-title {
    font-size: 3.5rem;
    color: #ffffff;
    margin-bottom: 25px;
    font-weight: 700;
}
.parallax-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.8;
}
.parallax-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}
.parallax-stat {
    text-align: center;
}
.parallax-stat .stat-num {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gold);
    font-family: var(--font-heading);
}
.parallax-stat .stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ============================================
   ABOUT SECTION - Beyaz Zemin
   ============================================ */
.about-section-white {
    background: #ffffff;
    padding: 120px 0;
}
.section-subtitle-dark {
    color: var(--gold);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}
.section-title-dark {
    color: #0d1b2a;
    font-size: 2.8rem;
    margin-bottom: 25px;
    font-weight: 700;
}
.lead-dark {
    color: #333;
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 15px;
}
.text-dark-gray {
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}
.about-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 35px;
}
.about-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}
.feature-icon-box {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.feature-icon-box i {
    color: #fff;
    font-size: 1.2rem;
}
.about-feature-item h5 {
    color: #0d1b2a;
    font-size: 1rem;
    margin-bottom: 5px;
    font-family: var(--font-body);
    font-weight: 600;
}
.about-feature-item p {
    color: #888;
    font-size: 0.85rem;
    margin: 0;
}
.btn-dark-gold {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #0d1b2a;
    color: var(--gold);
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid #0d1b2a;
    transition: var(--transition-fast);
}
.btn-dark-gold:hover {
    background: var(--gold);
    color: #0d1b2a;
    border-color: var(--gold);
}
.about-image-collage {
    position: relative;
    padding: 30px;
}
.collage-main {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}
.collage-main img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}
.collage-secondary {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    border-radius: 15px;
    overflow: hidden;
    border: 5px solid #fff;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
.collage-secondary img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}
.experience-floating-badge {
    position: absolute;
    top: 50px;
    right: 0;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    padding: 25px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(197, 160, 101, 0.4);
}
.experience-floating-badge .badge-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #0d1b2a;
    font-family: var(--font-heading);
    line-height: 1;
}
.experience-floating-badge .badge-text {
    color: #0d1b2a;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   TOOLS SECTION - Hesaplama Araçları Grid
   ============================================ */
.tools-section {
    background: #f8f9fa;
    padding: 100px 0;
}
.tools-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
.tool-card {
    background: #fff;
    padding: 40px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 30px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
    cursor: pointer;
    border: 1px solid rgba(0,0,0,0.05);
}
.tool-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}
.tool-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(197, 160, 101, 0.1), rgba(197, 160, 101, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.4s ease;
}
.tool-card:hover .tool-icon {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}
.tool-icon i {
    font-size: 1.8rem;
    color: var(--gold);
    transition: all 0.4s ease;
}
.tool-card:hover .tool-icon i {
    color: #fff;
}
.tool-card h4 {
    color: #0d1b2a;
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-family: var(--font-body);
    font-weight: 600;
}
.tool-card p {
    color: #888;
    font-size: 0.85rem;
    margin: 0;
}

/* ============================================
   PRICING SECTION - Hizmet Paketleri
   ============================================ */
.pricing-section {
    background: #ffffff;
    padding: 100px 0;
}
.section-desc-dark {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}
.pricing-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 35px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.06);
    position: relative;
}
.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}
.pricing-card.featured {
    background: #0d1b2a;
    transform: scale(1.05);
}
.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}
.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: #0d1b2a;
    padding: 6px 25px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.pricing-header h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-family: var(--font-body);
    font-weight: 600;
}
.pricing-card:not(.featured) .pricing-header h4 { color: #0d1b2a; }
.pricing-card.featured .pricing-header h4 { color: var(--gold); }
.pricing-amount {
    margin-bottom: 30px;
}
.pricing-amount .currency {
    font-size: 1.5rem;
    vertical-align: top;
}
.pricing-amount .price {
    font-size: 3rem;
    font-weight: 700;
    font-family: var(--font-heading);
}
.pricing-amount .period {
    font-size: 0.9rem;
    opacity: 0.7;
}
.pricing-card:not(.featured) .pricing-amount { color: #0d1b2a; }
.pricing-card.featured .pricing-amount { color: #fff; }
.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: left;
}
.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}
.pricing-card.featured .pricing-features li {
    border-color: rgba(255,255,255,0.1);
    color: var(--text-light);
}
.pricing-card:not(.featured) .pricing-features li { color: #555; }
.pricing-features li i {
    font-size: 0.9rem;
}
.pricing-features li .fa-check { color: #27ae60; }
.pricing-features li .fa-times { color: #e74c3c; }
.pricing-features li.disabled { opacity: 0.5; }
.btn-pricing {
    display: block;
    width: 100%;
    padding: 15px 30px;
    background: transparent;
    color: #0d1b2a;
    border: 2px solid #0d1b2a;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}
.btn-pricing:hover {
    background: #0d1b2a;
    color: #fff;
}
.btn-pricing-featured {
    display: block;
    width: 100%;
    padding: 15px 30px;
    background: var(--gold);
    color: #0d1b2a;
    border: 2px solid var(--gold);
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}
.btn-pricing-featured:hover {
    background: transparent;
    color: var(--gold);
}

/* ============================================
   FAQ SECTION - SSS Accordion
   ============================================ */
.faq-section {
    background: #f8f9fa;
    padding: 100px 0;
}
.accordion-item {
    background: #fff;
    border: none !important;
    border-radius: 12px !important;
    margin-bottom: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    overflow: hidden;
}
.accordion-button {
    background: #fff;
    color: #0d1b2a;
    font-weight: 600;
    font-size: 1.05rem;
    padding: 20px 25px;
    box-shadow: none !important;
}
.accordion-button:not(.collapsed) {
    background: #0d1b2a;
    color: #fff;
}
.accordion-button:not(.collapsed) i { color: var(--gold); }
.accordion-button::after {
    background-size: 1rem;
    width: 1rem;
    height: 1rem;
}
.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}
.accordion-body {
    padding: 20px 25px;
    color: #666;
    line-height: 1.8;
}

/* ============================================
   CONTACT OVERLAP SECTION - LIGHT
   ============================================ */
.contact-overlap-section {
    background: var(--bg-secondary);
    padding: 100px 0 0;
    position: relative;
}
.contact-overlap-wrapper {
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transform: translateY(60px);
}
.contact-info-side {
    background: var(--navy);
    padding: 50px 40px;
    height: 100%;
}
.contact-info-side h3 {
    color: var(--gold);
    font-size: 1.8rem;
    margin-bottom: 15px;
}
.contact-info-side > p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 35px;
    line-height: 1.7;
}
.contact-details { margin-top: 30px; }
.contact-detail-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}
.contact-detail-item i {
    color: var(--gold);
    font-size: 1.3rem;
    margin-top: 3px;
}
.contact-detail-item h5 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 5px;
    font-family: var(--font-body);
    font-weight: 600;
}
.contact-detail-item p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.95rem;
}
.contact-form-side {
    padding: 50px 40px;
    background: #fff;
}
.contact-form-side h4 {
    color: var(--navy);
    font-size: 1.5rem;
    margin-bottom: 30px;
    font-family: var(--font-body);
    font-weight: 600;
}
.overlap-contact-form .form-control,
.overlap-contact-form .form-select {
    padding: 15px 20px;
    border: 1px solid rgba(26, 54, 93, 0.1);
    border-radius: 10px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}
.overlap-contact-form .form-control:focus,
.overlap-contact-form .form-select:focus {
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(26, 54, 93, 0.1);
}
.btn-submit-overlap {
    width: 100%;
    padding: 16px 30px;
    background: linear-gradient(135deg, var(--navy), var(--navy-dark));
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s ease;
}
.btn-submit-overlap:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* ============================================
   RESPONSIVE - Yeni Bölümler
   ============================================ */
@media (max-width: 991px) {
    .parallax-title { font-size: 2.5rem; }
    .parallax-stats { gap: 40px; }
    .parallax-stat .stat-num { font-size: 2.5rem; }
    .tools-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-card.featured { transform: scale(1); }
    .pricing-card.featured:hover { transform: translateY(-10px); }
    .about-features-grid { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
    .parallax-section { padding: 80px 0; background-attachment: scroll; }
    .parallax-title { font-size: 2rem; }
    .parallax-stats { gap: 30px; }
    .about-section-white { padding: 80px 0; }
    .section-title-dark { font-size: 2rem; }
    .about-image-collage { margin-top: 40px; padding: 15px; }
    .collage-main img { height: 350px; }
    .collage-secondary { width: 150px; }
    .experience-floating-badge { top: 20px; padding: 20px; }
    .experience-floating-badge .badge-number { font-size: 2rem; }
    .tools-section { padding: 80px 0; }
    .tools-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .tool-card { padding: 25px 15px; }
    .tool-icon { width: 55px; height: 55px; }
    .tool-icon i { font-size: 1.4rem; }
    .pricing-section { padding: 80px 0; }
    .faq-section { padding: 80px 0; }
    .contact-overlap-wrapper { transform: translateY(30px); }
    .contact-info-side, .contact-form-side { padding: 35px 25px; }
}
@media (max-width: 575px) {
    .tools-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .tool-card h4 { font-size: 0.95rem; }
}

/* ============================================
   TOAST NOTIFICATIONS - LIGHT
   ============================================ */
.custom-toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    padding: 18px 28px;
    background: linear-gradient(145deg, var(--bg-card) 0%, var(--bg-secondary) 100%);
    border-radius: 12px;
    border: 1px solid rgba(26, 54, 93, 0.1);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 10000;
    transform: translateX(120%);
    opacity: 0;
    transition: all 0.4s var(--transition-smooth);
    max-width: 400px;
}
.custom-toast.show {
    transform: translateX(0);
    opacity: 1;
}
.custom-toast.success {
    border-color: rgba(40, 167, 69, 0.3);
}
.custom-toast.success i {
    color: #28a745;
    font-size: 24px;
}
.custom-toast.error {
    border-color: rgba(220, 53, 69, 0.3);
}
.custom-toast.error i {
    color: #dc3545;
    font-size: 24px;
}
.custom-toast span {
    color: var(--text-primary);
    font-size: 14px;
    line-height: 1.5;
}

@media (max-width: 576px) {
    .custom-toast {
        left: 15px;
        right: 15px;
        bottom: 15px;
        max-width: none;
    }
}

/* ============================================
   GOOGLE MAPS - LIGHT
   ============================================ */
.google-maps-wrapper {
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(26, 54, 93, 0.1);
    box-shadow: var(--shadow-card);
}
.google-maps-wrapper iframe {
    width: 100%;
    height: 250px;
    border: none;
    display: block;
}

/* ============================================
   ACHIEVEMENTS SECTION - LIGHT
   ============================================ */
.achievements-section {
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.achievements-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.03) 0%, transparent 100%);
    pointer-events: none;
}

.achievements-content {
    position: relative;
    z-index: 1;
}

.achievements-content .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.achievements-content .section-desc {
    text-align: left;
    max-width: 100%;
    margin-bottom: 40px;
}

.achievement-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-item .feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(26, 54, 93, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-item .feature-icon i {
    font-size: 1.3rem;
    color: var(--navy);
}

.feature-content h5 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--navy);
}

.feature-content p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    position: relative;
    z-index: 1;
}

.achievement-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(26, 54, 93, 0.08);
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.achievement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--navy), transparent);
    opacity: 0;
    transition: var(--transition-fast);
}

.achievement-card:hover {
    transform: translateY(-8px);
    border-color: rgba(26, 54, 93, 0.15);
    box-shadow: var(--shadow-card-hover);
}

.achievement-card:hover::before {
    opacity: 1;
}

.achievement-card.gold {
    background: linear-gradient(135deg, var(--navy), var(--navy-dark));
    border: none;
}

.achievement-card.gold .achievement-icon,
.achievement-card.gold .achievement-number,
.achievement-card.gold .achievement-label {
    color: #ffffff;
}

.achievement-card.gold .achievement-icon {
    background: rgba(255,255,255,0.15);
}

.achievement-icon {
    width: 70px;
    height: 70px;
    background: rgba(26, 54, 93, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.achievement-icon i {
    font-size: 1.8rem;
    color: var(--navy);
}

.achievement-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 10px;
}

.achievement-number::after {
    content: '+';
}

.achievement-label {
    font-size: 0.95rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 991px) {
    .achievements-grid {
        margin-top: 50px;
    }
}

@media (max-width: 576px) {
    .achievements-grid {
        grid-template-columns: 1fr;
    }
    
    .achievement-card {
        padding: 30px 20px;
    }
    
    .achievement-number {
        font-size: 2.5rem;
    }
}

/* ============================================
   TESTIMONIALS SECTION - LIGHT
   ============================================ */
.testimonials-section {
    background: var(--bg-primary);
    position: relative;
}

.testimonial-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 40px;
    height: 100%;
    border: 1px solid rgba(26, 54, 93, 0.08);
    transition: var(--transition-fast);
    position: relative;
    box-shadow: var(--shadow-card);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 5rem;
    color: var(--navy);
    opacity: 0.08;
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(26, 54, 93, 0.15);
}

.testimonial-rating {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: var(--gold);
    font-size: 1rem;
}

.testimonial-rating i.far {
    opacity: 0.3;
}

.testimonial-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid rgba(26, 54, 93, 0.08);
}

.author-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    overflow: hidden;
    background: rgba(26, 54, 93, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--navy);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-avatar i {
    font-size: 1.5rem;
    color: var(--navy);
}

.author-info h5 {
    font-size: 1rem;
    margin-bottom: 3px;
    color: var(--navy);
}

.author-info span {
    font-size: 0.85rem;
    color: var(--gold-dark);
}

/* ============================================
   FAQ SECTION - LIGHT
   ============================================ */
.faq-section {
    background: var(--bg-secondary);
    position: relative;
}

.faq-accordion {
    background: transparent;
}

.faq-accordion .accordion-item {
    background: var(--bg-card);
    border: 1px solid rgba(26, 54, 93, 0.08);
    border-radius: 15px !important;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-accordion .accordion-header {
    margin: 0;
}

.faq-accordion .accordion-button {
    background: var(--bg-card);
    color: var(--navy);
    font-size: 1.05rem;
    font-weight: 500;
    padding: 25px 30px;
    border: none;
    box-shadow: none;
    transition: var(--transition-fast);
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: rgba(26, 54, 93, 0.05);
    color: var(--navy);
}

.faq-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231A365D'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: var(--transition-fast);
}

.faq-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.faq-accordion .accordion-button i {
    color: var(--navy);
}

.faq-accordion .accordion-collapse {
    background: var(--bg-card);
}

.faq-accordion .accordion-body {
    padding: 0 30px 25px;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
}

/* ==================== NAVBAR SEARCH BUTTON - LIGHT ==================== */
.navbar-search-btn {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    background: rgba(26, 54, 93, 0.08);
    border: 2px solid rgba(26, 54, 93, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    transition: var(--transition-fast);
    cursor: pointer;
    flex-shrink: 0;
}

.premium-navbar:not(.scrolled) .navbar-search-btn {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--text-white);
}

.premium-navbar:not(.scrolled) .navbar-search-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
}

.navbar-search-btn:hover {
    background: var(--navy);
    color: #ffffff;
}

/* ==================== NAV APPOINTMENT BUTTON - LIGHT ==================== */
.nav-appointment-btn {
    background: linear-gradient(135deg, var(--navy), var(--navy-dark));
    color: #ffffff !important;
    padding: 12px 24px;
    border-radius: 60px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-md);
}

.nav-appointment-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: #ffffff !important;
}

.mobile-appointment-link {
    background: linear-gradient(135deg, var(--navy), var(--navy-dark));
    color: #ffffff !important;
    padding: 15px 30px;
    border-radius: 60px;
    display: inline-block;
    margin-top: 20px;
    font-weight: 600;
}

/* ==================== BACK TO TOP BUTTON - LIGHT ==================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--navy), var(--navy-dark));
    color: #ffffff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-fast);
    z-index: 9999;
    box-shadow: var(--shadow-md);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* ==================== COOKIE CONSENT BANNER - LIGHT ==================== */
.cookie-banner {
    position: fixed;
    bottom: -200px;
    left: 0;
    right: 0;
    background: var(--bg-card);
    border-top: 1px solid rgba(26, 54, 93, 0.1);
    padding: 20px;
    z-index: 99999;
    transition: bottom 0.5s ease;
    box-shadow: 0 -10px 50px rgba(0,0,0,0.1);
    overflow: hidden;
}

.cookie-banner.visible {
    bottom: 0;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.cookie-icon {
    width: 60px;
    height: 60px;
    background: rgba(26, 54, 93, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cookie-icon i {
    font-size: 1.8rem;
    color: var(--navy);
}

.cookie-text {
    flex: 1;
    min-width: 250px;
}

.cookie-text h5 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--navy);
}

.cookie-text p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

.cookie-text a {
    color: var(--navy);
}

.cookie-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-actions .btn-accept {
    background: linear-gradient(135deg, var(--navy), var(--navy-dark));
    color: #ffffff;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.cookie-actions .btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.cookie-actions .btn-reject {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid rgba(26, 54, 93, 0.2);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-fast);
}

.cookie-actions .btn-reject:hover {
    border-color: var(--navy);
    color: var(--navy);
}

@media (max-width: 768px) {
    .cookie-banner {
        padding: 15px 10px;
        left: 0;
        right: 0;
        max-width: 100vw;
        overflow: hidden;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        padding: 0;
        gap: 15px;
        max-width: 100%;
    }
    
    .cookie-icon {
        width: 48px;
        height: 48px;
    }
    
    .cookie-icon i {
        font-size: 1.4rem;
    }
    
    .cookie-text {
        min-width: unset;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }
    
    .cookie-text h5 {
        font-size: 1rem;
    }
    
    .cookie-text p {
        font-size: 0.8rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        word-break: break-word;
        max-width: 100%;
        padding: 0 5px;
    }
    
    .cookie-actions {
        width: 100%;
        justify-content: center;
        gap: 10px;
    }
    
    .cookie-actions .btn-accept,
    .cookie-actions .btn-reject {
        padding: 10px 24px;
        font-size: 0.85rem;
        flex: 1;
        max-width: 160px;
    }
    
    .back-to-top {
        right: 20px;
        bottom: 20px;
        width: 45px;
        height: 45px;
    }
}

/* ==================== PRINT STYLES ==================== */
@media print {
    .floating-widgets,
    .premium-navbar,
    .back-to-top,
    .cookie-banner,
    .premium-footer {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .section-padding {
        padding: 30px 0 !important;
    }
}

/* ==================== CALCULATOR STYLES ==================== */
.calculators-section {
    background: var(--bg-secondary);
}

.calculator-tabs {
    margin-bottom: 40px;
}

.calculator-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    background: var(--bg-card);
    padding: 15px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
}

.calculator-nav .nav-link {
    padding: 15px 30px;
    border-radius: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    background: var(--bg-tertiary);
    border: none;
    transition: var(--transition-fast);
}

.calculator-nav .nav-link:hover {
    color: var(--navy);
    background: rgba(26, 54, 93, 0.1);
}

.calculator-nav .nav-link.active {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    color: #fff;
    box-shadow: 0 5px 20px rgba(26, 54, 93, 0.3);
}

.calculator-card {
    background: var(--bg-card);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.calculator-form h3 {
    font-family: var(--font-heading);
    color: var(--navy);
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.calculator-form .calculator-desc {
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.calculator-form .form-label {
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 8px;
}

.calculator-form .form-control,
.calculator-form .form-select {
    padding: 15px 20px;
    border: 2px solid rgba(26, 54, 93, 0.1);
    border-radius: 12px;
    font-size: 1rem;
    transition: var(--transition-fast);
}

.calculator-form .form-control:focus,
.calculator-form .form-select:focus {
    border-color: var(--navy);
    box-shadow: 0 0 0 4px rgba(26, 54, 93, 0.1);
}

.btn-calculate {
    width: 100%;
    padding: 18px 30px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #fff;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-calculate:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(184, 134, 11, 0.4);
}

.calculator-result {
    height: 100%;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-tertiary), var(--bg-secondary));
    border-radius: 20px;
    padding: 30px;
}

.result-placeholder {
    text-align: center;
    color: var(--text-muted);
}

.result-placeholder i {
    font-size: 4rem;
    opacity: 0.3;
    margin-bottom: 15px;
    display: block;
}

.result-success,
.result-error {
    text-align: center;
    width: 100%;
}

.result-header {
    margin-bottom: 20px;
}

.result-header i {
    font-size: 3rem;
    color: #27ae60;
    margin-bottom: 10px;
}

.result-error i {
    font-size: 3rem;
    color: #e74c3c;
    margin-bottom: 10px;
}

.result-header h4,
.result-error h4 {
    font-family: var(--font-heading);
    color: var(--navy);
    font-size: 1.3rem;
}

.result-amount {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    padding: 25px;
    border-radius: 16px;
    margin-bottom: 25px;
}

.result-amount .amount {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    font-family: var(--font-body);
    letter-spacing: 0.5px;
}

.result-details {
    text-align: left;
    background: var(--bg-card);
    border-radius: 12px;
    padding: 20px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(26, 54, 93, 0.1);
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-item .label {
    color: var(--text-secondary);
}

.detail-item .value {
    font-weight: 600;
    color: var(--navy);
}

.detail-item.warning .value {
    color: #f39c12;
}

.result-note {
    margin-top: 15px;
    font-size: 0.85rem;
    color: var(--text-muted);
    background: rgba(26, 54, 93, 0.05);
    padding: 12px;
    border-radius: 8px;
}

.calculator-disclaimer {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    margin-top: 50px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(243, 156, 18, 0.1), rgba(243, 156, 18, 0.05));
    border-radius: 16px;
    border-left: 4px solid #f39c12;
}

.disclaimer-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: #f39c12;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.disclaimer-icon i {
    color: #fff;
    font-size: 1.3rem;
}

.disclaimer-content h5 {
    color: var(--navy);
    margin-bottom: 10px;
    font-weight: 700;
}

.disclaimer-content p {
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.disclaimer-content .btn-sm {
    padding: 10px 20px;
    font-size: 0.85rem;
}

@media (max-width: 992px) {
    .calculator-card {
        padding: 25px;
    }
    
    .calculator-result {
        margin-top: 30px;
        min-height: auto;
    }
}

@media (max-width: 576px) {
    .calculator-nav .nav-link {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .result-amount .amount {
        font-size: 1.6rem;
    }
    
    .calculator-disclaimer {
        flex-direction: column;
        text-align: center;
    }
    
    .disclaimer-icon {
        margin: 0 auto;
    }
}

/* ============================================
   TESTIMONIALS PAGE - NEW DESIGN SYSTEM
   ============================================ */

/* Testimonial Card - New Design */
.testimonial-card-new {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 25px;
    height: 100%;
    position: relative;
    border: 1px solid rgba(26, 54, 93, 0.08);
    box-shadow: 0 10px 40px rgba(26, 54, 93, 0.06);
    transition: all 0.4s var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.testimonial-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(26, 54, 93, 0.12);
    border-color: rgba(26, 54, 93, 0.12);
}

.testimonial-card-new.featured {
    border: 2px solid var(--gold);
    background: linear-gradient(135deg, #FFFDF5 0%, #FFFFFF 100%);
}

.testimonial-card-new.featured::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 20px;
    right: 20px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 0 0 3px 3px;
}

/* Card Badges */
.card-badges {
    display: flex;
    gap: 6px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.card-badges .badge {
    font-size: 0.7rem;
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.badge-pinned {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    color: #fff;
}

.badge-featured {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: #fff;
}

.badge-verified {
    background: linear-gradient(135deg, #10B981, #34D399);
    color: #fff;
}

/* Rating Stars */
.testimonial-card-new .testimonial-rating {
    margin-bottom: 15px;
}

.testimonial-card-new .testimonial-rating i {
    color: var(--gold);
    font-size: 0.9rem;
    margin-right: 2px;
}

/* Content */
.testimonial-card-new .testimonial-content {
    flex: 0 0 auto;
    margin-bottom: 20px;
}

.testimonial-card-new .testimonial-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-secondary);
    font-style: italic;
    margin: 0;
}

/* Admin Reply */
.admin-reply {
    background: var(--bg-secondary);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 20px;
    border-left: 3px solid var(--navy);
}

.admin-reply-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 0.8rem;
}

.admin-reply-header i {
    color: var(--navy);
}

.admin-reply-header strong {
    color: var(--navy);
}

.admin-reply-header .reply-date {
    color: var(--text-muted);
    margin-left: auto;
    font-size: 0.75rem;
}

.admin-reply p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

/* Author */
.testimonial-card-new .testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid rgba(26, 54, 93, 0.08);
    margin-top: auto;
}

.testimonial-card-new .author-image {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-tertiary), var(--bg-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(26, 54, 93, 0.1);
}

.testimonial-card-new .author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-card-new .author-image i {
    font-size: 1.4rem;
    color: var(--navy);
    opacity: 0.4;
}

.testimonial-card-new .author-info h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 3px;
}

.testimonial-card-new .author-info span {
    font-size: 0.8rem;
    color: var(--gold-dark);
    font-weight: 500;
}

.testimonial-card-new .testimonial-date {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Testimonial Actions */
.testimonial-actions {
    text-align: center;
}

/* Testimonials Page Styles */
.testimonials-page {
    background: var(--bg-secondary);
}

/* Filter Section */
.testimonial-filters {
    background: var(--bg-card);
    padding: 25px 30px;
    border-radius: 16px;
    box-shadow: 0 5px 25px rgba(26, 54, 93, 0.06);
}

.filter-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 8px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-select {
    border: 1px solid rgba(26, 54, 93, 0.15);
    border-radius: 10px;
    padding: 10px 15px;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.filter-select:focus {
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(26, 54, 93, 0.1);
}

/* Submit Testimonial Section */
.submit-testimonial-section {
    margin-top: 60px;
}

.submit-testimonial-card {
    background: var(--bg-card);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 15px 50px rgba(26, 54, 93, 0.08);
    border: 1px solid rgba(26, 54, 93, 0.06);
}

.card-header-custom {
    text-align: center;
    margin-bottom: 35px;
}

.card-header-custom i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 15px;
    display: block;
}

.card-header-custom h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--navy);
    margin-bottom: 10px;
}

.card-header-custom p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Rating Input */
.rating-input {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 5px;
}

.rating-input input {
    display: none;
}

.rating-input label {
    cursor: pointer;
    font-size: 1.8rem;
    color: #ddd;
    transition: var(--transition-fast);
}

.rating-input label:hover,
.rating-input label:hover ~ label,
.rating-input input:checked ~ label {
    color: var(--gold);
}

/* Photo Upload Area */
.photo-upload-area {
    border: 2px dashed rgba(26, 54, 93, 0.2);
    border-radius: 16px;
    cursor: pointer;
    transition: var(--transition-fast);
    overflow: hidden;
}

.photo-upload-area:hover {
    border-color: var(--navy);
    background: rgba(26, 54, 93, 0.02);
}

.upload-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    text-align: center;
}

.upload-placeholder i {
    font-size: 2.5rem;
    color: var(--navy);
    opacity: 0.3;
    margin-bottom: 10px;
}

.upload-placeholder span {
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 5px;
}

.upload-placeholder small {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.upload-preview {
    position: relative;
    height: 200px;
}

.upload-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.remove-photo {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(220, 38, 38, 0.9);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.remove-photo:hover {
    background: #dc2626;
    transform: scale(1.1);
}

/* Character Counter */
.char-counter {
    text-align: right;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 5px;
}

/* KVKK Check */
.kvkk-check {
    background: var(--bg-secondary);
    padding: 15px 20px;
    border-radius: 12px;
}

.kvkk-check a {
    color: var(--navy);
    font-weight: 600;
    text-decoration: underline;
}

/* Form Note */
.form-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Load More Button */
#loadMoreBtn {
    min-width: 250px;
}

.testimonial-count {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-left: 5px;
}

/* Testimonial Photo - Content Image */
.testimonial-photo {
    margin: 20px 0;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 25px rgba(26, 54, 93, 0.12);
}

.testimonial-photo .photo-link {
    display: block;
    position: relative;
    width: 100%;
    max-height: 280px;
    overflow: hidden;
}

.testimonial-photo img {
    width: 100%;
    height: auto;
    max-height: 280px;
    object-fit: cover;
    border-radius: 16px;
    transition: transform 0.4s var(--transition-smooth);
}

.testimonial-photo .photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 54, 93, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 12px;
}

.testimonial-photo .photo-overlay i {
    color: #fff;
    font-size: 1.5rem;
}

.testimonial-photo:hover img {
    transform: scale(1.05);
}

.testimonial-photo:hover .photo-overlay {
    opacity: 1;
}

/* Default Visual for testimonials without photo */
.testimonial-photo.default-visual {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 180px;
    position: relative;
    overflow: hidden;
}

.testimonial-photo.default-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5L35 20H50L38 30L43 45L30 35L17 45L22 30L10 20H25L30 5Z' fill='rgba(212,175,55,0.05)'/%3E%3C/svg%3E") repeat;
    opacity: 0.3;
}

.default-logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 1;
    text-align: center;
    padding: 20px;
}

.default-logo-container i {
    font-size: 3rem;
    color: var(--gold);
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

.default-logo-container span {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .testimonial-card-new {
        padding: 25px;
    }
    
    .submit-testimonial-card {
        padding: 25px;
    }
    
    .card-header-custom h3 {
        font-size: 1.5rem;
    }
    
    .testimonial-filters {
        padding: 20px;
    }
    
    .testimonial-photo .photo-link {
        max-height: 220px;
    }
    
    .testimonial-photo img {
        max-height: 220px;
    }
}

/* ============================================
   PREMIUM MOBILE REDESIGN - LAW FIRM
   Senior Web Designer Approach
   ============================================ */

/* Mobile Sticky Bottom Action Bar - Premium Glass Design */
/* ========================================
   PREMIUM MOBILE FLOATING DOCK
   Minimal & Elegant Design
======================================== */
.mobile-action-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10001;
    pointer-events: none;
}

.mobile-dock {
    position: relative;
    pointer-events: auto;
}

/* Subtle ambient glow */
.dock-glow {
    display: none;
}

.dock-container {
    display: flex;
    align-items: center;
    justify-content: space-around;
    background: linear-gradient(170deg, 
        rgba(18, 35, 60, 0.99) 0%, 
        rgba(10, 22, 42, 1) 100%);
    padding: 14px 24px;
    padding-bottom: calc(14px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.3);
}

/* Dock Item (Call & WhatsApp) */
.dock-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    text-decoration: none;
    border-radius: 14px;
    transition: all 0.25s ease;
    -webkit-tap-highlight-color: transparent;
}

.dock-item:active {
    transform: scale(0.95);
}

/* Icon Wrapper */
.dock-icon-wrapper {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    transition: all 0.25s ease;
}

.dock-icon-wrapper i {
    font-size: 1.35rem;
    transition: all 0.25s ease;
}

/* Call Button Styles */
.dock-call .dock-icon-wrapper {
    background: linear-gradient(145deg, #e8c84a, #d4af37);
    box-shadow: 
        0 4px 15px rgba(212, 175, 55, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.dock-call .dock-icon-wrapper i {
    color: #12233c;
}

.dock-call:active .dock-icon-wrapper {
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.25);
}

/* WhatsApp Button Styles */
.dock-whatsapp .dock-icon-wrapper {
    background: linear-gradient(145deg, #34d058, #25D366);
    box-shadow: 
        0 4px 15px rgba(37, 211, 102, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.dock-whatsapp .dock-icon-wrapper i {
    color: #fff;
}

.dock-whatsapp:active .dock-icon-wrapper {
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.25);
}

/* Labels */
.dock-label {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dock-call .dock-label {
    color: #d4af37;
}

.dock-whatsapp .dock-label {
    color: #34d058;
}

/* Center Logo Section */
.dock-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 0 8px;
}

.dock-logo {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
}

.dock-logo i {
    font-size: 0.9rem;
    color: #d4af37;
}

.dock-tagline {
    font-size: 0.55rem;
    font-weight: 600;
    color: rgba(212, 175, 55, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

/* Mobile-specific navbar adjustments */
@media (max-width: 991px) {
    .mobile-action-bar {
        display: block !important;
    }
    
    /* Hide navbar phone and appointment on mobile */
    .navbar-phone,
    .nav-appointment-btn {
        display: none !important;
    }
    
    /* Simpler navbar */
    .navbar-right {
        gap: 15px;
    }
    
    /* Hide floating widgets on mobile - we have bottom bar */
    .floating-widgets {
        display: none !important;
    }
    
    /* Add bottom padding to body for action bar */
    body {
        padding-bottom: 85px;
    }
    
    /* Clean navbar appearance */
    .premium-navbar {
        padding: 10px 0;
    }
    
    .navbar-container {
        padding: 0 16px;
    }
    
    /* Improved mobile search button */
    .navbar-search-btn {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: rgba(26, 54, 93, 0.08);
        border: 1px solid rgba(26, 54, 93, 0.15);
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .premium-navbar:not(.scrolled) .navbar-search-btn {
        background: rgba(255, 255, 255, 0.15);
        border-color: rgba(255, 255, 255, 0.25);
    }
    
    .premium-navbar:not(.scrolled) .navbar-search-btn i {
        color: #fff;
    }
    
    /* Better hamburger menu button - Fixed */
    .mobile-menu-btn {
        width: 44px;
        height: 44px;
        display: flex !important;
        flex-direction: column !important;
        align-items: center;
        justify-content: center;
        gap: 5px;
        background: var(--navy);
        border-radius: 10px;
        padding: 0;
        border: none;
    }
    
    .mobile-menu-btn span {
        width: 20px;
        height: 2px;
        background: #fff;
        display: block;
        transition: all 0.3s ease;
    }
    
    .premium-navbar:not(.scrolled) .mobile-menu-btn {
        background: rgba(255, 255, 255, 0.2);
    }
}

/* Tablet & Mobile Hero Improvements */
@media (max-width: 991px) {
    .hero-section {
        min-height: calc(100vh - 85px);
        padding-bottom: 100px;
        overflow: hidden;
    }
    
    .hero-content {
        padding: 0 20px;
        text-align: center;
    }
    
    .hero-title {
        margin-bottom: 20px;
    }
    
    .hero-description {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 30px;
        opacity: 0.9;
    }
    
    /* Bigger CTA on mobile */
    .btn-gold-premium {
        width: 100%;
        max-width: 320px;
        padding: 18px 30px;
        font-size: 1rem;
        justify-content: center;
    }
    
    .hero-buttons {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
    
    /* Hide scroll indicator on mobile - not needed with bottom bar */
    .hero-scroll {
        display: none;
    }
}

/* Mobile-specific (under 767px) */
@media (max-width: 767px) {
    body {
        padding-bottom: 80px;
    }
    
    .hero-section {
        min-height: calc(100vh - 80px);
        padding-bottom: 40px;
        overflow: hidden;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-title .title-line {
        font-size: 1.8rem;
        display: block;
        margin-bottom: 8px;
    }
    
    .hero-title .title-highlight {
        font-size: 2.2rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
        padding: 0 10px;
    }
    
    /* Mobile navbar */
    .logo-icon {
        width: 42px;
        height: 42px;
    }
    
    .logo-icon i {
        font-size: 1.2rem;
    }
    
    .logo-text h1 {
        font-size: 1.1rem;
    }
    
    .logo-text span {
        font-size: 0.65rem;
    }
    
    /* Overlap cards on mobile */
    .overlap-cards {
        margin-top: 0;
        padding: 20px 16px;
    }
    
    .overlap-card {
        padding: 28px 22px;
    }
    
    .overlap-card h4 {
        font-size: 1.15rem;
    }
    
    .overlap-card p {
        font-size: 0.9rem;
    }
    
    /* Improved mobile menu */
    .mobile-menu {
        padding: 80px 24px 100px;
    }
    
    .mobile-nav-links a {
        font-size: 1.3rem;
    }
    
    .mobile-nav-links li {
        margin-bottom: 20px;
    }
    
    /* Mobile appointment link highlight */
    .mobile-appointment-link {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, var(--gold), var(--gold-dark));
        color: var(--navy-dark) !important;
        padding: 14px 28px !important;
        border-radius: 50px;
        margin-top: 20px;
        font-size: 1.1rem !important;
    }
    
    .mobile-appointment-link:hover {
        color: var(--navy-dark) !important;
        transform: scale(1.02);
    }
}

/* Extra small devices (under 375px) */
@media (max-width: 374px) {
    .hero-title {
        font-size: 1.7rem;
    }
    
    .hero-title .title-line {
        font-size: 1.5rem;
    }
    
    .hero-title .title-highlight {
        font-size: 1.9rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .logo-text h1 {
        font-size: 1rem;
    }
    
    /* Compact dock for tiny screens */
    .dock-icon-wrapper {
        width: 44px;
        height: 44px;
        border-radius: 12px;
    }
    
    .dock-icon-wrapper i {
        font-size: 1.2rem;
    }
    
    .dock-label {
        font-size: 0.55rem;
    }
    
    .dock-center {
        display: none;
    }
}

/* Footer padding adjustment for mobile action bar */
@media (max-width: 991px) {
    .premium-footer {
        padding-bottom: 100px;
    }
}

/* Ensure modals/popups appear above action bar */
.search-modal,
.mobile-menu {
    z-index: 10002;
}

/* ============================================
   PROFESSIONAL MOBILE LAW FIRM DESIGN
   Trust-First Approach for Mobile Users
   ============================================ */

/* Mobile Trust Bar - Only visible on mobile */
.mobile-trust-bar {
    display: none;
}

.mobile-quick-stats {
    display: none;
}

.mobile-hero-contact {
    display: none;
}

@media (max-width: 991px) {
    /* Mobile Trust Bar */
    .mobile-trust-bar {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(212, 175, 55, 0.3);
        border-radius: 50px;
        padding: 12px 20px;
        margin-bottom: 25px;
        max-width: 100%;
    }
    
    .mobile-trust-bar .trust-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
        padding: 0 12px;
    }
    
    .mobile-trust-bar .trust-item i {
        color: var(--gold);
        font-size: 1.1rem;
    }
    
    .mobile-trust-bar .trust-item span {
        color: #fff;
        font-size: 0.75rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        white-space: nowrap;
    }
    
    .mobile-trust-bar .trust-divider {
        width: 1px;
        height: 30px;
        background: rgba(212, 175, 55, 0.4);
    }
    
    /* Mobile Quick Stats */
    .mobile-quick-stats {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-bottom: 25px;
        padding: 0 10px;
    }
    
    .mobile-quick-stats .quick-stat {
        text-align: center;
        background: rgba(212, 175, 55, 0.1);
        border: 1px solid rgba(212, 175, 55, 0.25);
        border-radius: 12px;
        padding: 15px 18px;
        flex: 1;
        max-width: 110px;
    }
    
    .mobile-quick-stats .stat-number {
        color: var(--gold);
        font-size: 1.3rem;
        font-weight: 700;
        font-family: 'Cormorant Garamond', serif;
        line-height: 1;
        margin-bottom: 4px;
    }
    
    .mobile-quick-stats .stat-label {
        color: rgba(255, 255, 255, 0.85);
        font-size: 0.7rem;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    /* Mobile Hero Contact */
    .mobile-hero-contact {
        display: block;
        margin-top: 20px;
    }
    
    .mobile-hero-contact .hero-phone-link {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        color: rgba(255, 255, 255, 0.9);
        text-decoration: none;
        font-size: 0.95rem;
        font-weight: 500;
        padding: 10px 20px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 50px;
        transition: all 0.3s ease;
    }
    
    .mobile-hero-contact .hero-phone-link:hover,
    .mobile-hero-contact .hero-phone-link:active {
        background: rgba(255, 255, 255, 0.15);
        color: #fff;
    }
    
    .mobile-hero-contact .hero-phone-link i {
        color: var(--gold);
    }
    
    /* Enhanced Hero Content for Mobile */
    .hero-content {
        padding: 0 16px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-title {
        margin-bottom: 15px;
    }
    
    .hero-title .title-line {
        font-size: 1.6rem;
        display: block;
        margin-bottom: 5px;
        font-weight: 400;
        letter-spacing: 1px;
    }
    
    .hero-title .title-highlight {
        font-size: 2.4rem;
        font-weight: 700;
        color: var(--gold);
        text-shadow: 0 2px 15px rgba(212, 175, 55, 0.3);
    }
    
    .hero-description {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 20px;
        opacity: 0.9;
        max-width: 340px;
    }
    
    /* Better CTA button */
    .hero-buttons {
        width: 100%;
        max-width: 300px;
    }
    
    .btn-gold-premium {
        width: 100%;
        padding: 16px 28px;
        font-size: 1rem;
        font-weight: 600;
        justify-content: center;
        border-radius: 50px;
        box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    }
    
    /* Hide overlap cards on mobile - they're too heavy */
    .overlap-cards {
        display: none;
    }
}

@media (max-width: 767px) {
    .mobile-trust-bar {
        padding: 10px 15px;
        margin-bottom: 20px;
    }
    
    .mobile-trust-bar .trust-item {
        padding: 0 8px;
    }
    
    .mobile-trust-bar .trust-item i {
        font-size: 1rem;
    }
    
    .mobile-trust-bar .trust-item span {
        font-size: 0.65rem;
    }
    
    .mobile-trust-bar .trust-divider {
        height: 25px;
    }
    
    .mobile-quick-stats {
        gap: 12px;
    }
    
    .mobile-quick-stats .quick-stat {
        padding: 12px 15px;
        max-width: 95px;
    }
    
    .mobile-quick-stats .stat-number {
        font-size: 1.15rem;
    }
    
    .mobile-quick-stats .stat-label {
        font-size: 0.6rem;
    }
    
    .hero-title .title-line {
        font-size: 1.4rem;
    }
    
    .hero-title .title-highlight {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
        padding: 0 5px;
    }
}

@media (max-width: 374px) {
    .mobile-trust-bar {
        padding: 8px 10px;
        border-radius: 40px;
    }
    
    .mobile-trust-bar .trust-item {
        padding: 0 6px;
    }
    
    .mobile-trust-bar .trust-item span {
        font-size: 0.58rem;
    }
    
    .mobile-quick-stats .quick-stat {
        padding: 10px 12px;
        max-width: 85px;
    }
    
    .mobile-quick-stats .stat-number {
        font-size: 1rem;
    }
    
    .hero-title .title-line {
        font-size: 1.2rem;
    }
    
    .hero-title .title-highlight {
        font-size: 1.7rem;
    }
}

/* Force Mobile Floating Dock Visibility */
@media (max-width: 991px) {
    .mobile-action-bar {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 999999 !important;
    }
    
    .mobile-dock {
        pointer-events: auto !important;
    }
    
    .dock-container {
        display: flex !important;
    }
}

/* ============================================
   COMPREHENSIVE MOBILE RESPONSIVE OVERHAUL
   Premium $50K Law Firm - Pixel-Perfect Mobile
   ============================================ */

/* ---- TABLET (max 991px) ---- */
@media (max-width: 991px) {
    /* About Section: Remove huge gap when overlap cards are hidden */
    .about-section {
        padding-top: 80px !important;
    }
    
    .section-padding-top {
        padding-top: 80px !important;
    }
    
    /* About image - scale down */
    .about-image img {
        height: 400px;
    }
    
    /* Team card improvements */
    .team-image {
        height: 240px;
        margin: 20px;
        margin-bottom: 0;
    }
    
    .team-card::before {
        height: 80px;
    }
    
    /* Service cards */
    .service-image {
        height: 200px;
    }
    
    /* Blog cards */
    .blog-image {
        height: 200px;
    }
    
    /* Section header spacing reduce */
    .section-header {
        margin-bottom: 50px;
    }
    
    /* Section padding reduce */
    .section-padding {
        padding: 80px 0;
    }
    
    /* Contact card adjustments */
    .contact-info-card {
        padding: 35px;
    }
    
    .contact-form-card {
        padding: 35px;
    }
    
    /* CTA adjustments */
    .cta-content h2 {
        font-size: 2.5rem;
    }
    
    /* Back-to-top above mobile dock */
    .back-to-top {
        bottom: 100px;
        right: 20px;
    }
    
    /* Cookie banner above dock */
    .cookie-banner.visible {
        bottom: 110px;
    }
    
    /* Toast above dock */
    .custom-toast {
        bottom: 100px;
    }
    
    /* Map min-height */
    .map-container {
        min-height: 300px;
    }
    
    /* Stat items in 2-column */
    .stat-item {
        padding: 30px 15px;
    }
    
    .stat-number {
        font-size: 2.8rem;
    }
    
    .stat-icon {
        width: 70px;
        height: 70px;
    }
    
    .stat-icon i {
        font-size: 1.8rem;
    }
}

/* ---- MOBILE (max 767px) ---- */
@media (max-width: 767px) {
    /* Hero section - full viewport on mobile */
    .hero-section {
        min-height: 100vh;
        min-height: 100dvh;
        height: auto;
        padding-top: 0;
        padding-bottom: 40px;
        overflow: hidden;
    }
    
    /* About section - smooth transition from hero */
    .about-section {
        padding-top: 60px !important;
    }
    
    .section-padding-top {
        padding-top: 60px !important;
    }
    
    /* About image - proper mobile height */
    .about-image img {
        height: 300px;
        border-radius: 16px;
    }
    
    .about-image {
        border-radius: 16px;
    }
    
    .about-content h2 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    .about-content .lead {
        font-size: 1rem;
    }
    
    /* Process section mobile */
    .process-section {
        padding: 60px 0;
    }
    
    .process-step::before {
        display: none;
    }
    
    .process-icon {
        width: 65px;
        height: 65px;
    }
    
    .process-icon i {
        font-size: 1.5rem;
    }
    
    .process-content h4 {
        font-size: 1.05rem;
    }
    
    .process-content p {
        font-size: 0.85rem;
    }
    
    /* Team section - completely reworked for mobile */
    .team-section {
        padding: 60px 0;
    }
    
    .team-section::after {
        display: none;
    }
    
    .team-card {
        border-radius: 20px;
    }
    
    .team-card::before {
        height: 70px;
    }
    
    .team-image {
        height: 220px;
        margin: 16px;
        margin-bottom: 0;
        border-radius: 16px;
    }
    
    .team-placeholder i {
        font-size: 3rem;
    }
    
    .team-placeholder::after {
        width: 90px;
        height: 90px;
    }
    
    .team-content {
        padding: 20px 20px 25px;
    }
    
    .team-content h4 {
        font-size: 1.1rem;
    }
    
    .team-title {
        font-size: 0.75rem;
    }
    
    .team-social {
        padding: 10px 15px;
    }
    
    .team-social a {
        width: 36px;
        height: 36px;
    }
    
    /* Service section mobile */
    .services-section {
        padding: 60px 0;
    }
    
    .service-card {
        border-radius: 20px;
    }
    
    .service-image {
        height: 180px;
    }
    
    .service-content {
        padding: 40px 24px 24px;
    }
    
    .service-content h4 {
        font-size: 1.15rem;
    }
    
    .service-content p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .service-icon {
        width: 55px;
        height: 55px;
        bottom: -25px;
        left: 24px;
        border-radius: 16px;
    }
    
    .service-icon i {
        font-size: 1.3rem;
    }
    
    /* Blog section mobile */
    .blog-section {
        padding: 60px 0;
    }
    
    .blog-image {
        height: 180px;
    }
    
    .blog-content {
        padding: 24px;
    }
    
    .blog-content h4 {
        font-size: 1.1rem;
    }
    
    .blog-date {
        padding: 12px 14px;
        border-radius: 10px;
    }
    
    .blog-date .day {
        font-size: 1.3rem;
    }
    
    /* Stats section mobile */
    .stats-section {
        padding: 60px 0;
    }
    
    .stat-item {
        padding: 25px 15px;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .stat-text {
        font-size: 0.8rem;
        letter-spacing: 1px;
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .stat-icon i {
        font-size: 1.5rem;
    }
    
    /* Testimonials section mobile */
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonial-card-new {
        padding: 22px;
    }
    
    .testimonial-card-new .testimonial-content p {
        font-size: 0.9rem;
    }
    
    /* FAQ section mobile */
    .faq-section {
        padding: 60px 0 !important;
    }
    
    .faq-accordion .accordion-button {
        padding: 18px 20px;
        font-size: 0.95rem;
    }
    
    .faq-accordion .accordion-body {
        padding: 0 20px 20px;
        font-size: 0.9rem;
    }
    
    /* CTA section mobile */
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-content h2 {
        font-size: 1.6rem;
    }
    
    .cta-content p {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }
    
    .cta-badge {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .cta-badge i {
        font-size: 1.5rem;
    }
    
    .btn-dark {
        padding: 16px 35px;
        font-size: 0.9rem;
        letter-spacing: 1px;
    }
    
    /* Contact section mobile */
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-info-card {
        padding: 25px 20px;
    }
    
    .contact-info-item {
        gap: 15px;
        margin-bottom: 25px;
        padding-bottom: 25px;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        border-radius: 12px;
    }
    
    .contact-icon i {
        font-size: 1.2rem;
    }
    
    .contact-info-item h5 {
        font-size: 1rem;
    }
    
    .contact-info-item p {
        font-size: 0.85rem;
    }
    
    .contact-form-card {
        padding: 25px 20px;
    }
    
    .form-header h3 {
        font-size: 1.2rem;
    }
    
    .form-control {
        padding: 14px 18px;
        font-size: 0.9rem;
    }
    
    .btn-submit {
        padding: 16px;
        font-size: 0.9rem;
    }
    
    /* Map mobile */
    .map-container {
        min-height: 250px;
    }
    
    .map-header {
        padding: 14px 20px;
        font-size: 0.9rem;
    }
    
    /* Section header mobile */
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: 1.8rem !important;
        margin-bottom: 15px;
    }
    
    .section-desc {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .section-subtitle {
        font-size: 0.75rem;
        letter-spacing: 2px;
    }
    
    /* Callback section mobile */
    .callback-section {
        padding: 50px 0;
    }
    
    .callback-form-wrapper {
        padding: 28px 20px;
        border-radius: 16px;
    }
    
    .callback-header {
        margin-bottom: 25px;
    }
    
    .callback-header h2 {
        font-size: 1.5rem;
    }
    
    .callback-header p {
        font-size: 0.9rem;
    }
    
    /* Page header - inner pages */
    .page-header {
        padding: 120px 0 60px;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    /* Page hero (calculators etc) */
    .page-hero {
        padding: 120px 0 60px;
    }
    
    .page-hero .page-title {
        font-size: 2rem;
    }
    
    /* Parallax section mobile */
    .parallax-section {
        padding: 60px 0;
    }
    
    .parallax-title {
        font-size: 1.6rem;
    }
    
    .parallax-desc {
        font-size: 1rem;
    }
    
    .parallax-stats {
        gap: 20px;
    }
    
    .parallax-stat .stat-num {
        font-size: 2rem;
    }
    
    /* Newsletter mobile */
    .newsletter-card {
        padding: 30px 20px;
    }
    
    /* Footer mobile */
    .footer-main {
        padding: 60px 0 40px;
    }
    
    .footer-brand h3 {
        font-size: 1.5rem;
    }
    
    .premium-footer {
        padding-bottom: 80px;
    }
    
    /* Back-to-top & toast above dock */
    .back-to-top {
        bottom: 95px;
        right: 16px;
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }
    
    .custom-toast {
        bottom: 95px;
        left: 12px;
        right: 12px;
    }
    
    /* Experience badge */
    .experience-badge {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 15px;
        display: inline-flex;
        gap: 15px;
        align-items: center;
        padding: 18px 25px;
        border-radius: 14px;
    }
    
    .experience-badge .number {
        font-size: 2rem;
    }
    
    .experience-badge .text {
        font-size: 0.75rem;
    }
    
    /* Btn gold outline mobile */
    .btn-gold-outline {
        padding: 14px 30px;
        font-size: 0.85rem;
    }
    
    .btn-outline-gold {
        padding: 12px 28px;
        font-size: 0.85rem;
    }
    
    /* Testimonial actions mobile */
    .testimonial-actions {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .testimonial-actions .btn-navy,
    .testimonial-actions .btn-gold-outline {
        width: 100%;
        max-width: 300px;
        text-align: center;
        justify-content: center;
    }
    
    .testimonial-actions .btn-navy {
        margin-right: 0 !important;
    }
}

/* ---- SMALL MOBILE (max 575px) ---- */
@media (max-width: 575px) {
    /* Hero stays full viewport */
    .hero-section {
        min-height: 100vh;
        min-height: 100dvh;
        overflow: hidden;
    }
    
    .hero-title .title-highlight::after {
        width: 60px;
        height: 2px;
    }
    
    /* About section */
    .about-section {
        padding-top: 50px !important;
    }
    
    .about-image img {
        height: 250px;
    }
    
    .about-content h2 {
        font-size: 1.5rem;
    }
    
    .about-content .lead {
        font-size: 0.9rem;
    }
    
    /* Compact team card on small screens */
    .team-card::before {
        height: 60px;
    }
    
    .team-image {
        height: 200px;
        margin: 12px;
        margin-bottom: 0;
        border-radius: 14px;
    }
    
    .team-content {
        padding: 18px 16px 22px;
    }
    
    .team-content::before {
        width: 35px;
        height: 2px;
    }
    
    /* Service cards compact */
    .service-image {
        height: 160px;
    }
    
    .service-content {
        padding: 35px 20px 20px;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        bottom: -22px;
        left: 20px;
        border-radius: 14px;
    }
    
    .service-icon i {
        font-size: 1.1rem;
    }
    
    /* Blog cards compact */
    .blog-image {
        height: 160px;
    }
    
    .blog-content {
        padding: 20px;
    }
    
    .blog-content h4 {
        font-size: 1rem;
    }
    
    .blog-meta {
        font-size: 0.75rem;
        gap: 12px;
    }
    
    /* Stats compact */
    .stats-section {
        padding: 40px 0;
    }
    
    .stat-item {
        padding: 20px 10px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 12px;
    }
    
    .stat-icon i {
        font-size: 1.2rem;
    }
    
    /* Section titles extra small */
    .section-title {
        font-size: 1.5rem !important;
    }
    
    .section-desc {
        font-size: 0.85rem;
    }
    
    /* CTA compact */
    .cta-content h2 {
        font-size: 1.4rem;
    }
    
    .cta-content p {
        font-size: 0.85rem;
    }
    
    .btn-dark {
        padding: 14px 28px;
        font-size: 0.85rem;
    }
    
    /* Callback compact */
    .callback-form-wrapper {
        padding: 22px 16px;
    }
    
    .callback-header h2 {
        font-size: 1.3rem;
    }
    
    .btn-callback {
        padding: 14px 25px;
        font-size: 0.85rem;
    }
    
    /* Contact compact */
    .contact-info-card {
        padding: 20px 16px;
    }
    
    .contact-form-card {
        padding: 20px 16px;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
    }
    
    .contact-icon i {
        font-size: 1rem;
    }
    
    /* Page header compact */
    .page-header {
        padding: 100px 0 45px;
    }
    
    .page-header h1 {
        font-size: 1.5rem;
    }
    
    /* Page hero compact */
    .page-hero {
        padding: 100px 0 50px;
    }
    
    .page-hero .page-title {
        font-size: 1.6rem;
    }
    
    /* Achievements compact */
    .achievement-card {
        padding: 25px 18px;
    }
    
    .achievement-number {
        font-size: 2rem;
    }
    
    .achievement-icon {
        width: 55px;
        height: 55px;
    }
    
    .achievement-icon i {
        font-size: 1.4rem;
    }
    
    /* Footer compact */
    .footer-main {
        padding: 45px 0 30px;
    }
    
    .footer-brand h3 {
        font-size: 1.3rem;
    }
    
    .footer-title {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
}

/* ============================================
   MOBILE OVERFLOW PREVENTION - GLOBAL FIX
   Prevents horizontal scrolling on all devices
   ============================================ */

/* Ensure no element exceeds viewport width */
main,
.premium-footer,
section,
.container {
    max-width: 100%;
    overflow-x: hidden;
}

/* Fix hero section on all mobile sizes */
@media (max-width: 991px) {
    .hero-section {
        overflow: hidden !important;
        max-width: 100vw;
    }
    
    .hero-content {
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .hero-description {
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* Prevent decoration lines from causing overflow */
    .hero-decoration {
        overflow: hidden;
    }
    
    .decoration-line.left,
    .decoration-line.right {
        display: none;
    }
    
    /* Fix hero particles overflow */
    .hero-particles {
        overflow: hidden;
    }
    
    /* Navbar overflow prevention */
    .premium-navbar {
        max-width: 100vw;
        overflow: hidden;
    }
    
    .navbar-container {
        max-width: 100%;
        overflow: hidden;
    }
    
    /* About section overflow */
    .about-section {
        overflow: hidden;
        max-width: 100vw;
    }
    
    .about-image-wrapper {
        overflow: hidden;
        max-width: 100%;
    }
    
    .about-image {
        max-width: 100%;
    }
    
    .about-image img {
        max-width: 100%;
    }
    
    .about-content {
        max-width: 100%;
        overflow: hidden;
    }
    
    /* Experience badge - prevent overflow */
    .experience-badge {
        right: 10px;
        bottom: -25px;
    }
    
    /* Services section overflow */
    .services-section {
        overflow: hidden;
    }
    
    .services-section::after {
        display: none;
    }
    
    /* Cookie banner fix for dock */
    .cookie-banner {
        max-width: 100vw;
        overflow: hidden;
        box-sizing: border-box;
    }
    
    .cookie-banner.visible {
        bottom: 110px;
    }
    
    /* Stats section */
    .stats-section {
        overflow: hidden;
    }
    
    /* Parallax section */
    .parallax-section {
        overflow: hidden;
    }
    
    /* Callback section */
    .callback-section {
        overflow: hidden;
    }
    
    /* Contact section */
    .contact-section {
        overflow: hidden;
    }
    
    /* Blog section */
    .blog-section {
        overflow: hidden;
    }
    
    /* CTA section */
    .cta-section {
        overflow: hidden;
    }
    
    /* Footer sections */
    .premium-footer {
        overflow: hidden;
        max-width: 100vw;
    }
    
    /* Row and column overflow fix */
    .row {
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
    }
}

/* Additional small screen fixes */
@media (max-width: 575px) {
    /* Tighter padding on very small screens */
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .navbar-container {
        padding: 0 12px;
    }
    
    /* About section image */
    .about-image {
        border-radius: 12px;
    }
    
    .about-image img {
        border-radius: 12px;
    }
    
    /* Experience badge compact */
    .experience-badge {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 15px;
        display: inline-flex;
        padding: 15px 20px;
        border-radius: 12px;
    }
    
    .experience-badge .number {
        font-size: 1.8rem;
    }
    
    .experience-badge .text {
        font-size: 0.7rem;
    }
    
    /* Cookie banner extra small */
    .cookie-banner {
        padding: 12px 8px;
    }
    
    .cookie-banner.visible {
        bottom: 105px;
    }
    
    .cookie-text p {
        font-size: 0.78rem;
        line-height: 1.5;
    }
    
    .cookie-actions .btn-accept,
    .cookie-actions .btn-reject {
        padding: 8px 18px;
        font-size: 0.8rem;
    }
}