/* ==========================================================================
   DESIGN SYSTEM & CUSTOM PROPERTIES
   ========================================================================== */
:root {
    /* Color Palette */
    --primary-bg: #000000;      /* Pure Luxury Black Background */
    --card-bg: #121212;         /* Dark Raised Charcoal for Cards and Containers */
    --dark-bg: #000000;         /* Pure Luxury Black for Dark Sections */
    --dark-card: #121212;       /* Dark Raised Charcoal */
    --gold-color: #F3C623;      /* Luxury Yellow/Gold Accent */
    --gold-hover: #FFE31A;      /* Bright Yellow Hover State */
    --gold-dark: #F3C623;       /* Luxury Yellow/Gold Accent */
    --sage-color: #F3C623;      /* Unified Ayurvedic Highlight to Yellow */
    --sage-hover: #FFE31A;      /* Unified Ayurvedic Highlight to Yellow */
    --text-primary: #FFFFFF;    /* Pure White for Headings and Body Copy */
    --text-secondary: rgba(255, 255, 255, 0.7);  /* Muted White for Descriptions */
    --text-light: #FFFFFF;      /* Off-white text */
    --border-color: #222222;    /* Sleek border lines for dark containers */
    --error-color: #F3C623;     /* Error message (yellow highlight) */
    --success-color: #F3C623;   /* Success highlight (yellow highlight) */

    /* Typography */
    --ff-serif: 'Cormorant Garamond', Georgia, serif;
    --ff-sans: 'Plus Jakarta Sans', sans-serif;

    /* Shadows & Transitions (Soft glow on dark elements) */
    --shadow-soft: 0 12px 30px rgba(0, 0, 0, 0.6);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.85);
    --shadow-gold: 0 10px 25px rgba(243, 198, 35, 0.08);
    --shadow-dark: 0 10px 30px rgba(0, 0, 0, 0.95);
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-fast: all 0.2s ease-in-out;
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--ff-sans);
    background-color: var(--primary-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

img, svg {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

button, select, input, textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    background: none;
    border: none;
    outline: none;
}

button {
    cursor: pointer;
}

ul {
    list-style: none;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--primary-bg);
}
::-webkit-scrollbar-thumb {
    background: #D2D4CE;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold-color);
}

/* ==========================================================================
   REUSABLE UTILITIES & COMPONENTS
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
}

.bg-light {
    background-color: #000000;
}

.bg-dark {
    background-color: var(--dark-bg);
}

.text-white {
    color: var(--text-light);
}

.text-gold {
    color: var(--gold-color);
}

.icon-gold {
    color: var(--gold-color);
}

.italic {
    font-style: italic;
}

.text-center {
    text-align: center;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.sub-title {
    font-family: var(--ff-sans);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--sage-color);
    display: inline-block;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--ff-serif);
    font-size: 2.8rem;
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-primary);
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
}

.section-heading-dark {
    font-family: var(--ff-serif);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.3;
}

.accent-line {
    width: 60px;
    height: 3px;
    background-color: var(--gold-color);
    margin: 20px auto 0 auto;
    border-radius: 2px;
}

.border-gold {
    background-color: var(--gold-color) !important;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 30px;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.btn-primary {
    background-color: var(--gold-color);
    color: var(--dark-bg);
    box-shadow: 0 4px 15px rgba(226, 168, 41, 0.25);
}

.btn-primary:hover {
    background-color: var(--gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(226, 168, 41, 0.35);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    background-color: var(--text-primary);
    color: var(--primary-bg);
    border-color: var(--text-primary);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background-color: var(--gold-color) !important;
    color: #000000 !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(243, 198, 35, 0.2) !important;
}

.btn-whatsapp:hover {
    background-color: var(--gold-hover) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(243, 198, 35, 0.35) !important;
}

.btn-block {
    width: 100%;
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.85rem;
}

/* Badges */
.badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.badge-sage {
    background-color: rgba(243, 198, 35, 0.1);
    color: var(--sage-color);
}

