/* CSS Variables */
:root {
    --primary-gold: #B8860B;
    --primary-green: #2D5A4A;
    --bg-cream: #FDFBF7;
    --text-dark: #1A1A1A;
    --text-secondary: #4A4A4A;
    --accent-brown: #8B7355;
    --warning-red: #C9302C;
}

/* Base Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', 'Segoe UI', sans-serif;
    background-color: var(--bg-cream);
    color: var(--text-dark);
    font-size: 18px;
    line-height: 1.8;
    font-weight: 400;
    letter-spacing: 0.01em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography Hierarchy */
.font-playfair {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.font-cormorant {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1.5;
}

/* Enhanced Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.25;
    color: var(--text-dark);
}

/* Display text styling */
.display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

/* Body text improvements */
p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* Lead paragraph styling */
.lead {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.75;
    color: var(--text-secondary);
}

/* Small text */
small, .small {
    font-size: 0.875rem;
    line-height: 1.6;
}

/* Elegant Quote Styles */
blockquote, .blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.6;
    letter-spacing: 0.03em;
    color: var(--text-dark);
}

blockquote p:last-child {
    margin-bottom: 0;
}

/* Tagline styling */
.tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.375rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    line-height: 1.4;
}

/* Subheading styling */
.subheading {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary-gold);
}

/* Enhanced link styles */
a {
    font-family: 'DM Sans', sans-serif;
    transition: all 0.2s ease;
}

a:hover {
    transition: all 0.2s ease;
}

/* Navigation typography */
.navbar-custom .nav-link {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9375rem;
    font-weight: 500;
    letter-spacing: 0.01em;
}

/* Card title styling */
.card-title {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.35;
}

/* List styling */
ul, ol {
    padding-left: 1.5rem;
}

li {
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

/* Button typography */
.btn {
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1.5;
}

/* Stat number styling */
.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.02em;
}

/* Section title styling */
.section-title {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -0.01em;
}

/* Footer typography */
footer {
    font-family: 'DM Sans', sans-serif;
}

footer h5 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    letter-spacing: 0.01em;
}

/* Form controls */
.form-control {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
}

/* Label styling */
label, .form-label {
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 0.9375rem;
    letter-spacing: 0.01em;
}

/* Accent text */
.text-accent {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    letter-spacing: 0.05em;
}

/* Drop cap for featured paragraphs */
.drop-cap::first-letter {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    float: left;
    line-height: 1;
    margin-right: 0.5rem;
    margin-top: 0.1rem;
    color: var(--primary-gold);
}

/* Highlight text */
.text-highlight {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-style: italic;
    color: var(--primary-green);
}

/* Price/number styling */
.price, .number {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* Sticky Header */
.navbar-custom {
    background: rgba(253, 251, 247, 0.95) !important;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.navbar-custom .navbar-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--primary-green) !important;
}

.navbar-custom .nav-link {
    color: #1A1A1A !important;
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar-custom .nav-link:hover {
    color: var(--primary-gold) !important;
}

/* Navbar CTA Buttons - Ensure visibility */
.navbar .d-flex a,
#navbarNav .d-flex a,
nav .d-flex a,
.navbar-custom .d-flex a {
    visibility: visible !important;
    opacity: 1 !important;
    display: inline-flex !important;
    color: white !important;
    background: linear-gradient(135deg, #2D5A4A 0%, #3d7a64 100%) !important;
}

#navbarNav .d-flex a[style*="background: #25D366"] {
    background: #25D366 !important;
}

#navbarNav .d-flex a[style*="background: linear-gradient(135deg, #B8860B"] {
    background: linear-gradient(135deg, #B8860B 0%, #8B7355 100%) !important;
}

/* Navbar links in collapsed menu */
.navbar-collapse a,
#navbarNav a {

    visibility: visible !important;
}

/* CTA Button - Gold */
.btn-cta-gold {
    background: linear-gradient(135deg, #B8860B 0%, #8B7355 100%);
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cta-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(184, 134, 11, 0.3);
    color: white;
}

/* Modern CTA Button - Doctor/Medical UI */
.btn-cta-modern {
    background: linear-gradient(135deg, #2D5A4A 0%, #3d7a64 100%);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 4px 15px rgba(45, 90, 74, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-cta-modern::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: left 0.5s ease;
}

.btn-cta-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(45, 90, 74, 0.4);
    color: white;
    background: linear-gradient(135deg, #3d7a64 0%, #2D5A4A 100%);
}

.btn-cta-modern:hover::before {
    left: 100%;
}

.btn-cta-modern i {
    font-size: 1.1rem;
}

@media (max-width: 991px) {
    .btn-cta-modern {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Navbar brand badge */
.bg-success-subtle {
    background-color: rgba(45, 90, 74, 0.1) !important;
}

/* WhatsApp Button */
.btn-whatsapp {
    background: #25D366;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #20BD5A;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    color: white;
}

/* Call Button */
.btn-call {
    background: linear-gradient(135deg, #B8860B 0%, #8B7355 100%);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.3);
}

.btn-call:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(184, 134, 11, 0.4);
    color: white;
    background: linear-gradient(135deg, #8B7355 0%, #B8860B 100%);
}

@media (max-width: 991px) {
    .btn-whatsapp, .btn-call {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
    .btn-whatsapp span, .btn-call span {
        display: none;
    }
}

/* ========================================
   ENHANCED HERO SECTION STYLES
   ======================================== */

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: url('../assets/c.png') center center / cover no-repeat;
    overflow: hidden;
}

/* Dark overlay for better text readability */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.88) 0%, rgba(45, 90, 74, 0.78) 50%, rgba(139, 115, 85, 0.72) 100%);
    z-index: 1;
}

/* Pattern overlay for texture */
.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23B8860B' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 2;
}

/* Hero content container - above overlay */
.hero-section .container {
    position: relative;
    z-index: 3;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.02em;
    animation: fadeInDown 0.6s ease-out;
}

.hero-badge .badge-icon {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #B8860B 0%, #D4A843 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
}

.hero-badge .badge-icon i {
    color: white;
}

/* Floating Leaves Animation */
.floating-leaf {
    position: absolute;
    color: #B8860B;
    z-index: 2;
    pointer-events: none;
    animation: floatLeaf 10s ease-in-out infinite;
}

.floating-leaf-1 {
    top: 15%;
    right: 10%;
    animation-delay: 0s;
}

.floating-leaf-2 {
    top: 25%;
    left: 5%;
    animation-delay: -2s;
}

.floating-leaf-3 {
    bottom: 20%;
    right: 8%;
    animation-delay: -4s;
}

@keyframes floatLeaf {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-30px) rotate(15deg);
        opacity: 1;
    }
}

/* Hero Decorative Circles */
.hero-circles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.hero-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
}

.hero-circle-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #B8860B 0%, transparent 70%);
    top: -100px;
    right: -100px;
    animation: pulseCircle 8s ease-in-out infinite;
}

.hero-circle-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #2D5A4A 0%, transparent 70%);
    bottom: -50px;
    left: -50px;
    animation: pulseCircle 10s ease-in-out infinite reverse;
}

