/* 
 * DR. MUSTAFA ONAL - MODERN CLINIC THEME
 * Inspired by reference: Dark Blue, Clean White, Modern Typography
 */

:root {
    /* Colors */
    --primary: #1B2A41;      /* Deep Navy Blue */
    --primary-light: #2C3E5A;
    --accent: #E5E7EB;       /* Light Gray/Beige for backgrounds */
    --accent-gold: #D4AF37;  /* Subtle Gold for icons */
    --text-dark: #111827;    /* Almost Black */
    --text-light: #4B5563;   /* Grey Text */
    --white: #FFFFFF;
    --bg-body: #F3F4F6;      /* Very Light Grey Background */
    
    /* Typography */
    --font-main: 'Open Sans', sans-serif;
    --font-heading: 'Montserrat', sans-serif;
    
    /* Spacing & Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 32px;
    --radius-xl: 48px;
    
    /* Layout */
    --container-width: 1280px;
    --header-height: 100px; /* Increased for new logo */
}

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-body);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 8px;
}

.btn-sm {
    padding: 10px 24px;
    font-size: 14px;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    border: 2px solid var(--primary);
    box-shadow: 0 4px 12px rgba(27, 42, 65, 0.2);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    border-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(27, 42, 65, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-dark);
    border: 2px solid #E5E7EB;
    background-color: var(--white);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

/* White Button Variant (for dark backgrounds) */
.btn-white {
    background-color: var(--white);
    color: var(--primary);
    border: 2px solid var(--white);
}

.btn-white:hover {
    background-color: transparent;
    color: var(--white);
}

.btn-outline-white {
    background-color: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-outline-white:hover {
    background-color: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.btn-full {
    width: 100%;
}

/* HEADER */
.navbar {
    background-color: transparent; /* Changed to transparent */
    height: var(--header-height);
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    box-shadow: none; /* Removed initial shadow */
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
    background-color: var(--white);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: relative;
}

.brand-logo {
    display: flex;
    align-items: center;
}

.logo-img-main {
    height: 70px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-dark);
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

/* Custom Language Dropdown */
.custom-lang-dropdown {
    position: relative;
    margin-left: 10px;
}

.lang-btn {
    background: transparent;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 20px;
    padding: 8px 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background-color: var(--bg-light);
    color: var(--primary);
    border-color: var(--primary);
}

.lang-btn i {
    font-size: 14px;
}

.lang-list {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    list-style: none;
    padding: 8px 0;
    min-width: 100px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1001;
    border: 1px solid rgba(0,0,0,0.05);
}

.custom-lang-dropdown:hover .lang-list,
.custom-lang-dropdown.active .lang-list {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-list li {
    padding: 8px 16px;
    font-size: 14px;
    color: var(--text-dark);
    cursor: pointer;
    transition: background 0.2s;
    font-weight: 500;
    text-align: center;
}

.lang-list li:hover {
    background-color: var(--bg-light);
    color: var(--primary);
}

.lang-list li.active {
    color: var(--primary);
    font-weight: 700;
    background-color: rgba(27, 42, 65, 0.05);
}

.lang-switch {
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    margin-left: 20px;
    color: var(--primary);
}

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

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

.simple-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 250px;
    background-color: var(--white);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 20px;
    border-radius: var(--radius-sm);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    border: 1px solid #E5E7EB;
    z-index: 999;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.simple-dropdown li a {
    font-size: 15px;
    color: var(--text-light);
    display: block;
    padding: 8px 0;
    transition: all 0.2s;
}

.simple-dropdown li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary);
    cursor: pointer;
}

/* MOBILE MENU */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    z-index: 2000;
    transition: right 0.4s ease;
    display: flex;
    flex-direction: column;
    padding: 40px;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
}

.mobile-menu-overlay.active {
    right: 0;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 60px;
}

.mobile-menu-content a {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    border-bottom: 1px solid #eee;
    padding-bottom: 16px;
    display: block;
}

.mobile-menu-content .btn {
    color: #ffffff !important;
    margin-top: 10px;
}

.mobile-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--primary);
    cursor: pointer;
}