.badge-gold {
    background-color: rgba(243, 198, 35, 0.1);
    color: var(--gold-dark);
}

.badge-dark {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

/* Cards Hover Animation System */
.card-item {
    background-color: var(--card-bg);
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    border: 1px solid rgba(12, 30, 54, 0.03);
}

.card-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(226, 168, 41, 0.2);
}

/* Scroll Reveal Initial states */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-4 {
    transition-delay: 0.4s;
}

/* Scroll Progress Bar */
.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, var(--sage-color), var(--gold-color));
    z-index: 1000;
    transition: width 0.05s ease-out;
}

/* ==========================================================================
   HEADER / NAVIGATION
   ========================================================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: transparent;
    z-index: 99;
    transition: var(--transition-smooth);
}

.main-header.scrolled {
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    height: 70px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid #222222;
}

.header-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Logo Area */
.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-img-el {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: var(--ff-serif);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.1;
    letter-spacing: 0.5px;
}

.logo-subtitle {
    font-family: var(--ff-sans);
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--gold-dark);
    letter-spacing: 3px;
    line-height: 1;
}

/* Navigation Links */
.navbar {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-family: var(--ff-sans);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold-color);
    transition: var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold-dark);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Language Toggle Button */
.lang-toggle-btn {
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.5);
    transition: var(--transition-fast);
}

.lang-toggle-btn:hover {
    border-color: var(--gold-color);
}

.lang-btn {
    display: flex;
    align-items: center;
    padding: 6px 12px;
    font-size: 0.75rem;
    font-weight: 700;
    gap: 6px;
    color: var(--text-secondary);
}

.lang-text.active {
    color: var(--gold-dark);
}

.lang-divider {
    color: var(--border-color);
    font-weight: 300;
}

.btn-nav {
    padding: 10px 22px;
    font-size: 0.85rem;
}

/* Mobile Toggle Hamburger */
.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 101;
}

.mobile-nav-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

/* Mobile Menu Styles */
@media (max-width: 1024px) {
    .navbar {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background-color: var(--primary-bg);
        box-shadow: -10px 0 30px rgba(12, 30, 54, 0.1);
        z-index: 100;
        transition: var(--transition-smooth);
        padding: 100px 40px 40px 40px;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .navbar.open {
        right: 0;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 25px;
        width: 100%;
    }
    
    .nav-link {
        font-size: 1.1rem;
        display: block;
        width: 100%;
    }
    
    .mobile-nav-toggle {
        display: flex;
    }
    
    .mobile-nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .mobile-nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .btn-nav {
        display: none; /* Hide top CTA in tablet and show in header actions alternatively if space is tight */
    }
}

@media (max-width: 480px) {
    .navbar {
        width: 100%;
    }
}

/* ==========================================================================
   1. HERO SECTION
   ========================================================================== */
.hero-section {
    padding-top: 160px;
    padding-bottom: 60px;
    position: relative;
    overflow: hidden;
    background-color: var(--primary-bg);
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.04;
    background-image: radial-gradient(var(--gold-color) 1.5px, transparent 1.5px), radial-gradient(var(--gold-color) 1.5px, var(--primary-bg) 1.5px);
    background-size: 40px 40px;
    background-position: 0 0, 20px 20px;
    pointer-events: none;
    z-index: 1;
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(226, 168, 41, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

@media (max-width: 991px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
}

.hero-content {
    max-width: 620px;
}

@media (max-width: 991px) {
    .hero-content {
        margin: 0 auto;
    }
}

.tagline-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(243, 198, 35, 0.06);
    border: 1px solid rgba(243, 198, 35, 0.12);
    border-radius: 30px;
    padding: 8px 18px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--sage-color);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

@media (max-width: 991px) {
    .tagline-badge {
        margin-bottom: 20px;
    }
}

.hero-title {
    font-family: var(--ff-serif);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.15;
    color: var(--text-primary);
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.6rem;
    }
}

.hero-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 35px;
    line-height: 1.7;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 45px;
}