@keyframes pulseCircle {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Hero Title Animation */
.hero-title {
    animation: fadeInUp 0.8s ease-out;
    animation-delay: 0.2s;
    animation-fill-mode: both;
}

.hero-tagline {
    animation: fadeInUp 0.8s ease-out;
    animation-delay: 0.4s;
    animation-fill-mode: both;
}

.hero-description {
    animation: fadeInUp 0.8s ease-out;
    animation-delay: 0.6s;
    animation-fill-mode: both;
}

.hero-buttons {
    animation: fadeInUp 0.8s ease-out;
    animation-delay: 0.8s;
    animation-fill-mode: both;
}

.trust-badges {
    animation: fadeInUp 0.8s ease-out;
    animation-delay: 1s;
    animation-fill-mode: both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero section content styling */
.hero-section .font-playfair {
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-section .font-cormorant {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-section .lead {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

/* Enhanced CTA buttons for hero */
.hero-section .btn-cta-gold {
    background: linear-gradient(135deg, #B8860B 0%, #D4A843 50%, #B8860B 100%);
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(184, 134, 11, 0.4);
}

.hero-section .btn-cta-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(184, 134, 11, 0.5);
    color: white;
    background: linear-gradient(135deg, #D4A843 0%, #B8860B 50%, #8B7355 100%);
}

.hero-section .btn-success {
    background: linear-gradient(135deg, #25D366 0%, #20BD5A 50%, #25D366 100%);
    border: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

.hero-section .btn-success:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
    background: linear-gradient(135deg, #20BD5A 0%, #25D366 50%, #1DA954 100%);
}

.hero-section .btn-outline-warning {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: #fff;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.hero-section .btn-outline-warning:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
    color: #fff;
    transform: translateY(-3px);
}

/* Trust Badge Item */
.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.trust-badge-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

/* Trust Badges */
.trust-badge {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.trust-badge i {
    color: #B8860B;
    font-size: 1.25rem;
}

/* Enhanced Hero Image Wrapper */
.hero-image-wrapper {
    position: relative;
    padding: 20px;
    animation: fadeInRight 1s ease-out;
    animation-delay: 0.5s;
    animation-fill-mode: both;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Enhanced Hero Image Container */
.hero-image-container {
    position: relative;
    max-width: 420px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.hero-main-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.hero-image-container:hover .hero-main-image {
    transform: scale(1.05);
}

/* Image Frame Accent */
.hero-image-frame {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 2px solid rgba(184, 134, 11, 0.4);
    border-radius: 16px;
    pointer-events: none;
    z-index: 2;
}

.hero-image-accent {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.4) 0%, rgba(45, 90, 74, 0.3) 100%);
    border-radius: 50%;
    z-index: -1;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 0.5; }
}

/* Enhanced Floating Cards */
.hero-floating-card {
    position: absolute;
    background: white;
    padding: 16px 20px;
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    animation: floatCard 6s ease-in-out infinite;
    z-index: 10;
}

.hero-floating-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2D5A4A, #B8860B);
    border-radius: 14px 14px 0 0;
}

/* Card 1 - Natural & Safe */
.hero-floating-card.card-1 {
    bottom: 40px;
    left: -30px;
    animation-delay: 0s;
}

/* Card 2 - Doctor */
.hero-floating-card.card-2 {
    top: 30px;
    right: -20px;
    animation-delay: -3s;
}

.hero-floating-card.card-2::before {
    background: linear-gradient(90deg, #2D5A4A, #2D5A4A);
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.floating-card-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #B8860B 0%, #D4A843 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.floating-card-icon i {
    color: white;
    font-size: 1.5rem;
}

.floating-card-icon.card-icon-green {
    background: linear-gradient(135deg, #2D5A4A 0%, #3d7a64 100%);
}

.hero-floating-card .fw-semibold {
    color: #1A1A1A;
    font-size: 0.9375rem;
}

.hero-floating-card .small {
    color: #6B7280;
    font-size: 0.8125rem;
}

/* Decorative Corner Element */
.hero-decor-corner {
    position: absolute;
    bottom: -10px;
    left: -10px;
    width: 100px;
    height: 100px;
    border: 3px solid rgba(184, 134, 11, 0.3);
    border-radius: 0 0 0 20px;
    z-index: -1;
}

.hero-decor-corner::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: -3px;
    width: 30px;
    height: 3px;
    background: rgba(184, 134, 11, 0.3);
}

.hero-decor-corner::after {
    content: '';
    position: absolute;
    bottom: -3px;
    right: 0;
    width: 3px;
    height: 30px;
    background: rgba(184, 134, 11, 0.3);
}

/* Responsive Hero Image */
@media (max-width: 991px) {
    .hero-image-wrapper {
        padding: 10px;
        max-width: 500px;
        margin: 40px auto 0;
    }

    .hero-image-container {
        max-width: 380px;
    }
    
    .hero-floating-card.card-1 {
        bottom: 20px;
        left: 10px;
        padding: 12px 16px;
    }
    
    .hero-floating-card.card-2 {
        top: 20px;
        right: 10px;
        padding: 12px 16px;
    }
    
    .floating-card-icon {
        width: 40px;
        height: 40px;
    }
    
    .floating-card-icon i {
        font-size: 1.25rem;
    }
    
    .hero-image-accent {
        width: 120px;
        height: 120px;
    }
    
    .hero-image-frame {
        top: 15px;
        left: 15px;
        right: 15px;
        bottom: 15px;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 8px 16px;
    }
    
    .floating-leaf {
        display: none;
    }
    
    .hero-circle-1,
    .hero-circle-2 {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 575px) {
    .hero-image-container {
        max-width: 320px;
    }

    .hero-floating-card.card-1,
    .hero-floating-card.card-2 {
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
        top: auto;
        margin-top: 20px;
    }
    
    .hero-decor-corner {
        display: none;
    }
    
    .trust-badge-item {
        padding: 10px 12px;
    }
    
    .hero-image-accent {
        width: 80px;
        height: 80px;
    }
}

/* Responsive hero adjustments */
@media (max-width: 991px) {
    .hero-section {
        min-height: auto;
        padding: 120px 0 80px;
    }
    
    .hero-section .display-4 {
        font-size: 2.25rem !important;
    }
    
    .hero-section .fs-3 {
        font-size: 1.5rem !important;
    }
}

@media (max-width: 575px) {
    .hero-section .display-4 {
        font-size: 1.75rem !important;
    }
    
    .hero-section .fs-3 {
        font-size: 1.25rem !important;
    }
    
    .hero-section .btn {
        padding: 12px 20px;
        font-size: 1rem;
    }
}

/* Card Styles */
.card-ayurved {
    background: white;
    border-radius: 12px;
    border: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.card-ayurved:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.icon-box-custom {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Section Padding */
.section-padding {
    padding: 80px 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
}

/* Gradient Banner */
.gradient-banner {
    background: linear-gradient(135deg, #2D5A4A 0%, #8B7355 100%);
}

/* Enhanced CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, #2D5A4A 0%, #3d7a64 50%, #8B7355 100%);
    position: relative;
    overflow: hidden;
    padding: 60px 0;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23B8860B' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.6;
}

.cta-banner .container {
    position: relative;
    z-index: 2;
}

.cta-banner-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.cta-banner-subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    font-weight: 400;
}

.cta-banner .btn-cta-banner {
    background: linear-gradient(135deg, #B8860B 0%, #D4A843 50%, #B8860B 100%);
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(184, 134, 11, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.cta-banner .btn-cta-banner:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(184, 134, 11, 0.5);
    color: white;
    background: linear-gradient(135deg, #D4A843 0%, #B8860B 50%, #8B7355 100%);
}

.cta-banner .btn-cta-banner i {
    font-size: 1.1rem;
}

/* Decorative elements */
.cta-banner-decor {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
}

.cta-banner-decor-1 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, #B8860B 0%, transparent 70%);
    top: -50px;
    right: 10%;
    animation: float 8s ease-in-out infinite;
}

.cta-banner-decor-2 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, #2D5A4A 0%, transparent 70%);
    bottom: -30px;
    left: 5%;
    animation: float 6s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@media (max-width: 768px) {
    .cta-banner {
        padding: 40px 0;
    }
    
    .cta-banner-title {
        font-size: 1.4rem;
    }
    
    .cta-banner-subtitle {
        font-size: 0.9rem;
    }
    
    .cta-banner .btn-cta-banner {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}

@media (max-width: 575px) {
    .cta-banner-title {
        font-size: 1.25rem;
    }
}

/* Warning Section */
.warning-section {
    background: linear-gradient(135deg, #FEF2F2 0%, #FEE2E2 100%);
    border-left: 4px solid #C9302C;
    border-radius: 12px;
}

/* Comparison Cards */
.comparison-card {
    border-radius: 16px;
    padding: 32px;
    background: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.comparison-card.challenges {
    border-left: 4px solid #C9302C;
}

.comparison-card.ayurvedic {
    border-left: 4px solid #2D5A4A;
}

/* Stats */
.stat-card {
    background: var(--bg-cream);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

/* Quote */
.quote-mark {
    font-size: 5rem;
    line-height: 1;
    color: var(--primary-gold);
    opacity: 0.3;
    font-family: 'Playfair Display', serif;
}

/* Floating Buttons */
.floating-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1000;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    text-decoration: none;
}

.floating-btn:hover {
    transform: scale(1.1);
}

.whatsapp-float {
    background: #25D366;
    bottom: 24px;
}

.call-float {
    background: var(--primary-gold);
    bottom: 90px;
}

/* Mobile view - reorder floating buttons: Call > WhatsApp > CTA */
@media (max-width: 768px) {
    .call-float {
        bottom: 200px;
    }
    
    .whatsapp-float {
        bottom: 110px;
    }
    
    .sticky-consultation-btn {
        bottom: 24px;
    }
}

/* Feature Cards */
.feature-card {
    background: var(--bg-cream);
    border-radius: 12px;
    padding: 24px;
    border: 1px solid rgba(184, 134, 11, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Contact Cards */
.contact-card {
    background: var(--bg-cream);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    border: 1px solid rgba(184, 134, 11, 0.1);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Doctor Section */
.doctor-section {
    background: var(--bg-cream);
}

/* ========================================
   FINAL CTA SECTION - Enhanced Styles
   ======================================== */

/* Final CTA - Enhanced Gradient Background */
.final-cta {
    background: linear-gradient(135deg, #2D5A4A 0%, #3d7a64 50%, #8B7355 100%);
    position: relative;
    overflow: hidden;
}

/* Background decorative elements */
.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23B8860B' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.6;
}

.final-cta .container {
    position: relative;
    z-index: 2;
}

/* Floating decorative elements */
.final-cta-floating-element {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

.final-cta-leaf-1 {
    top: 15%;
    left: 8%;
    animation: floatLeaf 8s ease-in-out infinite;
    opacity: 0.4;
}

.final-cta-circle-1 {
    top: 20%;
    right: 15%;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(184, 134, 11, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulseCircle 6s ease-in-out infinite;
}

.final-cta-circle-2 {
    bottom: 20%;
    left: 10%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(45, 90, 74, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulseCircle 8s ease-in-out infinite reverse;
}

@keyframes floatLeaf {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-25px) rotate(10deg); }
}

@keyframes pulseCircle {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.2); opacity: 0.5; }
}

/* Enhanced CTA Badge */
.final-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: white;
    letter-spacing: 0.02em;
    animation: fadeInDown 0.6s ease-out;
}

.final-cta-badge i {
    color: #B8860B;
    font-size: 1.1rem;
}

/* CTA Title Enhancement */
.final-cta-title {
    animation: fadeInUp 0.8s ease-out;
    animation-delay: 0.2s;
    animation-fill-mode: both;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
    color: #FFFFFF !important;
}

.final-cta-subtitle {
    animation: fadeInUp 0.8s ease-out;
    animation-delay: 0.4s;
    animation-fill-mode: both;
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.25);
}

/* FINAL CTA - Improved text visibility */
.final-cta {
    /* Add a dark overlay for better text contrast */
    background: linear-gradient(135deg, rgba(30, 60, 50, 0.95) 0%, rgba(45, 90, 74, 0.92) 50%, rgba(80, 65, 45, 0.9) 100%), 
                linear-gradient(135deg, #2D5A4A 0%, #3d7a64 50%, #8B7355 100%);
}

/* Improve badge visibility */
.final-cta-badge {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Improve quote text visibility */
.final-cta-quote p {
    color: rgba(255, 255, 255, 0.9) !important;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.25);
}

.final-cta-quote .fs-5 {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* CTA Buttons Enhancement */
.final-cta-buttons {
    animation: fadeInUp 0.8s ease-out;
    animation-delay: 0.6s;
    animation-fill-mode: both;
}

.final-cta-btn {
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.final-cta-btn::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: left 0.5s ease;
}

.final-cta-btn:hover::before {
    left: 100%;
}

/* Call Button - Light with green text */
.final-cta-btn.btn-light {
    background: white;
    color: #2D5A4A;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.final-cta-btn.btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    background: #f8f9fa;
    color: #2D5A4A;
}

/* WhatsApp Button - Success gradient */
.final-cta-btn.btn-success {
    background: linear-gradient(135deg, #25D366 0%, #20BD5A 100%);
    border: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.final-cta-btn.btn-success:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    background: linear-gradient(135deg, #20BD5A 0%, #25D366 100%);
    color: white;
}

/* Email Button - Outline light */
.final-cta-btn.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    background: transparent;
}

.final-cta-btn.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: white;
    color: white;
    transform: translateY(-3px);
}

/* Quote Section Enhancement */
.final-cta-quote {
    position: relative;
    animation: fadeInUp 0.8s ease-out;
    animation-delay: 0.8s;
    animation-fill-mode: both;
}

.final-cta-quote .quote-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #B8860B 0%, #D4A843 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.3);
}

.final-cta-quote .quote-icon i {
    color: white;
    font-size: 1.3rem;
}

.final-cta-quote .quote-decoration {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #B8860B, transparent);
    margin: 20px auto 0;
    border-radius: 2px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 991px) {
    .final-cta-btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
}

@media (max-width: 767px) {
    .final-cta-badge {
        font-size: 0.8rem;
        padding: 10px 20px;
    }

    .final-cta-title {
        font-size: 1.75rem !important;
    }

    .final-cta-subtitle {
        font-size: 1rem !important;
    }

    .final-cta-quote p {
        font-size: 1.25rem !important;
    }

    .final-cta-floating-element {
        display: none;
    }
}

@media (max-width: 575px) {
    .final-cta-btn {
        width: 100%;
        justify-content: center;
    }

    .final-cta-title {
        font-size: 1.5rem !important;
    }
}

/* Footer */
footer {
    background: #1A1A1A;
}

/* ========================================
   STICKY BOOK CONSULTATION BUTTON
   ======================================== */

.sticky-consultation-btn {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    background: linear-gradient(135deg, #B8860B 0%, #D4A843 100%);
    color: white;
    padding: 14px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 20px rgba(184, 134, 11, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
    width: calc(100% - 48px);
    max-width: 400px;
}

.sticky-consultation-btn:hover {
    transform: translateX(-50%) translateY(-3px);
    box-shadow: 0 8px 30px rgba(184, 134, 11, 0.5);
    color: white;
    background: linear-gradient(135deg, #D4A843 0%, #B8860B 100%);
}

.sticky-consultation-btn i {
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .sticky-consultation-btn {
        bottom: 90px;
        left: 16px;
        padding: 12px 20px;
        font-size: 0.875rem;
    }
    
    .sticky-consultation-btn span {
        display: inline;
    }
}

@media (max-width: 575px) {
    .sticky-consultation-btn {
        padding: 10px 18px;
        font-size: 0.8rem;
    }
}

/* ========================================
   FOOTER ENHANCED STYLES - Improved Text Visibility
   ======================================== */

footer {
    background: linear-gradient(180deg, #1A1A1A 0%, #0f0f0f 100%);
    color: #E0E0E0;
}

/* Footer Headings - Better visibility */
footer h5 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: #FFFFFF !important;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

/* Footer Links - Improved visibility */
footer a {
    color: #B0B0B0 !important;
    text-decoration: none;
    transition: all 0.3s ease;
}

footer a:hover {
    color: #FFFFFF !important;
    text-decoration: none;
    padding-left: 5px;
}

/* Footer paragraphs - Better contrast */
footer p {
    color: #A0A0A0 !important;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Quick Links - Improved visibility */
footer .list-unstyled li a {
    color: #B0B0B0 !important;
    font-size: 0.95rem;
    display: inline-block;
    padding: 4px 0;
    position: relative;
    transition: all 0.3s ease;
}

footer .list-unstyled li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #B8860B;
    transition: width 0.3s ease;
}

footer .list-unstyled li a:hover::before {
    width: 100%;
}

footer .list-unstyled li a:hover {
    color: #FFFFFF !important;
    padding-left: 0;
}

/* Contact info - Better visibility */
footer .text-secondary {
    color: #A0A0A0 !important;
}

/* Copyright text */
footer hr {
    border-color: rgba(255, 255, 255, 0.1);
}

footer .text-center {
    color: #808080 !important;
}

footer .text-center p {
    color: #808080 !important;
    font-size: 0.875rem;
}

/* List Items */
.check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.cross-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

/* Sticky Header */
.sticky-header {
    transition: all 0.3s ease;
}

.sticky-header.scrolled {
    background: rgba(253, 251, 247, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

/* Card hover effects */
.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Button styles */
.btn-primary-custom {
    background: linear-gradient(135deg, #B8860B 0%, #8B7355 100%);
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(184, 134, 11, 0.3);
}

.btn-secondary-custom {
    background: #2D5A4A;
    transition: all 0.3s ease;
}

.btn-secondary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(45, 90, 74, 0.3);
}

.btn-outline-custom {
    border: 2px solid #B8860B;
    color: #B8860B;
    transition: all 0.3s ease;
}

.btn-outline-custom:hover {
    background: #B8860B;
    color: white;
}

/* Icon box */
.icon-box {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    font-size: 28px;
}

/* Mobile menu */
.mobile-menu {
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.mobile-menu.active {
    transform: translateX(0);
}

/* Gradient backgrounds */
.hero-gradient {
    background: linear-gradient(135deg, #FDFBF7 0%, #F5F0E8 50%, #EDE5D8 100%);
    position: relative;
    overflow: hidden;
}

.hero-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23B8860B' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.8;
}

/* Warning section */
.warning-bg {
    background: linear-gradient(135deg, #FEF2F2 0%, #FEE2E2 100%);
    border-left: 4px solid #C9302C;
}

/* Decorative leaf pattern */
.leaf-pattern {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpath fill='%232D5A4A' fill-opacity='0.03' d='M50 0c-5 0-10 15-10 30s5 20 10 20 10-5 10-20-5-30-10-30zm0 60c-5 0-10-15-10-30s5-20 10-20 10 5 10 20-5 30-10 30z'/%3E%3C/svg%3E");
}

/* Enhanced card shadows */
.card-hover {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.12);
}

/* Section decorative elements */
.section-decoration {
    position: relative;
}

.section-decoration::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #B8860B, #2D5A4A);
    border-radius: 2px;
}

/* Floating leaves animation */
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

.float-animation {
    animation: float 6s ease-in-out infinite;
}

/* Image styles */
.hero-image {
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.doctor-image {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(45, 90, 74, 0.2);
}

/* Gradient overlay for images */
.image-overlay {
    position: relative;
}

.image-overlay::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(253,251,247,0.9), transparent);
    border-radius: 0 0 20px 20px;
}

/* Icon container styles */
.icon-container {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.icon-container:hover {
    transform: scale(1.1);
}

/* ========================================
   ENHANCED NAVBAR STYLES
   ======================================== */

/* Main Navbar */
#mainNav {
    background: #FDFBF7 !important;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    z-index: 9999;
    padding: 12px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#mainNav.scrolled {
    padding: 8px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.12);
    background: rgba(253, 251, 247, 0.98) !important;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

/* Brand Styles */
.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.brand-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #2D5A4A 0%, #3d7a64 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(45, 90, 74, 0.3);
    transition: all 0.3s ease;
}

.brand-icon i {
    color: #fff;
    font-size: 1.4rem;
}

.navbar-brand:hover .brand-icon {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(45, 90, 74, 0.4);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-text .font-playfair {
    color: #2D5A4A;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.brand-tagline {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    color: #8B7355;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

#mainNav.scrolled .brand-icon {
    width: 40px;
    height: 40px;
}

#mainNav.scrolled .brand-icon i {
    font-size: 1.1rem;
}

#mainNav.scrolled .brand-text .font-playfair {
    font-size: 1.3rem;
}

#mainNav.scrolled .brand-tagline {
    font-size: 0.6rem;
}

/* Navbar Toggler */
.navbar-toggler {
    padding: 8px 12px;
    border: none;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.toggler-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(45, 90, 74, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.toggler-icon i {
    color: #2D5A4A;
    font-size: 1.5rem;
}

.navbar-toggler:hover .toggler-icon {
    background: rgba(45, 90, 74, 0.2);
    transform: scale(1.05);
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

/* Navigation Links */
.navbar-nav {
    gap: 4px;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #1A1A1A !important;
    padding: 10px 16px !important;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #B8860B, #2D5A4A);
    border-radius: 2px;
    transition: all 0.3s ease;
    opacity: 0;
}

.nav-link:hover {
    color: #2D5A4A !important;
    background: rgba(45, 90, 74, 0.08);
}

.nav-link:hover::before {
    width: 30px;
    opacity: 1;
}

.nav-link.active {
    color: #2D5A4A !important;
    font-weight: 600;
}

.nav-link.active::before {
    width: 30px;
    opacity: 1;
}

/* Mobile Nav Link Icons */
.nav-link i {
    font-size: 1rem;
    vertical-align: middle;
}

/* CTA Buttons Container */
.nav-cta {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

/* Custom Nav Buttons */
.btn-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 50px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.btn-nav i {
    font-size: 1rem;
}

.btn-nav-primary {
    background: linear-gradient(135deg, #2D5A4A 0%, #3d7a64 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(45, 90, 74, 0.3);
}

.btn-nav-primary::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: left 0.5s ease;
}

.btn-nav-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(45, 90, 74, 0.4);
    color: white;
    background: linear-gradient(135deg, #3d7a64 0%, #2D5A4A 100%);
}

.btn-nav-primary:hover::before {
    left: 100%;
}

.btn-nav-whatsapp {
    background: #25D366;
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-nav-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    background: #20BD5A;
    color: white;
}

.btn-nav-call {
    background: linear-gradient(135deg, #B8860B 0%, #8B7355 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.3);
}

.btn-nav-call:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(184, 134, 11, 0.4);
    background: linear-gradient(135deg, #8B7355 0%, #B8860B 100%);
    color: white;
}

/* Navbar Animation on Load */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#mainNav {
    animation: slideDown 0.6s ease-out;
}

/* Responsive Styles */
@media (max-width: 991px) {
    /* Mobile Menu Styles */
    .navbar-collapse {
        background: #FDFBF7;
        padding: 20px;
        border-radius: 16px;
        margin-top: 16px;
        box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    }
    
    .navbar-nav {
        margin-bottom: 16px;
        padding-bottom: 16px;
        border-bottom: 1px solid rgba(0,0,0,0.08);
    }
    
    .nav-link {
        padding: 12px 16px !important;
    }
    
    .nav-cta {
        justify-content: center;
        padding-top: 8px;
    }
    
    .btn-nav {
        padding: 10px 14px;
        font-size: 0.8rem;
    }
    
    .btn-nav span {
        display: inline !important;
    }
    
    #mainNav {
        padding: 8px 0;
    }
    
    .brand-icon {
        width: 40px;
        height: 40px;
    }
    
    .brand-icon i {
        font-size: 1.2rem;
    }
    
    .brand-text .font-playfair {
        font-size: 1.3rem;
    }
    
    .brand-tagline {
        font-size: 0.6rem;
    }
}

@media (max-width: 575px) {
    .nav-cta {
        justify-content: center;
    }
    
    .btn-nav {
        padding: 8px 12px;
        font-size: 0.75rem;
    }
    
    .btn-nav i {
        font-size: 0.9rem;
    }
}

/* Smooth scroll indicator */
@media (min-width: 992px) {
    html {
        scroll-behavior: smooth;
    }
}

/* ========================================
   CHAPTER 1 - THE CHALLENGE SECTION
   Enhanced Styles
   ======================================== */

/* Chapter Badge */
.chapter-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #2D5A4A 0%, #3d7a64 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 16px;
    box-shadow: 0 4px 15px rgba(45, 90, 74, 0.3);
}

.chapter-badge .chapter-number {
    background: rgba(255, 255, 255, 0.2);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.chapter-badge .chapter-icon {
    font-size: 1rem;
}

/* Section Header Enhancement */
.challenge-section .section-header {
    position: relative;
}

.challenge-section .display-5 {
    position: relative;
    z-index: 1;
}

.challenge-section .section-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-style: italic;
    color: #8B7355;
    max-width: 650px;
    margin: 0 auto;
}

/* Symptom Cards - Enhanced */
.symptom-card {
    background: white;
    border-radius: 16px;
    padding: 28px 24px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.symptom-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--card-accent, #C9302C);
    transition: height 0.3s ease;
}

.symptom-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.symptom-card:hover::before {
    height: 6px;
}

/* Severity Indicator Bar */
.severity-indicator {
    height: 4px;
    background: rgba(0, 0, 0, 0.08);
    border-radius: 2px;
    margin-top: 20px;
    overflow: hidden;
}

.severity-bar {
    height: 100%;
    border-radius: 2px;
    transition: width 1s ease-out;
    width: 0;
}

.symptom-card:hover .severity-bar {
    width: var(--severity-level, 80%);
}

/* Different severity colors */
.symptom-card.severity-high::before,
.symptom-card.severity-high .severity-bar {
    background: linear-gradient(90deg, #C9302C, #E74C3C);
}

.symptom-card.severity-medium::before,
.symptom-card.severity-medium .severity-bar {
    background: linear-gradient(90deg, #F39C12, #F1C40F);
}

.symptom-card.severity-low::before,
.symptom-card.severity-low .severity-bar {
    background: linear-gradient(90deg, #3498DB, #5DADE2);
}

/* Card Icon Box Enhanced */
.symptom-card .icon-box-custom {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.4s ease;
    position: relative;
}

.symptom-card:hover .icon-box-custom {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.symptom-card .icon-box-custom i {
    font-size: 2rem;
    transition: all 0.3s ease;
}

.symptom-card:hover .icon-box-custom i {
    transform: scale(1.2);
}

/* Card Title */
.symptom-card h5 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1A1A1A;
}

/* Card Description */
.symptom-card p {
    color: #5A5A5A;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Card Tag/Label */
.symptom-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
    background: rgba(0, 0, 0, 0.05);
    color: #5A5A5A;
}

/* Decorative Background Pattern */
.challenge-section {
    position: relative;
    overflow: hidden;
}

.challenge-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(184, 134, 11, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.challenge-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(45, 90, 74, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.challenge-section .container {
    position: relative;
    z-index: 1;
}

/* Animation for cards on load */
@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.symptom-card {
    animation: slideUpFade 0.6s ease-out forwards;
    opacity: 0;
}

.symptom-card:nth-child(1) { animation-delay: 0.1s; }
.symptom-card:nth-child(2) { animation-delay: 0.2s; }
.symptom-card:nth-child(3) { animation-delay: 0.3s; }
.symptom-card:nth-child(4) { animation-delay: 0.4s; }

/* Responsive adjustments */
@media (max-width: 991px) {
    .symptom-card {
        padding: 24px 20px;
    }
    
    .symptom-card .icon-box-custom {
        width: 70px;
        height: 70px;
    }
    
    .symptom-card .icon-box-custom i {
        font-size: 1.75rem;
    }
}

@media (max-width: 575px) {
    .chapter-badge {
        font-size: 0.7rem;
        padding: 6px 16px;
    }
    
    .challenge-section .display-5 {
        font-size: 1.75rem !important;
    }
    
    .challenge-section .section-subtitle {
        font-size: 1.1rem;
    }
}

/* ========================================
   CHAPTER 2 - UNDERSTANDING IBD SECTION
   Enhanced Styles
   ======================================== */

/* Understanding Section - Main Container */
.understanding-section {
    position: relative;
    overflow: hidden;
}

/* Background Decorative Elements */
.understanding-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(184, 134, 11, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.understanding-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(45, 90, 74, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.understanding-section .container {
    position: relative;
    z-index: 1;
}

/* Floating Elements */
.understanding-floating-element {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.understanding-floating-leaf-1 {
    top: 15%;
    left: 8%;
    animation: floatLeaf 8s ease-in-out infinite;
}

.understanding-floating-circle-1 {
    top: 25%;
    right: 12%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(45, 90, 74, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulseCircle 6s ease-in-out infinite;
}

.understanding-floating-circle-2 {
    bottom: 20%;
    left: 10%;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(184, 134, 11, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulseCircle 8s ease-in-out infinite reverse;
}

@keyframes floatLeaf {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-25px) rotate(10deg); }
}

@keyframes pulseCircle {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.2); opacity: 0.5; }
}

/* Chapter Badge - Chapter 2 Specific */
.chapter-badge-2 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #2D5A4A 0%, #3d7a64 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(45, 90, 74, 0.3);
    animation: slideDown 0.6s ease-out;
}

.chapter-badge-2 .chapter-number {
    background: rgba(255, 255, 255, 0.2);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.chapter-badge-2 .chapter-icon {
    font-size: 1rem;
}

/* Section Subtitle Enhancement */
.understanding-section .section-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-style: italic;
    color: #8B7355;
}

/* Enhanced Comparison Cards */
.understanding-section .comparison-card {
    background: white;
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.understanding-section .comparison-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Symmetric Card Styling - Both Cards */
.understanding-section .comparison-card.challenges,
.understanding-section .comparison-card.ayurvedic {
    border: none;
    border-top: 4px solid;
    position: relative;
    overflow: hidden;
}

/* Challenges Card - Left Side */
.understanding-section .comparison-card.challenges {
    border-top-color: #C9302C;
}

.understanding-section .comparison-card.challenges::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #C9302C, #E74C3C);
    z-index: 1;
}

.understanding-section .comparison-card.challenges::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, #C9302C 0%, transparent 70%);
    opacity: 0.05;
    transform: translate(30%, -30%);
    transition: all 0.4s ease;
}

.understanding-section .comparison-card.challenges:hover::after {
    opacity: 0.1;
    transform: translate(20%, -20%) scale(1.2);
}

/* Ayurvedic Card - Right Side */
.understanding-section .comparison-card.ayurvedic {
    border-top-color: #2D5A4A;
}

.understanding-section .comparison-card.ayurvedic::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2D5A4A, #3d7a64);
    z-index: 1;
}

.understanding-section .comparison-card.ayurvedic::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, #2D5A4A 0%, transparent 70%);
    opacity: 0.05;
    transform: translate(30%, -30%);
    transition: all 0.4s ease;
}

.understanding-section .comparison-card.ayurvedic:hover::after {
    opacity: 0.1;
    transform: translate(20%, -20%) scale(1.2);
}


/* Card Header - Icon + Title */
.understanding-section .comparison-card .card-header-custom {
    padding: 32px 32px 0 32px;
    position: relative;
    z-index: 1;
}

.understanding-section .comparison-card .icon-box-custom {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.understanding-section .comparison-card .icon-box-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.3) 0%, transparent 50%);
    border-radius: inherit;
}

.understanding-section .comparison-card:hover .icon-box-custom {
    transform: scale(1.1) rotate(3deg);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.understanding-section .comparison-card .icon-box-custom i {
    font-size: 2rem;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.understanding-section .comparison-card:hover .icon-box-custom i {
    transform: scale(1.1);
}

/* Challenges Card Specific Colors */
.understanding-section .comparison-card.challenges .icon-box-custom {
    background: linear-gradient(135deg, #C9302C 0%, #E74C3C 100%);
    box-shadow: 0 8px 25px rgba(201, 48, 44, 0.35);
}

.understanding-section .comparison-card.challenges:hover .icon-box-custom {
    box-shadow: 0 15px 35px rgba(201, 48, 44, 0.45);
}

/* Ayurvedic Card Specific Colors */
.understanding-section .comparison-card.ayurvedic .icon-box-custom {
    background: linear-gradient(135deg, #2D5A4A 0%, #3d7a64 100%);
    box-shadow: 0 8px 25px rgba(45, 90, 74, 0.35);
}

.understanding-section .comparison-card.ayurvedic:hover .icon-box-custom {
    box-shadow: 0 15px 35px rgba(45, 90, 74, 0.45);
}

/* Card Body */
.understanding-section .comparison-card .card-body-custom {
    padding: 24px 32px 32px 32px;
    position: relative;
    z-index: 1;
}

/* Symmetric List Styles - Both Lists */
.understanding-section .cross-list li,
.understanding-section .check-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
    font-size: 1rem;
    line-height: 1.6;
    padding: 12px 16px;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.02);
    border-left: 3px solid transparent;
}

/* Challenges List Hover - Red Accent */
.understanding-section .cross-list li:hover {
    background: rgba(201, 48, 44, 0.06);
    transform: translateX(8px);
    border-left-color: #C9302C;
    box-shadow: 0 4px 12px rgba(201, 48, 44, 0.1);
}

/* Ayurvedic List Hover - Green Accent */
.understanding-section .check-list li:hover {
    background: rgba(45, 90, 74, 0.06);
    transform: translateX(8px);
    border-left-color: #2D5A4A;
    box-shadow: 0 4px 12px rgba(45, 90, 74, 0.1);
}

.understanding-section .cross-list li:last-child,
.understanding-section .check-list li:last-child {
    margin-bottom: 0;
}

.understanding-section .cross-list li i,
.understanding-section .check-list li i {
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.understanding-section .cross-list li:hover i,
.understanding-section .check-list li:hover i {
    transform: scale(1.15);
}


/* Staggered Animation for Cards */
@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.understanding-section .comparison-card {
    animation: slideUpFade 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
}

.understanding-section .comparison-card:nth-child(1) {
    animation-delay: 0.15s;
}

.understanding-section .comparison-card:nth-child(2) {
    animation-delay: 0.3s;
}

/* Section Header Animation */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.understanding-section .chapter-badge-2 {
    animation: fadeInDown 0.8s ease-out;
}

/* Enhanced Responsive Styles */
@media (max-width: 991px) {
    .understanding-section .comparison-card .card-header-custom {
        padding: 28px 24px 0 24px;
    }
    
    .understanding-section .comparison-card .card-body-custom {
        padding: 20px 24px 28px 24px;
    }
    
    .understanding-section .comparison-card .icon-box-custom {
        width: 70px;
        height: 70px;
    }
    
    .understanding-section .comparison-card .icon-box-custom i {
        font-size: 1.75rem;
    }
    
    .understanding-section .cross-list li,
    .understanding-section .check-list li {
        font-size: 0.95rem;
        padding: 8px 12px;
    }
}

@media (max-width: 767px) {
    .understanding-section .comparison-card .card-header-custom {
        padding: 24px 20px 0 20px;
    }
    
    .understanding-section .comparison-card .card-body-custom {
        padding: 16px 20px 24px 20px;
    }
    
    .understanding-section .comparison-card .icon-box-custom {
        width: 60px;
        height: 60px;
        border-radius: 16px;
    }
    
    .understanding-section .comparison-card .icon-box-custom i {
        font-size: 1.5rem;
    }
    
    .understanding-section .cross-list li,
    .understanding-section .check-list li {
        font-size: 0.9rem;
        gap: 10px;
    }
    
    .understanding-section .chapter-badge-2 {
        font-size: 0.7rem;
        padding: 6px 16px;
    }
    
    .understanding-section .chapter-badge-2 .chapter-number {
        width: 24px;
        height: 24px;
        font-size: 0.8rem;
    }
    
    .understanding-section .display-5 {
        font-size: 1.75rem !important;
    }
    
    .understanding-section .section-subtitle {
        font-size: 1.1rem;
    }
}

/* ========================================
   CHAPTER 1 - COMPREHENSIVE UI ENHANCEMENTS
   ======================================== */

/* Enhanced Chapter Badge with Glow */
.challenge-section .chapter-badge {
    position: relative;
    background: linear-gradient(135deg, #2D5A4A 0%, #3d7a64 50%, #2D5A4A 100%);
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
    box-shadow: 0 4px 20px rgba(45, 90, 74, 0.4), 
                0 0 30px rgba(45, 90, 74, 0.2);
}

.challenge-section .chapter-badge::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #B8860B, #2D5A4A, #B8860B);
    border-radius: inherit;
    z-index: -1;
    opacity: 0.5;
    filter: blur(8px);
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Enhanced Section Header */
.challenge-section .section-header {
    position: relative;
    padding-bottom: 30px;
}

.challenge-section .section-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #B8860B, transparent);
    border-radius: 2px;
}

/* Enhanced Chapter Image Container */
.chapter-image-container {
    position: relative;
    display: block;
    max-width: 100%;
    margin: 0 auto 40px;
    text-align: center;
}

.chapter-image-frame {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid rgba(184, 134, 11, 0.2);
    border-radius: 16px;
    pointer-events: none;
    transition: all 0.3s ease;
}

.chapter-image-container:hover .chapter-image-frame {
    top: -12px;
    left: -12px;
    right: -12px;
    bottom: -12px;
    border-color: rgba(184, 134, 11, 0.4);
}

.chapter-image-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(184, 134, 11, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    animation: pulse 4s ease-in-out infinite;
}

.chapter-image-shadow {
    position: absolute;
    bottom: -10px;
    left: 15%;
    width: 70%;
    height: 15px;
    background: radial-gradient(ellipse, rgba(0, 0, 0, 0.1) 0%, transparent 70%);
    filter: blur(8px);
    z-index: -1;
}

.challenge-section .chapter-image-container img {
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 100%;
    height: auto;
}

.challenge-section .chapter-image-container:hover img {
    transform: scale(1.02) translateY(-3px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

/* Simplified corner decorations - only top-left and bottom-right */
.chapter-image-corner {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 2px solid rgba(184, 134, 11, 0.3);
    opacity: 0.6;
}

.chapter-image-corner-tl {
    top: 8px;
    left: 8px;
    border-right: none;
    border-bottom: none;
    border-radius: 6px 0 0 0;
}

.chapter-image-corner-br {
    bottom: 8px;
    right: 8px;
    border-left: none;
    border-top: none;
    border-radius: 0 0 6px 0;
}

/* Remove unused corner decorations */
.chapter-image-corner-tr,
.chapter-image-corner-bl {
    display: none;
}

/* Enhanced Symptom Cards */
.challenge-section .symptom-card {
    background: white;
    border-radius: 20px;
    padding: 32px 28px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.challenge-section .symptom-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--card-accent, #C9302C);
    transition: all 0.4s ease;
}

.challenge-section .symptom-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, var(--card-accent, #C9302C) 0%, transparent 70%);
    opacity: 0.05;
    transform: translate(30%, -30%);
    transition: all 0.4s ease;
}

.challenge-section .symptom-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.challenge-section .symptom-card:hover::before {
    height: 6px;
    box-shadow: 0 0 20px var(--card-accent, #C9302C);
}

.challenge-section .symptom-card:hover::after {
    opacity: 0.1;
    transform: translate(20%, -20%) scale(1.2);
}

/* Enhanced Icon Box */
.challenge-section .symptom-card .icon-box-custom {
    width: 90px;
    height: 90px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.challenge-section .symptom-card .icon-box-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.3) 0%, transparent 50%);
    border-radius: inherit;
}

.challenge-section .symptom-card:hover .icon-box-custom {
    transform: scale(1.12) rotate(3deg);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.challenge-section .symptom-card .icon-box-custom i {
    font-size: 2.25rem;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.challenge-section .symptom-card:hover .icon-box-custom i {
    transform: scale(1.15);
}

/* Enhanced Severity Indicator */
.challenge-section .severity-indicator {
    height: 6px;
    background: rgba(0, 0, 0, 0.06);
    border-radius: 3px;
    margin-top: 24px;
    overflow: hidden;
    position: relative;
}

.challenge-section .severity-bar {
    height: 100%;
    border-radius: 3px;
    width: 0;
    position: relative;
    transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.challenge-section .severity-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.3) 50%, transparent 100%);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Different severity colors with glow */
.challenge-section .symptom-card.severity-high::before,
.challenge-section .symptom-card.severity-high .severity-bar {
    background: linear-gradient(90deg, #C9302C, #E74C3C);
    box-shadow: 0 0 15px rgba(201, 48, 44, 0.4);
}

.challenge-section .symptom-card.severity-medium::before,
.challenge-section .symptom-card.severity-medium .severity-bar {
    background: linear-gradient(90deg, #F39C12, #F1C40F);
    box-shadow: 0 0 15px rgba(243, 156, 18, 0.4);
}

.challenge-section .symptom-card.severity-low::before,
.challenge-section .symptom-card.severity-low .severity-bar {
    background: linear-gradient(90deg, #3498DB, #5DADE2);
    box-shadow: 0 0 15px rgba(52, 152, 219, 0.4);
}

.challenge-section .symptom-card.severity-low .icon-box-custom {
    background: rgba(111, 66, 193, 0.1) !important;
}

.challenge-section .symptom-card.severity-low .icon-box-custom i {
    color: #6f42c1 !important;
}

/* Enhanced Card Title */
.challenge-section .symptom-card h5 {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 14px;
    color: #1A1A1A;
    position: relative;
    z-index: 1;
}

/* Enhanced Card Description */
.challenge-section .symptom-card p {
    color: #5A5A5A;
    font-size: 0.98rem;
    line-height: 1.65;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

/* Enhanced Card Tag/Label */
.challenge-section .symptom-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 14px;
    background: rgba(0, 0, 0, 0.04);
    color: #666;
    position: relative;
    z-index: 1;
}

/* Card index number */
.symptom-card-index {
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.04);
    line-height: 1;
    z-index: 0;
}

/* Enhanced Background Effects */
.challenge-section {
    position: relative;
    overflow: hidden;
}

.challenge-section::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(184, 134, 11, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.challenge-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(45, 90, 74, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

/* Floating decorative elements */
.challenge-floating-element {
    position: absolute;
    opacity: 0.1;
    pointer-events: none;
    z-index: 0;
}

.challenge-floating-leaf-1 {
    top: 20%;
    left: 5%;
    animation: floatLeaf 8s ease-in-out infinite;
}

.challenge-floating-leaf-2 {
    bottom: 30%;
    right: 8%;
    animation: floatLeaf 10s ease-in-out infinite reverse;
}

@keyframes floatLeaf {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-25px) rotate(10deg); }
}

/* Animation for cards on load with stagger */
@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.challenge-section .symptom-card {
    animation: slideUpFade 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
}

.challenge-section .symptom-card:nth-child(1) { animation-delay: 0.15s; }
.challenge-section .symptom-card:nth-child(2) { animation-delay: 0.3s; }
.challenge-section .symptom-card:nth-child(3) { animation-delay: 0.45s; }
.challenge-section .symptom-card:nth-child(4) { animation-delay: 0.6s; }

/* Subtle entrance animation for section header */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.challenge-section .section-header {
    animation: fadeInDown 0.8s ease-out;
}

/* Image entrance animation */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.challenge-section .chapter-image-container {
    animation: fadeInScale 1s ease-out 0.3s both;
}

/* Enhanced Responsive Styles */
@media (max-width: 991px) {
    .challenge-section .symptom-card {
        padding: 26px 22px;
    }
    
    .challenge-section .symptom-card .icon-box-custom {
        width: 80px;
        height: 80px;
    }
    
    .challenge-section .symptom-card .icon-box-custom i {
        font-size: 1.85rem;
    }
    
    .challenge-section .symptom-card h5 {
        font-size: 1.2rem;
    }
    
    .chapter-image-accent {
        width: 100px;
        height: 100px;
        top: -25px;
        right: -25px;
    }
}

@media (max-width: 767px) {
    .challenge-section .symptom-card {
        padding: 24px 20px;
    }
    
    .challenge-section .symptom-card .icon-box-custom {
        width: 70px;
        height: 70px;
        border-radius: 20px;
    }
    
    .challenge-section .symptom-card .icon-box-custom i {
        font-size: 1.6rem;
    }
    
    .challenge-section .symptom-card h5 {
        font-size: 1.1rem;
    }
    
    .challenge-section .symptom-card p {
        font-size: 0.9rem;
    }
    
    .chapter-image-frame,
    .challenge-section .chapter-image-container:hover .chapter-image-frame {
        top: -10px;
        left: -10px;
        right: -10px;
        bottom: -10px;
    }
}

@media (max-width: 575px) {
    .challenge-section .chapter-badge {
        font-size: 0.7rem;
        padding: 6px 16px;
    }
    
    .challenge-section .display-5 {
        font-size: 1.75rem !important;
    }
    
    .challenge-section .section-subtitle {
        font-size: 1.1rem;
    }
    
    .symptom-card-index {
        font-size: 2rem;
    }
}

/* ========================================
   CHAPTER 3 - WHY SUSHRUTA SECTION
   Enhanced Symmetric Styles
   ======================================== */

/* Why Sushruta Section - Main Container */
.why-sushruta-section {
    position: relative;
    overflow: hidden;
    background: white;
}

/* Background decorative elements */
.why-sushruta-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(184, 134, 11, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.why-sushruta-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(45, 90, 74, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.why-sushruta-section .container {
    position: relative;
    z-index: 1;
}

/* Enhanced Section Subtitle */
.why-sushruta-section .section-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-style: italic;
    color: #8B7355;
    max-width: 650px;
    margin: 0 auto;
}

/* Enhanced Stat Cards - Perfectly Symmetric */
.why-sushruta-section .stat-card {
    background: var(--bg-cream);
    border-radius: 20px;
    padding: 36px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.why-sushruta-section .stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
    opacity: 0.5;
}

.why-sushruta-section .stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

/* Stat Icon Wrapper */
.why-sushruta-section .stat-icon-wrapper {
    margin-bottom: 20px;
}

.why-sushruta-section .stat-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.why-sushruta-section .stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(3deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Stat Number */
.why-sushruta-section .stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
}

/* Stat Title */
.why-sushruta-section .stat-card .fw-semibold {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 12px;
}

/* Stat Description */
.why-sushruta-section .stat-card p {
    color: #5A5A5A;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Enhanced Feature Cards - Perfectly Symmetric 3-Column Layout */
.why-sushruta-section .feature-card {
    background: white;
    border-radius: 20px;
    padding: 36px 28px;
    height: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.why-sushruta-section .feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--primary-gold));
    transition: height 0.3s ease;
}

.why-sushruta-section .feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.why-sushruta-section .feature-card:hover::before {
    height: 5px;
}

/* Feature Card Icon Wrapper */
.why-sushruta-section .feature-card-icon-wrapper {
    margin-bottom: 24px;
}

.why-sushruta-section .feature-card-icon {
    width: 90px;
    height: 90px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.why-sushruta-section .feature-card:hover .feature-card-icon {
    transform: scale(1.12) rotate(3deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.why-sushruta-section .feature-card-icon i {
    font-size: 2.25rem;
    transition: all 0.4s ease;
}

.why-sushruta-section .feature-card:hover .feature-card-icon i {
    transform: scale(1.1);
}

/* Feature Card Title */
.why-sushruta-section .feature-card h5 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

/* Feature Card Description */
.why-sushruta-section .feature-card p {
    color: #5A5A5A;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

/* Alternating accent colors for feature cards */
.why-sushruta-section .feature-card:nth-child(1)::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(45, 90, 74, 0.08) 0%, transparent 70%);
    transform: translate(30%, -30%);
    transition: all 0.4s ease;
}

.why-sushruta-section .feature-card:nth-child(2)::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(184, 134, 11, 0.08) 0%, transparent 70%);
    transform: translate(30%, -30%);
    transition: all 0.4s ease;
}

.why-sushruta-section .feature-card:nth-child(3)::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(139, 115, 85, 0.08) 0%, transparent 70%);
    transform: translate(30%, -30%);
    transition: all 0.4s ease;
}

.why-sushruta-section .feature-card:hover::after {
    opacity: 0.15;
    transform: translate(20%, -20%) scale(1.2);
}

/* Animation for cards */
@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.why-sushruta-section .stat-card {
    animation: slideUpFade 0.6s ease-out forwards;
    opacity: 0;
}

.why-sushruta-section .stat-card:nth-child(1) { animation-delay: 0.1s; }
.why-sushruta-section .stat-card:nth-child(2) { animation-delay: 0.2s; }

.why-sushruta-section .feature-card {
    animation: slideUpFade 0.6s ease-out forwards;
    opacity: 0;
}

.why-sushruta-section .feature-card:nth-child(1) { animation-delay: 0.3s; }
.why-sushruta-section .feature-card:nth-child(2) { animation-delay: 0.4s; }
.why-sushruta-section .feature-card:nth-child(3) { animation-delay: 0.5s; }

/* Responsive adjustments */
@media (max-width: 991px) {
    .why-sushruta-section .stat-card {
        padding: 28px 24px;
    }
    
    .why-sushruta-section .stat-number {
        font-size: 2.75rem;
    }
    
    .why-sushruta-section .stat-card .fw-semibold {
        font-size: 1.2rem;
    }
    
    .why-sushruta-section .feature-card {
        padding: 28px 22px;
    }
    
    .why-sushruta-section .feature-card-icon {
        width: 75px;
        height: 75px;
    }
    
    .why-sushruta-section .feature-card-icon i {
        font-size: 1.85rem;
    }
    
    .why-sushruta-section .feature-card h5 {
        font-size: 1.15rem;
    }
}

@media (max-width: 767px) {
    .why-sushruta-section .stat-card {
        padding: 24px 20px;
    }
    
    .why-sushruta-section .stat-number {
        font-size: 2.5rem;
    }
    
    .why-sushruta-section .stat-icon {
        width: 70px;
        height: 70px;
    }
    
    .why-sushruta-section .feature-card {
        padding: 24px 18px;
    }
    
    .why-sushruta-section .feature-card-icon {
        width: 65px;
        height: 65px;
        border-radius: 18px;
    }
    
    .why-sushruta-section .feature-card-icon i {
        font-size: 1.6rem;
    }
    
    .why-sushruta-section .feature-card h5 {
        font-size: 1.05rem;
    }
    
    .why-sushruta-section .feature-card p {
        font-size: 0.9rem;
    }
}

@media (max-width: 575px) {
    .why-sushruta-section .display-5 {
        font-size: 1.75rem !important;
    }
    
    .why-sushruta-section .section-subtitle {
        font-size: 1.1rem;
    }
}

/* ========================================
   CHAPTER 4 - OUR EXPERT SECTION
   Enhanced Styles
   ======================================== */

/* Expert Section - Main Container */
.doctor-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #FDFBF7 0%, #F5F0E8 50%, #EDE5D8 100%);
}

/* Background decorative elements */
.doctor-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(184, 134, 11, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.doctor-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(45, 90, 74, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.doctor-section .container {
    position: relative;
    z-index: 1;
}

/* Floating Elements */
.expert-floating-element {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.expert-floating-leaf-1 {
    top: 15%;
    left: 8%;
    animation: floatLeaf 8s ease-in-out infinite;
}

.expert-floating-leaf-2 {
    bottom: 25%;
    right: 10%;
    animation: floatLeaf 10s ease-in-out infinite reverse;
}

.expert-floating-circle-1 {
    top: 20%;
    right: 15%;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(45, 90, 74, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulseCircle 6s ease-in-out infinite;
}

.expert-floating-circle-2 {
    bottom: 15%;
    left: 15%;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(184, 134, 11, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulseCircle 8s ease-in-out infinite reverse;
}

/* Credential Badges */
.credential-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #2D5A4A 0%, #3d7a64 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 15px rgba(45, 90, 74, 0.3);
    transition: all 0.3s ease;
}

.credential-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 90, 74, 0.4);
}

.credential-badge i {
    font-size: 1rem;
}

/* Doctor Card */
.doctor-card-ayurved {
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.doctor-card-ayurved:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
}

/* Doctor Image Wrapper */
.doctor-image-wrapper {
    position: relative;
    background: linear-gradient(135deg, #2D5A4A 0%, #8B7355 100%);
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100%;
    height: 100%;
}


/* Doctor Image Accent */
.doctor-image-accent {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(184, 134, 11, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    animation: pulse 4s ease-in-out infinite;
}

/* Doctor Profile Image */
.doctor-profile-image {
    width: 100%;
    max-width: 320px;
    height: auto;
    aspect-ratio: 1/1;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
}


.doctor-profile-image:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3);
}

/* Doctor Image Frame */
.doctor-image-frame {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 3px solid rgba(184, 134, 11, 0.4);
    border-radius: 12px;
    pointer-events: none;
    transition: all 0.3s ease;
}

.doctor-image-wrapper:hover .doctor-image-frame {
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-color: rgba(184, 134, 11, 0.6);
}

/* Doctor Image Corner Decorations */
.doctor-image-corner {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 3px solid rgba(184, 134, 11, 0.3);
    opacity: 0.7;
}

.doctor-image-corner-tl {
    top: 10px;
    left: 10px;
    border-right: none;
    border-bottom: none;
    border-radius: 8px 0 0 0;
}

.doctor-image-corner-br {
    bottom: 10px;
    right: 10px;
    border-left: none;
    border-top: none;
    border-radius: 0 0 8px 0;
}

/* Doctor Info Section */
.doctor-info {
    padding: 40px;
}

.doctor-info h4 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 8px;
}

.doctor-info p {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #B8860B;
    margin-bottom: 32px;
}

.doctor-info .lead {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.6;
    color: #5A5A5A;
    margin-bottom: 32px;
}

/* Expertise List */
.doctor-info .check-list {
    margin-bottom: 32px;
}

.doctor-info .check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 1rem;
    line-height: 1.6;
    color: #5A5A5A;
}

.doctor-info .check-list li i {
    font-size: 1.1rem;
    color: #2D5A4A;
}

/* Doctor Quote */
.doctor-quote {
    position: relative;
    background: linear-gradient(135deg, #FDFBF7 0%, #F5F0E8 100%);
    padding: 32px;
    border-radius: 16px;
    border-left: 4px solid #B8860B;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.doctor-quote .quote-icon {
    position: absolute;
    top: -15px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #B8860B 0%, #D4A843 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.3);
}

.doctor-quote blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-style: italic;
    line-height: 1.6;
    color: #1A1A1A;
    margin: 0;
    padding-left: 20px;
}

.doctor-quote .quote-decoration {
    position: absolute;
    bottom: 10px;
    right: 20px;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #B8860B, transparent);
    border-radius: 2px;
}

/* CTA Button */
.doctor-section .btn-cta-modern {
    background: linear-gradient(135deg, #2D5A4A 0%, #3d7a64 100%);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(45, 90, 74, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.doctor-section .btn-cta-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(45, 90, 74, 0.5);
    color: white;
    background: linear-gradient(135deg, #3d7a64 0%, #2D5A4A 100%);
}

.doctor-section .btn-cta-modern i {
    font-size: 1.2rem;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .doctor-card-ayurved .row > div {
        flex-basis: 100%;
    }
    
    .doctor-image-wrapper {
        padding: 30px;
    }
    
    .doctor-profile-image {
        max-width: 280px;
    }

    
    .doctor-info {
        padding: 30px;
    }
    
    .doctor-info h4 {
        font-size: 1.75rem;
    }
    
    .doctor-quote blockquote {
        font-size: 1.2rem;
    }
}

@media (max-width: 767px) {
    .credential-badge {
        font-size: 0.7rem;
        padding: 6px 12px;
    }
    
    .doctor-image-wrapper {
        padding: 20px;
    }
    
    .doctor-profile-image {
        max-width: 240px;
    }

    
    .doctor-info {
        padding: 20px;
    }
    
    .doctor-info h4 {
        font-size: 1.5rem;
    }
    
    .doctor-info .lead {
        font-size: 1rem;
    }
    
    .doctor-quote {
        padding: 24px;
    }
    
    .doctor-quote blockquote {
        font-size: 1.1rem;
    }
}

@media (max-width: 575px) {
    .expert-floating-element {
        display: none;
    }
    
    .credential-badge {
        font-size: 0.65rem;
        padding: 5px 10px;
    }
    
    .doctor-card-ayurved {
        border-radius: 16px;
    }
    
    .doctor-image-wrapper {
        padding: 15px;
    }
    
    .doctor-profile-image {
        max-width: 200px;
        border-radius: 12px;
    }

    
    .doctor-info {
        padding: 15px;
    }
    
    .doctor-info h4 {
        font-size: 1.25rem;
    }
    
    .doctor-quote {
        padding: 16px;
        border-radius: 12px;
    }
    
    .doctor-quote blockquote {
        font-size: 1rem;
    }
    
    .doctor-section .btn-cta-modern {
        padding: 12px 24px;
        font-size: 1rem;
    }
}

/* ========================================
   ARTICLE - IN THE NEWS SECTION
   ======================================== */

.article-news-section {
    background: linear-gradient(135deg, #F7F2E8 0%, #FFFFFF 100%);
}

.article-news-card {
    background: #ffffff;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(45, 90, 74, 0.1);
    box-shadow: 0 18px 45px rgba(26, 26, 26, 0.08);
}

.article-news-row {
    min-height: 420px;
}

.article-news-col {
    display: flex;
}

.article-news-image-wrapper {
    width: 100%;
    min-height: 420px;
    background: #f4efe4;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
}

.article-news-image {
    width: 46%;
    max-width: 560px;
    max-height: 425px;
    height: auto;
    object-fit: contain;
    display: block;
    border-radius: 14px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.14);
}

.article-news-content {
    width: 100%;
    min-height: 420px;
    padding: 42px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-left: 1px solid rgba(45, 90, 74, 0.1);
}

.article-news-content p {
    max-width: 460px;
}

.article-news-tag {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    background: #2D5A4A;
    color: #ffffff;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

@media (max-width: 991px) {
    .article-news-row {
        min-height: 0;
    }

    .article-news-image-wrapper,
    .article-news-image,
    .article-news-content {
        min-height: 300px;
    }

    .article-news-image {
        width: 78%;
        max-width: 320px;
        max-height: 220px;
    }

    .article-news-content {
        border-left: none;
        border-top: 1px solid rgba(45, 90, 74, 0.1);
        padding: 34px 24px;
    }
}

/* ========================================
   CHAPTER 7 - CONSULTATION SECTION
   Enhanced Styles
   ======================================== */

/* Consultation Section - Main Container */
.consultation-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #FDFBF7 0%, #F5F0E8 50%, #EDE5D8 100%);
}

/* Background decorative elements */
.consultation-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(184, 134, 11, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.consultation-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(45, 90, 74, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.consultation-section .container {
    position: relative;
    z-index: 1;
}

/* Floating Elements */
.consultation-floating-element {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.consultation-floating-leaf-1 {
    top: 15%;
    left: 8%;
    animation: floatLeaf 8s ease-in-out infinite;
}

.consultation-floating-leaf-2 {
    bottom: 25%;
    right: 10%;
    animation: floatLeaf 10s ease-in-out infinite reverse;
}

.consultation-floating-circle-1 {
    top: 20%;
    right: 15%;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(45, 90, 74, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulseCircle 6s ease-in-out infinite;
}

.consultation-floating-circle-2 {
    bottom: 15%;
    left: 15%;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(184, 134, 11, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulseCircle 8s ease-in-out infinite reverse;
}

/* Enhanced Chapter Badge - Consultation */
.consultation-chapter-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #2D5A4A 0%, #3d7a64 100%);
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    box-shadow: 0 4px 20px rgba(45, 90, 74, 0.4);
    animation: slideDown 0.6s ease-out;
}

.consultation-chapter-badge .chapter-number {
    background: rgba(255, 255, 255, 0.2);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.consultation-chapter-badge .chapter-icon {
    font-size: 1rem;
}

/* Consultation Section Subtitle */
.consultation-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-style: italic;
    color: #8B7355;
}

/* Enhanced Consultation Options Cards */
.consultation-card {
    background: white;
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.consultation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--card-color, #2D5A4A), var(--card-color-light, #3d7a64));
    transition: height 0.3s ease;
}

.consultation-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, var(--card-color, #2D5A4A) 0%, transparent 70%);
    opacity: 0.05;
    transform: translate(30%, -30%);
    transition: all 0.4s ease;
}

.consultation-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.consultation-card:hover::before {
    height: 5px;
    box-shadow: 0 0 20px var(--card-color, #2D5A4A);
}

.consultation-card:hover::after {
    opacity: 0.1;
    transform: translate(20%, -20%) scale(1.2);
}

/* Consultation Card Icon Wrapper */
.consultation-card-icon-wrapper {
    margin-bottom: 20px;
}

.consultation-card-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.consultation-card:hover .consultation-card-icon {
    transform: scale(1.12) rotate(3deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.consultation-card-icon i {
    font-size: 2rem;
    transition: all 0.4s ease;
}

.consultation-card:hover .consultation-card-icon i {
    transform: scale(1.1);
}

/* Consultation Card Title */
.consultation-card h6 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

/* Consultation Card Description */
.consultation-card p {
    color: #5A5A5A;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

/* Staggered Animation for Cards */
@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.consultation-card {
    animation: slideUpFade 0.6s ease-out forwards;
    opacity: 0;
}

.consultation-card:nth-child(1) { animation-delay: 0.1s; }
.consultation-card:nth-child(2) { animation-delay: 0.2s; }
.consultation-card:nth-child(3) { animation-delay: 0.3s; }
.consultation-card:nth-child(4) { animation-delay: 0.4s; }

/* Contact Details Card */
.contact-details-card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.contact-details-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2D5A4A, #B8860B);
}

.contact-details-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 28px;
}

/* Contact Details Corner Decorations */
.contact-details-corner {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 2px solid rgba(184, 134, 11, 0.3);
    opacity: 0.6;
}

.contact-details-corner-tl {
    top: 15px;
    left: 15px;
    border-right: none;
    border-bottom: none;
    border-radius: 6px 0 0 0;
}

.contact-details-corner-br {
    bottom: 15px;
    right: 15px;
    border-left: none;
    border-top: none;
    border-radius: 0 0 6px 0;
}

/* Contact Info Items */
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-info-item:hover .contact-info-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.contact-info-icon i {
    font-size: 1.25rem;
}

.contact-info-content h6 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 4px;
}

.contact-info-content p {
    color: #5A5A5A;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.contact-info-content a {
    color: #2D5A4A;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-content a:hover {
    color: #B8860B;
}

/* Consultation CTA Box */
.consultation-cta-box {
    background: linear-gradient(135deg, #FDFBF7 0%, #F5F0E8 100%);
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
    border: 1px solid rgba(184, 134, 11, 0.1);
    position: relative;
    overflow: hidden;
}

.consultation-cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(37, 211, 102, 0.05) 0%, transparent 50%);
    animation: pulse 4s ease-in-out infinite;
}

.consultation-cta-box .consultation-cta-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #25D366 0%, #20BD5A 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.consultation-cta-box:hover .consultation-cta-icon {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

.consultation-cta-icon i {
    color: white;
    font-size: 2rem;
}

.consultation-cta-box h5 {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.consultation-cta-box p {
    color: #5A5A5A;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

/* WhatsApp Consultation Button */
.btn-whatsapp-consultation {
    background: linear-gradient(135deg, #25D366 0%, #20BD5A 100%);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-whatsapp-consultation:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
    background: linear-gradient(135deg, #20BD5A 0%, #25D366 100%);
    color: white;
}

.btn-whatsapp-consultation i {
    font-size: 1.3rem;
}

/* Animation for consultation CTA */
@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-details-card {
    animation: slideUpFade 0.8s ease-out;
}

.consultation-cta-box {
    animation: slideUpFade 0.8s ease-out 0.2s both;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .consultation-card {
        padding: 26px 20px;
    }
    
    .consultation-card-icon {
        width: 70px;
        height: 70px;
    }
    
    .consultation-card-icon i {
        font-size: 1.75rem;
    }
    
    .contact-details-card {
        padding: 32px 24px;
    }
    
    .contact-info-icon {
        width: 46px;
        height: 46px;
    }
    
    .consultation-cta-box {
        padding: 28px 20px;
    }
    
    .consultation-cta-icon {
        width: 70px;
        height: 70px;
    }
    
    .consultation-cta-icon i {
        font-size: 1.75rem;
    }
}

@media (max-width: 767px) {
    .consultation-card {
        padding: 24px 18px;
    }
    
    .consultation-card-icon {
        width: 60px;
        height: 60px;
        border-radius: 16px;
    }
    
    .consultation-card-icon i {
        font-size: 1.5rem;
    }
    
    .consultation-card h6 {
        font-size: 1rem;
    }
    
    .consultation-card p {
        font-size: 0.85rem;
    }
    
    .contact-details-card {
        padding: 24px 20px;
    }
    
    .contact-details-card h4 {
        font-size: 1.5rem;
        margin-bottom: 24px;
    }
    
    .contact-info-item {
        margin-bottom: 20px;
    }
    
    .contact-info-icon {
        width: 42px;
        height: 42px;
        border-radius: 12px;
    }
    
    .contact-info-icon i {
        font-size: 1.1rem;
    }
    
    .contact-info-content h6 {
        font-size: 0.95rem;
    }
    
    .contact-info-content p {
        font-size: 0.875rem;
    }
    
    .consultation-chapter-badge {
        font-size: 0.7rem;
        padding: 8px 18px;
    }
    
    .consultation-chapter-badge .chapter-number {
        width: 26px;
        height: 26px;
    }
    
    .consultation-cta-box {
        margin-top: 24px;
    }
    
    .consultation-cta-icon {
        width: 60px;
        height: 60px;
    }
    
    .consultation-cta-icon i {
        font-size: 1.5rem;
    }
    
    .consultation-cta-box h5 {
        font-size: 1.15rem;
    }
}

@media (max-width: 575px) {
    .consultation-floating-element {
        display: none;
    }
    
    .consultation-card {
        padding: 20px 16px;
    }
    
    .consultation-card-icon {
        width: 56px;
        height: 56px;
    }
    
    .consultation-card h6 {
        font-size: 0.95rem;
    }
    
    .contact-details-corner {
        display: none;
    }
    
    .btn-whatsapp-consultation {
        width: 100%;
        justify-content: center;
    }
    
    /* Fix overlap between sticky consultation and WhatsApp buttons */
    .sticky-consultation-btn {
        bottom: 20px !important;
        left: 190px !important;
        right: auto !important;
        width: calc(100% - 32px) !important;
        max-width: none !important;
    }
    
    .whatsapp-float {
        bottom: 100px !important;
        right: 16px !important;
        left: auto !important;
    }
    
    .call-float {
        bottom: 200px !important;
        right: 16px !important;
        left: auto !important;
    }
}

/* ========================================
   CONSULTATION FORM MODAL POPUP
   ======================================== */

/* Modal Overlay */
.consultation-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 99999;
    justify-content: center;
    align-items: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

.consultation-modal-overlay.active {
    display: flex;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Modal Container */
.consultation-modal {
    background: white;
    border-radius: 24px;
    width: 100%;
    max-width: 550px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Modal Header */
.consultation-modal-header {
    background: linear-gradient(135deg, #2D5A4A 0%, #3d7a64 100%);
    padding: 28px 32px;
    border-radius: 24px 24px 0 0;
    position: relative;
    overflow: hidden;
}

.consultation-modal-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23B8860B' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.consultation-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 3;
    outline: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.consultation-modal-close:hover {
    background: rgba(255, 255, 255, 0.95) !important;
    border-color: rgba(255, 255, 255, 1) !important;
    color: #2D5A4A !important;
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
}

.consultation-modal-close:focus {
    background: rgba(255, 255, 255, 0.25) !important;
    border-color: #fff !important;
    color: white !important;
    transform: scale(1.05);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3), 0 4px 15px rgba(0, 0, 0, 0.2);
}

.consultation-modal-close:active {
    transform: scale(0.92) rotate(90deg);
    background: rgba(255, 255, 255, 0.7) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.consultation-modal-close i {
    pointer-events: none;
    transition: transform 0.3s ease;
}


.consultation-modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin: 0;
    padding-right: 40px;
    position: relative;
    z-index: 1;
}

.consultation-modal-subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 8px 0 0 0;
    position: relative;
    z-index: 1;
}

/* Modal Body */
.consultation-modal-body {
    padding: 32px;
}

/* Form Styles */
.consultation-form .form-group {
    margin-bottom: 20px;
}

.consultation-form label {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 8px;
}

.consultation-form label .required {
    color: #C9302C;
}

.consultation-form .form-control {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #E5E5E5;
    border-radius: 12px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    color: #1A1A1A;
    background: #FAFAFA;
    transition: all 0.3s ease;
}

.consultation-form .form-control:focus {
    outline: none;
    border-color: #2D5A4A;
    background: white;
    box-shadow: 0 0 0 4px rgba(45, 90, 74, 0.1);
}

.consultation-form .form-control::placeholder {
    color: #999;
}

.consultation-form select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%238B7355' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.consultation-form textarea.form-control {
    min-height: 100px;
    resize: vertical;
}

/* Consultation Mode Options */
.consultation-mode-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 8px;
}

.consultation-mode-option {
    position: relative;
}

.consultation-mode-option input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.consultation-mode-option .mode-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px 12px;
    background: #FAFAFA;
    border: 2px solid #E5E5E5;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.consultation-mode-option .mode-label i {
    font-size: 1.5rem;
    margin-bottom: 6px;
    color: #8B7355;
    transition: all 0.3s ease;
}

.consultation-mode-option .mode-label span {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: #5A5A5A;
    transition: all 0.3s ease;
}

.consultation-mode-option input:checked + .mode-label {
    border-color: #2D5A4A;
    background: rgba(45, 90, 74, 0.08);
}

.consultation-mode-option input:checked + .mode-label i {
    color: #2D5A4A;
}

.consultation-mode-option input:checked + .mode-label span {
    color: #2D5A4A;
}

.consultation-mode-option .mode-label:hover {
    border-color: #2D5A4A;
    transform: translateY(-2px);
}

/* Submit Button */
.consultation-form .btn-submit {
    width: 100%;
    padding: 16px 32px;
    background: linear-gradient(135deg, #2D5A4A 0%, #3d7a64 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 6px 20px rgba(45, 90, 74, 0.3);
    margin-top: 8px;
}

.consultation-form .btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(45, 90, 74, 0.4);
    background: linear-gradient(135deg, #3d7a64 0%, #2D5A4A 100%);
}

.consultation-form .btn-submit i {
    font-size: 1.1rem;
}

/* Privacy Note */
.consultation-privacy-note {
    text-align: center;
    margin-top: 16px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    color: #8B7355;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.consultation-privacy-note i {
    color: #2D5A4A;
}

/* Form Success Message */
.consultation-form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.consultation-form-success.active {
    display: block;
}

.consultation-form-success .success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2D5A4A 0%, #3d7a64 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 10px 30px rgba(45, 90, 74, 0.3);
}

.consultation-form-success .success-icon i {
    color: white;
    font-size: 2.5rem;
}

.consultation-form-success h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 12px;
}

.consultation-form-success p {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    color: #5A5A5A;
    margin-bottom: 0;
}

/* Responsive Modal */
@media (max-width: 575px) {
    .consultation-modal {
        border-radius: 16px;
        max-height: 95vh;
    }
    
    .consultation-modal-header {
        padding: 20px 24px;
        border-radius: 16px 16px 0 0;
    }
    
    .consultation-modal-title {
        font-size: 1.25rem;
    }
    
    .consultation-modal-body {
        padding: 24px 20px;
    }
    
    .consultation-mode-options {
        grid-template-columns: 1fr;
    }
    
    .consultation-mode-option .mode-label {
        flex-direction: row;
        justify-content: flex-start;
        gap: 12px;
        text-align: left;
    }
    
    .consultation-mode-option .mode-label i {
        margin-bottom: 0;
        font-size: 1.25rem;
    }
    
    .consultation-form .form-control {
        padding: 12px 16px;
    }
}

/* ========================================
   MOBILE VIEW - FULL WIDTH CTA BUTTONS
   ======================================== */

@media (max-width: 575px) {
    /* Make all Book Consultation CTA buttons full width on mobile */
    .btn-cta-gold,
    .btn-cta-banner,
    .btn-cta-modern,
    .sticky-consultation-btn {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    
    /* Hero section CTA buttons */
    .hero-section .btn-cta-gold,
    .hero-section .btn-success,
    .hero-section .btn-outline-light {
        width: 100%;
        margin-bottom: 12px;
    }
    
    .hero-section .d-flex.flex-wrap.gap-3 {
        flex-direction: column;
        gap: 12px !important;
    }
    
    /* CTA Banner button */
    .cta-banner .btn-cta-banner {
        width: 100%;
        max-width: 100%;
        padding: 14px 24px;
    }
    
    /* Doctor section CTA button */
    .doctor-section .btn-cta-modern {
        width: 100%;
        max-width: 100%;
    }
    
    /* Navbar CTA in mobile menu */
    .navbar-collapse .nav-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .navbar-collapse .nav-cta .btn-nav {
        width: 100%;
        justify-content: center;
    }
    
    /* Final CTA section buttons */
    .final-cta-buttons {
        flex-direction: column;
    }
    
    .final-cta-buttons .final-cta-btn {
        width: 100%;
        max-width: 100%;
        margin-bottom: 12px;
    }
    
    /* Consultation modal submit button */
    .consultation-form .btn-submit {
        width: 100%;
    }
    
    /* WhatsApp consultation button */
    .btn-whatsapp-consultation {
        width: 100%;
    }
}

@media (max-width: 767px) {
    /* Tablet view - make buttons more prominent */
    .btn-cta-gold,
    .btn-cta-banner,
    .btn-cta-modern {
        display: inline-flex;
    }
}