.mobile-dropdown-container {
    width: 100%;
}

.mobile-dropdown-trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    border-bottom: 1px solid #eee;
    padding-bottom: 16px;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    cursor: pointer;
    text-align: left;
    font-family: var(--font-main);
}

.mobile-dropdown-content {
    display: none;
    flex-direction: column;
    padding-left: 20px;
    margin-top: 10px;
}

.mobile-dropdown-content.active {
    display: flex;
}

.mobile-sublink {
    font-size: 16px !important;
    font-weight: 500 !important;
    color: var(--text-dark) !important;
    border-bottom: 1px solid #f3f4f6 !important;
    padding: 12px 0 !important;
    display: block;
}

.mobile-dropdown-trigger i {
    transition: transform 0.3s ease;
}

.mobile-dropdown-trigger.active i {
    transform: rotate(180deg);
}

/* HERO SECTION */
.hero-section {
    padding: 80px 0;
    min-height: calc(100vh - var(--header-height));
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Background Gradient Effect like reference */
.hero-section::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 60%;
    height: 140%;
    background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, rgba(243,244,246,0) 70%);
    z-index: -1;
    filter: blur(60px);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #E5E7EB;
    padding: 8px 16px;
    border-radius: var(--radius-xl);
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 24px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.dot {
    width: 6px;
    height: 6px;
    background-color: var(--primary);
    border-radius: 50%;
}