@media (max-width: 991px) {
    .hero-ctas {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-ctas {
        flex-direction: column;
        align-items: stretch;
    }
}

/* Floating feature stats inside content */
.hero-features-grid {
    display: flex;
    gap: 30px;
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
}

@media (max-width: 991px) {
    .hero-features-grid {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-features-grid {
        flex-direction: column;
        gap: 20px;
    }
}

.hero-feat-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-feat-item .feat-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(226, 168, 41, 0.1);
    color: var(--gold-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.hero-feat-item .feat-info {
    display: flex;
    flex-direction: column;
}

.hero-feat-item .feat-count {
    font-family: var(--ff-serif);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.1;
}

.hero-feat-item .feat-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 600;
}

/* Hero Graphics & Bouncing Cards */
.hero-graphics {
    position: relative;
    display: flex;
    justify-content: center;
}

.image-wrapper {
    position: relative;
    width: 100%;
    max-width: 450px;
}

.gradient-border-frame {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    padding: 12px;
    background: linear-gradient(135deg, var(--gold-color), transparent, var(--sage-color));
    box-shadow: var(--shadow-soft);
}

.hero-main-img {
    border-radius: 20px;
    width: 100%;
    height: 420px;
    object-fit: cover;
    object-position: center 30%;
    display: block;
}

/* Interactive Floating Badges with bouncing animation */
.floating-badge {
    position: absolute;
    background-color: var(--card-bg);
    padding: 12px 20px;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(12, 30, 54, 0.08);
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(226, 168, 41, 0.15);
    z-index: 3;
}

.floating-badge .badge-icon {
    font-size: 1.4rem;
    color: var(--sage-color);
}

.badge-1 .badge-icon {
    color: var(--gold-dark);
}

.floating-badge .badge-text {
    display: flex;
    flex-direction: column;
}

.floating-badge .badge-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
}

.floating-badge .badge-subtitle {
    font-size: 0.7rem;
    color: var(--text-secondary);
}

.badge-1 {
    top: 15%;
    left: -60px;
    animation: bounceBadge1 6s infinite ease-in-out;
}

.badge-2 {
    bottom: 12%;
    right: -40px;
    animation: bounceBadge2 6s infinite ease-in-out;
}

@keyframes bounceBadge1 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@keyframes bounceBadge2 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(12px); }
}

@media (max-width: 1200px) {
    .badge-1 { left: -10px; }
    .badge-2 { right: -10px; }
}

@media (max-width: 480px) {
    .floating-badge {
        padding: 8px 12px;
    }
    .badge-1 { left: -5px; top: 10%; }
    .badge-2 { right: -5px; bottom: 8%; }
}

/* 4 Pillars Bottom Bar */
.hero-pillars-bar {
    margin-top: 60px;
    background-color: var(--card-bg);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 30px 0;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

@media (max-width: 991px) {
    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.pillar-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.pillar-item i {
    font-size: 1.8rem;
    margin-top: 4px;
}

.pillar-item h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.pillar-item p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* ==========================================================================
   2. ABOUT SECTION
   ========================================================================== */
.about-section {
    background-color: var(--primary-bg);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 991px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

.about-content-area .lead-text {
    font-size: 1.25rem;
    font-family: var(--ff-serif);
    font-weight: 600;
    line-height: 1.5;
    color: var(--sage-color);
    margin-bottom: 20px;
}

.about-content-area .body-text {
    color: var(--text-secondary);
    margin-bottom: 35px;
    font-size: 0.98rem;
}

.about-points {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.point-item {
    display: flex;
    gap: 20px;
}

.point-num {
    font-family: var(--ff-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-color);
    background-color: rgba(226, 168, 41, 0.08);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.point-desc h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.point-desc p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Timeline box in about */
.about-visual-area {
    display: flex;
    justify-content: center;
}

.about-card-box {
    background-color: var(--dark-bg);
    color: var(--text-light);
    border-radius: 24px;
    padding: 40px;
    width: 100%;
    max-width: 500px;
    box-shadow: var(--shadow-hover);
    border: 1px solid rgba(226, 168, 41, 0.15);
}

@media (max-width: 480px) {
    .about-card-box {
        padding: 24px;
    }
}

.legacy-card-title {
    font-family: var(--ff-serif);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--gold-color);
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

.legacy-timeline {
    position: relative;
    padding-left: 24px;
}

.legacy-timeline::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 4px;
    width: 2px;
    height: 90%;
    background-color: rgba(255, 255, 255, 0.15);
}

.timeline-step {
    position: relative;
    margin-bottom: 30px;
}

.timeline-step:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -24px;
    top: 5px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--gold-color);
    box-shadow: 0 0 10px var(--gold-color);
}

.timeline-info h5 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 6px;
}

.timeline-info p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.5;
}