.hero-title {
    font-size: 64px;
    line-height: 1.1;
    color: var(--primary);
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-highlight {
    font-family: var(--font-heading);
    font-style: normal;
    font-weight: 500;
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.hero-highlight::after {
    content: '';
    position: absolute;
    bottom: 8px; /* Moved up slightly closer to baseline, or down? 64px font size... let's try 8px from bottom box */
    left: 0;
    width: 100%;
    height: 3px; /* Thinner but visible */
    background-color: var(--accent-gold);
    opacity: 0.8;
    transform: scaleX(0);
    transform-origin: left;
    animation: underline-anim 1.5s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
    animation-delay: 0.5s;
    z-index: -1;
}

@keyframes underline-anim {
    0% {
        transform: scaleX(0);
    }
    100% {
        transform: scaleX(1);
    }
}

.hero-desc {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 500px;
}

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

.hero-stats {
    display: flex;
    align-items: center;
    gap: 30px;
}

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

.stat-num {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 0.5px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background-color: #D1D5DB;
}

/* HERO IMAGE */
.hero-image-area {
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.image-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    /* Dark background behind image to match reference feel */
    background: linear-gradient(135deg, #1B2A41 0%, #0F172A 100%);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    max-width: 550px;
    width: 100%;
}

.doctor-img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.floating-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-width: 280px;
}

.badge-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.badge-text strong {
    color: var(--primary);
    font-size: 14px;
    margin-bottom: 2px;
}

.badge-text span {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.2;
}

/* HERO RESPONSIVE */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
        padding-top: 20px;
    }

    .hero-content {
        order: 2;
        margin: 0 auto;
    }

    .hero-image-area {
        order: 1;
        justify-content: center;
        margin-bottom: 20px;
    }

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

    .hero-stats {
        justify-content: center;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .image-card {
        max-width: 450px;
        margin: 0 auto;
    }
    
    .floating-badge {
        right: 10px;
        bottom: 20px;
        padding: 12px 20px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 32px;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .stat-divider {
        display: none;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
}

/* TRUST STRIP */
.trust-strip {
    background-color: var(--bg-body);
    padding: 40px 0;
    border-top: 1px solid #E5E7EB;
    border-bottom: 1px solid #E5E7EB;
}

.trust-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0.8;
}

.partner-logos {
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.partner-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--text-light);
    font-size: 18px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.partner-item:hover {
    opacity: 1;
    color: var(--primary);
}

.partner-item i {
    font-size: 24px;
    color: var(--primary);
}

/* ABOUT SECTION */
.about-section {
    padding: 100px 0;
    background-color: var(--white);
}

.about-container {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: var(--primary);
    color: var(--white);
    padding: 30px;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: 5px solid var(--white);
}

.exp-years {
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
}

.exp-text {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-subtitle {
    display: block;
    font-size: 12px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-title {
    font-size: 42px;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 32px;
    font-weight: 800;
}

.highlight {
    font-family: var(--font-heading);
    font-style: italic;
    font-weight: 500;
}

.about-desc {
    color: var(--text-light);
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 1.8;
}

.about-features {
    list-style: none;
    margin: 32px 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--text-dark);
}

.about-features i {
    color: var(--accent-gold);
    font-size: 18px;
}

/* ABOUT RESPONSIVE */
@media (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .about-image-wrapper {
        max-width: 100%;
        width: 100%;
        margin: 0 auto 40px;
        height: auto !important;
        display: block;
    }
    
    .about-img {
        height: auto !important;
        width: 100%;
        max-height: 500px;
        object-fit: cover;
        display: block;
    }
    
    .experience-badge {
        width: 120px;
        height: 120px;
        padding: 20px;
        right: -10px;
        bottom: -10px;
    }
    
    .exp-years {
        font-size: 28px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 30px auto;
    }
}

/* TREATMENTS SECTION (NEW VERTICAL CARDS) */
.treatments-section {
    padding: 100px 0;
    background-color: var(--white);
}

.treatments-section .section-header {
    text-align: left; /* Align text to left */
    max-width: 100%; /* Ensure full width usage if needed */
    padding: 0 40px; /* Match container padding */
}

.treatments-section .section-desc {
    margin: 0; /* Remove auto margin */
    max-width: 600px;
}

.treatments-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Force 4 columns */
    gap: 20px; /* Reduced gap for fit */
    margin-top: 60px;
    width: 100%;
}

.treatments-section .container {
    max-width: 100%; /* Full width container */
    padding: 0 40px; /* Some padding on edges */
}

.treatment-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 700px; /* Even taller for full impact */
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

@media (max-width: 1200px) {
    .treatments-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on medium screens */
    }
}

@media (max-width: 768px) {
    .treatments-grid {
        grid-template-columns: 1fr; /* 1 column on mobile */
    }
    
    .treatments-section .container {
        padding: 0 20px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

.treatment-img-wrap {
    width: 100%;
    height: 100%;
    position: relative;
    display: block;
}

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

.treatment-card:hover .treatment-img-wrap img {
    transform: scale(1.1);
}

/* Gradient Overlay for Text Readability */
.treatment-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    transition: background 0.3s ease;
}

.treatment-card:hover .treatment-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.1) 100%);
}

.treatment-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0; /* No description below */
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.treatment-card:hover .treatment-title {
    transform: translateY(-10px);
}

/* Hide button initially, show on hover */
.treatment-btn {
    margin-top: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    display: inline-block;
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    border-bottom: 1px solid var(--white);
    padding-bottom: 4px;
}

.treatment-card:hover .treatment-btn {
    opacity: 1;
    transform: translateY(0);
}

/* PROCESS SECTION */
.process-section {
    padding: 100px 0;
    background-color: var(--bg-body);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.process-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-md);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    border-color: rgba(27, 42, 65, 0.1);
}

.process-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(27, 42, 65, 0.05);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 24px;
    transition: all 0.3s ease;
}

.process-card:hover .process-icon {
    background-color: var(--primary);
    color: var(--white);
}

.process-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary);
}

.process-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

.section-desc {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-light);
    font-size: 16px;
}

/* TESTIMONIALS SECTION */
.testimonials-section {
    background-color: var(--white);
    padding: 100px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.review-card {
    padding: 40px;
    background: var(--bg-body);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.review-card:hover {
    background: var(--white);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.stars {
    color: var(--accent-gold);
    margin-bottom: 20px;
    font-size: 14px;
}

.review-card p {
    font-family: var(--font-main);
    font-style: italic;
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 24px;
    line-height: 1.6;
}

.review-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* BLOG SECTION */
.blog-section {
    padding: 100px 0;
    background-color: var(--bg-body);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.blog-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.blog-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.blog-content {
    padding: 24px;
}

.blog-date {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
}

.blog-content h3 {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 12px;
    font-weight: 700;
}

/* Missing Blog Styles */
.blog-img-link {
    display: block;
    overflow: hidden;
    position: relative;
}

.blog-img-link img {
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-img-link img {
    transform: scale(1.05);
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    margin-top: 16px;
    transition: gap 0.3s ease;
}

.read-more:hover {
    gap: 12px;
}

/* FAQ SECTION */
.faq-section {
    padding: 100px 0;
    background-color: var(--white);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.faq-item {
    border: 1px solid #E5E7EB;
    border-radius: var(--radius-md);
    overflow: hidden;
    background-color: var(--white);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-color: rgba(27, 42, 65, 0.1);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question i {
    color: var(--accent-gold);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question {
    background-color: rgba(27, 42, 65, 0.02);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 24px 24px;
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

/* CONTACT SECTION */
.contact-section {
    padding: 100px 0;
    background-color: var(--bg-body);
}

.contact-split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

.contact-left {
    padding-right: 40px;
}

.contact-info-list {
    list-style: none;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-list li {
    display: flex;
    gap: 20px;
}

.icon-box {
    width: 50px;
    height: 50px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    flex-shrink: 0;
}

.contact-info-list strong {
    display: block;
    font-size: 14px;
    color: var(--text-light);
    text-transform: uppercase;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}

.contact-info-list span {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
    line-height: 1.4;
    display: block;
}

.social-icons-contact {
    display: flex;
    gap: 16px;
}

.social-icons-contact a {
    width: 44px;
    height: 44px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.social-icons-contact a:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.form-wrapper {
    background-color: var(--white);
    padding: 50px;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
}

.form-wrapper h3 {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 10px;
    font-weight: 700;
}

.form-wrapper p {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 15px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    background-color: var(--bg-body);
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    font-family: var(--font-main);
    font-size: 15px;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background-color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(27, 42, 65, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

@media (max-width: 992px) {
    .contact-split-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .contact-left {
        padding-right: 0;
    }
}

/* COOKIE BANNER */
.cookie-banner {
    position: fixed;
    bottom: -100px;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
    z-index: 2000;
    padding: 20px 0;
    transition: bottom 0.5s ease;
    border-top: 1px solid #eee;
}

.cookie-banner.active {
    bottom: 0;
}

.cookie-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-content p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

.cookie-actions {
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .cookie-container {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .cookie-content p {
        font-size: 13px;
        line-height: 1.5;
        padding: 0 10px;
    }
    
    .cookie-actions {
        width: 100%;
    }
    
    .cookie-actions .btn {
        width: 100%;
        justify-content: center;
        font-weight: 700;
        color: #ffffff !important;
    }
    
    .cookie-banner {
        padding: 16px 0;
        padding-bottom: 80px; /* Offset for bottom UI */
        display: none !important; /* HIDE ON MOBILE as requested */
    }
}

/* FOOTER SECTION */
.footer-section {
    background-color: var(--primary);
    color: var(--white);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links-list a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links-list a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.6;
    margin-top: 20px;
}

.brand-col .logo-img-main {
    filter: brightness(0) invert(1); /* Make logo white for dark footer */
    height: 60px;
    width: auto;
}

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

.footer-credit a:hover {
    color: var(--white);
    border-bottom-color: var(--white);
}

/* RESPONSIVE FOOTER */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* UTILITY CLASSES FOR MENU VISIBILITY */
.desktop-only {
    display: flex;
}

@media (max-width: 992px) {
    .desktop-only {
        display: none !important;
    }
    
    .mobile-toggle {
        display: block;
    }
}