/* ==========================================================================
   3. SERVICES SECTION
   ========================================================================== */
.services-filter {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    background-color: var(--card-bg);
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--gold-color);
    color: var(--dark-bg);
    border-color: var(--gold-color);
    transform: translateY(-1px);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 991px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-image-placeholder {
    height: 180px;
    background: linear-gradient(135deg, rgba(243, 198, 35, 0.08), rgba(243, 198, 35, 0.03));
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.wellness-icon {
    font-size: 3.5rem;
    color: var(--gold-dark);
    transition: var(--transition-smooth);
}

.service-card:hover .wellness-icon {
    transform: scale(1.15) rotate(5deg);
    color: var(--sage-color);
}

.service-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-card-body h3 {
    font-family: var(--ff-serif);
    font-size: 1.45rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.service-card-body p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-meta {
    margin-bottom: 20px;
}

.btn-card-cta {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gold-dark);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-card-cta i {
    transition: var(--transition-fast);
}

.service-card:hover .btn-card-cta i {
    transform: translateX(4px);
}

.service-card:hover .btn-card-cta {
    color: var(--sage-color);
}

/* Filter animations */
.service-card.hidden {
    display: none !important;
}

/* ==========================================================================
   4. MEET OUR DOCTORS SECTION
   ========================================================================== */
.doctors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 991px) {
    .doctors-grid {
        grid-template-columns: repeat(2, 1fr);
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .doctors-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

.doctor-card {
    overflow: hidden;
}

.doctor-img-container {
    position: relative;
    overflow: hidden;
    background-color: var(--dark-bg);
}

.doctor-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    object-position: center 15%;
    display: block;
    transition: var(--transition-smooth);
}

.doctor-card:hover .doctor-img {
    transform: scale(1.05);
    opacity: 0.8;
}

.doctor-overlay {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 50px;
    background-color: rgba(226, 168, 41, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.doctor-card:hover .doctor-overlay {
    bottom: 0;
}

.doc-socials {
    display: flex;
    gap: 20px;
    color: var(--dark-bg);
    font-size: 1.1rem;
}

.doc-socials a:hover {
    color: #FFFFFF;
}

.doctor-info {
    padding: 24px;
}

.doc-name {
    font-family: var(--ff-serif);
    font-size: 1.45rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.doc-role {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--sage-color);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.doc-divider {
    height: 1px;
    background-color: var(--border-color);
    margin: 16px 0;
}

.expertise-heading {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.doc-expertise-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.doc-expertise-list li {
    font-size: 0.8rem;
    color: var(--text-secondary);
    position: relative;
    padding-left: 14px;
}

.doc-expertise-list li::before {
    content: '•';
    color: var(--gold-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* ==========================================================================
   5. WHY CHOOSE US SECTION
   ========================================================================== */
.why-section {
    position: relative;
    overflow: hidden;
}

.why-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 991px) {
    .why-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

.opacity-8 {
    opacity: 0.8;
}

.why-content .lead-text {
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 35px;
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.why-feat-block {
    display: flex;
    gap: 20px;
}

.why-feat-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(226, 168, 41, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-color);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.why-feat-text h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: #FFFFFF;
}

.why-feat-text p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.5;
}

/* Counter widgets */
.why-counters {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (max-width: 480px) {
    .why-counters {
        grid-template-columns: 1fr;
    }
}

.counter-card {
    background-color: var(--dark-card);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: var(--transition-smooth);
}

.counter-card:hover {
    border-color: rgba(226, 168, 41, 0.15);
    transform: translateY(-4px);
}

.counter-num {
    font-family: var(--ff-serif);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--gold-color);
    margin-bottom: 6px;
    line-height: 1;
}

.counter-lbl {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.65);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

/* ==========================================================================
   6. CONSULTATION TIMINGS SECTION
   ========================================================================== */
.timings-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

@media (max-width: 991px) {
    .timings-grid {
        grid-template-columns: 1fr;
    }
}

.timetable-card {
    overflow: hidden;
}

.timetable-header {
    padding: 24px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.bg-sage {
    background-color: #000000 !important;
    border-bottom: 1.5px solid var(--border-color);
}

.bg-gold {
    background-color: var(--gold-color) !important;
}

.timetable-header.bg-sage h3,
.timetable-header.bg-sage p,
.timetable-header.bg-sage i {
    color: var(--gold-color) !important;
}

.timetable-header.bg-gold h3,
.timetable-header.bg-gold p,
.timetable-header.bg-gold i {
    color: #000000 !important;
}

.timing-card-icon {
    font-size: 2.2rem;
}

.timetable-header h3 {
    font-family: var(--ff-serif);
    font-size: 1.45rem;
    font-weight: 600;
    line-height: 1.2;
}

.timetable-header p {
    font-size: 0.8rem;
    opacity: 0.85;
}

.timetable-body {
    padding: 30px;
}

@media (max-width: 480px) {
    .timetable-body {
        padding: 20px;
    }
}

.schedule-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

@media (max-width: 576px) {
    .schedule-row {
        flex-direction: column;
        gap: 12px;
    }
}

.schedule-doctor h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.schedule-doctor span {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.schedule-time {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

@media (max-width: 576px) {
    .schedule-time {
        align-items: flex-start;
    }
}

.day-span {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.time-span {
    font-size: 0.85rem;
    color: var(--gold-color);
    background-color: rgba(243, 198, 35, 0.1);
    padding: 4px 10px;
    border-radius: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.schedule-divider {
    height: 1px;
    background-color: var(--border-color);
    margin: 24px 0;
}

.timings-action-footer {
    margin-top: 40px;
}

.timings-action-footer p {
    font-size: 1rem;
    color: var(--text-secondary);
}

.gold-link {
    color: var(--gold-dark);
    transition: var(--transition-fast);
}

.gold-link:hover {
    color: var(--sage-color);
}

/* ==========================================================================
   7. TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-section {
    background-color: var(--primary-bg);
}

.testimonials-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 0 40px;
}

@media (max-width: 576px) {
    .testimonials-container {
        padding: 0;
    }
}

.testimonial-slider {
    position: relative;
    min-height: 280px;
    display: flex;
    align-items: center;
}

.testimonial-slider .slide {
    position: absolute;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.95);
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out, visibility 0s 0.5s;
}

.testimonial-slider .slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out, visibility 0s 0s;
}

.test-rating {
    display: flex;
    gap: 4px;
    color: var(--gold-color);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.test-quote {
    font-family: var(--ff-serif);
    font-size: 1.55rem;
    font-weight: 500;
    line-height: 1.5;
    color: var(--text-primary);
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .test-quote {
        font-size: 1.3rem;
    }
}

.test-quote::before {
    content: '“';
    font-size: 5rem;
    color: rgba(226, 168, 41, 0.12);
    position: absolute;
    top: -40px;
    left: -20px;
    z-index: -1;
    font-family: Georgia, serif;
}

.test-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: rgba(243, 198, 35, 0.08);
    color: var(--sage-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.author-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
}

.author-loc {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

/* Slider Controls */
.slider-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

.slider-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--card-bg);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.slider-btn:hover {
    background-color: var(--gold-color);
    color: var(--dark-bg);
    border-color: var(--gold-color);
    transform: scale(1.05);
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.slider-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--border-color);
    cursor: pointer;
    transition: var(--transition-fast);
}

.slider-dots .dot.active {
    background-color: var(--gold-color);
    width: 24px;
    border-radius: 4px;
}

/* ==========================================================================
   8. APPOINTMENT BOOKING SECTION
   ========================================================================== */
.booking-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 991px) {
    .booking-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

.booking-info-panel .body-text {
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-size: 0.98rem;
}

.direct-booking-alternatives {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.alt-block {
    display: flex;
    gap: 20px;
}

.alt-block i {
    font-size: 1.8rem;
    margin-top: 2px;
}

.alt-block h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.alt-block p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 8px;
}

.alt-link-btn {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gold-color);
    display: inline-flex;
    align-items: center;
    border-bottom: 1.5px solid transparent;
}

.alt-link-btn:hover {
    border-color: var(--gold-color);
}

.alt-phone-link {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.alt-phone-link:hover {
    color: var(--gold-dark);
}

/* Booking Form */
.booking-form-wrapper {
    background-color: var(--card-bg);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(12, 30, 54, 0.02);
}

@media (max-width: 576px) {
    .booking-form-wrapper {
        padding: 24px;
    }
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 576px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 20px;
    border: 1.5px solid var(--border-color);
    border-radius: 12px;
    font-size: 0.9rem;
    transition: var(--transition-fast);
    background-color: #FAFAF9;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold-color);
    background-color: #FFFFFF;
    box-shadow: 0 0 0 3px rgba(226, 168, 41, 0.08);
}

/* Validation Styling */
.form-group.invalid input,
.form-group.invalid select {
    border-color: var(--error-color);
    background-color: rgba(211, 47, 47, 0.02);
}

.error-msg {
    font-size: 0.75rem;
    color: var(--error-color);
    display: none;
    margin-top: 4px;
}

.form-group.invalid .error-msg {
    display: block;
}

/* Button Loading Spinner */
.submit-spinner {
    display: inline-block;
}

.submit-spinner.hidden {
    display: none;
}

/* ==========================================================================
   9. FAQ SECTION
   ========================================================================== */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: var(--card-bg);
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(12, 30, 54, 0.03);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: rgba(226, 168, 41, 0.15);
}

.faq-question {
    width: 100%;
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    text-align: left;
    font-family: var(--ff-sans);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
}

@media (max-width: 576px) {
    .faq-question {
        padding: 20px;
        font-size: 0.95rem;
    }
}

.faq-icon {
    font-size: 1rem;
    color: var(--gold-dark);
    transition: var(--transition-smooth);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--sage-color);
}

.faq-answer-wrapper {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.faq-answer {
    padding: 0 30px 24px 30px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

@media (max-width: 576px) {
    .faq-answer {
        padding: 0 20px 20px 20px;
    }
}

/* ==========================================================================
   10. BLOG SECTION
   ========================================================================== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 991px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

.blog-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

.blog-img-placeholder {
    height: 180px;
    background-color: var(--dark-bg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-card-icon {
    font-size: 3rem;
    color: var(--gold-color);
    opacity: 0.5;
}

.blog-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-tag {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--sage-color);
    margin-bottom: 10px;
    display: inline-block;
}

.blog-body h3 {
    font-family: var(--ff-serif);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.3;
    margin-bottom: 12px;
}

.blog-body p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-read-btn {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-bottom: 1.5px solid transparent;
    width: max-content;
}

.blog-read-btn:hover {
    color: var(--gold-dark);
    border-color: var(--gold-color);
}

/* ==========================================================================
   11. CONTACT SECTION
   ========================================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 991px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-card-detail {
    display: flex;
    gap: 20px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(226, 168, 41, 0.08);
    color: var(--gold-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-text h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.contact-text p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.hover-underline:hover {
    text-decoration: underline;
    color: var(--gold-dark);
}

.social-wrapper {
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
}

.social-wrapper h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 14px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    box-shadow: var(--shadow-soft);
    color: var(--text-secondary);
}

.social-links a:hover {
    background-color: var(--gold-color);
    color: var(--dark-bg);
    border-color: var(--gold-color);
    transform: translateY(-2px);
}

/* Map Mock Box with pure CSS design matching map visual representations */
.map-wrapper-box {
    width: 100%;
}

.map-placeholder {
    height: 380px;
    background-color: #121212;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
}

.map-text {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 30px;
    background-color: #0c0c0c !important;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    max-width: 320px;
    border: 1px solid var(--border-color);
}

.map-marker-icon {
    font-size: 2.5rem;
    color: var(--gold-color);
    margin-bottom: 12px;
}

.map-text h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: #FFFFFF;
}

.map-text p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
    margin-bottom: 16px;
}

.styled-map-mock {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    background-image: radial-gradient(var(--gold-color) 1.5px, transparent 1.5px);
    background-size: 25px 25px;
}

/* ==========================================================================
   12. FOOTER
   ========================================================================== */
.footer-area {
    padding-top: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 60px;
}

@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.footer-logo {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.footer-logo .logo-title {
    font-family: var(--ff-serif);
    font-size: 1.6rem;
    font-weight: 700;
}

.footer-logo .logo-subtitle {
    font-family: var(--ff-sans);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 3px;
}

.footer-about-text {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 16px;
}

.footer-tagline {
    font-size: 0.8rem;
    font-weight: 600;
}

.footer-widget h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 8px;
}

.footer-widget h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 1.5px;
    background-color: var(--gold-color);
}

.footer-widget ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-widget ul a {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.65);
}

.footer-widget ul a:hover {
    color: var(--gold-color);
    transform: translateX(4px);
}

.footer-widget.contact-widget p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.65);
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 12px;
}

.footer-widget.contact-widget p i {
    width: 14px;
}

.footer-widget.contact-widget a:hover {
    color: var(--gold-color);
}

.footer-bottom {
    background-color: #0A0B09;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 24px 0;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

@media (max-width: 768px) {
    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
    }
}

.copyright-txt {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom-links a:hover {
    color: var(--gold-color);
}

/* ==========================================================================
   SUCCESS MODAL POPUP
   ========================================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(12, 30, 54, 0.6);
    backdrop-filter: blur(5px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.3s ease-out;
}

.modal-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.modal-card {
    background-color: var(--card-bg);
    border-radius: 24px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    border: 1px solid rgba(226, 168, 41, 0.2);
    transform: scale(1);
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1.2);
}

.modal-overlay.hidden .modal-card {
    transform: scale(0.9);
}

.modal-icon-success {
    font-size: 3.5rem;
    color: var(--success-color);
    margin-bottom: 20px;
    animation: scaleCheckmark 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.1s both;
}

@keyframes scaleCheckmark {
    0% { transform: scale(0); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.modal-card h3 {
    font-family: var(--ff-serif);
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.modal-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 30px;
}

.modal-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
}

@media (max-width: 480px) {
    .modal-actions {
        flex-direction: column;
    }
}

/* ==========================================================================
   FLOATING ACTIONS
   ========================================================================== */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 98;
}

.floating-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 8px 25px rgba(12, 30, 54, 0.15);
    transition: var(--transition-smooth);
}

.floating-btn:hover {
    transform: translateY(-4px) scale(1.05);
}

.scroll-btn {
    background-color: var(--card-bg);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.scroll-btn.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
}

.wa-btn {
    background-color: var(--gold-color);
    color: #000000;
}
