/* --- Extracted from about/meet-the-team.php --- */
:root {
            --primary-blue: #b1986f;
            --primary-hover: #9f875e;
            --dark-navy: #3f4b3d;
            --light-bg: #f8fafc;
            --text-gray: #64748b;
            --border-color: #e2e8f0;
            --heading-font: 'Cormorant Garamond', serif;
            --body-font: 'Inter', sans-serif;
            --transition: all 0.3s ease;
        }

        body {
            font-family: var(--body-font);
            color: var(--text-gray);
            background-color: #ffffff;
            margin: 0;
            padding: 0;
            transition: background 0.3s ease, color 0.3s ease;
        }

        h1, h2, h3, h4, h5, h6, .brand-text {
            font-family: var(--heading-font);
            color: var(--dark-navy);
            transition: color 0.3s ease;
        }

        p {
            transition: color 0.3s ease;
        }

        .section-padding {
            padding: 90px 0;
        }

        .custom-container {
            max-width: 1400px;
            margin: 0 auto;
            padding-left: 24px;
            padding-right: 24px;
        }

        /* Navbar */
        .navbar-custom {
            background-color: #ffffff;
            box-shadow: 0 2px 15px rgba(0,0,0,0.05);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: background-color 0.3s ease, box-shadow 0.3s ease;
        }

        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }

        .brand-icon {
            font-size: 42px;
            color: var(--primary-blue);
        }

        .brand-text {
            font-size: 42px;
            font-weight: 500;
            margin: 0;
            line-height: 1;
            color: #3f4b3d;
        }

        .nav-link {
            color: var(--dark-navy) !important;
            font-weight: 500;
            font-size: 15px;
            padding: 8px 18px !important;
            transition: var(--transition);
        }

        .nav-link:hover {
            color: var(--primary-blue) !important;
        }

        .nav-link.active {
            color: var(--primary-blue) !important;
            position: relative;
        }

        .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 18px;
            right: 18px;
            height: 2px;
            background-color: var(--primary-blue);
        }

        .dropdown-menu {
            border: 1px solid var(--border-color);
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            padding: 12px 0;
        }

        .dropdown-item {
            padding: 10px 24px;
            font-weight: 500;
            font-size: 14px;
            color: var(--dark-navy);
            transition: var(--transition);
        }

        .dropdown-item:hover, .dropdown-item:focus {
            background: var(--light-bg);
            color: var(--primary-blue);
        }

        /* Theme Toggle Button */
        .theme-toggle-btn {
            background: transparent;
            border: 1px solid var(--border-color);
            color: var(--text-gray);
            width: 42px;
            height: 42px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition);
            font-size: 16px;
        }

        .theme-toggle-btn:hover {
            background: var(--light-bg);
            color: var(--dark-navy);
            transform: translateY(-2px);
        }

        /* Buttons */
        .btn-primary-custom {
            background-color: var(--primary-blue);
            color: #ffffff;
            border: none;
            padding: 14px 28px;
            border-radius: 12px;
            font-weight: 500;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            text-decoration: none;
            font-size: 15px;
        }

        .btn-primary-custom:hover {
            background-color: var(--primary-hover);
            color: #ffffff;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(177, 152, 111, 0.2);
        }

        .btn-outline-custom {
            background-color: transparent;
            color: var(--dark-navy);
            border: 1px solid var(--border-color);
            padding: 14px 28px;
            border-radius: 12px;
            font-weight: 500;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            text-decoration: none;
            font-size: 15px;
        }

        .btn-outline-custom:hover {
            border-color: var(--dark-navy);
            color: var(--dark-navy);
            background: var(--light-bg);
            transform: translateY(-2px);
        }

        /* Breadcrumb */
        .breadcrumb-nav {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 13px;
            font-weight: 500;
            color: #64748b;
            margin-bottom: 40px;
        }

        .breadcrumb-nav a {
            color: #64748b;
            text-decoration: none;
            transition: var(--transition);
        }

        .breadcrumb-nav a:hover {
            color: var(--primary-blue);
        }

        .breadcrumb-nav span {
            color: var(--dark-navy);
        }

        /* Hero Section */
        .about-hero {
            background: linear-gradient(90deg, #f8fafc, #f1f5f9);
            padding: 40px 0 100px;
            transition: background 0.3s ease;
        }

        .about-label {
            color: var(--primary-blue);
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            margin-bottom: 24px;
            display: inline-block;
        }

        .about-title {
            font-size: 72px;
            line-height: 1.05;
            font-weight: 600;
            margin-bottom: 24px;
        }

        .about-desc {
            font-size: 18px;
            line-height: 1.6;
            max-width: 520px;
            margin-bottom: 40px;
        }

        /* Mini Features */
        .mini-features {
            display: flex;
            gap: 32px;
            margin-top: 40px;
            flex-wrap: wrap;
        }
        
        .mini-feature {
            display: flex;
            gap: 16px;
            align-items: flex-start;
            flex: 1;
            min-width: 150px;
        }
        
        .mini-icon {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background-color: #eff6ff;
            color: var(--primary-blue);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            flex-shrink: 0;
            transition: background-color 0.3s ease, color 0.3s ease;
        }
        
        .mini-feature-title {
            font-size: 14px;
            font-weight: 600;
            color: var(--dark-navy);
            margin: 0 0 6px 0;
            font-family: var(--body-font);
            transition: color 0.3s ease;
        }
        
        .mini-feature-text {
            font-size: 12px;
            color: var(--text-gray);
            margin: 0;
            line-height: 1.5;
            transition: color 0.3s ease;
        }

        /* Hero Image */
        .hero-image-wrapper {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            height: auto;
            width: 100%;
        }
        
        .hero-image-wrapper img {
            width: 100%;
            height: auto;
            display: block;
            object-fit: contain;
        }

        body.light-theme .img-dark { display: none !important; }
        body.light-theme .img-light { display: block !important; }
        body.dark-theme .img-light { display: none !important; }
        body.dark-theme .img-dark { display: block !important; }

        /* Section Title */
        .explore-heading-wrapper {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 50px;
            gap: 24px;
        }

        .explore-heading {
            font-size: 48px;
            margin: 0;
            font-weight: 500;
        }

        .heading-line {
            height: 1px;
            background-color: var(--border-color);
            flex-grow: 1;
            max-width: 120px;
            transition: background-color 0.3s ease;
        }

        /* Team Grid */
        .team-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .team-card {
            background: #ffffff;
            border: 1px solid var(--border-color);
            border-radius: 18px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
            display: flex;
            flex-direction: column;
        }

        .team-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0,0,0,.08);
        }

        .team-card-img {
            width: 100%;
            height: 260px;
            object-fit: cover;
        }

        .team-card-content {
            padding: 24px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        .team-name {
            font-family: var(--body-font);
            font-size: 20px;
            font-weight: 600;
            color: var(--dark-navy);
            margin-bottom: 4px;
            transition: color 0.3s ease;
        }

        .team-role {
            font-size: 14px;
            color: var(--primary-blue);
            font-weight: 500;
            margin-bottom: 16px;
        }

        .team-desc {
            font-size: 14px;
            line-height: 1.6;
            color: var(--text-gray);
            margin-bottom: 24px;
            flex-grow: 1;
            transition: color 0.3s ease;
        }

        .team-skills {
            display: flex;
            gap: 12px;
            margin-bottom: 24px;
        }

        .team-skill-icon {
            width: 32px;
            height: 32px;
            border-radius: 8px;
            background-color: #f8fafc;
            color: var(--primary-blue);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            transition: background-color 0.3s ease, color 0.3s ease;
        }

        .team-link {
            font-size: 14px;
            font-weight: 600;
            color: var(--primary-blue);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 6px;
            transition: var(--transition);
        }

        .team-link:hover {
            color: var(--primary-hover);
            gap: 10px;
        }

        /* CTA Section */
        .cta-section {
            background: #f8fafc;
            border-radius: 24px;
            padding: 32px 40px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: 80px;
            margin-bottom: 60px;
            transition: background 0.3s ease, border-color 0.3s ease;
            border: 1px solid transparent;
        }

        .cta-left {
            display: flex;
            align-items: center;
            gap: 24px;
        }

        .cta-icon {
            width: 64px;
            height: 64px;
            border-radius: 16px;
            background-color: #ffffff;
            color: var(--primary-blue);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.05);
            flex-shrink: 0;
            transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
        }

        .cta-heading {
            font-family: var(--heading-font);
            font-size: 32px;
            font-weight: 600;
            color: var(--dark-navy);
            margin: 0 0 8px 0;
            transition: color 0.3s ease;
        }

        .cta-text {
            font-size: 16px;
            color: var(--text-gray);
            margin: 0;
            transition: color 0.3s ease;
        }

        .cta-right {
            display: flex;
            gap: 16px;
            flex-shrink: 0;
        }

        /* ---------------------------------------------------- */
        /* Dark Theme Styles Applied to body.dark-theme       */
        /* ---------------------------------------------------- */
        body.dark-theme {
            --light-bg: linear-gradient(135deg, #2c352a, #354032);
            background: linear-gradient(90deg, #3f4b3d, #495746, #3f4b3d);
            color: rgba(255, 255, 255, 0.75);
        }

        body.dark-theme h1, 
        body.dark-theme h2, 
        body.dark-theme h3, 
        body.dark-theme h4, 
        body.dark-theme h5, 
        body.dark-theme h6, 
        body.dark-theme .brand-text {
            color: #ffffff;
        }

        body.dark-theme .navbar-custom {
            background-color: #2c352a;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            box-shadow: none;
        }

        body.dark-theme .nav-link {
            color: rgba(255, 255, 255, 0.75) !important;
        }
        
        body.dark-theme .nav-link:hover, 
        body.dark-theme .nav-link.active {
            color: #ffffff !important;
        }

        body.dark-theme .nav-link.active::after {
            background-color: #b1986f;
        }

        body.dark-theme .dropdown-menu {
            background-color: #3f4b3d;
            border-color: rgba(255, 255, 255, 0.1);
        }

        body.dark-theme .dropdown-item {
            color: rgba(255, 255, 255, 0.8);
        }

        body.dark-theme .dropdown-item:hover {
            background-color: rgba(255, 255, 255, 0.05);
            color: #c3ab83;
        }

        body.dark-theme .theme-toggle-btn {
            color: #fbbf24;
            border-color: rgba(255, 255, 255, 0.3);
        }

        body.dark-theme .theme-toggle-btn:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }

        body.dark-theme .breadcrumb-nav {
            color: rgba(255, 255, 255, 0.5);
        }

        body.dark-theme .breadcrumb-nav a {
            color: rgba(255, 255, 255, 0.5);
        }

        body.dark-theme .breadcrumb-nav a:hover {
            color: #ffffff;
        }

        body.dark-theme .breadcrumb-nav span {
            color: #ffffff;
        }

        body.dark-theme .about-hero {
            background: transparent;
        }

        body.dark-theme .about-label {
            color: #b1986f;
        }

        body.dark-theme .mini-icon {
            background-color: rgba(177, 152, 111, 0.15);
            color: #b1986f;
        }

        body.dark-theme .mini-feature-title {
            color: #ffffff;
        }

        body.dark-theme .mini-feature-text,
        body.dark-theme .about-desc {
            color: rgba(255, 255, 255, 0.75);
        }

        body.dark-theme .heading-line {
            background-color: rgba(255, 255, 255, 0.12);
        }

        body.dark-theme .team-card {
            background: rgba(73, 87, 70, 0.75);
            border-color: rgba(255, 255, 255, 0.12);
        }

        body.dark-theme .team-card:hover {
            background: rgba(73, 87, 70, 0.95);
        }

        body.dark-theme .team-name {
            color: #ffffff;
        }

        body.dark-theme .team-desc {
            color: rgba(255, 255, 255, 0.75);
        }

        body.dark-theme .team-skill-icon {
            background-color: rgba(255, 255, 255, 0.05);
            color: #b1986f;
        }

        body.dark-theme .cta-section {
            background: rgba(73, 87, 70, 0.75);
            border: 1px solid rgba(255, 255, 255, 0.12);
        }

        body.dark-theme .cta-icon {
            background-color: rgba(177, 152, 111, 0.15);
            color: #b1986f;
            box-shadow: none;
        }

        body.dark-theme .cta-heading {
            color: #ffffff;
        }

        body.dark-theme .cta-text {
            color: rgba(255, 255, 255, 0.75);
        }

        body.dark-theme .btn-outline-custom {
            color: #ffffff;
            border-color: rgba(255, 255, 255, 0.3);
        }

        body.dark-theme .btn-outline-custom:hover {
            background-color: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.5);
        }

        /* Responsive Design */
        @media (max-width: 1199.98px) {
            .team-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .cta-section {
                flex-direction: column;
                text-align: center;
                gap: 32px;
            }
            .cta-left {
                flex-direction: column;
                text-align: center;
            }
            .about-title {
                font-size: 56px;
            }
        }

        @media (max-width: 991.98px) {
            .about-title {
                font-size: 48px;
            }
            .mini-features {
                flex-direction: column;
                gap: 24px;
            }
            .about-hero {
                padding: 20px 0 60px;
            }
            .hero-image-wrapper {
                margin-top: 40px;
                height: 400px;
            }
        }

        @media (max-width: 767.98px) {
            .about-title {
                font-size: 40px;
            }
            .team-grid {
                grid-template-columns: 1fr;
            }
            .explore-heading {
                font-size: 36px;
                text-align: center;
            }
            .heading-line {
                display: none;
            }
            .cta-right {
                flex-direction: column;
                width: 100%;
            }
            .cta-right .btn-outline-custom,
            .cta-right .btn-primary-custom {
                width: 100%;
                justify-content: center;
            }
            .navbar-collapse .d-flex {
                flex-direction: column;
                align-items: stretch !important;
                margin-top: 15px;
            }
            .theme-toggle-btn {
                align-self: flex-start;
                margin-bottom: 10px;
            }
        }
        @media (max-width: 767.98px) {
            p { text-align: left !important; }
            .text-center p { text-align: center !important; }
        }
        @media (min-width: 768px) {
            p { text-align: justify; }
        }

/* --- Extracted from about/smile-stories.php --- */
:root {
            --primary-blue: #b1986f;
            --primary-hover: #9f875e;
            --dark-navy: #3f4b3d;
            --light-bg: #f8fafc;
            --text-gray: #64748b;
            --border-color: #e2e8f0;
            --heading-font: 'Cormorant Garamond', serif;
            --body-font: 'Inter', sans-serif;
            --transition: all 0.3s ease;
        }

        body {
            font-family: var(--body-font);
            color: var(--text-gray);
            background-color: #ffffff;
            margin: 0;
            padding: 0;
            transition: background 0.3s ease, color 0.3s ease;
        }

        h1, h2, h3, h4, h5, h6, .brand-text {
            font-family: var(--heading-font);
            color: var(--dark-navy);
            transition: color 0.3s ease;
        }

        p {
            transition: color 0.3s ease;
        }

        .custom-container {
            max-width: 1400px;
            margin: 0 auto;
            padding-left: 24px;
            padding-right: 24px;
        }

        /* Navbar */
        .navbar-custom {
            background-color: #ffffff;
            box-shadow: 0 2px 15px rgba(0,0,0,0.05);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: background-color 0.3s ease, box-shadow 0.3s ease;
        }

        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }

        .brand-icon {
            font-size: 42px;
            color: var(--primary-blue);
        }

        .brand-text {
            font-size: 42px;
            font-weight: 500;
            margin: 0;
            line-height: 1;
            color: #3f4b3d;
        }

        .nav-link {
            color: var(--dark-navy) !important;
            font-weight: 500;
            font-size: 15px;
            padding: 8px 18px !important;
            transition: var(--transition);
        }

        .nav-link:hover {
            color: var(--primary-blue) !important;
        }

        .nav-link.active {
            color: var(--primary-blue) !important;
            position: relative;
        }

        .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 18px;
            right: 18px;
            height: 2px;
            background-color: var(--primary-blue);
        }

        .dropdown-menu {
            border: 1px solid var(--border-color);
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            padding: 12px 0;
        }

        .dropdown-item {
            padding: 10px 24px;
            font-weight: 500;
            font-size: 14px;
            color: var(--dark-navy);
            transition: var(--transition);
        }

        .dropdown-item:hover, .dropdown-item:focus {
            background: var(--light-bg);
            color: var(--primary-blue);
        }

        /* Theme Toggle Button */
        .theme-toggle-btn {
            background: transparent;
            border: 1px solid var(--border-color);
            color: var(--text-gray);
            width: 42px;
            height: 42px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition);
            font-size: 16px;
        }

        .theme-toggle-btn:hover {
            background: var(--light-bg);
            color: var(--dark-navy);
            transform: translateY(-2px);
        }

        /* Buttons */
        .btn-primary-custom {
            background-color: var(--primary-blue);
            color: #ffffff;
            border: none;
            padding: 14px 28px;
            border-radius: 12px;
            font-weight: 500;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            text-decoration: none;
            font-size: 15px;
        }

        .btn-primary-custom:hover {
            background-color: var(--primary-hover);
            color: #ffffff;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(177, 152, 111, 0.2);
        }

        /* Breadcrumb */
        .breadcrumb-nav {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 14px;
            font-weight: 500;
            color: #64748b;
            margin-bottom: 40px;
        }

        .breadcrumb-nav a {
            color: #64748b;
            text-decoration: none;
            transition: var(--transition);
        }

        .breadcrumb-nav a:hover {
            color: var(--primary-blue);
        }

        .breadcrumb-nav span {
            color: var(--dark-navy);
        }

        /* Hero Section */
        .about-hero {
            background: linear-gradient(90deg, #f8fafc, #f1f5f9);
            padding: 90px 0;
            transition: background 0.3s ease;
        }

        .about-label {
            color: var(--primary-blue);
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            margin-bottom: 24px;
            display: inline-block;
        }

        .about-title {
            font-size: 72px;
            line-height: 1.05;
            font-weight: 600;
            margin-bottom: 24px;
        }

        .about-desc {
            font-size: 18px;
            line-height: 1.6;
            max-width: 540px;
            margin-bottom: 40px;
        }

        .hero-image-wrapper {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            height: 420px;
            width: 100%;
        }
        
        .hero-image-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: relative;
            z-index: 1;
        }

        /* Stats Bar */
        .stats-bar {
            background: #ffffff;
            border: 1px solid var(--border-color);
            border-radius: 20px;
            padding: 28px 40px;
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 24px;
            margin-top: 40px;
            margin-bottom: 80px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.02);
            transition: background 0.3s ease, border-color 0.3s ease;
        }

        .stat-bar-block {
            display: flex;
            align-items: center;
            gap: 16px;
            border-right: 1px solid var(--border-color);
            padding-right: 24px;
            transition: border-color 0.3s ease;
        }

        .stat-bar-block:last-child {
            border-right: none;
            padding-right: 0;
        }

        .stat-bar-icon {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background-color: #eff6ff;
            color: var(--primary-blue);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            flex-shrink: 0;
            transition: background-color 0.3s ease, color 0.3s ease;
        }

        .stat-bar-value {
            font-size: 20px;
            font-weight: 700;
            color: var(--dark-navy);
            font-family: var(--body-font);
            line-height: 1.2;
            transition: color 0.3s ease;
        }

        .stat-bar-label {
            font-size: 13px;
            color: var(--text-gray);
            transition: color 0.3s ease;
        }

        /* Transformations Section */
        .section-title {
            font-family: var(--heading-font);
            font-size: 46px;
            font-weight: 600;
            color: var(--dark-navy);
            margin: 0;
            transition: color 0.3s ease;
        }

        .view-more-link {
            color: var(--primary-blue);
            font-weight: 600;
            text-decoration: none;
            font-size: 15px;
            transition: var(--transition);
        }

        .view-more-link:hover {
            color: var(--primary-hover);
        }

        .transformation-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            margin-bottom: 80px;
        }

        .trans-card {
            background: #ffffff;
            border: 1px solid var(--border-color);
            border-radius: 18px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
            display: flex;
            flex-direction: column;
        }

        .trans-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0,0,0,.08);
        }

        .trans-img-container {
            display: flex;
            position: relative;
            height: 240px;
            border-bottom: 1px solid var(--border-color);
        }

        .trans-img-half {
            width: 50%;
            position: relative;
        }

        .trans-img-half:first-child {
            border-right: 2px solid #ffffff;
        }

        .trans-img-half img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .trans-badge {
            position: absolute;
            bottom: 12px;
            left: 12px;
            background-color: rgba(73, 87, 70, 0.7);
            color: #ffffff;
            font-size: 11px;
            font-weight: 600;
            padding: 4px 10px;
            border-radius: 20px;
            backdrop-filter: blur(4px);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .trans-content {
            padding: 24px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        .trans-category {
            color: var(--primary-blue);
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 12px;
            transition: color 0.3s ease;
        }

        .trans-title {
            font-family: var(--heading-font);
            font-size: 24px;
            font-weight: 600;
            color: var(--dark-navy);
            margin-bottom: 12px;
            transition: color 0.3s ease;
        }

        .trans-desc {
            font-size: 14px;
            line-height: 1.6;
            color: var(--text-gray);
            margin-bottom: 24px;
            flex-grow: 1;
            transition: color 0.3s ease;
        }

        .patient-info {
            display: flex;
            align-items: center;
            gap: 12px;
            border-top: 1px solid var(--border-color);
            padding-top: 20px;
            transition: border-color 0.3s ease;
        }

        .patient-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            object-fit: cover;
        }

        .patient-details {
            display: flex;
            flex-direction: column;
        }

        .patient-name {
            font-size: 14px;
            font-weight: 600;
            color: var(--dark-navy);
            transition: color 0.3s ease;
        }

        .patient-location {
            font-size: 12px;
            color: var(--text-gray);
            display: flex;
            align-items: center;
            gap: 4px;
            transition: color 0.3s ease;
        }

        /* Testimonial Section */
        .testimonial-section {
            padding-top: 20px;
            padding-bottom: 80px;
        }

        .testi-left-content {
            max-width: 440px;
        }

        .quote-icon-large {
            font-size: 48px;
            color: var(--primary-blue);
            opacity: 0.2;
            margin-bottom: 24px;
            transition: color 0.3s ease;
        }

        .testi-heading {
            font-family: var(--heading-font);
            font-size: 46px;
            line-height: 1.1;
            font-weight: 600;
            color: var(--dark-navy);
            margin-bottom: 20px;
            transition: color 0.3s ease;
        }

        .testi-desc {
            font-size: 16px;
            line-height: 1.6;
            color: var(--text-gray);
            transition: color 0.3s ease;
        }

        .testi-card-wrapper {
            position: relative;
        }

        .testi-card {
            background: #ffffff;
            border: 1px solid var(--border-color);
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.04);
            transition: background 0.3s ease, border-color 0.3s ease;
        }

        .testi-stars {
            color: var(--primary-blue);
            font-size: 14px;
            margin-bottom: 20px;
            display: flex;
            gap: 4px;
            transition: color 0.3s ease;
        }

        .testi-text {
            font-size: 18px;
            line-height: 1.6;
            color: var(--dark-navy);
            font-style: italic;
            margin-bottom: 32px;
            transition: color 0.3s ease;
        }

        .testi-controls {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: calc(100% + 48px);
            left: -24px;
            display: flex;
            justify-content: space-between;
            pointer-events: none;
        }

        .slider-btn {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background-color: #ffffff;
            border: 1px solid var(--border-color);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--dark-navy);
            cursor: pointer;
            pointer-events: auto;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
            transition: var(--transition);
        }

        .slider-btn:hover {
            background: var(--light-bg);
            color: var(--primary-blue);
        }

        /* ---------------------------------------------------- */
        /* Dark Theme Styles Applied to body.dark-theme       */
        /* ---------------------------------------------------- */
        body.dark-theme {
            --light-bg: linear-gradient(135deg, #2c352a, #354032);
            background: linear-gradient(90deg, #3f4b3d, #495746, #3f4b3d);
            color: rgba(255, 255, 255, 0.75);
        }

        body.dark-theme h1, 
        body.dark-theme h2, 
        body.dark-theme h3, 
        body.dark-theme h4, 
        body.dark-theme h5, 
        body.dark-theme h6, 
        body.dark-theme .brand-text {
            color: #ffffff;
        }

        body.dark-theme .navbar-custom {
            background-color: #2c352a;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            box-shadow: none;
        }

        body.dark-theme .nav-link {
            color: rgba(255, 255, 255, 0.75) !important;
        }
        
        body.dark-theme .nav-link:hover, 
        body.dark-theme .nav-link.active {
            color: #ffffff !important;
        }

        body.dark-theme .nav-link.active::after {
            background-color: #b1986f;
        }

        body.dark-theme .dropdown-menu {
            background-color: #3f4b3d;
            border-color: rgba(255, 255, 255, 0.1);
        }

        body.dark-theme .dropdown-item {
            color: rgba(255, 255, 255, 0.8);
        }

        body.dark-theme .dropdown-item:hover {
            background-color: rgba(255, 255, 255, 0.05);
            color: #c3ab83;
        }

        body.dark-theme .theme-toggle-btn {
            color: #fbbf24;
            border-color: rgba(255, 255, 255, 0.3);
        }

        body.dark-theme .theme-toggle-btn:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }

        body.dark-theme .breadcrumb-nav {
            color: rgba(255, 255, 255, 0.5);
        }

        body.dark-theme .breadcrumb-nav a {
            color: rgba(255, 255, 255, 0.5);
        }

        body.dark-theme .breadcrumb-nav a:hover {
            color: #ffffff;
        }

        body.dark-theme .breadcrumb-nav span {
            color: #ffffff;
        }

        body.dark-theme .about-hero {
            background: transparent;
        }

        body.dark-theme .about-label {
            color: #b1986f;
        }

        body.dark-theme .about-desc {
            color: rgba(255, 255, 255, 0.75);
        }

        body.dark-theme .stats-bar {
            background: rgba(73, 87, 70, 0.75);
            border-color: rgba(255, 255, 255, 0.12);
        }

        body.dark-theme .stat-bar-block {
            border-color: rgba(255, 255, 255, 0.12);
        }

        body.dark-theme .stat-bar-icon {
            background-color: rgba(177, 152, 111, 0.15);
            color: #c3ab83;
        }

        body.dark-theme .stat-bar-value {
            color: #ffffff;
        }

        body.dark-theme .stat-bar-label {
            color: rgba(255, 255, 255, 0.75);
        }

        body.dark-theme .trans-card {
            background: rgba(73, 87, 70, 0.75);
            border-color: rgba(255, 255, 255, 0.12);
        }

        body.dark-theme .trans-card:hover {
            background: rgba(73, 87, 70, 0.95);
        }

        body.dark-theme .trans-category {
            color: #c3ab83;
        }

        body.dark-theme .section-title,
        body.dark-theme .trans-title,
        body.dark-theme .patient-name {
            color: #ffffff;
        }

        body.dark-theme .trans-desc,
        body.dark-theme .patient-location {
            color: rgba(255, 255, 255, 0.75);
        }

        body.dark-theme .patient-info {
            border-color: rgba(255, 255, 255, 0.12);
        }

        body.dark-theme .trans-img-container {
            border-bottom-color: rgba(255, 255, 255, 0.12);
        }
        
        body.dark-theme .trans-img-half:first-child {
            border-right-color: #3f4b3d;
        }

        body.dark-theme .quote-icon-large {
            color: #c3ab83;
            opacity: 0.3;
        }

        body.dark-theme .testi-heading {
            color: #ffffff;
        }

        body.dark-theme .testi-desc {
            color: rgba(255, 255, 255, 0.75);
        }

        body.dark-theme .testi-card {
            background: rgba(73, 87, 70, 0.75);
            border-color: rgba(255, 255, 255, 0.12);
        }

        body.dark-theme .testi-stars {
            color: #c3ab83;
        }

        body.dark-theme .testi-text {
            color: rgba(255, 255, 255, 0.9);
        }

        body.dark-theme .slider-btn {
            background-color: #1e293b;
            border-color: rgba(255, 255, 255, 0.12);
            color: #ffffff;
        }

        body.dark-theme .slider-btn:hover {
            background-color: #334155;
            color: #c3ab83;
        }

        /* Responsive Design */
        @media (max-width: 1199.98px) {
            .stats-bar {
                grid-template-columns: repeat(3, 1fr);
                row-gap: 32px;
            }
            .stat-bar-block:nth-child(3) {
                border-right: none;
                padding-right: 0;
            }
            .transformation-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .testi-controls {
                display: none;
            }
            .about-title {
                font-size: 56px;
            }
        }

        @media (max-width: 991.98px) {
            .about-title {
                font-size: 48px;
            }
            .about-hero {
                padding: 40px 0 60px;
            }
            .hero-image-wrapper {
                margin-top: 40px;
            }
            .testimonial-section .row {
                flex-direction: column;
                gap: 40px;
            }
            .testi-left-content {
                max-width: 100%;
                text-align: center;
                margin: 0 auto;
            }
        }

        @media (max-width: 767.98px) {
            .about-title {
                font-size: 40px;
            }
            .stats-bar {
                grid-template-columns: 1fr;
            }
            .stat-bar-block {
                border-right: none;
                border-bottom: 1px solid var(--border-color);
                padding-right: 0;
                padding-bottom: 24px;
            }
            body.dark-theme .stat-bar-block {
                border-bottom-color: rgba(255, 255, 255, 0.12);
            }
            .stat-bar-block:last-child {
                border-bottom: none;
                padding-bottom: 0;
            }
            .transformation-grid {
                grid-template-columns: 1fr;
            }
            .d-flex.justify-content-between.mb-4 {
                flex-direction: column;
                align-items: flex-start !important;
                gap: 16px;
            }
            .navbar-collapse .d-flex {
                flex-direction: column;
                align-items: stretch !important;
                margin-top: 15px;
            }
            .theme-toggle-btn {
                align-self: flex-start;
                margin-bottom: 10px;
            }
        }
        @media (max-width: 767.98px) {
            p { text-align: left !important; }
            .text-center p { text-align: center !important; }
        }
        @media (min-width: 768px) {
            p { text-align: justify; }
        }

/* --- Extracted from about/why-choose-us.php --- */
:root {
            --primary-blue: #b1986f;
            --primary-hover: #9f875e;
            --dark-navy: #3f4b3d;
            --light-bg: #f8fafc;
            --text-gray: #64748b;
            --border-color: #e2e8f0;
            --heading-font: 'Cormorant Garamond', serif;
            --body-font: 'Inter', sans-serif;
            --transition: all 0.3s ease;
        }

        body {
            font-family: var(--body-font);
            color: var(--text-gray);
            background-color: #ffffff;
            margin: 0;
            padding: 0;
            transition: background 0.3s ease, color 0.3s ease;
        }

        h1, h2, h3, h4, h5, h6, .brand-text {
            font-family: var(--heading-font);
            color: var(--dark-navy);
            transition: color 0.3s ease;
        }

        p {
            transition: color 0.3s ease;
        }

        .custom-container {
            max-width: 1400px;
            margin: 0 auto;
            padding-left: 24px;
            padding-right: 24px;
        }

        /* Navbar */
        .navbar-custom {
            background-color: #ffffff;
            box-shadow: 0 2px 15px rgba(0,0,0,0.05);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: background-color 0.3s ease, box-shadow 0.3s ease;
        }

        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }

        .brand-icon {
            font-size: 42px;
            color: var(--primary-blue);
        }

        .brand-text {
            font-size: 42px;
            font-weight: 500;
            margin: 0;
            line-height: 1;
            color: #3f4b3d;
        }

        .nav-link {
            color: var(--dark-navy) !important;
            font-weight: 500;
            font-size: 15px;
            padding: 8px 18px !important;
            transition: var(--transition);
        }

        .nav-link:hover {
            color: var(--primary-blue) !important;
        }

        .nav-link.active {
            color: var(--primary-blue) !important;
            position: relative;
        }

        .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 18px;
            right: 18px;
            height: 2px;
            background-color: var(--primary-blue);
        }

        .dropdown-menu {
            border: 1px solid var(--border-color);
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            padding: 12px 0;
        }

        .dropdown-item {
            padding: 10px 24px;
            font-weight: 500;
            font-size: 14px;
            color: var(--dark-navy);
            transition: var(--transition);
        }

        .dropdown-item:hover, .dropdown-item:focus {
            background: var(--light-bg);
            color: var(--primary-blue);
        }

        /* Theme Toggle Button */
        .theme-toggle-btn {
            background: transparent;
            border: 1px solid var(--border-color);
            color: var(--text-gray);
            width: 42px;
            height: 42px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition);
            font-size: 16px;
        }

        .theme-toggle-btn:hover {
            background: var(--light-bg);
            color: var(--dark-navy);
            transform: translateY(-2px);
        }

        /* Buttons */
        .btn-primary-custom {
            background-color: var(--primary-blue);
            color: #ffffff;
            border: none;
            padding: 14px 28px;
            border-radius: 12px;
            font-weight: 500;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            text-decoration: none;
            font-size: 15px;
        }

        .btn-primary-custom:hover {
            background-color: var(--primary-hover);
            color: #ffffff;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(177, 152, 111, 0.2);
        }

        /* Breadcrumb */
        .breadcrumb-nav {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 14px;
            font-weight: 500;
            color: #64748b;
            margin-bottom: 40px;
        }

        .breadcrumb-nav a {
            color: #64748b;
            text-decoration: none;
            transition: var(--transition);
        }

        .breadcrumb-nav a:hover {
            color: var(--primary-blue);
        }

        .breadcrumb-nav span {
            color: var(--dark-navy);
        }

        /* Hero Section */
        .about-hero {
            background: linear-gradient(90deg, #f8fafc, #f1f5f9);
            padding: 90px 0;
            transition: background 0.3s ease;
        }

        .about-label {
            color: var(--primary-blue);
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            margin-bottom: 24px;
            display: inline-block;
        }

        .about-title {
            font-size: 72px;
            line-height: 1.05;
            font-weight: 600;
            margin-bottom: 24px;
        }

        .about-desc {
            font-size: 18px;
            line-height: 1.6;
            max-width: 560px;
            margin-bottom: 40px;
        }

        /* Curved Hero Image */
        .hero-image-wrapper {
            position: relative;
            border-radius: 120px 20px 20px 120px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            height: 520px;
            width: 100%;
        }
        
        .hero-image-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: relative;
            z-index: 1;
        }

        /* Feature Grid */
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 24px;
            margin-top: -40px; /* Overlap slightly if needed, but screenshot implies just below */
            padding-top: 60px;
            padding-bottom: 60px;
        }

        .feature-card {
            background: #ffffff;
            border: 1px solid var(--border-color);
            border-radius: 18px;
            padding: 32px 24px;
            height: 100%;
            transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0,0,0,.08);
        }

        .feature-icon {
            width: 56px;
            height: 56px;
            border-radius: 16px;
            background-color: #eff6ff;
            color: var(--primary-blue);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            margin-bottom: 24px;
            transition: background-color 0.3s ease, color 0.3s ease;
        }

        .feature-title {
            font-size: 18px;
            font-weight: 600;
            color: var(--dark-navy);
            margin-bottom: 12px;
            font-family: var(--body-font);
            transition: color 0.3s ease;
        }

        .feature-desc {
            font-size: 14px;
            line-height: 1.6;
            color: var(--text-gray);
            margin: 0;
            transition: color 0.3s ease;
        }

        /* Stats & CTA Section */
        .stats-cta-section {
            background: #f8fafc;
            border-radius: 24px;
            padding: 40px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 80px;
            transition: background 0.3s ease, border-color 0.3s ease;
            border: 1px solid transparent;
            gap: 40px;
        }

        .stats-container {
            display: flex;
            flex: 1;
            justify-content: space-between;
            border-right: 1px solid var(--border-color);
            padding-right: 40px;
            transition: border-color 0.3s ease;
        }

        .stat-block {
            text-align: center;
        }

        .stat-icon {
            font-size: 24px;
            color: var(--primary-blue);
            margin-bottom: 12px;
            transition: color 0.3s ease;
        }

        .stat-value {
            font-size: 24px;
            font-weight: 700;
            color: var(--dark-navy);
            font-family: var(--body-font);
            margin-bottom: 4px;
            transition: color 0.3s ease;
        }

        .stat-label {
            font-size: 13px;
            font-weight: 500;
            color: var(--text-gray);
            transition: color 0.3s ease;
        }

        .cta-block {
            flex: 0 0 380px;
            display: flex;
            gap: 20px;
            align-items: flex-start;
        }

        .cta-icon-heart {
            font-size: 32px;
            color: var(--primary-blue);
            flex-shrink: 0;
            transition: color 0.3s ease;
            margin-top: 4px;
        }

        .cta-content h3 {
            font-family: var(--heading-font);
            font-size: 28px;
            font-weight: 600;
            margin-bottom: 12px;
            transition: color 0.3s ease;
        }

        .cta-content p {
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 24px;
            transition: color 0.3s ease;
        }

        /* ---------------------------------------------------- */
        /* Dark Theme Styles Applied to body.dark-theme       */
        /* ---------------------------------------------------- */
        body.dark-theme {
            --light-bg: linear-gradient(135deg, #2c352a, #354032);
            background: linear-gradient(90deg, #3f4b3d, #495746, #3f4b3d);
            color: rgba(255, 255, 255, 0.75);
        }

        body.dark-theme h1, 
        body.dark-theme h2, 
        body.dark-theme h3, 
        body.dark-theme h4, 
        body.dark-theme h5, 
        body.dark-theme h6, 
        body.dark-theme .brand-text {
            color: #ffffff;
        }

        body.dark-theme .navbar-custom {
            background-color: #2c352a;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            box-shadow: none;
        }

        body.dark-theme .nav-link {
            color: rgba(255, 255, 255, 0.75) !important;
        }
        
        body.dark-theme .nav-link:hover, 
        body.dark-theme .nav-link.active {
            color: #ffffff !important;
        }

        body.dark-theme .nav-link.active::after {
            background-color: #b1986f;
        }

        body.dark-theme .dropdown-menu {
            background-color: #3f4b3d;
            border-color: rgba(255, 255, 255, 0.1);
        }

        body.dark-theme .dropdown-item {
            color: rgba(255, 255, 255, 0.8);
        }

        body.dark-theme .dropdown-item:hover {
            background-color: rgba(255, 255, 255, 0.05);
            color: #c3ab83;
        }

        body.dark-theme .theme-toggle-btn {
            color: #fbbf24;
            border-color: rgba(255, 255, 255, 0.3);
        }

        body.dark-theme .theme-toggle-btn:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }

        body.dark-theme .breadcrumb-nav {
            color: rgba(255, 255, 255, 0.5);
        }

        body.dark-theme .breadcrumb-nav a {
            color: rgba(255, 255, 255, 0.5);
        }

        body.dark-theme .breadcrumb-nav a:hover {
            color: #ffffff;
        }

        body.dark-theme .breadcrumb-nav span {
            color: #ffffff;
        }

        body.dark-theme .about-hero {
            background: transparent;
        }

        body.dark-theme .about-label {
            color: #b1986f;
        }

        body.dark-theme .about-desc,
        body.dark-theme .feature-desc {
            color: rgba(255, 255, 255, 0.75);
        }

        body.dark-theme .feature-card {
            background: rgba(73, 87, 70, 0.75);
            border-color: rgba(255, 255, 255, 0.12);
        }

        body.dark-theme .feature-card:hover {
            background: rgba(73, 87, 70, 0.95);
        }

        body.dark-theme .feature-icon {
            background-color: rgba(177, 152, 111, 0.15);
            color: #c3ab83;
        }

        body.dark-theme .feature-title {
            color: #ffffff;
        }

        body.dark-theme .stats-cta-section {
            background: rgba(73, 87, 70, 0.75);
            border: 1px solid rgba(255, 255, 255, 0.12);
        }

        body.dark-theme .stats-container {
            border-color: rgba(255, 255, 255, 0.12);
        }

        body.dark-theme .stat-icon {
            color: #c3ab83;
        }

        body.dark-theme .stat-value {
            color: #ffffff;
        }

        body.dark-theme .cta-icon-heart {
            color: #c3ab83;
        }

        body.dark-theme .cta-content h3 {
            color: #ffffff;
        }

        body.dark-theme .cta-content p {
            color: rgba(255, 255, 255, 0.75);
        }

        /* Responsive Design */
        @media (max-width: 1399.98px) {
            .feature-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        @media (max-width: 1199.98px) {
            .about-title {
                font-size: 56px;
            }
            .stats-cta-section {
                flex-direction: column;
                text-align: center;
                gap: 40px;
            }
            .stats-container {
                border-right: none;
                border-bottom: 1px solid var(--border-color);
                padding-right: 0;
                padding-bottom: 40px;
                width: 100%;
                justify-content: center;
                gap: 40px;
            }
            body.dark-theme .stats-container {
                border-bottom-color: rgba(255, 255, 255, 0.12);
            }
            .cta-block {
                flex-direction: column;
                align-items: center;
                flex: auto;
            }
            .hero-image-wrapper {
                border-radius: 80px 20px 20px 80px;
            }
        }

        @media (max-width: 991.98px) {
            .about-title {
                font-size: 48px;
            }
            .about-hero {
                padding: 40px 0 60px;
            }
            .hero-image-wrapper {
                margin-top: 40px;
                height: 400px;
            }
        }

        @media (max-width: 767.98px) {
            .about-title {
                font-size: 40px;
            }
            .feature-grid {
                grid-template-columns: 1fr;
            }
            .stats-container {
                flex-wrap: wrap;
            }
            .stat-block {
                width: 40%;
                margin-bottom: 20px;
            }
            .hero-image-wrapper {
                border-radius: 40px 20px 20px 40px;
            }
            .navbar-collapse .d-flex {
                flex-direction: column;
                align-items: stretch !important;
                margin-top: 15px;
            }
            .theme-toggle-btn {
                align-self: flex-start;
                margin-bottom: 10px;
            }
        }
        @media (max-width: 767.98px) {
            p { text-align: left !important; }
            .text-center p { text-align: center !important; }
        }
        @media (min-width: 768px) {
            p { text-align: justify; }
        }

/* --- Extracted from about.php --- */
:root {
            --primary-blue: #b1986f;
            --primary-hover: #9f875e;
            --dark-navy: #3f4b3d;
            --light-bg: #f8fafc;
            --text-gray: #64748b;
            --border-color: #e2e8f0;
            --heading-font: 'Cormorant Garamond', serif;
            --body-font: 'Inter', sans-serif;
            --transition: all 0.3s ease;
        }

        body {
            font-family: var(--body-font);
            color: var(--text-gray);
            background-color: #ffffff;
            margin: 0;
            padding: 0;
            transition: background 0.3s ease, color 0.3s ease;
        }

        h1, h2, h3, h4, h5, h6, .brand-text {
            font-family: var(--heading-font);
            color: var(--dark-navy);
            transition: color 0.3s ease;
        }

        p {
            transition: color 0.3s ease;
        }

        .custom-container {
            max-width: 1400px;
            margin: 0 auto;
            padding-left: 24px;
            padding-right: 24px;
        }

        /* Navbar */
        .navbar-custom {
            background-color: #ffffff;
            box-shadow: 0 2px 15px rgba(0,0,0,0.05);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: background-color 0.3s ease, box-shadow 0.3s ease;
        }

        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }

        .brand-icon {
            font-size: 42px;
            color: var(--primary-blue);
        }

        .brand-text {
            font-size: 42px;
            font-weight: 500;
            margin: 0;
            line-height: 1;
            color: #3f4b3d;
        }

        .nav-link {
            color: var(--dark-navy) !important;
            font-weight: 500;
            font-size: 15px;
            padding: 8px 18px !important;
            transition: var(--transition);
        }

        .nav-link:hover {
            color: var(--primary-blue) !important;
        }

        .nav-link.active {
            color: var(--primary-blue) !important;
            position: relative;
        }

        .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 18px;
            right: 18px;
            height: 2px;
            background-color: var(--primary-blue);
        }

        .dropdown-menu {
            border: 1px solid var(--border-color);
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            padding: 12px 0;
        }

        .dropdown-item {
            padding: 10px 24px;
            font-weight: 500;
            font-size: 14px;
            color: var(--dark-navy);
            transition: var(--transition);
        }

        .dropdown-item:hover, .dropdown-item:focus {
            background: var(--light-bg);
            color: var(--primary-blue);
        }

        /* Theme Toggle Button */
        .theme-toggle-btn {
            background: transparent;
            border: 1px solid var(--border-color);
            color: var(--text-gray);
            width: 42px;
            height: 42px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition);
            font-size: 16px;
        }

        .theme-toggle-btn:hover {
            background: var(--light-bg);
            color: var(--dark-navy);
            transform: translateY(-2px);
        }

        /* Buttons */
        .btn-primary-custom {
            background-color: var(--primary-blue);
            color: #ffffff;
            border: none;
            padding: 14px 28px;
            border-radius: 12px;
            font-weight: 500;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            text-decoration: none;
            font-size: 15px;
        }

        .btn-primary-custom:hover {
            background-color: var(--primary-hover);
            color: #ffffff;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(177, 152, 111, 0.2);
        }

        /* Breadcrumb */
        .breadcrumb-nav {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 14px;
            font-weight: 500;
            color: #64748b;
            margin-bottom: 40px;
        }

        .breadcrumb-nav a {
            color: #64748b;
            text-decoration: none;
            transition: var(--transition);
        }

        .breadcrumb-nav a:hover {
            color: var(--primary-blue);
        }

        .breadcrumb-nav span {
            color: var(--dark-navy);
        }

        /* Hero Section */
        .about-hero {
            background: linear-gradient(90deg, #f8fafc, #f1f5f9);
            padding: 90px 0;
            transition: background 0.3s ease;
        }

        .about-label {
            color: var(--primary-blue);
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            margin-bottom: 24px;
            display: inline-block;
            transition: color 0.3s ease;
        }

        .about-title {
            font-size: 72px;
            line-height: 1.05;
            font-weight: 600;
            margin-bottom: 24px;
        }

        .about-desc {
            font-size: 18px;
            line-height: 1.6;
            max-width: 560px;
            margin-bottom: 48px;
        }

        .hero-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
        }

        .hf-card {
            display: flex;
            align-items: flex-start;
            gap: 16px;
        }

        .hf-icon {
            width: 42px;
            height: 42px;
            border-radius: 12px;
            background-color: rgba(177, 152, 111, 0.1);
            color: var(--primary-blue);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            flex-shrink: 0;
            transition: background-color 0.3s ease, color 0.3s ease;
        }

        .hf-title {
            font-size: 16px;
            font-weight: 600;
            color: var(--dark-navy);
            margin-bottom: 4px;
            font-family: var(--body-font);
            transition: color 0.3s ease;
        }

        .hf-desc {
            font-size: 13px;
            line-height: 1.5;
            color: var(--text-gray);
            margin: 0;
            transition: color 0.3s ease;
        }

        .hero-image-wrapper {
            border-radius: 24px;
            overflow: hidden;
            height: auto;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            width: 100%;
        }

        .hero-image-wrapper img {
            width: 100%;
            height: auto;
            display: block;
            object-fit: contain;
        }

        body.light-theme .img-dark { display: none !important; }
        body.light-theme .img-light { display: block !important; }
        body.dark-theme .img-light { display: none !important; }
        body.dark-theme .img-dark { display: block !important; }

        /* Stats Section */
        .stats-section {
            padding: 40px 0 80px;
        }

        .stats-card {
            background: #f8fafc;
            border: 1px solid var(--border-color);
            border-radius: 24px;
            padding: 32px 40px;
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 20px;
            transition: background 0.3s ease, border-color 0.3s ease;
        }

        .stat-item {
            text-align: center;
            border-right: 1px solid var(--border-color);
            transition: border-color 0.3s ease;
        }

        .stat-item:last-child {
            border-right: none;
        }

        .stat-icon {
            font-size: 24px;
            color: var(--primary-blue);
            margin-bottom: 12px;
        }

        .stat-val {
            font-family: var(--body-font);
            font-size: 28px;
            font-weight: 700;
            color: var(--dark-navy);
            line-height: 1.2;
            margin-bottom: 4px;
            transition: color 0.3s ease;
        }

        .stat-label {
            font-size: 13px;
            color: var(--text-gray);
            transition: color 0.3s ease;
        }

        /* Values + Mission Section */
        .values-section {
            padding-bottom: 90px;
        }

        .section-heading {
            font-family: var(--heading-font);
            font-size: 36px;
            font-weight: 600;
            color: var(--dark-navy);
            margin-bottom: 40px;
            position: relative;
            display: inline-block;
            transition: color 0.3s ease;
        }

        .section-heading::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -8px;
            width: 60px;
            height: 3px;
            background-color: var(--primary-blue);
            border-radius: 2px;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 32px;
        }

        .value-card {
            display: flex;
            align-items: flex-start;
            gap: 16px;
        }

        .value-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background-color: rgba(177, 152, 111, 0.1);
            color: var(--primary-blue);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            flex-shrink: 0;
            transition: background-color 0.3s ease, color 0.3s ease;
        }

        .value-title {
            font-size: 18px;
            font-weight: 600;
            color: var(--dark-navy);
            margin-bottom: 8px;
            font-family: var(--body-font);
            transition: color 0.3s ease;
        }

        .value-desc {
            font-size: 14px;
            line-height: 1.6;
            color: var(--text-gray);
            margin: 0;
            transition: color 0.3s ease;
            text-align: left;
        }

        /* Mission Card */
        .mission-card {
            background: #f8fafc;
            border: 1px solid var(--border-color);
            border-radius: 24px;
            padding: 31px;
            display: flex;
            position: relative;
            overflow: hidden;
            height: 100%;
            min-height: 340px;
            transition: background 0.3s ease, border-color 0.3s ease;
        }

        .mission-content {
            position: relative;
            z-index: 2;
            max-width: 100%;
        }

        .mission-heading {
            font-family: var(--heading-font);
            font-size: 36px;
            font-weight: 600;
            color: var(--dark-navy);
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
            transition: color 0.3s ease;
        }

        .mission-heading::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -6px;
            width: 40px;
            height: 2px;
            background-color: var(--primary-blue);
        }

        .mission-desc {
            font-size: 16px;
            line-height: 1.6;
            color: var(--text-gray);
            margin-bottom: 32px;
            transition: color 0.3s ease;
        }

        .mission-img-wrapper {
            position: absolute;
            right: 0;
            bottom: 0;
            width: 45%;
            height: 95%;
            z-index: 1;
            display: flex;
            align-items: flex-end;
            justify-content: flex-end;
        }

        .mission-img-wrapper img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            object-position: bottom right;
        }

        /* CTA Section */
        .cta-banner {
            background: #f8fafc;
            border-radius: 24px;
            padding: 32px 40px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 90px;
            border: 1px solid transparent;
            transition: background 0.3s ease, border-color 0.3s ease;
        }

        .cta-left {
            display: flex;
            align-items: center;
            gap: 24px;
        }

        .cta-icon-circle {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            background-color: #ffffff;
            color: var(--primary-blue);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            flex-shrink: 0;
            transition: background 0.3s ease, box-shadow 0.3s ease;
        }

        .cta-heading {
            font-family: var(--heading-font);
            font-size: 32px;
            font-weight: 600;
            color: var(--dark-navy);
            margin-bottom: 4px;
            transition: color 0.3s ease;
        }

        .cta-desc {
            font-size: 15px;
            color: var(--text-gray);
            margin: 0;
            transition: color 0.3s ease;
        }

        /* Dark Mode Updates */
        body.dark-theme {
            --light-bg: linear-gradient(135deg, #2c352a, #354032);
            background: linear-gradient(90deg, #3f4b3d, #495746, #3f4b3d);
            color: rgba(255, 255, 255, 0.75);
        }

        body.dark-theme h1, 
        body.dark-theme h2, 
        body.dark-theme h3, 
        body.dark-theme h4, 
        body.dark-theme h5, 
        body.dark-theme h6, 
        body.dark-theme .brand-text {
            color: #ffffff;
        }

        body.dark-theme .navbar-custom {
            background-color: #2c352a;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            box-shadow: none;
        }

        body.dark-theme .nav-link {
            color: rgba(255, 255, 255, 0.75) !important;
        }
        
        body.dark-theme .nav-link:hover, 
        body.dark-theme .nav-link.active {
            color: #ffffff !important;
        }

        body.dark-theme .nav-link.active::after {
            background-color: #b1986f;
        }

        body.dark-theme .dropdown-menu {
            background-color: #3f4b3d;
            border-color: rgba(255, 255, 255, 0.1);
        }

        body.dark-theme .dropdown-item {
            color: rgba(255, 255, 255, 0.8);
        }

        body.dark-theme .dropdown-item:hover {
            background-color: rgba(255, 255, 255, 0.05);
            color: #c3ab83;
        }

        body.dark-theme .theme-toggle-btn {
            color: #fbbf24;
            border-color: rgba(255, 255, 255, 0.3);
        }

        body.dark-theme .theme-toggle-btn:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }

        body.dark-theme .breadcrumb-nav {
            color: rgba(255, 255, 255, 0.5);
        }

        body.dark-theme .breadcrumb-nav a {
            color: rgba(255, 255, 255, 0.5);
        }

        body.dark-theme .breadcrumb-nav a:hover {
            color: #ffffff;
        }

        body.dark-theme .breadcrumb-nav span {
            color: #ffffff;
        }

        body.dark-theme .about-hero {
            background: transparent;
        }

        body.dark-theme .about-label {
            color: #b1986f;
        }

        body.dark-theme .about-desc {
            color: rgba(255, 255, 255, 0.75);
        }

        body.dark-theme .stats-card,
        body.dark-theme .mission-card,
        body.dark-theme .cta-banner {
            background: rgba(73, 87, 70, 0.75);
            border-color: rgba(255, 255, 255, 0.12);
        }

        body.dark-theme .stat-item {
            border-color: rgba(255, 255, 255, 0.12);
        }

        body.dark-theme .hf-title,
        body.dark-theme .value-title,
        body.dark-theme .stat-val,
        body.dark-theme .section-heading,
        body.dark-theme .mission-heading,
        body.dark-theme .cta-heading {
            color: #ffffff;
        }

        body.dark-theme .hf-desc,
        body.dark-theme .value-desc,
        body.dark-theme .stat-label,
        body.dark-theme .mission-desc,
        body.dark-theme .cta-desc {
            color: rgba(255, 255, 255, 0.75);
        }

        body.dark-theme .cta-icon-circle {
            background-color: #1e293b;
            box-shadow: 0 4px 15px rgba(0,0,0,0.5);
            color: #c3ab83;
        }

        body.dark-theme .hf-icon,
        body.dark-theme .value-icon {
            background-color: rgba(177, 152, 111, 0.15);
            color: #c3ab83;
        }

        @media (max-width: 1199.98px) {
            .about-title { font-size: 56px; }
            .stats-card {
                grid-template-columns: repeat(3, 1fr);
                gap: 32px 20px;
            }
            .stat-item:nth-child(3) { border-right: none; }
            .cta-banner {
                flex-direction: column;
                align-items: flex-start;
                gap: 24px;
            }
        }

        @media (max-width: 991.98px) {
            .about-hero { padding: 40px 0; }
            .hero-image-wrapper { margin-top: 40px; }
            .values-grid { gap: 24px; }
            .mission-card { margin-top: 40px; }
            .mission-content { max-width: 100%; }
            .mission-img-wrapper { opacity: 0.15; width: 100%; right: -20%; }
        }

        @media (max-width: 767.98px) {
            p { text-align: left !important; }
            .text-center p { text-align: center !important; }
            .about-title { font-size: 36px; }
            .about-desc { font-size: 16px; }
            .hero-features { grid-template-columns: 1fr; }
            .stats-card { grid-template-columns: 1fr; }
            .stat-item { border-right: none; border-bottom: 1px solid var(--border-color); padding-bottom: 24px; }
            body.dark-theme .stat-item { border-bottom-color: rgba(255,255,255,0.12); }
            .stat-item:last-child { border-bottom: none; padding-bottom: 0; }
            .values-grid { grid-template-columns: 1fr; }
            .cta-left { flex-direction: column; align-items: flex-start; }
            .btn-primary-custom { width: 100%; justify-content: center; }
            .custom-container { padding: 0 16px; }
            .about-hero { padding: 30px 0; }
            .section-heading { font-size: 36px; }
            .mission-card { padding: 24px; }
        }

        @media (max-width: 480px) {
            .about-title { font-size: 28px; }
            .section-heading { font-size: 28px; }
        }

        @media (min-width: 768px) {
            p { text-align: justify; }
        }

/* --- Extracted from book-online.php --- */
/* Base Variables */
        :root {
            --primary-blue: #b1986f;
            --primary-hover: #9f875e;
            --dark-navy: #3f4b3d;
            --light-bg: #f8fafc;
            --text-gray: #64748b;
            --border-color: #e2e8f0;
            --heading-font: 'Cormorant Garamond', serif;
            --body-font: 'Inter', sans-serif;
            --transition: all 0.3s ease;
        }

        body {
            font-family: var(--body-font);
            color: var(--text-gray);
            background-color: #ffffff;
            margin: 0;
            padding: 0;
            transition: background 0.3s ease, color 0.3s ease;
        }

        h1, h2, h3, h4, h5, h6, .brand-text {
            font-family: var(--heading-font);
            color: var(--dark-navy);
            transition: color 0.3s ease;
        }

        p {
            transition: color 0.3s ease;
        }

        .custom-container {
            max-width: 1400px;
            margin: 0 auto;
            padding-left: 24px;
            padding-right: 24px;
        }

        /* Navbar & Breadcrumb Base */
        .navbar-custom {
            background-color: #ffffff;
            box-shadow: 0 2px 15px rgba(0,0,0,0.05);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: background-color 0.3s ease, box-shadow 0.3s ease;
        }
        
        .breadcrumb-nav {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 14px;
            font-weight: 500;
            color: #64748b;
            margin-bottom: 40px;
        }
        .breadcrumb-nav a {
            color: #64748b;
            text-decoration: none;
            transition: var(--transition);
        }
        .breadcrumb-nav a:hover {
            color: var(--primary-blue);
        }
        .breadcrumb-nav span {
            color: #b1986f;
        }

        /* ====== BOOK ONLINE SPECIFIC ====== */
        .book-hero {
            padding: 50px 0 90px;
            background-color: transparent;
        }

        .book-grid {
            display: grid;
            grid-template-columns: 1fr 1.15fr;
            gap: 60px;
            align-items: start;
        }

        /* Left Column */
        .gold-pill {
            background: #f7f1e8;
            border: 1px solid #e7d8bc;
            color: #b1986f;
            border-radius: 50px;
            padding: 8px 18px;
            font-size: 12px;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 24px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .book-title {
            font-family: var(--heading-font);
            font-size: 72px;
            font-weight: 600;
            line-height: 1.05;
            color: #173a28;
            margin-bottom: 24px;
        }

        .gold-line {
            width: 60px;
            height: 3px;
            background-color: #b1986f;
            margin-bottom: 32px;
        }

        .book-desc {
            font-size: 16px;
            line-height: 1.6;
            color: var(--text-gray);
            max-width: 520px;
            margin-bottom: 40px;
        }

        /* Feature Row */
        .feature-row {
            display: flex;
            align-items: flex-start;
            gap: 24px;
            margin-bottom: 40px;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            flex: 1;
        }

        .feature-icon-wrapper {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            border: 1.5px solid #b1986f;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #b1986f;
            font-size: 18px;
            flex-shrink: 0;
            transition: var(--transition);
        }

        .feature-item-title {
            font-size: 13px;
            font-weight: 700;
            color: #173a28;
            margin-bottom: 4px;
            font-family: var(--body-font);
        }

        .feature-item-text {
            font-size: 11px;
            color: var(--text-gray);
            margin: 0;
            line-height: 1.4;
        }

        /* Contact Card */
        .contact-card {
            background: #f8f3ec;
            border-radius: 18px;
            padding: 28px;
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .contact-card-icon {
            font-size: 24px;
            color: #b1986f;
        }

        .contact-card-text {
            font-size: 18px;
            font-weight: 600;
            color: #173a28;
            margin: 0;
            display: flex;
            flex-direction: column;
        }
        
        .contact-card-text span {
            font-size: 14px;
            color: #173a28;
            font-weight: 600;
            margin-bottom: 4px;
        }

        .contact-card-text a {
            color: #b1986f;
            text-decoration: none;
            font-weight: 600;
        }

        /* Right Column Form */
        .form-card {
            background: #ffffff;
            border-radius: 24px;
            padding: 40px;
            box-shadow: 0 20px 50px rgba(0,0,0,.08);
            border: 1px solid transparent;
        }

        .form-header {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 32px;
        }

        .form-header-icon {
            font-size: 28px;
            color: #b1986f;
        }

        .form-heading {
            font-family: var(--heading-font);
            font-size: 40px;
            font-weight: 600;
            color: #173a28;
            margin: 0;
        }

        .form-row {
            display: flex;
            gap: 20px;
            margin-bottom: 20px;
        }

        .form-col {
            flex: 1;
        }

        .form-group {
            position: relative;
        }

        .form-label {
            display: block;
            font-size: 13px;
            font-weight: 600;
            color: #173a28;
            margin-bottom: 8px;
        }

        .form-label span {
            color: #b1986f;
        }

        .form-control-custom {
            width: 100%;
            height: 56px;
            border: 1px solid #e5e7eb;
            border-radius: 12px;
            background: #ffffff;
            padding: 0 16px;
            font-size: 14px;
            color: #173a28;
            transition: var(--transition);
            font-family: var(--body-font);
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
        }

        .form-control-custom:focus {
            outline: none;
            border-color: #b1986f;
        }

        .form-control-custom::placeholder {
            color: #9ca3af;
        }

        select.form-control-custom {
            cursor: pointer;
            padding-right: 40px;
        }

        textarea.form-control-custom {
            height: 120px;
            padding: 16px;
            resize: none;
        }

        .input-icon {
            position: absolute;
            right: 16px;
            top: 45px;
            color: #6b7280;
            pointer-events: none;
            font-size: 16px;
        }

        .btn-submit {
            width: 100%;
            height: 64px;
            background: #495746;
            color: #ffffff;
            border: none;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 600;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            transition: var(--transition);
            cursor: pointer;
            margin-top: 10px;
        }

        .btn-submit:hover {
            background: #3d483b;
        }

        .btn-submit i {
            font-size: 18px;
        }

        /* Dark Theme Specific Overrides */
        body.dark-theme {
            background: linear-gradient(90deg, #3f4b3d, #495746, #3f4b3d);
            color: rgba(255, 255, 255, 0.75);
        }

        body.dark-theme .book-title,
        body.dark-theme .form-heading,
        body.dark-theme .feature-item-title,
        body.dark-theme .form-label {
            color: #ffffff;
        }

        body.dark-theme .book-desc,
        body.dark-theme .feature-item-text {
            color: rgba(255, 255, 255, 0.80);
        }

        body.dark-theme .gold-pill {
            background: rgba(177, 152, 111, 0.1);
            border-color: rgba(177, 152, 111, 0.3);
            color: #b1986f;
        }

        body.dark-theme .feature-icon-wrapper {
            border-color: #b1986f;
            color: #b1986f;
        }

        body.dark-theme .contact-card {
            background: rgba(73, 87, 70, 0.6);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(177, 152, 111, 0.15);
        }

        body.dark-theme .contact-card-text {
            color: rgba(255, 255, 255, 0.8);
        }
        
        body.dark-theme .contact-card-text span {
            color: #ffffff;
        }

        body.dark-theme .form-card {
            background: rgba(73, 87, 70, 0.4);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(177, 152, 111, 0.15);
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        body.dark-theme .form-control-custom {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(177, 152, 111, 0.20);
            color: #ffffff;
        }

        body.dark-theme .form-control-custom:focus {
            border-color: #b1986f;
        }

        body.dark-theme .form-control-custom::placeholder {
            color: rgba(255, 255, 255, 0.4);
        }
        
        body.dark-theme .input-icon {
            color: rgba(255, 255, 255, 0.5);
        }

        body.dark-theme .btn-submit {
            background: #e0b04d;
            color: #1a1a1a;
        }

        body.dark-theme .btn-submit:hover {
            background: #f0bf58;
        }

        /* Responsive */
        @media (max-width: 1199.98px) {
            .book-title { font-size: 56px; }
            .feature-row { flex-wrap: wrap; }
            .feature-item { min-width: 45%; }
        }
        @media (max-width: 991.98px) {
            .book-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            .book-title {
                font-size: 48px;
            }
            .form-row {
                flex-direction: column;
                gap: 20px;
            }
            .feature-row {
                flex-direction: column;
                gap: 20px;
            }
        }
        @media (max-width: 767.98px) {
            .book-title { font-size: 40px; }
            .form-card { padding: 24px; }
            .form-heading { font-size: 32px; }
        }

/* --- Extracted from fees-membership.php --- */
:root {
            --primary-blue: #b1986f;
            --primary-hover: #9f875e;
            --dark-navy: #3f4b3d;
            --light-bg: #f8fafc;
            --text-gray: #64748b;
            --border-color: #e2e8f0;
            --heading-font: 'Cormorant Garamond', serif;
            --body-font: 'Inter', sans-serif;
            --shadow: 0 10px 30px rgba(0,0,0,.08);
            --transition: all 0.3s ease;
        }

        body {
            font-family: var(--body-font);
            color: var(--text-gray);
            background-color: #ffffff;
            margin: 0;
            padding: 0;
            transition: background 0.3s ease, color 0.3s ease;
        }

        h1, h2, h3, h4, h5, h6, .brand-text {
            font-family: var(--heading-font);
            color: var(--dark-navy);
            margin-bottom: 1rem;
            transition: color 0.3s ease;
        }
        
        p, .hf-desc, .plan-period, .plan-subtitle, .benefit-desc, .of-desc, .offers-desc {
            transition: color 0.3s ease;
        }

        /* Container exactly from requirements */
        .custom-container {
            max-width: 1400px;
            margin: auto;
            padding-left: 24px;
            padding-right: 24px;
        }

        /* Navbar */
        .navbar-custom {
            background-color: #ffffff;
            box-shadow: 0 2px 15px rgba(0,0,0,0.05);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: background-color 0.3s ease, box-shadow 0.3s ease;
        }
        .navbar-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
        .brand-icon { font-size: 32px; color: var(--primary-blue); }
        .brand-text { font-size: 28px; font-weight: 600; margin: 0; line-height: 1; }
        .nav-link { color: var(--dark-navy) !important; font-weight: 500; font-size: 15px; padding: 8px 18px !important; transition: var(--transition); }
        .nav-link:hover { color: var(--primary-blue) !important; }
        .nav-link.active { color: var(--primary-blue) !important; position: relative; }
        .nav-link.active::after { content: ''; position: absolute; bottom: 0; left: 18px; right: 18px; height: 2px; background-color: var(--primary-blue); }
        .dropdown-menu { border: 1px solid var(--border-color); border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); padding: 12px 0; }
        .dropdown-item { padding: 10px 24px; font-weight: 500; font-size: 14px; color: var(--dark-navy); transition: var(--transition); }
        .dropdown-item:hover { background: var(--light-bg); color: var(--primary-blue); }

        .btn-primary-custom {
            background-color: var(--primary-blue);
            color: #ffffff;
            border: none;
            padding: 12px 24px;
            border-radius: 8px;
            font-weight: 500;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            text-decoration: none;
            font-size: 15px;
        }
        .btn-primary-custom:hover {
            background-color: var(--primary-hover);
            color: #ffffff;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(177, 152, 111, 0.2);
        }
        .btn-outline-custom {
            background-color: transparent;
            color: var(--primary-blue);
            border: 1px solid var(--primary-blue);
            padding: 12px 24px;
            border-radius: 8px;
            font-weight: 500;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            text-decoration: none;
            font-size: 15px;
        }
        .btn-outline-custom:hover {
            background-color: var(--primary-blue);
            color: #fff;
            transform: translateY(-2px);
        }
        
        .theme-toggle-btn {
            background: transparent;
            border: 1px solid var(--border-color);
            color: var(--text-gray);
            width: 42px;
            height: 42px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition);
            font-size: 16px;
        }

        .theme-toggle-btn:hover {
            background: var(--light-bg);
            color: var(--dark-navy);
            transform: translateY(-2px);
        }
        
        .breadcrumb-wrap {
            padding: 16px 0 0;
            transition: color 0.3s ease;
        }
        .breadcrumb-wrap a, .breadcrumb-wrap span {
            font-size: 14px;
            color: #64748b;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .breadcrumb-wrap a:hover {
            color: var(--primary-blue);
        }

        /* --- LIGHT VERSION --- */
        .hero-section {
            background: linear-gradient(90deg, #f8fafc, #f1f5f9);
            padding: 90px 0;
            position: relative;
            transition: background 0.3s ease;
        }
        .hero-label {
            color: var(--primary-blue);
            text-transform: uppercase;
            font-weight: 600;
            font-size: 14px;
            letter-spacing: 1px;
            margin-bottom: 16px;
            display: block;
        }
        .hero-title {
            font-family: var(--heading-font);
            font-size: 72px;
            line-height: 1.05;
            font-weight: 600;
            color: var(--dark-navy);
            margin-bottom: 24px;
        }
        .hero-desc {
            max-width: 560px;
            font-size: 18px;
            line-height: 1.6;
            margin-bottom: 40px;
        }
        
        .hero-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
        }
        .hf-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }
        .hf-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #eff6ff;
            color: var(--primary-blue);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-size: 16px;
            transition: background 0.3s ease, border-color 0.3s ease;
        }
        .hf-title {
            font-weight: 600;
            color: var(--dark-navy);
            margin-bottom: 4px;
            font-size: 15px;
            transition: color 0.3s ease;
        }
        .hf-desc {
            font-size: 13px;
            margin: 0;
            color: var(--text-gray);
            line-height: 1.4;
        }
        
        .hero-image-wrapper {
            position: relative;
        }
        .hero-image {
            width: 100%;
            height: 520px;
            object-fit: cover;
            border-radius: 140px 20px 20px 140px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .floating-card {
            position: absolute;
            bottom: -30px;
            left: -30px;
            background: #fff;
            border-radius: 20px;
            padding: 24px;
            box-shadow: 0 20px 40px rgba(0,0,0,.08);
            display: flex;
            align-items: center;
            gap: 16px;
            z-index: 2;
            transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
        }
        .fc-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: #eff6ff;
            color: var(--primary-blue);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            transition: background 0.3s ease;
        }
        .fc-text {
            font-weight: 600;
            color: var(--dark-navy);
            margin: 0;
            line-height: 1.3;
            font-size: 16px;
            transition: color 0.3s ease;
        }
        
        /* Membership Section */
        .membership-section {
            padding: 90px 0;
            padding-bottom: 120px;
        }
        .section-title {
            font-family: var(--heading-font);
            font-size: 46px;
            font-weight: 600;
            color: var(--dark-navy);
            margin-bottom: 40px;
            transition: color 0.3s ease;
        }
        
        .plan-card {
            background: #fff;
            border: 1px solid #e2e8f0;
            border-radius: 20px;
            padding: 32px;
            height: 100%;
            display: flex;
            flex-direction: column;
            position: relative;
            transition: all 0.3s ease;
        }
        .plan-card:hover {
            box-shadow: var(--shadow);
        }
        .plan-title {
            font-size: 22px;
            font-weight: 600;
            color: var(--primary-blue);
            margin-bottom: 8px;
            text-align: center;
        }
        .plan-subtitle {
            font-size: 14px;
            text-align: center;
            color: var(--text-gray);
            margin-bottom: 24px;
            min-height: 42px;
        }
        .plan-price {
            font-size: 40px;
            font-weight: 700;
            color: var(--dark-navy);
            text-align: center;
            margin-bottom: 4px;
            line-height: 1;
            transition: color 0.3s ease;
        }
        .plan-period {
            font-size: 14px;
            color: var(--text-gray);
            text-align: center;
            margin-bottom: 24px;
        }
        .plan-features {
            list-style: none;
            padding: 0;
            margin: 0 0 32px 0;
            flex-grow: 1;
        }
        .plan-features li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            font-size: 14px;
            margin-bottom: 16px;
            color: var(--dark-navy);
            transition: color 0.3s ease;
        }
        .plan-features li i {
            color: var(--primary-blue);
            margin-top: 3px;
        }
        
        .plan-card.popular {
            border: 2px solid var(--primary-blue);
            transform: scale(1.05);
            box-shadow: 0 20px 40px rgba(177, 152, 111,0.1);
            z-index: 2;
        }
        .plan-card.popular:hover {
            transform: scale(1.05) translateY(-5px);
        }
        .popular-badge {
            background: var(--primary-blue);
            color: #fff;
            text-align: center;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 8px 0;
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            border-radius: 18px 18px 0 0;
        }
        .plan-card.popular {
            padding-top: 48px;
        }
        
        /* Sidebar Benefits */
        .benefits-sidebar {
            background: #fff;
            border: 1px solid #e2e8f0;
            border-radius: 20px;
            padding: 32px;
            height: 100%;
            transition: all 0.3s ease;
        }
        .sidebar-title {
            font-size: 20px;
            font-weight: 600;
            color: var(--dark-navy);
            margin-bottom: 32px;
            transition: color 0.3s ease;
        }
        .benefit-item {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            margin-bottom: 24px;
        }
        .benefit-item:last-child {
            margin-bottom: 0;
        }
        .benefit-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: #eff6ff;
            color: var(--primary-blue);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            flex-shrink: 0;
            border: 1px solid rgba(177, 152, 111,0.1);
            transition: background 0.3s ease, border-color 0.3s ease;
        }
        .benefit-title {
            font-weight: 600;
            color: var(--dark-navy);
            margin-bottom: 4px;
            font-size: 15px;
            transition: color 0.3s ease;
        }
        .benefit-desc {
            font-size: 14px;
            color: var(--text-gray);
            margin: 0;
            line-height: 1.4;
        }
        
        /* Special Offers */
        .special-offers {
            background: #f8fafc;
            border: 1px solid #e2e8f0;
            border-radius: 24px;
            padding: 28px 40px;
            margin-top: 60px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            transition: all 0.3s ease;
        }
        .offers-left {
            display: flex;
            align-items: center;
            gap: 20px;
            flex: 1;
        }
        .gift-box {
            width: 80px;
            height: 80px;
            object-fit: contain;
            transition: filter 0.3s ease;
        }
        .offers-title {
            font-family: var(--heading-font);
            font-size: 28px;
            font-weight: 600;
            color: var(--dark-navy);
            margin-bottom: 4px;
            transition: color 0.3s ease;
        }
        .offers-desc {
            font-size: 14px;
            color: var(--text-gray);
            margin: 0;
            max-width: 300px;
        }
        .offers-center {
            display: flex;
            gap: 40px;
            flex: 2;
            justify-content: center;
        }
        .offer-feature {
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }
        .of-icon {
            color: var(--primary-blue);
            font-size: 24px;
        }
        .of-title {
            font-weight: 600;
            color: var(--dark-navy);
            font-size: 15px;
            margin-bottom: 2px;
            transition: color 0.3s ease;
        }
        .of-desc {
            font-size: 12px;
            color: var(--text-gray);
            margin: 0;
        }
        .offers-right {
            flex-shrink: 0;
        }
        
        /* Fee Table Styles */
        .custom-fee-table {
            background: #fff;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            margin-bottom: 0;
            border-collapse: separate;
            border-spacing: 0;
            border: 1px solid #e2e8f0;
        }
        .custom-fee-table thead th {
            background: var(--light-bg);
            color: var(--dark-navy);
            font-family: var(--heading-font);
            font-size: 20px;
            font-weight: 600;
            padding: 20px 24px;
            border-bottom: 2px solid var(--primary-blue);
            vertical-align: middle;
        }
        .custom-fee-table thead th i {
            color: var(--primary-blue);
            margin-right: 8px;
        }
        .custom-fee-table tbody td {
            padding: 18px 24px;
            vertical-align: middle;
            color: var(--text-gray);
            border-bottom: 1px solid #e2e8f0;
            font-size: 15px;
            font-weight: 500;
        }
        .custom-fee-table tbody tr:last-child td {
            border-bottom: none;
        }
        .custom-fee-table tbody tr:hover td {
            background: rgba(177, 152, 111, 0.05);
        }
        .custom-fee-table tbody td:first-child {
            color: var(--dark-navy);
            font-weight: 600;
        }
        
        .badge-nhs {
            background: rgba(0, 94, 184, 0.1);
            color: #005EB8;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 600;
            display: inline-block;
        }
        .badge-inc {
            background: rgba(16, 185, 129, 0.1);
            color: #10B981;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 600;
            display: inline-block;
        }
        .badge-lab {
            background: rgba(245, 158, 11, 0.1);
            color: #F59E0B;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 600;
            display: inline-block;
        }

        /* --- DARK VERSION OVERRIDES --- */
        body.dark-theme {
            --light-bg: linear-gradient(135deg, #2c352a, #354032);
            background: linear-gradient(90deg, #3f4b3d, #495746, #3f4b3d);
            color: rgba(255,255,255,0.75);
        }
        
        body.dark-theme .navbar-custom {
            background-color: #2c352a;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            box-shadow: none;
        }
        
        body.dark-theme h1, 
        body.dark-theme h2, 
        body.dark-theme h3, 
        body.dark-theme h4, 
        body.dark-theme h5, 
        body.dark-theme h6, 
        body.dark-theme .brand-text {
            color: #ffffff;
        }

        body.dark-theme .nav-link {
            color: rgba(255, 255, 255, 0.75) !important;
        }
        
        body.dark-theme .nav-link:hover, 
        body.dark-theme .nav-link.active {
            color: #ffffff !important;
        }

        body.dark-theme .nav-link.active::after {
            background-color: #b1986f;
        }

        body.dark-theme .dropdown-menu {
            background-color: #3f4b3d;
            border-color: rgba(255, 255, 255, 0.1);
        }

        body.dark-theme .dropdown-item {
            color: rgba(255, 255, 255, 0.8);
        }

        body.dark-theme .dropdown-item:hover {
            background-color: rgba(255, 255, 255, 0.05);
            color: #c3ab83;
        }
        
        body.dark-theme .theme-toggle-btn {
            color: #fbbf24;
            border-color: rgba(255, 255, 255, 0.3);
        }

        body.dark-theme .theme-toggle-btn:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }

        body.dark-theme .breadcrumb-wrap a, body.dark-theme .breadcrumb-wrap span {
            color: rgba(255, 255, 255, 0.5);
        }

        body.dark-theme .breadcrumb-wrap a:hover {
            color: #ffffff;
        }
        
        body.dark-theme .hero-section {
            background: transparent;
        }
        
        body.dark-theme .hero-title,
        body.dark-theme .section-title,
        body.dark-theme .plan-price,
        body.dark-theme .plan-features li,
        body.dark-theme .sidebar-title,
        body.dark-theme .benefit-title,
        body.dark-theme .hf-title,
        body.dark-theme .fc-text,
        body.dark-theme .offers-title,
        body.dark-theme .of-title {
            color: #ffffff;
        }
        
        body.dark-theme .hero-desc,
        body.dark-theme .hf-desc,
        body.dark-theme .plan-subtitle,
        body.dark-theme .plan-period,
        body.dark-theme .benefit-desc,
        body.dark-theme .offers-desc,
        body.dark-theme .of-desc {
            color: rgba(255,255,255,0.75);
        }
        
        body.dark-theme .floating-card {
            background: rgba(73, 87, 70,0.9);
            box-shadow: 0 20px 40px rgba(0,0,0,0.5);
            border: 1px solid rgba(255,255,255,0.12);
        }
        body.dark-theme .fc-icon {
            background: rgba(177, 152, 111,0.2);
        }
        
        body.dark-theme .plan-card,
        body.dark-theme .benefits-sidebar {
            background: rgba(73, 87, 70,0.75);
            border: 1px solid rgba(255,255,255,0.12);
        }
        
        body.dark-theme .plan-card:hover {
            box-shadow: 0 10px 30px rgba(0,0,0,0.4);
        }
        
        body.dark-theme .plan-card.popular {
            border: 2px solid var(--primary-blue);
            background: rgba(73, 87, 70,0.95);
        }
        
        body.dark-theme .btn-outline-custom {
            border-color: rgba(255,255,255,0.2);
            color: #fff;
        }
        body.dark-theme .btn-outline-custom:hover {
            background: rgba(255,255,255,0.1);
            border-color: rgba(255, 255, 255, 0.5);
        }
        
        body.dark-theme .benefit-icon,
        body.dark-theme .hf-icon {
            background: rgba(177, 152, 111,0.2);
            border-color: rgba(255,255,255,0.05);
        }
        
        body.dark-theme .special-offers {
            background: rgba(73, 87, 70,0.6);
            border: 1px solid rgba(255,255,255,0.12);
        }

        body.dark-theme .gift-box {
            filter: drop-shadow(0 0 10px rgba(0,0,0,0.5));
        }

        body.dark-theme .custom-fee-table {
            background: rgba(73, 87, 70,0.75) !important;
            border-color: rgba(255,255,255,0.12);
            box-shadow: 0 10px 30px rgba(0,0,0,0.4);
            --bs-table-bg: transparent;
            --bs-table-color: #fff;
        }
        body.dark-theme .custom-fee-table thead th {
            background: rgba(255,255,255,0.05) !important;
            color: #ffffff;
            border-bottom-color: var(--primary-blue);
        }
        body.dark-theme .custom-fee-table tbody td {
            border-bottom-color: rgba(255,255,255,0.08);
            color: rgba(255,255,255,0.8);
            background-color: transparent !important;
        }
        body.dark-theme .custom-fee-table tbody tr:hover td {
            background-color: rgba(255,255,255,0.05) !important;
        }
        body.dark-theme .custom-fee-table tbody td:first-child {
            color: #ffffff;
        }
        body.dark-theme .badge-nhs {
            background: rgba(64, 169, 255, 0.15);
            color: #69b1ff;
        }
        body.dark-theme .alert-title {
            color: #ffffff !important;
        }
        body.dark-theme .text-muted {
            color: rgba(255,255,255,0.5) !important;
        }

        /* Responsive Design */
        @media (max-width: 1199px) {
            .hero-title { font-size: 56px; }
            .plan-card.popular { transform: none; margin-top: 24px; margin-bottom: 24px; }
            .plan-card.popular:hover { transform: translateY(-5px); }
            .special-offers { flex-direction: column; text-align: center; }
            .offers-left { flex-direction: column; }
            .offers-center { flex-direction: column; gap: 20px; }
            .offer-feature { align-items: center; justify-content: center; flex-direction: column; text-align: center; }
        }
        @media (max-width: 991px) {
            .hero-title { font-size: 48px; }
            .hero-features { grid-template-columns: 1fr; }
            .hero-image-wrapper { margin-top: 60px; }
            .floating-card { left: 20px; bottom: -20px; right: 20px; justify-content: center; }
            .hero-image { border-radius: 40px; height: 400px; }
        }
        @media (max-width: 767px) {
            .hero-title { font-size: 40px; }
            .section-title { font-size: 36px; }
            .plan-card { margin-bottom: 24px; }
            .btn-outline-custom, .btn-primary-custom { width: 100%; justify-content: center; }
        }
        @media (max-width: 767.98px) {
            p { text-align: left !important; }
            .text-center p { text-align: center !important; }
        }
        @media (min-width: 768px) {
            p { text-align: justify; }
        }

/* --- Extracted from for-dentists.php --- */
:root {
            --primary-blue: #b1986f;
            --primary-hover: #9f875e;
            --dark-navy: #3f4b3d;
            --light-bg: #f8fafc;
            --text-gray: #64748b;
            --border-color: #e5e7eb;
            --heading-font: 'Cormorant Garamond', serif;
            --body-font: 'Inter', sans-serif;
            --shadow: 0 10px 30px rgba(0,0,0,.08);
            --transition: all 0.3s ease;
        }

        body {
            font-family: var(--body-font);
            color: var(--text-gray);
            background-color: #ffffff;
            margin: 0;
            padding: 0;
            transition: background 0.3s ease, color 0.3s ease;
        }

        h1, h2, h3, h4, h5, h6, .brand-text {
            font-family: var(--heading-font);
            color: var(--dark-navy);
            margin-bottom: 1rem;
            transition: color 0.3s ease;
        }
        
        p, .hero-desc, .hf-desc, .process-text, .why-checklist li, .cta-text {
            transition: color 0.3s ease;
        }

        .custom-container {
            max-width: 1400px;
            margin: auto;
            padding-left: 24px;
            padding-right: 24px;
        }

        /* Navbar */
        .navbar-custom {
            background-color: #ffffff;
            box-shadow: 0 2px 15px rgba(0,0,0,0.05);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: background-color 0.3s ease, box-shadow 0.3s ease;
        }
        .navbar-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
        .brand-icon { font-size: 32px; color: var(--primary-blue); }
        .brand-text { font-size: 28px; font-weight: 600; margin: 0; line-height: 1; }
        .nav-link { color: var(--dark-navy) !important; font-weight: 500; font-size: 15px; padding: 8px 18px !important; transition: var(--transition); }
        .nav-link:hover { color: var(--primary-blue) !important; }
        .nav-link.active { color: var(--primary-blue) !important; position: relative; }
        .nav-link.active::after { content: ''; position: absolute; bottom: 0; left: 18px; right: 18px; height: 2px; background-color: var(--primary-blue); }
        .dropdown-menu { border: 1px solid var(--border-color); border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); padding: 12px 0; }
        .dropdown-item { padding: 10px 24px; font-weight: 500; font-size: 14px; color: var(--dark-navy); transition: var(--transition); }
        .dropdown-item:hover { background: var(--light-bg); color: var(--primary-blue); }

        .btn-primary-custom {
            background-color: var(--primary-blue);
            color: #ffffff;
            border: none;
            padding: 12px 24px;
            border-radius: 8px;
            font-weight: 500;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            text-decoration: none;
            font-size: 15px;
        }
        .btn-primary-custom:hover {
            background-color: var(--primary-hover);
            color: #ffffff;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(177, 152, 111, 0.2);
        }
        .btn-outline-custom {
            background-color: transparent;
            color: var(--primary-blue);
            border: 1px solid var(--primary-blue);
            padding: 12px 24px;
            border-radius: 8px;
            font-weight: 500;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            text-decoration: none;
            font-size: 15px;
        }
        .btn-outline-custom:hover {
            background-color: var(--primary-blue);
            color: #fff;
            transform: translateY(-2px);
        }
        
        .theme-toggle-btn {
            background: transparent;
            border: 1px solid var(--border-color);
            color: var(--text-gray);
            width: 42px;
            height: 42px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition);
            font-size: 16px;
        }
        .theme-toggle-btn:hover {
            background: var(--light-bg);
            color: var(--dark-navy);
            transform: translateY(-2px);
        }
        
        .breadcrumb-wrap {
            padding: 16px 0 0;
            transition: color 0.3s ease;
        }
        .breadcrumb-wrap a, .breadcrumb-wrap span {
            font-size: 14px;
            color: #64748b;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .breadcrumb-wrap a:hover {
            color: var(--primary-blue);
        }

        /* --- HERO SECTION --- */
        .hero-section {
            padding: 60px 0;
            position: relative;
        }
        .hero-label {
            color: var(--primary-blue);
            text-transform: uppercase;
            font-weight: 600;
            font-size: 13px;
            letter-spacing: 1px;
            margin-bottom: 16px;
            display: block;
        }
        .hero-title {
            font-size: 64px;
            line-height: 1.05;
            font-weight: 600;
            color: var(--dark-navy);
            margin-bottom: 24px;
            max-width: 600px;
        }
        .hero-desc {
            max-width: 540px;
            font-size: 18px;
            line-height: 1.6;
            margin-bottom: 40px;
        }
        
        .hero-features {
            display: flex;
            gap: 24px;
            flex-wrap: wrap;
        }
        .hf-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            flex: 1;
            min-width: 160px;
        }
        .hf-icon {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            background: #eff6ff;
            color: var(--primary-blue);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-size: 18px;
            transition: background 0.3s ease;
        }
        .hf-title {
            font-weight: 600;
            color: var(--dark-navy);
            margin-bottom: 4px;
            font-size: 14px;
            transition: color 0.3s ease;
        }
        .hf-desc {
            font-size: 12px;
            margin: 0;
            color: var(--text-gray);
            line-height: 1.4;
        }
        
        .hero-image-wrapper {
            position: relative;
        }
        .hero-image {
            width: 100%;
            height: 500px;
            object-fit: cover;
            border-radius: 20px;
            box-shadow: var(--shadow);
        }
        .floating-card {
            position: absolute;
            bottom: -24px;
            left: -24px;
            background: #fff;
            border-radius: 20px;
            padding: 24px 32px;
            box-shadow: 0 20px 40px rgba(0,0,0,.08);
            display: flex;
            align-items: center;
            gap: 20px;
            z-index: 2;
            transition: background 0.3s ease, box-shadow 0.3s ease;
            max-width: 400px;
        }
        .fc-icon {
            width: 56px;
            height: 56px;
            border-radius: 12px;
            background: #eff6ff;
            color: var(--primary-blue);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            flex-shrink: 0;
        }
        .fc-text {
            font-weight: 500;
            color: var(--dark-navy);
            margin: 0;
            line-height: 1.4;
            font-size: 16px;
            transition: color 0.3s ease;
        }

        /* --- REFERRAL PROCESS SECTION --- */
        .process-section {
            padding: 100px 0;
        }
        .process-card {
            background: #fff;
            border: 1px solid #e5e7eb;
            border-radius: 18px;
            padding: 32px;
            height: 100%;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
        }
        .process-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow);
            border-color: var(--primary-blue);
        }
        .process-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: #eff6ff;
            color: var(--primary-blue);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            margin-bottom: 24px;
        }
        .process-title {
            font-size: 20px;
            font-weight: 600;
            color: var(--dark-navy);
            margin-bottom: 12px;
            transition: color 0.3s ease;
            font-family: var(--body-font);
        }
        .process-text {
            font-size: 14px;
            line-height: 1.5;
            color: var(--text-gray);
            margin-bottom: 24px;
            flex-grow: 1;
        }
        .process-link {
            font-size: 14px;
            font-weight: 600;
            color: var(--primary-blue);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: color 0.3s ease;
        }
        .process-link:hover {
            color: var(--primary-hover);
        }

        /* --- WHY REFER SECTION --- */
        .why-refer-section {
            padding: 80px 0;
            background-color: #f8fafc;
            border-radius: 40px;
            margin-bottom: 80px;
            transition: background-color 0.3s ease;
        }
        .why-title {
            font-size: 40px;
            font-weight: 600;
            color: var(--dark-navy);
            margin-bottom: 44px; /* Space for the underline pseudo-element */
            line-height: 1.1;
            transition: color 0.3s ease;
        }
        .why-title-highlight {
            position: relative;
            display: inline-block;
        }
        .why-title-highlight::after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background-color: var(--primary-blue);
        }
        .why-checklist {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .why-checklist li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            font-size: 15px;
            color: var(--dark-navy);
            margin-bottom: 16px;
        }
        .why-checklist li i {
            color: var(--primary-blue);
            margin-top: 3px;
        }
        
        .why-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 20px;
            box-shadow: var(--shadow);
        }
        
        .cta-card {
            background: #eff6ff;
            border-radius: 20px;
            padding: 40px;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            transition: background-color 0.3s ease;
        }
        .cta-title {
            font-size: 32px;
            font-weight: 600;
            color: var(--dark-navy);
            margin-bottom: 16px;
            transition: color 0.3s ease;
        }
        .cta-text {
            font-size: 15px;
            color: var(--text-gray);
            margin-bottom: 32px;
        }

        /* --- DARK VERSION OVERRIDES --- */
        body.dark-theme {
            --light-bg: linear-gradient(135deg, #2c352a, #354032);
            background: linear-gradient(90deg, #3f4b3d, #495746, #3f4b3d);
            color: rgba(255,255,255,0.75);
        }
        
        body.dark-theme .navbar-custom {
            background-color: #2c352a;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            box-shadow: none;
        }
        
        body.dark-theme h1, 
        body.dark-theme h2, 
        body.dark-theme h3, 
        body.dark-theme h4, 
        body.dark-theme h5, 
        body.dark-theme h6, 
        body.dark-theme .brand-text {
            color: #ffffff;
        }

        body.dark-theme .nav-link {
            color: rgba(255, 255, 255, 0.75) !important;
        }
        
        body.dark-theme .nav-link:hover, 
        body.dark-theme .nav-link.active {
            color: #ffffff !important;
        }

        body.dark-theme .nav-link.active::after {
            background-color: #b1986f;
        }

        body.dark-theme .dropdown-menu {
            background-color: #3f4b3d;
            border-color: rgba(255, 255, 255, 0.1);
        }
        body.dark-theme .dropdown-item {
            color: rgba(255, 255, 255, 0.8);
        }
        body.dark-theme .dropdown-item:hover {
            background-color: rgba(255, 255, 255, 0.05);
            color: #c3ab83;
        }
        
        body.dark-theme .theme-toggle-btn {
            color: #fbbf24;
            border-color: rgba(255, 255, 255, 0.3);
        }
        body.dark-theme .theme-toggle-btn:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }

        body.dark-theme .breadcrumb-wrap a, body.dark-theme .breadcrumb-wrap span {
            color: rgba(255, 255, 255, 0.5);
        }
        body.dark-theme .breadcrumb-wrap a:hover {
            color: #ffffff;
        }
        
        body.dark-theme .hero-title,
        body.dark-theme .hf-title,
        body.dark-theme .fc-text,
        body.dark-theme .process-title,
        body.dark-theme .why-title,
        body.dark-theme .why-checklist li,
        body.dark-theme .cta-title {
            color: #ffffff;
        }
        
        body.dark-theme .hero-desc,
        body.dark-theme .hf-desc,
        body.dark-theme .process-text,
        body.dark-theme .cta-text {
            color: rgba(255,255,255,0.75);
        }
        
        body.dark-theme .hf-icon,
        body.dark-theme .process-icon {
            background: rgba(177, 152, 111,0.2);
            color: #c3ab83;
        }
        
        body.dark-theme .floating-card {
            background: rgba(73, 87, 70,0.95);
            border: 1px solid rgba(255,255,255,0.12);
            box-shadow: 0 20px 40px rgba(0,0,0,0.5);
        }
        body.dark-theme .fc-icon {
            background: rgba(177, 152, 111,0.2);
        }
        
        body.dark-theme .process-card {
            background: rgba(73, 87, 70,0.75);
            border: 1px solid rgba(255,255,255,0.12);
        }
        body.dark-theme .process-card:hover {
            background: rgba(73, 87, 70,0.95);
            border-color: #c3ab83;
        }
        
        body.dark-theme .why-refer-section {
            background-color: rgba(73, 87, 70,0.5);
            border: 1px solid rgba(255,255,255,0.05);
        }
        body.dark-theme .cta-card {
            background: rgba(73, 87, 70,0.8);
            border: 1px solid rgba(255,255,255,0.1);
        }
        
        body.dark-theme .btn-outline-custom {
            border-color: rgba(255,255,255,0.2);
            color: #fff;
        }
        body.dark-theme .btn-outline-custom:hover {
            background: rgba(255,255,255,0.1);
            border-color: rgba(255, 255, 255, 0.5);
        }

        /* Responsive Design */
        @media (max-width: 1199px) {
            .hero-title { font-size: 52px; }
            .hero-features { gap: 16px; }
            .process-card { padding: 24px; }
            .why-image { height: 100%; min-height: 300px; }
        }
        @media (max-width: 991px) {
            .hero-title { font-size: 44px; }
            .hero-image-wrapper { margin-top: 60px; }
            .floating-card { left: 20px; bottom: -20px; right: 20px; width: auto; max-width: none; }
            .process-section { padding: 60px 0; }
            .why-refer-section { padding: 40px; margin-left: 20px; margin-right: 20px; }
            .why-image { margin-top: 40px; margin-bottom: 40px; }
        }
        @media (max-width: 767px) {
            .hero-title { font-size: 36px; }
            .hero-features { flex-direction: column; }
            .btn-outline-custom, .btn-primary-custom { width: 100%; justify-content: center; }
            .why-refer-section { padding: 30px 20px; }
        }
        @media (max-width: 767.98px) {
            p { text-align: left !important; }
            .text-center p { text-align: center !important; }
        }
        @media (min-width: 768px) {
            p { text-align: justify; }
        }

/* --- Extracted from includes/footer.php --- */
.editorial-footer {
        /* Light Theme Default */
        --footer-bg: #fdfdfd;
        --footer-text-title: #1e293b;
        --footer-text-body: #475569;
        --footer-border: rgba(0, 0, 0, 0.08);
        --footer-bg-text-color: rgba(0, 0, 0, 0.06);
        --footer-hover-link: #0f172a;
        --footer-copyright: #64748b;
        --footer-hours-right: #1e293b;

        background: var(--footer-bg);
        color: var(--footer-text-body);
        padding: 100px 0 40px;
        font-family: 'Inter', sans-serif;
        position: relative;
        overflow: hidden;
        border-top: 1px solid var(--footer-border);
        transition: background 0.3s ease, border-color 0.3s ease;
    }

    /* Dark Theme Overrides */
    body.dark-theme .editorial-footer {
        --footer-bg: linear-gradient(90deg, #2c352a, #3f4b3d, #2c352a);
        --footer-text-title: #ffffff;
        --footer-text-body: rgba(255, 255, 255, 0.7);
        --footer-border: rgba(255, 255, 255, 0.05);
        --footer-bg-text-color: rgba(255, 255, 255, 0.03);
        --footer-hover-link: #ffffff;
        --footer-copyright: rgba(255, 255, 255, 0.4);
        --footer-hours-right: #ffffff;
    }
    
    /* Massive Typographic Background */
    .footer-bg-text {
        position: absolute;
        bottom: 2vw;
        left: 0;
        width: 100%;
        text-align: center;
        font-family: 'Cormorant Garamond', serif;
        font-size: 14.5vw;
        font-weight: 700;
        color: var(--footer-bg-text-color);
        white-space: nowrap;
        pointer-events: none;
        z-index: 0;
        line-height: 0.8;
        letter-spacing: 0px;
        transition: color 0.3s ease;
    }

    .footer-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 40px;
        position: relative;
        z-index: 1;
    }

    /* Horizontal Contact Bar at the top */
    .footer-top-bar {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding-bottom: 60px;
        margin-bottom: 60px;
        border-bottom: 1px solid var(--footer-border);
        flex-wrap: wrap;
        gap: 35px;
        transition: border-color 0.3s ease;
    }

    .footer-brand-logo {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 15px;
        text-decoration: none;
        width: 100%;
    }

    .footer-brand-logo i {
        font-size: 32px;
        color: #b1986f;
    }

    .footer-brand-logo span {
        font-family: 'Cormorant Garamond', serif;
        font-size: 32px;
        font-weight: 600;
        color: var(--footer-text-title);
        letter-spacing: 1px;
        transition: color 0.3s ease;
    }

    .footer-contact-row {
        display: flex;
        justify-content: center;
        gap: 60px;
        flex-wrap: wrap;
    }

    .footer-contact-item {
        display: flex;
        align-items: center;
        gap: 12px;
        color: var(--footer-text-body);
        font-size: 15px;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .footer-contact-item:hover {
        color: #b1986f;
    }

    .footer-contact-item i {
        color: #b1986f;
        font-size: 18px;
    }

    /* Asymmetrical Grid */
    .footer-asymmetric-grid {
        display: grid;
        grid-template-columns: 2.5fr 1fr 1fr 1.5fr;
        gap: 60px;
        margin-bottom: 80px;
    }

    .footer-manifesto {
        max-width: 400px;
    }

    .footer-manifesto h3 {
        font-family: 'Cormorant Garamond', serif;
        font-size: 36px;
        font-weight: 400;
        color: var(--footer-text-title);
        margin-bottom: 24px;
        line-height: 1.2;
        transition: color 0.3s ease;
    }

    .footer-manifesto p {
        color: var(--footer-text-body);
        font-size: 16px;
        line-height: 1.7;
        transition: color 0.3s ease;
    }

    /* Footer Leave a Review CTA */
    .footer-review-card {
        display: flex;
        align-items: center;
        gap: 16px;
        background: #3f4b3d; /* Premium Bottle Green */
        border: 1px solid rgba(177, 152, 111, 0.35); /* Subtle gold accent border */
        border-radius: 12px;
        padding: 16px 20px;
        margin-top: 25px;
        text-decoration: none !important;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
        transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
        max-width: 360px;
    }
    
    .footer-review-card:hover {
        transform: translateY(-3px);
        background: #465344;
        border-color: rgba(177, 152, 111, 0.7);
        box-shadow: 0 10px 25px rgba(177, 152, 111, 0.25);
    }
    
    .frc-icon {
        width: 40px;
        height: 40px;
        background: rgba(177, 152, 111, 0.15);
        border: 1px solid rgba(177, 152, 111, 0.3);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #b1986f;
        font-size: 16px;
        flex-shrink: 0;
        transition: all 0.3s ease;
    }
    
    .footer-review-card:hover .frc-icon {
        background: #b1986f;
        color: #ffffff;
    }
    
    .frc-content {
        display: flex;
        flex-direction: column;
        gap: 4px;
        text-align: left;
    }
    
    .frc-label {
        font-family: var(--body-font);
        font-size: 12px;
        font-weight: 700;
        color: #b1986f;
        letter-spacing: 1.5px;
        text-transform: uppercase;
    }
    
    .frc-sub {
        font-family: var(--body-font);
        font-size: 13px;
        color: rgba(255, 255, 255, 0.85);
        line-height: 1.4;
    }

    .footer-title {
        font-size: 12px;
        font-weight: 600;
        color: #b1986f;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 30px;
    }

    .footer-links {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    /* Center-growing delicate underline hover effect */
    .footer-link-item {
        color: var(--footer-text-body);
        text-decoration: none;
        font-size: 15px;
        position: relative;
        display: inline-block;
        padding-bottom: 4px;
        transition: color 0.3s ease;
    }

    .footer-link-item::after {
        content: '';
        position: absolute;
        width: 0;
        height: 1px;
        bottom: 0;
        left: 50%;
        background-color: #b1986f;
        transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
        transform: translateX(-50%);
    }

    .footer-link-item:hover {
        color: var(--footer-hover-link);
    }

    .footer-link-item:hover::after {
        width: 100%;
    }

    .footer-hours {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .footer-hours li {
        display: flex;
        justify-content: space-between;
        color: var(--footer-text-body);
        font-size: 14px;
        transition: color 0.3s ease;
    }

    .footer-hours li span:last-child {
        color: var(--footer-hours-right);
        font-weight: 500;
        transition: color 0.3s ease;
    }
    
    .status-badge {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 4px 10px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 600;
        margin-left: 10px;
    }
    
    .status-open {
        background: rgba(34, 197, 94, 0.15);
        color: #16a34a;
        border: 1px solid rgba(34, 197, 94, 0.3);
    }
    body.dark-theme .status-open { color: #4ade80; }
    
    .status-closed {
        background: rgba(239, 68, 68, 0.15);
        color: #dc2626;
        border: 1px solid rgba(239, 68, 68, 0.3);
    }
    body.dark-theme .status-closed { color: #f87171; }

    .footer-bottom {
        display: flex;
        justify-content: space-between;
        align-items: flex-end; /* Align to the bottom of the column */
        padding-top: 30px;
        border-top: 1px solid var(--footer-border);
        transition: border-color 0.3s ease;
    }

    .footer-left-col {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        max-width: 320px;
        width: 100%;
    }

    .footer-reviews-widget {
        width: 100%;
        text-align: left;
    }

    .review-stars {
        color: #fbbf24;
        font-size: 15px;
        margin-bottom: 6px;
        letter-spacing: 2px;
    }

    .review-carousel-container {
        position: relative;
        width: 100%;
        height: 64px; /* Fixed height to prevent layout shift */
        overflow: hidden;
    }

    .review-slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
    }

    .review-slide.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .review-text {
        font-size: 13px;
        line-height: 1.4;
        color: var(--footer-text-body);
        margin: 0 0 4px 0 !important;
        font-style: italic;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        text-align: left !important;
    }

    .review-author {
        font-size: 12px;
        font-weight: 600;
        color: var(--primary-blue);
        display: block;
        text-align: left;
    }

    .footer-copyright {
        color: var(--footer-copyright);
        font-size: 13px;
        letter-spacing: 0.5px;
        transition: color 0.3s ease;
    }

    .footer-socials {
        display: flex;
        gap: 24px;
    }

    .footer-social-link {
        font-size: 26px;
        text-decoration: none;
        transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .footer-social-link.instagram i {
        background: -webkit-linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .footer-social-link.facebook i {
        color: #1877F2;
    }

    .footer-social-link.linkedin i {
        color: #0A66C2;
    }

    .footer-social-link:hover {
        transform: translateY(-4px) scale(1.15);
        opacity: 0.9;
    }

    @media (max-width: 1199.98px) {
        .footer-asymmetric-grid {
            grid-template-columns: 1fr 1fr;
            row-gap: 60px;
        }
        .footer-manifesto {
            grid-column: 1 / -1;
            max-width: 600px;
        }
        .footer-contact-row {
            gap: 30px;
        }
    }

    @media (max-width: 767.98px) {
        .editorial-footer {
            padding: 80px 0 30px;
        }
        .footer-top-bar {
            flex-direction: column;
            align-items: center;
            gap: 40px;
        }
        .footer-contact-row {
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }
        .footer-asymmetric-grid {
            grid-template-columns: 1fr;
            gap: 50px;
        }
        .footer-bottom {
            flex-direction: column;
            gap: 24px;
            align-items: center; /* Center items on mobile */
            text-align: center;
        }
        .footer-left-col {
            align-items: center;
            text-align: center;
        }
        .footer-reviews-widget {
            text-align: center;
        }
        .review-text {
            text-align: center !important;
        }
        .review-author {
            text-align: center;
        }
    }

    /* Logo display logic based on theme */
    body.light-theme .logo-dark { display: none; }
    body.light-theme .logo-light { display: block; }
    body.dark-theme .logo-light { display: none; }
    body.dark-theme .logo-dark { display: block; }

/* --- Extracted from includes/navbar.php --- */
/* Global Theme Styles for body */
    body {
        transition: background-color 0.3s ease, color 0.3s ease;
    }
    body.light-theme {
        background-color: #ffffff;
        color: #333333;
    }
    /* Let the existing body.dark-theme in your pages handle the dark CSS */

    /* Keyframes for Navbar Breathing Glow */
    @keyframes navGlowDark {
        0% {
            box-shadow: 
                0 0 0 1px rgba(255,255,255,.15) inset,
                0 15px 40px rgba(0,0,0,.35),
                0 0 20px rgba(177, 152, 111,.1),
                0 0 40px rgba(177, 152, 111,.15);
        }
        100% {
            box-shadow: 
                0 0 0 1px rgba(255,255,255,.25) inset,
                0 15px 40px rgba(0,0,0,.45),
                0 0 50px rgba(177, 152, 111,.4),
                0 0 100px rgba(177, 152, 111,.6);
        }
    }

    @keyframes navGlowLight {
        0% {
            box-shadow: 
                0 10px 30px rgba(0,0,0,0.1),
                0 0 20px rgba(13, 44, 29, 0.2);
        }
        100% {
            box-shadow: 
                0 15px 35px rgba(0,0,0,0.2),
                0 0 50px rgba(13, 44, 29, 0.6),
                0 0 90px rgba(13, 44, 29, 0.4);
        }
    }

    /* Keyframes for Image Sparkling Glow */
    @keyframes imageGlowDark {
        0% {
            box-shadow: 
                0 10px 30px rgba(0,0,0,0.3),
                0 0 20px rgba(177, 152, 111, 0.15),
                0 0 40px rgba(177, 152, 111, 0.2);
        }
        100% {
            box-shadow: 
                0 15px 40px rgba(0,0,0,0.4),
                0 0 50px rgba(177, 152, 111, 0.4),
                0 0 90px rgba(177, 152, 111, 0.6);
        }
    }

    @keyframes imageGlowLight {
        0% {
            box-shadow: 
                0 10px 30px rgba(0,0,0,0.1),
                0 0 20px rgba(13, 44, 29, 0.2),
                0 0 40px rgba(13, 44, 29, 0.1);
        }
        100% {
            box-shadow: 
                0 15px 35px rgba(0,0,0,0.2),
                0 0 50px rgba(13, 44, 29, 0.5),
                0 0 90px rgba(13, 44, 29, 0.35);
        }
    }

    /* Apply Image Glow globally to image wrappers */
    body.dark-theme .hero-image-wrapper,
    body.dark-theme .t-img-container,
    body.dark-theme .benefit-image-wrapper,
    body.dark-theme .hero-image-container,
    body.dark-theme .card-img-wrapper,
    body.dark-theme .trans-img-container,
    body.dark-theme img.why-image {
        animation: imageGlowDark 2.5s infinite alternate ease-in-out;
        border: 1px solid rgba(177, 152, 111, 0.2);
    }

    body.light-theme .hero-image-wrapper,
    body.light-theme .t-img-container,
    body.light-theme .benefit-image-wrapper,
    body.light-theme .hero-image-container,
    body.light-theme .card-img-wrapper,
    body.light-theme .trans-img-container,
    body.light-theme img.why-image {
        animation: imageGlowLight 2.5s infinite alternate ease-in-out;
    }

    /* Top Information Banner Styling */
    .top-info-banner {
        background-color: #4E5D4A;
        color: #ffffff;
        height: 45px;
        display: flex;
        align-items: center;
        width: 100%;
        position: relative;
        z-index: 1001;
        font-family: 'Inter', sans-serif;
        font-size: 13.5px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    .top-info-container {
        width: 100%;
        max-width: 1850px;
        margin: 0 auto;
        padding: 0 40px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .top-info-left a,
    .top-info-right a {
        color: #ffffff;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: color 0.3s ease, opacity 0.3s ease;
    }
    .top-info-left a:hover,
    .top-info-right a:hover {
        color: #d6c09b;
        opacity: 0.9;
    }
    .top-info-left i,
    .top-info-right i {
        font-size: 14px;
        color: #d6c09b;
    }
    .top-info-center {
        font-weight: 500;
        letter-spacing: 0.5px;
        color: rgba(255, 255, 255, 0.95);
    }

    /* Responsive styling for Top Information Banner */
    @media (max-width: 991px) {
        .top-info-center {
            display: none;
        }
        .top-info-container {
            padding: 0 20px;
        }
    }
    @media (max-width: 575px) {
        .top-info-banner {
            font-size: 12px;
            height: 42px;
        }
    }

    /* Redesigned Premium Navbar Styles */
    .premium-glass-nav {
        width: 100%;
        height: 100px;
        border-radius: 0;
        margin: 0;
        background: #5e6e5a;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 40px;
        position: sticky;
        top: 0;
        z-index: 1000;
        font-family: 'Inter', sans-serif;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        border: none;
    }

    /* Logo Section */
    .pgn-logo-section {
        display: flex;
        align-items: center;
        gap: 15px;
        text-decoration: none;
    }
    .pgn-logo-icon i {
        font-size: 40px;
        background: linear-gradient(180deg, #d6c09b, #b1986f);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        filter: drop-shadow(0 0 15px rgba(177, 152, 111,0.4));
    }
    .pgn-logo-text {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .pgn-logo-title {
        font-family: 'Cormorant Garamond', serif;
        font-size: 36px;
        font-weight: 600;
        letter-spacing: 1px;
        line-height: 0.85;
        color: white;
    }
    .pgn-logo-subtitle {
        font-size: 13px;
        letter-spacing: 6px;
        color: rgba(255,255,255,0.8);
        display: flex;
        align-items: center;
        margin-top: 6px;
        margin-left: 6px; 
    }
    .pgn-logo-subtitle span {
        color: #d6c09b;
        margin: 0 6px;
    }

    /* Dividers */
    .pgn-divider {
        height: 60px;
        width: 1px;
        background: rgba(255,255,255,.2);
        margin: 0 15px;
    }

    /* Menu Section */
    .pgn-menu-section {
        display: flex;
        align-items: center;
        gap: 45px;
        height: 100%;
    }
    .pgn-menu-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 8px;
        text-decoration: none;
        position: relative;
        height: 100%;
        color: white;
        transition: transform 0.3s ease;
    }
    .pgn-menu-item:hover {
        transform: translateY(-3px);
        color: white;
    }
    .pgn-menu-icon {
        font-size: 16px;
        color: rgba(255,255,255,.9);
        transition: transform 0.3s ease;
    }
    .pgn-menu-item:hover .pgn-menu-icon {
        transform: scale(1.1);
    }
    .pgn-menu-text {
        font-size: 15px;
        font-weight: 500;
        color: white;
        display: flex;
        align-items: center;
    }
    .pgn-menu-text i {
        font-size: 11px;
        opacity: 0.7;
        margin-left: 6px;
    }

    /* Active Item Underline */
    .pgn-menu-item.active::after {
        content: '';
        position: absolute;
        bottom: 6px;
        left: 50%;
        transform: translateX(-50%);
        width: 60%;
        height: 3px;
        background-color: #d6c09b;
        border-radius: 2px;
        box-shadow: 0 0 10px #d6c09b;
    }

    /* Dropdowns */
    .pgn-dropdown {
        position: relative;
        height: 100%;
        display: flex;
        align-items: center;
    }
    .pgn-dropdown-menu {
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%) translateY(20px);
        background: linear-gradient(135deg, rgba(2,20,44,0.95), rgba(0,17,34,0.95));
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255,255,255,.2);
        border-radius: 20px;
        padding: 15px;
        min-width: max-content;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 0 40px rgba(177,152,111,.25);
        z-index: 1001;
        display: flex;
        flex-direction: row;
        gap: 10px;
    }
    .pgn-dropdown:hover .pgn-dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0px);
    }
    .pgn-dropdown-item {
        color: white;
        text-decoration: none;
        padding: 12px 18px;
        border-radius: 12px;
        transition: background 0.3s;
        font-size: 15px;
        font-weight: 500;
        display: block;
        white-space: nowrap;
    }
    .pgn-dropdown-item:hover {
        background: rgba(177, 152, 111,.2);
        color: #d6c09b;
    }

    /* Theme Toggle Button */
    .pgn-theme-btn {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: rgba(255,255,255,0.05);
        border: 1px solid rgba(255,255,255,0.2);
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        cursor: pointer;
        transition: all 0.3s ease;
        margin-right: 20px;
    }
    .pgn-theme-btn:hover {
        background: rgba(255,255,255,0.15);
        box-shadow: 0 0 15px rgba(255,255,255,0.3);
        transform: translateY(-2px);
    }
    .pgn-theme-btn i.fa-sun {
        color: #fbbf24;
        text-shadow: 0 0 10px #fbbf24;
    }

    /* CTA Button */
    .pgn-btn-book {
        width: 200px;
        height: 55px;
        border-radius: 30px;
        background: linear-gradient(135deg, #495746, #5a6956);
        border: 1px solid rgba(255,255,255,.25);
        box-shadow: 0 0 30px rgba(177, 152, 111,.5), 0 10px 30px rgba(177, 152, 111,.25);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        text-decoration: none;
        font-size: 16px;
        font-weight: 600;
        color: #fff;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        flex-shrink: 0;
        margin-right: 15px;
    }
    .pgn-btn-book:hover {
        transform: translateY(-4px);
        box-shadow: 0 0 40px rgba(177, 152, 111,.7);
        color: #fff;
    }

    /* Responsive Adjustments for Desktop/Tablet */
    @media (max-width: 1600px) {
        .pgn-menu-section { gap: 30px; }
        .pgn-menu-text { font-size: 15px; }
        .pgn-menu-icon { font-size: 16px; }
        .pgn-btn-book { width: 220px; height: 60px; font-size: 16px; border-radius: 25px; }
    }
    @media (max-width: 1300px) {
        .pgn-logo-title { font-size: 32px; }
        .pgn-logo-icon i { font-size: 34px; }
        .pgn-btn-book { width: 180px; height: 55px; font-size: 16px; border-radius: 20px; padding: 0 15px; }
        .pgn-btn-book i { font-size: 18px !important; }
        .pgn-menu-text { font-size: 14px; }
        .pgn-menu-icon { font-size: 16px; }
        .pgn-divider { margin: 0 10px; }
    }

    /* ============================================
       MOBILE NAV STYLES
    ============================================ */
    .mobile-nav-wrapper {
        position: sticky;
        top: 0;
        z-index: 9999;
        width: 100%;
        margin: 0;
    }
    .premium-glass-nav-mobile {
        width: 100%;
        height: 80px;
        border-radius: 0;
        margin: 0;
        background: #2c352a;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 20px;
        position: relative;
        z-index: 1000;
        font-family: 'Inter', sans-serif;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        border: none;
    }

    .pgn-logo-section-mobile {
        display: flex;
        align-items: center;
        gap: 10px;
        text-decoration: none;
        flex: 1;
        min-width: 0;
    }

    .pgn-mobile-title {
        font-family: 'Cormorant Garamond', serif;
        font-size: 18px;
        font-weight: 600;
        color: white;
        line-height: 1;
        white-space: nowrap;
    }

    /* Mobile right controls (theme toggle + hamburger only) */
    .pgn-mobile-controls {
        display: flex;
        align-items: center;
        gap: 10px;
        flex-shrink: 0;
    }

    /* Mobile theme toggle - always visible on dark nav bg */
    .pgn-mobile-theme-btn {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: rgba(255,255,255,0.12);
        border: 1px solid rgba(255,255,255,0.3);
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 15px;
        cursor: pointer;
        transition: all 0.3s ease;
        margin: 0;
    }
    .pgn-mobile-theme-btn:hover {
        background: rgba(255,255,255,0.22);
        box-shadow: 0 0 12px rgba(255,255,255,0.2);
    }
    .pgn-mobile-theme-btn i.fa-sun {
        color: #fbbf24;
        text-shadow: 0 0 8px #fbbf24;
    }

    /* Hamburger toggle - clearly styled */
    .pgn-mobile-toggle {
        width: 42px;
        height: 42px;
        border-radius: 12px;
        background: rgba(214, 192, 155, 0.25);
        border: 1px solid rgba(214, 192, 155, 0.5);
        color: #f0e4cc;
        font-size: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    .pgn-mobile-toggle:hover,
    .pgn-mobile-toggle.open {
        background: rgba(214, 192, 155, 0.45);
        color: white;
        box-shadow: 0 0 15px rgba(177, 152, 111, 0.4);
    }

    /* Mobile Slide-down Menu */
    .pgn-mobile-menu {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: linear-gradient(160deg, rgba(20, 35, 18, 0.97), rgba(30, 50, 28, 0.97));
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        border-top: 1px solid rgba(255,255,255,.1);
        border-bottom: 1px solid rgba(255,255,255,.1);
        border-left: none;
        border-right: none;
        border-radius: 0;
        padding: 24px 20px;
        z-index: 9998;
        box-shadow: 0 20px 60px rgba(0,0,0,.5), 0 0 40px rgba(177,152,111,.15);
        font-family: 'Inter', sans-serif;
        max-height: 82vh;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
        gap: 6px;
        /* Animation properties */
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        pointer-events: none;
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .pgn-mobile-menu.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

    /* Staggered Children Animation */
    .pgn-mobile-menu > * {
        opacity: 0;
        transform: translateY(15px);
        transition: opacity 0.4s ease, transform 0.4s ease;
    }
    .pgn-mobile-menu.open > * {
        opacity: 1;
        transform: translateY(0);
    }
    .pgn-mobile-menu.open > *:nth-child(1) { transition-delay: 0.1s; }
    .pgn-mobile-menu.open > *:nth-child(2) { transition-delay: 0.15s; }
    .pgn-mobile-menu.open > *:nth-child(3) { transition-delay: 0.2s; }
    .pgn-mobile-menu.open > *:nth-child(4) { transition-delay: 0.25s; }
    .pgn-mobile-menu.open > *:nth-child(5) { transition-delay: 0.3s; }
    .pgn-mobile-menu.open > *:nth-child(6) { transition-delay: 0.35s; }
    .pgn-mobile-menu.open > *:nth-child(7) { transition-delay: 0.4s; }

    /* Accordion Groups */
    .pgn-mobile-group {
        display: flex;
        flex-direction: column;
    }
    .pgn-mobile-item-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-radius: 14px;
        transition: background 0.25s;
    }
    .pgn-mobile-item-container:hover {
        background: rgba(177, 152, 111, 0.08);
    }
    
    .pgn-submenu-toggle {
        background: transparent;
        border: none;
        color: rgba(255,255,255,0.6);
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    .pgn-submenu-toggle:hover {
        color: #b1986f;
    }
    .pgn-submenu-toggle.expanded {
        transform: rotate(90deg);
        color: #b1986f;
    }

    .pgn-mobile-submenu {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        display: flex;
        flex-direction: column;
        gap: 4px;
        margin-top: 0;
    }
    .pgn-mobile-submenu.open {
        margin-top: 4px;
        /* max-height is set via JS */
    }

    .pgn-mobile-item {
        color: rgba(255,255,255,0.9);
        text-decoration: none;
        font-size: 16px;
        font-weight: 500;
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 13px 18px;
        border-radius: 14px;
        flex-grow: 1;
        transition: background 0.25s, color 0.25s;
    }
    .pgn-mobile-item i {
        font-size: 16px;
        color: #b1986f;
        width: 20px;
        text-align: center;
        flex-shrink: 0;
    }
    .pgn-mobile-item:hover {
        color: white;
    }
    .pgn-mobile-item.active {
        background: rgba(177, 152, 111,.2);
        border: 1px solid rgba(177, 152, 111,.45);
        color: white;
    }

    .pgn-mobile-subitem {
        color: rgba(255,255,255,0.55);
        text-decoration: none;
        font-size: 14px;
        padding: 9px 18px 9px 52px;
        display: block;
        border-radius: 10px;
        transition: color 0.25s, background 0.25s;
    }
    .pgn-mobile-subitem:hover {
        color: rgba(255,255,255,0.85);
        background: rgba(255,255,255,0.05);
    }

    /* Book Online button INSIDE the mobile menu */
    .pgn-mobile-book-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        margin-top: 14px;
        padding: 14px 20px;
        border-radius: 16px;
        background: linear-gradient(135deg, #b1986f, #9f875e);
        border: 1px solid rgba(255,255,255,0.2);
        color: white;
        font-size: 16px;
        font-weight: 600;
        text-decoration: none;
        box-shadow: 0 4px 20px rgba(177, 152, 111, 0.4);
        transition: all 0.3s ease;
    }
    .pgn-mobile-book-btn:hover {
        background: linear-gradient(135deg, #c3ab83, #b1986f);
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(177, 152, 111, 0.55);
    }

    /* Mobile menu divider */
    .pgn-mobile-divider {
        height: 1px;
        background: rgba(255,255,255,0.1);
        margin: 8px 0;
        border-radius: 1px;
    }

    /* Logo Theme Visibility */
    body.light-theme .logo-dark { display: none; }
    body.light-theme .logo-light { display: block; }
    body.dark-theme .logo-light { display: none; }
    body.dark-theme .logo-dark { display: block; }

    /* Light Theme Navbar Overrides */
    body.light-theme .premium-glass-nav,
    body.light-theme .premium-glass-nav-mobile {
        background: #ffffff;
        border: none;
        animation: none;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    }
    body.light-theme .pgn-mobile-menu {
        background: rgba(255, 255, 255, 0.95);
        border-top: 1px solid rgba(0, 0, 0, 0.05);
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        border-left: none;
        border-right: none;
        border-radius: 0;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    }
    body.light-theme .pgn-menu-item,
    body.light-theme .pgn-menu-text,
    body.light-theme .pgn-mobile-title,
    body.light-theme .pgn-mobile-item {
        color: #3f4b3d;
    }
    body.light-theme .pgn-menu-icon,
    body.light-theme .pgn-mobile-item i {
        color: #495746;
    }
    body.light-theme .pgn-divider,
    body.light-theme .pgn-mobile-divider {
        background: rgba(0,0,0,.1);
    }
    body.light-theme .pgn-theme-btn,
    body.light-theme .pgn-mobile-theme-btn,
    body.light-theme .pgn-mobile-toggle {
        background: rgba(0,0,0,0.05);
        border: 1px solid rgba(0,0,0,0.1);
        color: #3f4b3d;
    }
    body.light-theme .pgn-dropdown-menu {
        background: rgba(255, 255, 255, 0.95);
        border: 1px solid rgba(0,0,0,.1);
    }
    body.light-theme .pgn-dropdown-item {
        color: #3f4b3d;
    }
    body.light-theme .pgn-dropdown-item:hover {
        background: rgba(0,0,0,.05);
        color: #b1986f;
    }
    body.light-theme .pgn-mobile-subitem {
        color: rgba(63, 75, 61, 0.7);
    }
    body.light-theme .pgn-mobile-subitem:hover {
        color: #3f4b3d;
        background: rgba(0,0,0,0.05);
    }
    body.light-theme .pgn-submenu-toggle {
        color: rgba(0,0,0,0.5);
    }
    body.light-theme .pgn-submenu-toggle:hover,
    body.light-theme .pgn-submenu-toggle.expanded {
        color: #b1986f;
    }

/* --- Extracted from index.php --- */
:root {
            --primary-blue: #b1986f;
            --primary-hover: #9f875e;
            --dark-navy: #3f4b3d;
            --light-bg: #f8fafc;
            --text-gray: #64748b;
            --border-color: #e2e8f0;
            --heading-font: 'Cormorant Garamond', serif;
            --body-font: 'Inter', sans-serif;
            --shadow: 0 10px 30px rgba(0,0,0,.08);
            --transition: all 0.3s ease;
        }

        body {
            font-family: var(--body-font);
            color: var(--text-gray);
            background-color: #ffffff;
            margin: 0;
            padding: 0;
            transition: background-color 0.3s ease, color 0.3s ease;
        }

        h1, h2, h3, h4, h5, h6, .brand-text {
            font-family: var(--heading-font);
            color: var(--dark-navy);
            margin-bottom: 1rem;
            transition: color 0.3s ease;
        }

        .section-padding { padding: 90px 0; }

        .custom-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Buttons */
        .btn-primary-custom {
            background-color: var(--primary-blue);
            color: #ffffff;
            border: none;
            padding: 12px 24px;
            border-radius: 8px;
            font-weight: 500;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
            font-size: 15px;
        }
        .btn-primary-custom:hover {
            background-color: var(--primary-hover);
            color: #ffffff;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(177, 152, 111, 0.2);
        }

        .btn-outline-custom {
            background-color: transparent;
            color: var(--dark-navy);
            border: 1px solid var(--border-color);
            padding: 12px 24px;
            border-radius: 8px;
            font-weight: 500;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
            font-size: 15px;
        }
        .btn-outline-custom:hover {
            border-color: var(--dark-navy);
            color: var(--dark-navy);
            background: var(--light-bg);
            transform: translateY(-2px);
        }

        /* Hero Section Enhancements */
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        @keyframes floatImage {
            0% { transform: translateY(0px) perspective(1000px) rotateY(-5deg); }
            50% { transform: translateY(-20px) perspective(1000px) rotateY(-5deg); }
            100% { transform: translateY(0px) perspective(1000px) rotateY(-5deg); }
        }
        @keyframes pulseBg {
            0% { transform: scale(1); opacity: 0.5; }
            100% { transform: scale(1.1); opacity: 0.8; }
        }
        
        .hero-section {
            background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
            position: relative;
            padding-top: 80px;
            padding-bottom: 120px;
            overflow: hidden;
            transition: background 0.3s ease;
        }
        .hero-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(177, 152, 111, 0.08) 0%, transparent 50%);
            animation: pulseBg 8s infinite alternate;
            z-index: 0;
            pointer-events: none;
        }
        .hero-content {
            position: relative;
            z-index: 2;
        }
        
        /* Hero Grid Alternative Layout */
        .hero-grid-alternative {
            display: grid;
            grid-template-columns: 1fr 1.1fr;
            gap: 70px;
            align-items: center;
        }

        /* Left Side - Masonry Grid */
        .hero-masonry {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            animation: fadeInUp 0.8s ease-out backwards;
        }

        .masonry-col {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .masonry-item-1 { height: 320px; border-radius: 24px; object-fit: cover; width: 100%; box-shadow: 0 15px 35px rgba(0,0,0,0.1); }
        .masonry-item-2 { height: 420px; border-radius: 24px; object-fit: cover; width: 100%; box-shadow: 0 15px 35px rgba(0,0,0,0.1); }
        .masonry-item-3 { height: 280px; border-radius: 24px; object-fit: cover; width: 100%; box-shadow: 0 15px 35px rgba(0,0,0,0.1); }
        .masonry-item-4 { height: 160px; border-radius: 24px; object-fit: cover; width: 100%; box-shadow: 0 15px 35px rgba(0,0,0,0.1); margin-top: auto; }

        .hero-text-content {
            animation: fadeInUp 0.8s ease-out 0.2s backwards;
        }

        .hero-badge {
            background: linear-gradient(90deg, rgba(177,152,111,0.15), rgba(177,152,111,0.05));
            color: var(--primary-hover);
            padding: 8px 24px;
            border-radius: 30px;
            font-size: 14px;
            font-weight: 700;
            display: inline-block;
            margin-bottom: 24px;
            border: 1px solid rgba(177,152,111,0.3);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            box-shadow: 0 4px 15px rgba(177, 152, 111, 0.1);
        }
        .hero-title {
            font-size: 64px;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 24px;
            letter-spacing: -1.5px;
            background: linear-gradient(to right, var(--dark-navy), var(--primary-blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .hero-desc {
            font-size: 18px;
            line-height: 1.7;
            margin-bottom: 32px;
            max-width: 580px;
            color: #475569;
        }
        .hero-actions {
            margin-bottom: 0;
        }

        /* Features Section */
        .features-section {
            position: relative;
            z-index: 10;
            margin-top: -60px;
        }
        .features-inner {
            background-color: #ffffff;
            border-radius: 20px;
            padding: 24px 32px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.05);
        }
        .feature-card { display: flex; align-items: flex-start; gap: 16px; height: 100%; }
        .feature-icon-wrapper {
            width: 48px; height: 48px; border-radius: 12px;
            background-color: #eff6ff; color: var(--primary-blue);
            display: flex; align-items: center; justify-content: center;
            font-size: 20px; flex-shrink: 0;
        }
        .feature-title { font-family: var(--body-font); font-size: 16px; font-weight: 600; margin-bottom: 6px; color: var(--dark-navy); }
        .feature-text { font-size: 14px; margin: 0; line-height: 1.5; color: var(--text-gray); }

        /* Welcome Section */
        .welcome-title { font-size: 48px; font-weight: 600; margin-bottom: 24px; line-height: 1.2; }
        .welcome-desc { font-size: 16px; line-height: 1.7; margin-bottom: 32px; }

        /* Service Card */
        .service-card {
            background-color: #ffffff;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border: 1px solid var(--border-color);
            position: relative;
            height: 100%;
        }
        .service-card:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(0,0,0,.1); }
        .service-title { font-family: var(--body-font); font-size: 18px; font-weight: 600; margin: 0; color: var(--dark-navy); }

        /* Why Choose Cards */
        .why-choose-card {
            background: #ffffff;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.05);
            transition: all 0.4s ease;
            height: 100%;
            border: 1px solid transparent;
        }
        .why-choose-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(177, 152, 111, 0.15);
            border-color: rgba(177, 152, 111, 0.3);
        }

        /* Smile Makeover pill boxes */
        .makeover-pill {
            background: #ffffff;
            border: 1px solid var(--border-color);
            border-radius: 10px;
            padding: 12px 16px;
            text-align: center;
            font-size: 14px;
            font-weight: 500;
            color: var(--dark-navy);
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }
        .makeover-pill:hover {
            border-color: rgba(177,152,111,0.5);
            box-shadow: 0 4px 15px rgba(177,152,111,0.15);
        }
        .makeover-pill i { color: var(--primary-blue); margin-right: 6px; }

        /* Section that uses light-bg — needs dark mode override */
        .section-light-bg {
            background: var(--light-bg);
            transition: background 0.3s ease;
        }

        /* Emergency Card */
        .emergency-card {
            background: white;
            border: 1px solid var(--border-color);
            box-shadow: 0 4px 20px rgba(0,0,0,0.05);
            border-radius: 12px;
            padding: 3rem;
            transition: all 0.3s ease;
        }
        .emergency-title { color: #b1986f; }
        .emergency-btn {
            width: 100%;
            justify-content: center;
            background: #b1986f !important;
            border-color: #b1986f !important;
            color: white !important;
        }
        .emergency-btn:hover { background: #9f875e !important; border-color: #9f875e !important; }

        /* Emergency badges */
        .emergency-badge {
            display: inline-block;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 500;
            background: #f1f5f9;
            color: var(--dark-navy);
            border: 1px solid var(--border-color);
            transition: all 0.3s ease;
        }

        /* ===================== DARK THEME ===================== */
        body.dark-theme {
            background: linear-gradient(90deg, #3f4b3d, #495746, #3f4b3d);
            color: rgba(255, 255, 255, 0.75);
            --text-gray: #a0adb8;
            --border-color: rgba(255,255,255,0.1);
        }
        body.dark-theme h1, body.dark-theme h2, body.dark-theme h3,
        body.dark-theme h4, body.dark-theme h5, body.dark-theme h6,
        body.dark-theme .brand-text { color: #ffffff; }
        body.dark-theme .hero-section { background: transparent; }
        body.dark-theme .hero-title { background: linear-gradient(to right, #ffffff, #d6c09b); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        body.dark-theme .hero-desc { color: rgba(255,255,255,0.8); }
        body.dark-theme .hero-list li { color: rgba(255,255,255,0.9); }
        body.dark-theme .hero-badge { background: rgba(177, 152, 111, 0.15); color: #d6c09b; border-color: rgba(177,152,111,0.3); }
        body.dark-theme .masonry-col img { box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 0 2px rgba(255,255,255,0.05); }
        body.dark-theme .feature-title, body.dark-theme .service-title, body.dark-theme .review-text { color: #ffffff; }
        body.dark-theme .feature-text { color: #cbd5e1; }
        body.dark-theme .welcome-desc { color: rgba(255,255,255,0.75); }
        body.dark-theme .btn-outline-custom { color: #ffffff; border-color: rgba(255, 255, 255, 0.3); }
        body.dark-theme .btn-outline-custom:hover { background-color: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.5); }
        body.dark-theme .features-inner { background-color: rgba(73, 87, 70, 0.6); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.05); box-shadow: 0 10px 30px rgba(0,0,0,0.2); }
        body.dark-theme .feature-icon-wrapper { background-color: rgba(177, 152, 111, 0.2); color: #d6c09b; }
        body.dark-theme .service-card { background-color: rgba(73, 87, 70, 0.6); border-color: rgba(255, 255, 255, 0.1); backdrop-filter: blur(10px); }
        body.dark-theme .service-icon { background-color: transparent; color: #d6c09b; box-shadow: none; }
        body.dark-theme .service-card ul li { color: rgba(255, 255, 255, 0.65) !important; }
        body.dark-theme .service-card p { color: rgba(255, 255, 255, 0.65) !important; }
        body.dark-theme .service-card h3 { color: #ffffff !important; }
        body.dark-theme .border-start { border-color: rgba(255, 255, 255, 0.1) !important; }
        body.dark-theme .why-choose-card { background: rgba(73, 87, 70, 0.6); backdrop-filter: blur(10px); border-color: rgba(177, 152, 111, 0.15); box-shadow: 0 10px 30px rgba(0,0,0,0.2); }
        body.dark-theme .why-choose-card:hover { box-shadow: 0 15px 35px rgba(177, 152, 111, 0.25); border-color: rgba(177, 152, 111, 0.5); background: rgba(73, 87, 70, 0.85); }
        body.dark-theme .why-choose-card .feature-title { color: #ffffff; }
        body.dark-theme .why-choose-card .feature-text { color: #cbd5e1; }

        /* ---- Smile Makeover section dark mode ---- */
        body.dark-theme .section-light-bg { background: transparent !important; }
        body.dark-theme .makeover-pill {
            background: rgba(73, 87, 70, 0.7);
            border-color: rgba(177, 152, 111, 0.25);
            color: rgba(255,255,255,0.9);
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        }
        body.dark-theme .makeover-pill:hover {
            background: rgba(73, 87, 70, 0.95);
            border-color: rgba(177, 152, 111, 0.5);
        }
        body.dark-theme .makeover-pill i { color: #d6c09b; }

        /* Premium Welcome Section */
        .welcome-title.text-start {
            text-align: left !important;
            font-size: 48px;
            margin-bottom: 24px;
        }

        .welcome-text-content {
            text-align: left;
        }

        .welcome-text-content .lead-text {
            font-size: 20px;
            font-weight: 500;
            color: var(--dark-navy);
            line-height: 1.6;
            margin-bottom: 20px;
            font-family: var(--heading-font);
        }

        .welcome-text-content p {
            font-size: 16px;
            line-height: 1.8;
            color: var(--text-gray);
            margin-bottom: 20px;
        }

        .highlight-quote {
            background: linear-gradient(135deg, rgba(177, 152, 111, 0.1), rgba(177, 152, 111, 0.02));
            border-left: 4px solid var(--primary-blue);
            padding: 24px;
            border-radius: 0 16px 16px 0;
            margin-top: 30px;
            position: relative;
        }

        .highlight-quote i {
            position: absolute;
            top: -12px;
            left: 20px;
            font-size: 24px;
            color: var(--primary-blue);
            background: #ffffff;
            padding: 0 10px;
            transition: background 0.3s ease;
        }

        .highlight-quote p {
            margin: 0;
            font-family: var(--heading-font);
            font-size: 20px;
            color: var(--dark-navy);
            font-weight: 600;
            font-style: italic;
        }

        .welcome-contact-card {
            background: #ffffff;
            border-radius: 24px;
            padding: 40px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.06);
            border: 1px solid var(--border-color);
            text-align: center;
            position: relative;
            overflow: hidden;
            transition: background 0.3s ease, border-color 0.3s ease;
        }

        .welcome-contact-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 6px;
            background: var(--primary-blue);
        }

        .wcc-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: rgba(177, 152, 111, 0.1);
            color: var(--primary-blue);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            margin: 0 auto 24px;
        }

        .wcc-title {
            font-family: var(--heading-font);
            font-size: 28px;
            font-weight: 600;
            color: var(--dark-navy);
            margin-bottom: 16px;
        }

        .wcc-desc {
            font-size: 15px;
            color: var(--text-gray);
            margin-bottom: 30px;
            line-height: 1.6;
        }

        .wcc-number-wrapper {
            background: #f8fafc;
            border-radius: 16px;
            padding: 20px;
            border: 1px solid var(--border-color);
            transition: background 0.3s ease, border-color 0.3s ease;
        }

        .wcc-label {
            display: block;
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--text-gray);
            font-weight: 600;
            margin-bottom: 8px;
        }

        .wcc-number {
            display: inline-block;
            font-size: 36px;
            font-weight: 700;
            color: var(--primary-blue);
            text-decoration: none;
            letter-spacing: 1px;
            font-family: var(--body-font);
            transition: transform 0.3s ease, color 0.3s ease;
            white-space: nowrap;
        }

        .wcc-number:hover {
            transform: scale(1.05);
            color: var(--primary-hover);
        }

        /* Dark mode overrides for new section */
        body.dark-theme .welcome-text-content .lead-text { color: #ffffff; }
        body.dark-theme .welcome-text-content p { color: rgba(255,255,255,0.75); text-align: left; }
        body.dark-theme .highlight-quote {
            background: rgba(177, 152, 111, 0.05);
        }
        body.dark-theme .highlight-quote i {
            background: #2c352a; 
        }
        body.dark-theme .highlight-quote p {
            color: #d6c09b;
        }
        body.dark-theme .welcome-contact-card {
            background: rgba(44, 53, 42, 0.85);
            border-color: rgba(255,255,255,0.1);
        }
        body.dark-theme .wcc-title { color: #ffffff; }
        body.dark-theme .wcc-desc { color: rgba(255,255,255,0.75); }
        body.dark-theme .wcc-number-wrapper {
            background: rgba(0,0,0,0.2);
            border-color: rgba(255,255,255,0.05);
        }
        body.dark-theme .wcc-label { color: rgba(255,255,255,0.5); }
        body.dark-theme .wcc-number { color: #d6c09b; }

        /* ---- Emergency card dark mode ---- */
        body.dark-theme .emergency-card {
            background: rgba(44, 53, 42, 0.85);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(177, 152, 111, 0.2);
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }
        body.dark-theme .emergency-title { color: #d6c09b; }
        body.dark-theme .emergency-card p { color: rgba(255,255,255,0.7); }
        body.dark-theme .emergency-badge {
            background: rgba(177, 152, 111, 0.15);
            color: #d6c09b;
            border-color: rgba(177, 152, 111, 0.3);
        }

        /* ===================== RESPONSIVE ===================== */
        @media (max-width: 1199.98px) {
            .hero-grid-alternative { gap: 40px; }
            .hero-title { font-size: 52px; }
        }

        @media (max-width: 991.98px) {
            .hero-title { font-size: 46px; }
            .hero-section { padding-top: 40px; padding-bottom: 60px; }
            .features-section { margin-top: -40px; }
            .welcome-title { font-size: 38px; }
            .border-start { border-left: none !important; }

            /* Tablet Grid */
            .hero-grid-alternative {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            .hero-text-content {
                max-width: 100%;
                text-align: center;
            }
            .hero-desc {
                margin: 0 auto 32px auto;
            }
            .hero-actions {
                justify-content: center;
            }
            .hero-masonry {
                order: -1; /* Image grid above content */
            }
        }

        @media (max-width: 767.98px) {
            p { text-align: left !important; }
            .text-center p, .why-choose-card p, .hero-text-content p { text-align: left !important; }
            .hero-title { font-size: 36px; line-height: 1.2; text-align: left; }
            .hero-desc { font-size: 16px; max-width: 100%; text-align: left; margin: 0 0 32px 0; }
            .hero-text-content { text-align: left; }
            .hero-actions { justify-content: flex-start; }
            .welcome-title { font-size: 28px; }
            .section-padding { padding: 50px 0; }
            .custom-container { padding: 0 16px; }
            .hero-section { padding-top: 24px; padding-bottom: 40px; }
            .btn-group-custom { display: flex; flex-direction: column; width: 100%; gap: 12px; }
            .btn-primary-custom, .btn-outline-custom { width: 100%; justify-content: center; }
            .emergency-card { padding: 1.5rem; }
            .features-inner { padding: 18px 16px; }
            .wcc-number-wrapper { padding: 15px; }
            .wcc-number { font-size: 28px; }
            
            /* Mobile Grid */
            .hero-masonry {
                grid-template-columns: 1fr 1fr;
                gap: 12px;
            }
            .masonry-col { gap: 12px; }
            .masonry-item-1 { height: 200px; }
            .masonry-item-2 { height: 260px; }
            .masonry-item-3 { height: 180px; }
            .masonry-item-4 { height: 120px; }
        }

        @media (max-width: 480px) {
            .hero-title { font-size: 26px; }
            .welcome-title { font-size: 24px; }
            .wcc-number { font-size: 24px; }
        }

        @media (min-width: 768px) {
            p { text-align: justify; }
        }

        /* 5-Card Treatments Grid for index.php */
        .home-treatments-section {
            padding: 90px 0;
        }

        .home-treatments-grid {
            display: grid;
            gap: 24px;
            width: 100%;
        }

        .home-treatment-card {
            border: 1px solid rgba(177, 152, 111, 0.25);
            border-radius: 20px;
            padding: 32px 24px;
            display: flex;
            flex-direction: column;
            height: 100%;
            color: #ffffff;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            position: relative;
        }

        /* Unique premium gradients for each card */
        .home-treatment-card:nth-child(1) { background: linear-gradient(135deg, #3f4b3d, #455243); }
        .home-treatment-card:nth-child(2) { background: linear-gradient(135deg, #445142, #4a5948); }
        .home-treatment-card:nth-child(3) { background: linear-gradient(135deg, #495746, #50604e); }
        .home-treatment-card:nth-child(4) { background: linear-gradient(135deg, #4e5d4b, #566854); }
        .home-treatment-card:nth-child(5) { background: linear-gradient(135deg, #536350, #5c6e5a); }

        .home-treatment-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(177, 152, 111, 0.25);
            border-color: rgba(177, 152, 111, 0.7);
        }

        .home-treatment-card .card-badge {
            align-self: flex-start;
            background: rgba(177, 152, 111, 0.15);
            color: #b1986f;
            border: 1px solid rgba(177, 152, 111, 0.3);
            padding: 6px 16px;
            border-radius: 30px;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }

        .home-treatment-card:hover .card-badge {
            background: rgba(177, 152, 111, 0.25);
            color: #d6c09b;
            border-color: rgba(177, 152, 111, 0.6);
        }

        .home-treatment-card .card-title {
            font-family: var(--heading-font);
            font-size: 26px;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 12px;
            line-height: 1.25;
        }

        .home-treatment-card .card-desc {
            font-family: var(--body-font);
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
            margin-bottom: 24px;
        }

        .home-treatment-card .card-list {
            list-style: none;
            padding: 0;
            margin: 0 0 32px 0;
            flex-grow: 1;
        }

        .home-treatment-card .card-list li {
            font-family: var(--body-font);
            font-size: 14px;
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 8px;
            text-align: left;
        }

        .home-treatment-card .card-list li i {
            color: #b1986f;
            font-size: 12px;
            flex-shrink: 0;
        }

        .home-treatment-card .card-btn {
            align-self: stretch;
            text-align: center;
            background: #b1986f;
            color: #ffffff;
            border: 1px solid #b1986f;
            padding: 12px 20px;
            border-radius: 10px;
            font-weight: 500;
            font-size: 14px;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
        }

        .home-treatment-card .card-btn:hover {
            background: #9f875e;
            border-color: #9f875e;
            color: #ffffff;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(177, 152, 111, 0.3);
        }

        /* Responsive Columns */
        @media (min-width: 992px) {
            .home-treatments-grid {
                grid-template-columns: repeat(5, 1fr);
            }
        }

        @media (min-width: 768px) and (max-width: 991.98px) {
            .home-treatments-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .home-treatments-grid > div:last-child {
                grid-column: span 2;
            }
        }

        @media (max-width: 767.98px) {
            .home-treatments-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .home-treatment-card {
                padding: 28px 20px;
            }
        }

/* --- Extracted from treatments/bone-grafting.php --- */
:root {
            --primary-green: #495746;
            --dark-green: #0d2c1d;
            --luxury-gold: #b1986f;
            --light-gold: #d7c09a;
            --heading-font: 'Cormorant Garamond', serif;
            --body-font: 'Inter', sans-serif;
            --text-dark: #173a28;
            --text-muted: #6b7280;
            --bg-light: #ffffff;
            --transition: all 0.3s ease;
        }

        body {
            font-family: var(--body-font);
            margin: 0;
            padding: 0;
            background-color: #faf9f6; /* Very slight off-white for the body */
            color: var(--text-dark);
        }

        /* Nav Override for Active State */
        .navbar-nav .nav-link.active-treatments {
            color: var(--luxury-gold) !important;
            position: relative;
        }
        .navbar-nav .nav-link.active-treatments::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80%;
            height: 2px;
            background-color: var(--luxury-gold);
        }

        .container-custom {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Breadcrumb */
        .breadcrumb-custom {
            font-size: 13px;
            color: var(--text-muted);
            margin-top: 24px;
            margin-bottom: 40px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .breadcrumb-custom a {
            color: var(--text-muted);
            text-decoration: none;
            transition: var(--transition);
        }
        .breadcrumb-custom a:hover {
            color: var(--luxury-gold);
        }
        .breadcrumb-custom i {
            font-size: 10px;
            color: #d1d5db;
        }
        .breadcrumb-custom .current {
            color: var(--luxury-gold);
            font-weight: 500;
        }

        /* Hero Section */
        .hero-label {
            background: #f7f1e8;
            border: 1px solid #e7d8bc;
            color: var(--luxury-gold);
            border-radius: 50px;
            padding: 8px 18px;
            display: inline-block;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 1px;
            margin-bottom: 24px;
            text-transform: uppercase;
        }
        .hero-title {
            font-family: var(--heading-font);
            font-size: 72px;
            font-weight: 600;
            line-height: 1.05;
            color: var(--text-dark);
            margin-bottom: 16px;
        }
        .hero-title-line {
            width: 60px;
            height: 3px;
            background-color: var(--luxury-gold);
            margin-bottom: 24px;
            border-radius: 2px;
        }
        .hero-desc {
            font-size: 18px;
            line-height: 1.6;
            color: var(--text-muted);
            max-width: 580px;
            margin-bottom: 40px;
        }

        /* Features Grid */
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
            margin-bottom: 40px;
            max-width: 580px;
        }
        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 16px;
        }
        .feature-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            border: 1px solid var(--luxury-gold);
            color: var(--luxury-gold);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            flex-shrink: 0;
            background: rgba(177, 152, 111, 0.05);
        }
        .feature-content h4 {
            font-size: 15px;
            font-weight: 600;
            margin-bottom: 4px;
            color: var(--text-dark);
        }
        .feature-content p {
            font-size: 13px;
            color: var(--text-muted);
            margin: 0;
            line-height: 1.5;
        }

        /* Buttons */
        .btn-primary-dark {
            background: var(--primary-green);
            color: #fff;
            border: none;
            padding: 14px 28px;
            border-radius: 8px;
            font-weight: 500;
            font-size: 15px;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
        }
        .btn-primary-dark:hover {
            background: var(--dark-green);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(73, 87, 70, 0.2);
        }
        .btn-outline-gold {
            background: #fff;
            color: var(--text-dark);
            border: 1px solid var(--luxury-gold);
            padding: 14px 28px;
            border-radius: 8px;
            font-weight: 500;
            font-size: 15px;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
        }
        .btn-outline-gold:hover {
            background: #fdfaf5;
            transform: translateY(-2px);
        }
        .btn-icon-circle {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            border: 1px solid var(--luxury-gold);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 10px;
            color: var(--luxury-gold);
        }

        /* Hero Image */
        .hero-image-container {
            position: relative;
            height: 520px;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.05);
        }
        .hero-image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .floating-card {
            position: absolute;
            bottom: -30px;
            right: 40px;
            background: #fff;
            border-radius: 18px;
            box-shadow: 0 20px 40px rgba(0,0,0,.08);
            padding: 24px 32px;
            display: flex;
            align-items: center;
            gap: 20px;
            z-index: 10;
        }
        .floating-icon {
            color: var(--luxury-gold);
            font-size: 32px;
        }
        .floating-text {
            font-family: var(--heading-font);
            font-size: 22px;
            font-weight: 600;
            line-height: 1.2;
            color: var(--text-dark);
            margin: 0;
        }
        .floating-line {
            width: 40px;
            height: 2px;
            background: var(--luxury-gold);
            margin-top: 12px;
        }

        /* Treatments Section */
        .treatments-section {
            padding: 120px 0 80px;
        }
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }
        .tooth-icon {
            color: var(--luxury-gold);
            font-size: 28px;
            margin-bottom: 16px;
        }
        .section-title {
            font-family: var(--heading-font);
            font-size: 52px;
            font-weight: 600;
            color: var(--text-dark);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            margin: 0;
        }
        .section-title::before, .section-title::after {
            content: '';
            height: 1px;
            width: 60px;
            background: var(--luxury-gold);
        }

        /* Cards Grid */
        .cards-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 20px;
            margin-bottom: 60px;
        }
        .treatment-card {
            background: #fff;
            border: 1px solid #ececec;
            border-radius: 18px;
            padding: 24px;
            text-align: center;
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            height: 100%;
            text-decoration: none;
            color: inherit;
        }
        .treatment-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 40px rgba(0,0,0,.08);
            border-color: #fff;
        }
        .card-img-wrapper {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            border-radius: 50%;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid #f1f1f1;
        }
        .card-img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .treatment-card h3 {
            font-size: 16px;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 12px;
        }
        .treatment-card p {
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.5;
            margin-bottom: 20px;
            flex-grow: 1;
        }
        .learn-more {
            color: var(--luxury-gold);
            font-size: 13px;
            font-weight: 500;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
        }
        
        /* CTA Strip */
        .cta-strip {
            background: #f7f4ef;
            border-radius: 24px;
            padding: 40px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .cta-left {
            display: flex;
            align-items: center;
            gap: 24px;
        }
        .cta-icon {
            width: 64px;
            height: 64px;
            background: var(--dark-green);
            color: var(--luxury-gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            flex-shrink: 0;
        }
        .cta-text h3 {
            font-family: var(--heading-font);
            font-size: 28px;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 8px;
        }
        .cta-text p {
            font-size: 15px;
            color: var(--text-muted);
            margin: 0;
            max-width: 450px;
        }
        .cta-right {
            display: flex;
            align-items: center;
            gap: 20px;
        }
        .sparkle-icon {
            color: var(--light-gold);
            font-size: 24px;
        }

        /* ==================== THEME TOGGLE LOGIC ==================== */
        body.light-theme .dark-wrapper {
            display: none !important;
        }
        body.dark-theme .light-version {
            display: none !important;
        }
        body.dark-theme {
            background: linear-gradient(90deg, #3f4b3d, #495746, #3f4b3d);
        }

        /* ==================== DARK VERSION ==================== */
        .dark-wrapper {
            color: rgba(255, 255, 255, 0.78);
            padding-bottom: 80px;
        }
        .dark-wrapper .breadcrumb-custom { color: rgba(255, 255, 255, 0.5); }
        .dark-wrapper .breadcrumb-custom a { color: rgba(255, 255, 255, 0.5); }
        .dark-wrapper .breadcrumb-custom a:hover { color: var(--luxury-gold); }
        .dark-wrapper .breadcrumb-custom .current { color: var(--luxury-gold); }
        
        .dark-wrapper .hero-label {
            background: rgba(177, 152, 111, 0.1);
            border-color: rgba(177, 152, 111, 0.3);
            color: var(--luxury-gold);
        }
        .dark-wrapper .hero-title, 
        .dark-wrapper .section-title,
        .dark-wrapper .floating-text,
        .dark-wrapper .cta-text h3,
        .dark-wrapper .feature-content h4,
        .dark-wrapper .treatment-card h3 {
            color: #ffffff;
        }
        .dark-wrapper .hero-desc,
        .dark-wrapper .feature-content p,
        .dark-wrapper .treatment-card p,
        .dark-wrapper .cta-text p {
            color: rgba(255, 255, 255, 0.78);
        }
        
        .dark-wrapper .feature-icon {
            border-color: var(--luxury-gold);
            background: transparent;
        }
        
        .dark-wrapper .btn-primary-dark {
            background: var(--luxury-gold);
            color: var(--dark-green);
        }
        .dark-wrapper .btn-primary-dark:hover {
            background: var(--light-gold);
            box-shadow: 0 10px 20px rgba(177, 152, 111, 0.2);
        }
        .dark-wrapper .btn-outline-gold {
            background: transparent;
            color: #ffffff;
            border-color: var(--luxury-gold);
        }
        .dark-wrapper .btn-outline-gold:hover {
            background: rgba(177, 152, 111, 0.1);
        }

        .dark-wrapper .floating-card {
            background: rgba(73, 87, 70, 0.95);
            border: 1px solid var(--luxury-gold);
            box-shadow: 0 20px 40px rgba(0,0,0,0.5);
            backdrop-filter: blur(10px);
        }

        .dark-wrapper .treatment-card {
            background: rgba(63, 75, 61, 0.85);
            border: 1px solid rgba(177, 152, 111, 0.20);
        }
        .dark-wrapper .treatment-card:hover {
            border-color: var(--luxury-gold);
            box-shadow: 0 20px 40px rgba(0,0,0,0.4);
            background: rgba(73, 87, 70, 0.95);
        }
        .dark-wrapper .card-img-wrapper {
            border-color: rgba(177, 152, 111, 0.2);
        }

        .dark-wrapper .cta-strip {
            background: rgba(63, 75, 61, 0.6);
            border: 1px solid rgba(177, 152, 111, 0.15);
        }
        .dark-wrapper .cta-icon {
            background: transparent;
            border: 1px solid var(--luxury-gold);
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .cards-grid { grid-template-columns: repeat(3, 1fr); }
            .hero-title { font-size: 56px; }
        }
        @media (max-width: 991px) {
            .hero-image-container { margin-top: 60px; height: 400px; }
            .floating-card { bottom: -20px; right: 20px; padding: 16px 24px; }
            .floating-text { font-size: 18px; }
            .section-title { font-size: 40px; }
            .cta-strip { flex-direction: column; text-align: center; gap: 30px; }
            .cta-left { flex-direction: column; }
        }
        @media (max-width: 767px) {
            .cards-grid { grid-template-columns: 1fr; }
            .feature-grid { grid-template-columns: 1fr; }
            .hero-title { font-size: 42px; }
            .section-title { font-size: 32px; }
            .section-title::before, .section-title::after { width: 30px; }
            .btn-group-custom { flex-direction: column; width: 100%; }
            .btn-group-custom a { width: 100%; justify-content: center; }
            .floating-card { position: static; margin-top: -20px; border-radius: 0 0 24px 24px; box-shadow: none; border: 1px solid #ececec; }
            .dark-wrapper .floating-card { border: 1px solid rgba(177,152,111,0.2); }
        }

/* --- Extracted from treatments/bone-grafting.php --- */
/* Light Theme Modal Defaults */
        #treatmentModal .modal-content {
            background-color: #ffffff;
            border-radius: 18px;
            border: none;
            overflow: hidden;
        }
        #treatmentModal .modal-header, #treatmentModal .modal-footer {
            background-color: #faf9f6;
            border-color: #ececec;
        }
        #treatmentModal .modal-title {
            font-family: var(--heading-font);
            font-size: 28px;
            font-weight: 600;
            color: var(--text-dark);
        }
        #treatmentModal .btn-close {
            filter: none;
        }
        #treatmentModal #modalDesc {
            color: var(--text-muted);
            font-size: 15px;
            line-height: 1.6;
            padding: 0 10px;
        }
        #treatmentModal .image-wrapper {
            width: 140px; height: 140px; margin: 0 auto 24px;
            border-radius: 50%; overflow: hidden;
            border: 2px solid #f1f1f1;
            box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        }

        /* Dark Theme Modal Overrides */
        body.dark-theme #treatmentModal .modal-content {
            background-color: #232f28; /* slightly darker to match the theme */
        }
        body.dark-theme #treatmentModal .modal-header,
        body.dark-theme #treatmentModal .modal-footer {
            background-color: #1c2620; /* darker header/footer */
            border-color: #3b4d42;
        }
        body.dark-theme #treatmentModal .modal-title {
            color: #d8c3a5; /* Gold text */
        }
        body.dark-theme #treatmentModal #modalDesc {
            color: #aebdb5;
        }
        body.dark-theme #treatmentModal .btn-close {
            filter: invert(1) grayscale(100%) brightness(200%);
        }
        body.dark-theme #treatmentModal .image-wrapper {
            border-color: #3b4d42;
        }
        body.dark-theme #treatmentModal .modal-footer .btn-primary-dark {
            background: #b1986f; 
            color: #173a28;
            border: none;
        }
        body.dark-theme #treatmentModal .modal-footer .btn-primary-dark:hover {
            background: #d8c3a5;
        }

/* --- Extracted from treatments/cosmetic-dentistry.php --- */
:root {
            --primary-blue: #b1986f;
            --primary-hover: #9f875e;
            --dark-navy: #495746;
            --light-bg: #f8fafc;
            --text-gray: #64748b;
            --border-color: #e2e8f0;
            --heading-font: 'Cormorant Garamond', serif;
            --body-font: 'Inter', sans-serif;
            --shadow: 0 10px 30px rgba(0,0,0,.08);
            --transition: all 0.3s ease;
        }

        body {
            font-family: var(--body-font);
            color: var(--text-gray);
            background-color: #ffffff;
            margin: 0;
            padding: 0;
            transition: background-color 0.3s ease, color 0.3s ease;
        }

        /* Breadcrumb */
        .breadcrumb-text {
            font-size: 13px;
            color: #9ca3af;
            margin-bottom: 30px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .breadcrumb-text a {
            color: #9ca3af;
            text-decoration: none;
        }
        .breadcrumb-text i { font-size: 11px; }

        /* Hero Section */
        .hero-section {
            padding: 60px 0 90px;
            position: relative;
        }
        .hero-label {
            background: #f7f1e8;
            color: #b1986f;
            border: 1px solid #e7d8bc;
            border-radius: 50px;
            padding: 6px 16px;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 24px;
            display: inline-block;
        }
        .hero-title {
            font-family: var(--heading-font);
            font-size: 72px;
            font-weight: 600;
            line-height: 1.05;
            color: #173a28;
            margin-bottom: 24px;
        }
        .hero-title-line {
            height: 2px;
            width: 80px;
            background-color: #b1986f;
            margin-bottom: 24px;
        }
        .hero-desc {
            font-size: 18px;
            line-height: 1.6;
            color: var(--text-gray);
            margin-bottom: 40px;
            max-width: 520px;
        }

        /* Feature Icons */
        .feature-list {
            display: flex;
            gap: 20px;
            margin-bottom: 45px;
        }
        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            flex: 1;
        }
        .feature-icon-wrapper {
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .feature-icon-wrapper i {
            font-size: 24px;
            color: transparent;
            -webkit-text-stroke: 1.5px #b1986f;
        }
        .feature-text-content {
            display: flex;
            flex-direction: column;
        }
        .feature-title {
            font-size: 14px;
            font-weight: 600;
            color: #173a28;
            margin-bottom: 4px;
            line-height: 1.2;
        }
        .feature-subtitle {
            font-size: 12px;
            color: var(--text-gray);
            line-height: 1.4;
        }

        /* Buttons */
        .btn-group-custom {
            display: flex;
            gap: 16px;
        }
        .btn-primary-custom {
            background-color: #495746;
            color: #ffffff;
            border: none;
            padding: 14px 30px;
            border-radius: 8px;
            font-weight: 500;
            font-size: 16px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            transition: var(--transition);
        }
        .btn-primary-custom:hover {
            background-color: #3f4b3d;
            color: #ffffff;
            transform: translateY(-2px);
        }
        .btn-outline-custom {
            background-color: #ffffff;
            color: #173a28;
            border: 1px solid #b1986f;
            padding: 14px 30px;
            border-radius: 8px;
            font-weight: 500;
            font-size: 16px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            transition: var(--transition);
        }
        .btn-outline-custom:hover {
            background-color: #f8fafc;
            color: #173a28;
            transform: translateY(-2px);
        }
        .btn-outline-custom i { color: #b1986f; }

        /* Hero Image */
        .hero-image-container {
            position: relative;
            border-radius: 24px;
            overflow: hidden;
            height: 520px;
            width: 100%;
        }
        .hero-image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Floating Message Card */
        .floating-card {
            position: absolute;
            bottom: -25px;
            right: 40px;
            background: #ffffff;
            border-radius: 18px;
            padding: 24px 32px;
            display: flex;
            align-items: center;
            gap: 16px;
            box-shadow: 0 20px 40px rgba(0,0,0,.08);
            z-index: 10;
        }
        .floating-card i {
            font-size: 36px;
            color: transparent;
            -webkit-text-stroke: 1.5px #b1986f;
        }
        .floating-card-text {
            font-family: var(--heading-font);
            color: #173a28;
            font-size: 26px;
            line-height: 1.2;
            font-weight: 500;
            position: relative;
        }
        .floating-card-text::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: #b1986f;
        }

        /* Services Section */
        .services-section {
            padding: 80px 0;
            background: #ffffff;
            transition: var(--transition);
        }
        .section-header {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }
        .section-icon {
            color: transparent;
            -webkit-text-stroke: 1.5px #b1986f;
            font-size: 32px;
            margin-bottom: 15px;
        }
        .section-title-wrapper {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
        }
        .section-title {
            font-family: var(--heading-font);
            font-size: 52px;
            font-weight: 600;
            color: #173a28;
            margin: 0;
        }
        .title-line {
            height: 1px;
            width: 60px;
            background-color: #b1986f;
        }

        /* Services Grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 20px;
            margin-bottom: 60px;
        }
        @media (max-width: 1199px) {
            .services-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 24px;
            }
        }
        @media (max-width: 767px) {
            .services-grid {
                grid-template-columns: 1fr;
            }
        }
        .service-card {
            background: #ffffff;
            border: 1px solid #ececec;
            border-radius: 18px;
            padding: 30px 20px;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            text-align: left;
            transition: var(--transition);
            height: 100%;
        }
        .service-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 40px rgba(0,0,0,.08);
        }
        .service-icon {
            width: 48px;
            height: 48px;
            background: rgba(177,152,111,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            transition: var(--transition);
        }
        .service-icon i {
            font-size: 20px;
            color: transparent;
            -webkit-text-stroke: 1.5px #b1986f;
        }
        .service-title {
            font-family: var(--body-font);
            font-size: 16px;
            font-weight: 600;
            color: #173a28;
            margin-bottom: 12px;
            line-height: 1.2;
        }
        .service-desc {
            font-size: 13px;
            color: var(--text-gray);
            line-height: 1.5;
            margin-bottom: 20px;
            flex-grow: 1;
        }
        .service-link {
            color: #b1986f;
            font-size: 13px;
            font-weight: 500;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 6px;
            transition: var(--transition);
        }
        .service-link:hover {
            color: #9f875e;
            gap: 10px;
        }

        /* CTA Strip */
        .cta-strip {
            background: #f7f4ef;
            border-radius: 24px;
            padding: 35px 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
            transition: var(--transition);
        }
        .cta-strip-left {
            display: flex;
            align-items: center;
            gap: 20px;
        }
        .cta-icon-wrapper {
            width: 60px;
            height: 60px;
            background: #173a28;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .cta-icon-wrapper i {
            font-size: 24px;
            color: #b1986f;
        }
        .cta-text-content {
            display: flex;
            flex-direction: column;
        }
        .cta-title {
            font-family: var(--heading-font);
            font-size: 28px;
            font-weight: 600;
            color: #173a28;
            margin-bottom: 4px;
        }
        .cta-desc {
            font-size: 14px;
            color: var(--text-gray);
        }
        .cta-strip-right {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        .sparkle-icon {
            font-size: 32px;
            color: transparent;
            -webkit-text-stroke: 1px #b1986f;
            opacity: 0.5;
        }

        /* ===================== DARK THEME ===================== */
        body.dark-theme {
            background: linear-gradient(90deg, #3f4b3d, #495746, #3f4b3d);
            color: rgba(255, 255, 255, 0.75);
            --text-gray: #a0adb8;
        }
        body.dark-theme .breadcrumb-text { color: rgba(255,255,255,.5); }
        body.dark-theme .breadcrumb-text a { color: rgba(255,255,255,.5); }
        body.dark-theme .hero-label { background: rgba(177, 152, 111, 0.2); color: #d6c09b; border-color: rgba(177,152,111,0.3); }
        body.dark-theme .hero-title { color: #ffffff; }
        body.dark-theme .hero-desc { color: rgba(255, 255, 255, 0.75); }
        
        body.dark-theme .feature-title { color: #ffffff; }
        body.dark-theme .feature-subtitle { color: #cbd5e1; }
        
        body.dark-theme .btn-primary-custom { background-color: #b1986f; color: #ffffff; }
        body.dark-theme .btn-primary-custom:hover { background-color: #9f875e; }
        body.dark-theme .btn-outline-custom { background-color: transparent; color: #ffffff; border-color: rgba(255, 255, 255, 0.3); }
        body.dark-theme .btn-outline-custom:hover { background-color: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.5); }
        body.dark-theme .btn-outline-custom i { color: #b1986f; }
        
        body.dark-theme .floating-card { 
            background: rgba(73, 87, 70, 0.6); 
            backdrop-filter: blur(10px); 
            border: 1px solid rgba(255,255,255,0.05); 
            box-shadow: 0 10px 30px rgba(0,0,0,0.2); 
        }
        body.dark-theme .floating-card-text { color: #ffffff; }
        
        body.dark-theme .services-section { background: transparent; }
        body.dark-theme .section-title { color: #ffffff; }
        
        body.dark-theme .service-card {
            background-color: rgba(73, 87, 70, 0.6); 
            border-color: rgba(255, 255, 255, 0.1); 
            backdrop-filter: blur(10px);
        }
        body.dark-theme .service-card:hover {
            box-shadow: 0 15px 35px rgba(177, 152, 111, 0.25); 
            border-color: rgba(177, 152, 111, 0.5); 
            background: rgba(73, 87, 70, 0.85);
        }
        body.dark-theme .service-title { color: #ffffff; }
        body.dark-theme .service-desc { color: rgba(255, 255, 255, 0.65); }
        
        body.dark-theme .cta-strip { 
            background: rgba(73, 87, 70, 0.6); 
            backdrop-filter: blur(10px); 
            border: 1px solid rgba(255,255,255,0.05); 
        }
        body.dark-theme .cta-icon-wrapper { background: rgba(177, 152, 111, 0.2); border: none; }
        body.dark-theme .cta-icon-wrapper i { color: #d6c09b; }
        body.dark-theme .cta-title { color: #ffffff; }
        body.dark-theme .cta-desc { color: rgba(255, 255, 255, 0.75); }

        /* Responsive Adjustments */
        @media (max-width: 991px) {
            .hero-title { font-size: 56px; }
            .hero-image-container { margin-top: 40px; height: 400px; }
            .floating-card { bottom: 20px; right: 20px; padding: 15px 20px; }
            .floating-card-text { font-size: 20px; }
            .section-title { font-size: 42px; }
            .feature-list { flex-wrap: wrap; gap: 20px; }
            .feature-item { min-width: 45%; }
            .cta-strip { flex-direction: column; align-items: flex-start; }
        }
        @media (max-width: 767px) {
            .hero-title { font-size: 42px; }
            .hero-desc { font-size: 16px; }
            .btn-group-custom { flex-direction: column; }
            .btn-primary-custom, .btn-outline-custom { width: 100%; justify-content: center; }
            .section-title { font-size: 32px; }
            .title-line { width: 30px; }
            .hero-image-container { height: 300px; }
            .floating-card { position: relative; bottom: auto; right: auto; margin-top: -30px; margin-left: 20px; margin-right: 20px; }
            .cta-strip-left { flex-direction: column; align-items: flex-start; }
            .cta-strip-right { width: 100%; }
            .cta-strip-right .btn-primary-custom { width: 100%; }
            .sparkle-icon { display: none; }
        }

/* --- Extracted from treatments/general-dentistry.php --- */
:root {
            --primary-blue: #b1986f;
            --primary-hover: #9f875e;
            --dark-navy: #495746;
            --light-bg: #f8fafc;
            --text-gray: #64748b;
            --border-color: #e2e8f0;
            --heading-font: 'Cormorant Garamond', serif;
            --body-font: 'Inter', sans-serif;
            --shadow: 0 10px 30px rgba(0,0,0,.08);
            --transition: all 0.3s ease;
        }

        body {
            font-family: var(--body-font);
            color: var(--text-gray);
            background-color: #ffffff;
            margin: 0;
            padding: 0;
            transition: background-color 0.3s ease, color 0.3s ease;
        }

        /* Breadcrumb */
        .breadcrumb-text {
            font-size: 13px;
            color: #9ca3af;
            margin-bottom: 30px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .breadcrumb-text a {
            color: #9ca3af;
            text-decoration: none;
        }
        .breadcrumb-text i { font-size: 11px; }

        /* Hero Section */
        .hero-section {
            padding: 60px 0 90px;
            position: relative;
        }
        .hero-label {
            color: #b1986f;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            margin-bottom: 20px;
            display: block;
        }
        .hero-title {
            font-family: var(--heading-font);
            font-size: 72px;
            font-weight: 600;
            line-height: 1.05;
            color: #1f352a;
            margin-bottom: 24px;
        }
        .hero-desc {
            font-size: 18px;
            line-height: 1.6;
            color: var(--text-gray);
            margin-bottom: 40px;
            max-width: 520px;
        }

        /* Feature Icons */
        .feature-list {
            display: flex;
            gap: 30px;
            margin-bottom: 45px;
        }
        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }
        .feature-icon-wrapper {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .feature-icon-wrapper i {
            font-size: 24px;
            color: #1f352a;
            font-weight: 300;
        }
        .feature-text-content {
            display: flex;
            flex-direction: column;
        }
        .feature-title {
            font-size: 15px;
            font-weight: 600;
            color: #1f352a;
            margin-bottom: 4px;
        }
        .feature-subtitle {
            font-size: 12px;
            color: var(--text-gray);
            line-height: 1.4;
        }

        /* Buttons */
        .btn-group-custom {
            display: flex;
            gap: 16px;
        }
        .btn-primary-custom {
            background-color: #495746;
            color: #ffffff;
            border: none;
            padding: 14px 30px;
            border-radius: 8px;
            font-weight: 500;
            font-size: 16px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            transition: var(--transition);
        }
        .btn-primary-custom:hover {
            background-color: #3f4b3d;
            color: #ffffff;
            transform: translateY(-2px);
        }
        .btn-outline-custom {
            background-color: #ffffff;
            color: #1f352a;
            border: 1px solid #b1986f;
            padding: 14px 30px;
            border-radius: 8px;
            font-weight: 500;
            font-size: 16px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            transition: var(--transition);
        }
        .btn-outline-custom:hover {
            background-color: #f8fafc;
            color: #1f352a;
            transform: translateY(-2px);
        }

        /* Hero Image */
        .hero-image-container {
            position: relative;
            border-radius: 24px;
            overflow: hidden;
            height: 520px;
            width: 100%;
        }
        .hero-image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Floating Message Card */
        .floating-card {
            position: absolute;
            bottom: -25px;
            right: 40px;
            background: #0f3325;
            border: 1px solid #b1986f;
            border-radius: 12px;
            padding: 24px 32px;
            display: flex;
            align-items: center;
            gap: 16px;
            box-shadow: 0 15px 40px rgba(177,152,111,.2);
            z-index: 10;
        }
        .floating-card i {
            font-size: 32px;
            color: #b1986f;
        }
        .floating-card-text {
            font-family: var(--heading-font);
            color: #ffffff;
            font-size: 24px;
            line-height: 1.2;
            font-weight: 500;
        }

        /* Services Section */
        .services-section {
            padding: 80px 0;
            background: #ffffff;
            transition: var(--transition);
        }
        .section-header {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }
        .section-icon {
            color: #b1986f;
            font-size: 28px;
            margin-bottom: 15px;
        }
        .section-title-wrapper {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
        }
        .section-title {
            font-family: var(--heading-font);
            font-size: 54px;
            font-weight: 600;
            color: #1f352a;
            margin: 0;
        }
        .title-line {
            height: 1px;
            width: 60px;
            background-color: #b1986f;
        }

        /* Services Grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 20px;
            margin-bottom: 50px;
        }
        @media (max-width: 1199px) {
            .services-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 24px;
            }
        }
        @media (max-width: 767px) {
            .services-grid {
                grid-template-columns: 1fr;
            }
        }
        .service-card {
            background: #ffffff;
            border: 1px solid #e5e7eb;
            border-radius: 18px;
            padding: 30px 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            transition: var(--transition);
            height: 100%;
        }
        .service-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 40px rgba(0,0,0,.08);
            border-color: #b1986f;
        }
        .service-icon {
            width: 50px;
            height: 50px;
            border: 1px solid #e5e7eb;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            transition: var(--transition);
        }
        .service-icon i {
            font-size: 20px;
            color: #b1986f;
        }
        .service-title {
            font-family: var(--heading-font);
            font-size: 22px;
            font-weight: 600;
            color: #1f352a;
            margin-bottom: 12px;
            line-height: 1.2;
        }
        .service-desc {
            font-size: 13px;
            color: var(--text-gray);
            line-height: 1.5;
            margin-bottom: 20px;
            flex-grow: 1;
        }
        .service-link {
            color: #b1986f;
            font-size: 13px;
            font-weight: 500;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 6px;
            transition: var(--transition);
        }
        .service-link:hover {
            color: #9f875e;
            gap: 10px;
        }

        /* Benefits Strip */
        .benefits-strip {
            background: #f8f8f6;
            border-radius: 20px;
            padding: 28px 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
            transition: var(--transition);
        }
        .benefit-item {
            display: flex;
            align-items: center;
            gap: 15px;
            flex: 1;
            min-width: 200px;
            transition: var(--transition);
        }
        .benefit-item:not(:last-child) {
            border-right: 1px solid #e5e7eb;
            padding-right: 20px;
        }
        .benefit-icon {
            font-size: 28px;
            color: #1f352a;
            transition: var(--transition);
        }
        .benefit-text-content {
            display: flex;
            flex-direction: column;
        }
        .benefit-title {
            font-size: 15px;
            font-weight: 600;
            color: #1f352a;
            margin-bottom: 2px;
            transition: var(--transition);
        }
        .benefit-desc {
            font-size: 12px;
            color: var(--text-gray);
            transition: var(--transition);
        }

        @media (max-width: 991px) {
            .benefit-item:not(:last-child) {
                border-right: none;
                padding-right: 0;
            }
        }

        /* ===================== DARK THEME ===================== */
        body.dark-theme {
            background: linear-gradient(90deg, #3f4b3d, #495746, #3f4b3d);
            color: rgba(255, 255, 255, 0.75);
            --text-gray: #a0adb8;
        }
        body.dark-theme .breadcrumb-text { color: rgba(255,255,255,.5); }
        body.dark-theme .breadcrumb-text a { color: rgba(255,255,255,.5); }
        body.dark-theme .hero-label { background: rgba(177, 152, 111, 0.2); color: #d6c09b; border-color: rgba(177,152,111,0.3); }
        body.dark-theme .hero-title { color: #ffffff; }
        body.dark-theme .hero-desc { color: rgba(255, 255, 255, 0.75); }
        
        body.dark-theme .feature-title { color: #ffffff; }
        body.dark-theme .feature-subtitle { color: #cbd5e1; }
        
        body.dark-theme .btn-primary-custom { background-color: #b1986f; color: #ffffff; }
        body.dark-theme .btn-primary-custom:hover { background-color: #9f875e; }
        body.dark-theme .btn-outline-custom { background-color: transparent; color: #ffffff; border-color: rgba(255, 255, 255, 0.3); }
        body.dark-theme .btn-outline-custom:hover { background-color: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.5); }
        
        body.dark-theme .floating-card { 
            background: rgba(73, 87, 70, 0.6); 
            backdrop-filter: blur(10px); 
            border: 1px solid rgba(255,255,255,0.05); 
            box-shadow: 0 10px 30px rgba(0,0,0,0.2); 
        }
        body.dark-theme .floating-card-text { color: #ffffff; }
        
        body.dark-theme .services-section { background: transparent; }
        body.dark-theme .section-title { color: #ffffff; }
        
        body.dark-theme .service-card {
            background-color: rgba(73, 87, 70, 0.6); 
            border-color: rgba(255, 255, 255, 0.1); 
            backdrop-filter: blur(10px);
        }
        body.dark-theme .service-card:hover {
            box-shadow: 0 15px 35px rgba(177, 152, 111, 0.25); 
            border-color: rgba(177, 152, 111, 0.5); 
            background: rgba(73, 87, 70, 0.85);
        }
        body.dark-theme .service-title { color: #ffffff; }
        body.dark-theme .service-desc { color: rgba(255, 255, 255, 0.65); }
        
        body.dark-theme .benefits-strip { 
            background: rgba(73, 87, 70, 0.6); 
            backdrop-filter: blur(10px); 
            border: 1px solid rgba(255,255,255,0.05); 
        }
        body.dark-theme .benefit-item:not(:last-child) { border-color: rgba(255,255,255,0.1); }
        body.dark-theme .benefit-icon { color: #d6c09b; }
        body.dark-theme .benefit-title { color: #ffffff; }
        body.dark-theme .benefit-desc { color: rgba(255, 255, 255, 0.75); }

        /* Responsive Adjustments */
        @media (max-width: 991px) {
            .hero-title { font-size: 56px; }
            .hero-image-container { margin-top: 40px; height: 400px; }
            .floating-card { bottom: 20px; right: 20px; padding: 15px 20px; }
            .floating-card-text { font-size: 18px; }
            .section-title { font-size: 42px; }
            .feature-list { flex-direction: column; gap: 20px; }
        }
        @media (max-width: 767px) {
            .hero-title { font-size: 42px; }
            .hero-desc { font-size: 16px; }
            .btn-group-custom { flex-direction: column; }
            .btn-primary-custom, .btn-outline-custom { width: 100%; justify-content: center; }
            .section-title { font-size: 32px; }
            .title-line { width: 30px; }
            .benefits-strip { padding: 20px; flex-direction: column; align-items: flex-start; }
            .benefit-item { width: 100%; margin-bottom: 15px; }
            .hero-image-container { height: 300px; }
            .floating-card { position: relative; bottom: auto; right: auto; margin-top: -30px; margin-left: 20px; margin-right: 20px; }
        }

/* --- Extracted from treatments.php --- */
:root {
            --primary-blue: #b1986f;
            --primary-hover: #9f875e;
            --dark-navy: #3f4b3d;
            --light-bg: #f8fafc;
            --text-gray: #64748b;
            --border-color: #e2e8f0;
            --heading-font: 'Cormorant Garamond', serif;
            --body-font: 'Inter', sans-serif;
            --transition: all 0.3s ease;
        }

        body {
            font-family: var(--body-font);
            color: var(--text-gray);
            background-color: #ffffff;
            margin: 0;
            padding: 0;
            transition: background 0.3s ease, color 0.3s ease;
        }

        h1, h2, h3, h4, h5, h6, .brand-text {
            font-family: var(--heading-font);
            color: var(--dark-navy);
            transition: color 0.3s ease;
        }

        p {
            transition: color 0.3s ease;
        }

        .custom-container {
         
            max-width: 1400px;
            margin: 0 auto;
            padding-left: 24px;
            padding-right: 24px;
        }

        /* Navbar */
        .navbar-custom {
            background-color: #ffffff;
            box-shadow: 0 2px 15px rgba(0,0,0,0.05);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: background-color 0.3s ease, box-shadow 0.3s ease;
        }

        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }

        .brand-icon {
            font-size: 42px;
            color: var(--primary-blue);
        }

        .brand-text {
            font-size: 42px;
            font-weight: 500;
            margin: 0;
            line-height: 1;
            color: #3f4b3d;
        }

        .nav-link {
            color: var(--dark-navy) !important;
            font-weight: 500;
            font-size: 15px;
            padding: 8px 18px !important;
            transition: var(--transition);
        }

        .nav-link:hover {
            color: var(--primary-blue) !important;
        }

        .nav-link.active {
            color: var(--primary-blue) !important;
            position: relative;
        }

        .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 18px;
            right: 18px;
            height: 2px;
            background-color: var(--primary-blue);
        }

        .dropdown-menu {
            border: 1px solid var(--border-color);
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            padding: 12px 0;
        }

        .dropdown-item {
            padding: 10px 24px;
            font-weight: 500;
            font-size: 14px;
            color: var(--dark-navy);
            transition: var(--transition);
        }

        .dropdown-item:hover, .dropdown-item:focus {
            background: var(--light-bg);
            color: var(--primary-blue);
        }

        /* Theme Toggle Button */
        .theme-toggle-btn {
            background: transparent;
            border: 1px solid var(--border-color);
            color: var(--text-gray);
            width: 42px;
            height: 42px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition);
            font-size: 16px;
        }

        .theme-toggle-btn:hover {
            background: var(--light-bg);
            color: var(--dark-navy);
            transform: translateY(-2px);
        }

        /* Buttons */
        .btn-primary-custom {
            background-color: var(--primary-blue);
            color: #ffffff;
            border: none;
            padding: 14px 28px;
            border-radius: 12px;
            font-weight: 500;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            text-decoration: none;
            font-size: 15px;
        }

        .btn-primary-custom:hover {
            background-color: var(--primary-hover);
            color: #ffffff;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(177, 152, 111, 0.2);
        }
        
        .btn-outline-custom {
            background-color: transparent;
            color: var(--primary-blue);
            border: 1px solid var(--primary-blue);
            padding: 14px 28px;
            border-radius: 12px;
            font-weight: 500;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            text-decoration: none;
            font-size: 15px;
        }

        .btn-outline-custom:hover {
            background: var(--light-bg);
            transform: translateY(-2px);
        }

        /* Breadcrumb */
        .breadcrumb-nav {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 14px;
            font-weight: 500;
            color: #64748b;
            margin-bottom: 40px;
        }

        .breadcrumb-nav a {
            color: #64748b;
            text-decoration: none;
            transition: var(--transition);
        }

        .breadcrumb-nav a:hover {
            color: var(--primary-blue);
        }

        .breadcrumb-nav span {
            color: var(--dark-navy);
        }

        /* Hero Section */
        .treatments-hero {
            background: linear-gradient(90deg, #f8fafc, #f1f5f9);
            padding: 90px 0;
            transition: background 0.3s ease;
        }

        .hero-label {
            color: var(--primary-blue);
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            margin-bottom: 24px;
            display: inline-block;
            transition: color 0.3s ease;
        }

        .hero-title {
            font-size: 72px;
            line-height: 1.05;
            font-weight: 600;
            margin-bottom: 24px;
        }

        .hero-desc {
            font-size: 18px;
            line-height: 1.6;
            max-width: 560px;
            margin-bottom: 48px;
        }

        .hero-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
            margin-bottom: 40px;
        }

        .hf-card {
            display: flex;
            align-items: flex-start;
            gap: 16px;
        }

        .hf-icon {
            width: 32px;
            height: 32px;
            color: var(--primary-blue);
            display: flex;
            align-items: center;
            justify-content: flex-start;
            font-size: 24px;
            flex-shrink: 0;
            transition: color 0.3s ease;
        }

        .hf-title {
            font-size: 15px;
            font-weight: 600;
            color: var(--dark-navy);
            margin-bottom: 4px;
            font-family: var(--body-font);
            transition: color 0.3s ease;
        }

        .hf-desc {
            font-size: 13px;
            line-height: 1.5;
            color: var(--text-gray);
            margin: 0;
            transition: color 0.3s ease;
        }

        .hero-image-wrapper {
            position: relative;
            border-radius: 140px 20px 20px 140px;
            overflow: hidden;
            height: 520px;
            width: 100%;
        }

        .hero-image-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .floating-quote-card {
            position: absolute;
            bottom: 40px;
            right: 40px;
            background: #ffffff;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.08);
            padding: 24px;
            display: flex;
            align-items: center;
            gap: 16px;
            z-index: 2;
            transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid transparent;
        }

        .quote-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background-color: #eff6ff;
            color: var(--primary-blue);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            transition: background 0.3s ease, color 0.3s ease;
        }

        .quote-text {
            font-family: var(--heading-font);
            font-size: 22px;
            font-weight: 600;
            color: var(--dark-navy);
            line-height: 1.2;
            margin: 0;
            transition: color 0.3s ease;
        }

        /* Treatments Grid Section */
        .treatments-section {
            padding: 80px 0;
        }

        .treatments-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 24px;
            margin-bottom: 60px;
        }

        .treatment-card {
            background: #ffffff;
            border: 1px solid var(--border-color);
            border-radius: 18px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
            display: flex;
            flex-direction: column;
        }

        .treatment-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0,0,0,.08);
        }

        .t-img-container {
            height: 220px;
            position: relative;
        }

        .t-img-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .t-icon-circle {
            position: absolute;
            bottom: -20px;
            left: 20px;
            width: 44px;
            height: 44px;
            background-color: #ffffff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-blue);
            box-shadow: 0 4px 10px rgba(0,0,0,0.08);
            font-size: 18px;
            transition: background 0.3s ease, color 0.3s ease;
            border: 1px solid var(--border-color);
        }

        .t-content {
            padding: 32px 20px 24px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        .t-title {
            font-family: var(--heading-font);
            font-size: 22px;
            font-weight: 600;
            color: var(--dark-navy);
            margin-bottom: 12px;
            transition: color 0.3s ease;
        }

        .t-desc {
            font-size: 14px;
            line-height: 1.6;
            color: var(--text-gray);
            margin-bottom: 24px;
            flex-grow: 1;
            transition: color 0.3s ease;
        }

        .t-link {
            font-size: 14px;
            font-weight: 600;
            color: var(--primary-blue);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: color 0.3s ease;
        }

        .t-link:hover {
            color: var(--primary-hover);
        }

        /* Benefits Strip */
        .benefits-strip {
            background: #f8fafc;
            border-radius: 20px;
            padding: 28px 40px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 80px;
            border: 1px solid transparent;
            transition: background 0.3s ease, border-color 0.3s ease;
        }

        .benefits-group {
            display: flex;
            align-items: center;
            gap: 32px;
            flex-grow: 1;
        }

        .benefit-item {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .benefit-icon {
            width: 40px;
            height: 40px;
            border-radius: 8px;
            background-color: #ffffff;
            color: var(--primary-blue);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.05);
            transition: background 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
        }

        .benefit-title {
            font-size: 14px;
            font-weight: 600;
            color: var(--dark-navy);
            margin-bottom: 2px;
            font-family: var(--body-font);
            transition: color 0.3s ease;
        }

        .benefit-desc {
            font-size: 12px;
            color: var(--text-gray);
            margin: 0;
            transition: color 0.3s ease;
        }

        .benefit-image-wrapper {
            width: 240px;
            height: 80px;
            border-radius: 40px;
            overflow: hidden;
            flex-shrink: 0;
            margin-left: 20px;
        }

        .benefit-image-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* CTA Section */
        .cta-banner {
            background: #ffffff;
            border-radius: 20px;
            padding: 30px 40px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 90px;
            border: 1px solid var(--primary-blue);
            transition: background 0.3s ease, border-color 0.3s ease;
        }

        .cta-left {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .cta-icon-circle {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background-color: #eff6ff;
            color: var(--primary-blue);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            flex-shrink: 0;
            transition: background 0.3s ease, color 0.3s ease;
        }

        .cta-heading {
            font-family: var(--heading-font);
            font-size: 28px;
            font-weight: 600;
            color: var(--dark-navy);
            margin-bottom: 4px;
            transition: color 0.3s ease;
        }

        .cta-desc {
            font-size: 15px;
            color: var(--text-gray);
            margin: 0;
            transition: color 0.3s ease;
        }

        .cta-actions {
            display: flex;
            gap: 16px;
            align-items: center;
        }

        /* Dark Mode Updates */
        body.dark-theme {
            --light-bg: linear-gradient(135deg, #2c352a, #354032);
            background: linear-gradient(90deg, #3f4b3d, #495746, #3f4b3d);
            color: rgba(255, 255, 255, 0.75);
        }

        body.dark-theme h1, 
        body.dark-theme h2, 
        body.dark-theme h3, 
        body.dark-theme h4, 
        body.dark-theme h5, 
        body.dark-theme h6, 
        body.dark-theme .brand-text {
            color: #ffffff;
        }

        body.dark-theme .navbar-custom {
            background-color: #2c352a;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            box-shadow: none;
        }

        body.dark-theme .nav-link {
            color: rgba(255, 255, 255, 0.75) !important;
        }
        
        body.dark-theme .nav-link:hover, 
        body.dark-theme .nav-link.active {
            color: #ffffff !important;
        }

        body.dark-theme .nav-link.active::after {
            background-color: #b1986f;
        }

        body.dark-theme .dropdown-menu {
            background-color: #3f4b3d;
            border-color: rgba(255, 255, 255, 0.1);
        }

        body.dark-theme .dropdown-item {
            color: rgba(255, 255, 255, 0.8);
        }

        body.dark-theme .dropdown-item:hover {
            background-color: rgba(255, 255, 255, 0.05);
            color: #c3ab83;
        }

        body.dark-theme .theme-toggle-btn {
            color: #fbbf24;
            border-color: rgba(255, 255, 255, 0.3);
        }

        body.dark-theme .theme-toggle-btn:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }

        body.dark-theme .breadcrumb-nav {
            color: rgba(255, 255, 255, 0.5);
        }

        body.dark-theme .breadcrumb-nav a {
            color: rgba(255, 255, 255, 0.5);
        }

        body.dark-theme .breadcrumb-nav a:hover {
            color: #ffffff;
        }

        body.dark-theme .breadcrumb-nav span {
            color: #ffffff;
        }

        body.dark-theme .treatments-hero {
            background: transparent;
        }

        body.dark-theme .hero-label {
            color: #b1986f;
        }

        body.dark-theme .hero-desc {
            color: rgba(255, 255, 255, 0.75);
        }

        body.dark-theme .hf-title,
        body.dark-theme .t-title,
        body.dark-theme .benefit-title,
        body.dark-theme .cta-heading,
        body.dark-theme .quote-text {
            color: #ffffff;
        }

        body.dark-theme .hf-desc,
        body.dark-theme .t-desc,
        body.dark-theme .benefit-desc,
        body.dark-theme .cta-desc {
            color: rgba(255, 255, 255, 0.75);
        }
        
        body.dark-theme .hf-icon {
            color: #c3ab83;
        }

        body.dark-theme .treatment-card,
        body.dark-theme .benefits-strip,
        body.dark-theme .cta-banner,
        body.dark-theme .floating-quote-card {
            background: rgba(73, 87, 70, 0.75);
            border-color: rgba(255, 255, 255, 0.12);
        }

        body.dark-theme .cta-banner {
            border-color: #b1986f;
        }

        body.dark-theme .t-icon-circle,
        body.dark-theme .benefit-icon,
        body.dark-theme .quote-icon {
            background-color: #1e293b;
            color: #c3ab83;
            border-color: rgba(255,255,255,0.12);
        }

        body.dark-theme .cta-icon-circle {
            background-color: rgba(177, 152, 111, 0.15);
            color: #c3ab83;
        }

        body.dark-theme .btn-outline-custom {
            color: #ffffff;
            border-color: rgba(255, 255, 255, 0.3);
        }

        body.dark-theme .btn-outline-custom:hover {
            background-color: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.5);
        }

        /* Responsive Design */
        @media (max-width: 1199.98px) {
            .hero-title { font-size: 56px; }
            .treatments-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .benefits-strip {
                flex-direction: column;
                align-items: stretch;
                gap: 24px;
            }
            .benefits-group {
                flex-wrap: wrap;
            }
            .benefit-image-wrapper {
                margin-left: 0;
                width: 100%;
                height: 120px;
                border-radius: 20px;
            }
            .cta-banner {
                flex-direction: column;
                align-items: flex-start;
                gap: 24px;
            }
        }

        @media (max-width: 991.98px) {
            .treatments-hero { padding: 40px 0; }
            .hero-image-wrapper { margin-top: 40px; border-radius: 80px 20px 20px 80px; }
            .treatments-grid { grid-template-columns: repeat(2, 1fr); }
            .floating-quote-card {
                bottom: 20px;
                right: 20px;
                padding: 16px;
            }
            .quote-text { font-size: 18px; }
        }

        @media (max-width: 767.98px) {
            p { text-align: left !important; }
            .text-center p { text-align: center !important; }
            .hero-title { font-size: 40px; }
            .hero-features { grid-template-columns: 1fr; }
            .treatments-grid { grid-template-columns: 1fr; }
            .hero-image-wrapper { border-radius: 40px 20px 20px 40px; height: 400px; }
            .benefits-group { flex-direction: column; align-items: flex-start; gap: 20px; }
            .cta-left { flex-direction: column; align-items: flex-start; }
            .cta-actions { flex-direction: column; width: 100%; }
            .cta-actions a { width: 100%; }


        }
        @media (min-width: 768px) {
            p { text-align: justify; }
        }

        /* --- New Patients Welcome Section CSS --- */
        .new-patient-section {
            background-color: #ffffff;
            position: relative;
            overflow: hidden;
            padding: 60px 0; /* Smaller section padding to reduce size */
        }
        body.dark-theme .new-patient-section {
            background-color: transparent;
        }
        .new-patient-list {
            list-style: none !important;
            padding: 0;
            margin: 24px 0 32px 0;
        }
        .new-patient-list li {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 16px;
            font-size: 16px;
            color: var(--text-gray);
            font-family: var(--body-font);
            list-style: none !important;
        }
        body.dark-theme .new-patient-list li {
            color: rgba(255, 255, 255, 0.75);
        }
        .check-icon-wrapper {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background-color: rgba(177, 152, 111, 0.15);
            color: var(--primary-blue);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            flex-shrink: 0;
            transition: var(--transition);
        }
        .new-patient-list li:hover .check-icon-wrapper {
            background-color: var(--primary-blue);
            color: #ffffff;
            transform: scale(1.1);
        }
        .new-patient-img-wrapper {
            position: relative;
            width: 100%;
            height: 380px; /* height for mobile/tablets */
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
            animation: fadeInUp 0.8s ease-out 0.2s backwards;
            transition: var(--transition);
        }
        body.dark-theme .new-patient-img-wrapper {
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        .new-patient-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .new-patient-img-wrapper:hover {
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
        }
        body.dark-theme .new-patient-img-wrapper:hover {
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
        }
        .new-patient-img-wrapper:hover .new-patient-img {
            transform: scale(1.04);
        }
        @media (min-width: 992px) {
            .new-patient-row {
                align-items: center !important; /* Center columns vertically */
            }
            .new-patient-img-wrapper {
                height: 480px; /* Increased height on desktop */
            }
        }

        /* Hide native calendar picker indicator in date inputs */
        .form-control-custom::-webkit-calendar-picker-indicator {
            display: none !important;
            -webkit-appearance: none !important;
        }

        /* Team Modal Premium Styles */
        .team-card {
            cursor: pointer;
            transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
        }
        .team-card:active {
            transform: scale(0.98);
        }
        .team-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 10000;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }
        .team-modal.active {
            opacity: 1;
            visibility: visible;
        }
        .team-modal-backdrop {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(13, 22, 16, 0.85); /* dark green tinted backdrop overlay */
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
        }
        .team-modal-content {
            position: relative;
            background-color: #233222; /* premium dark forest green background matching reference image */
            color: #ffffff;
            width: 90%;
            max-width: 500px;
            border-radius: 24px;
            padding: 40px 30px;
            z-index: 10001;
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(177, 152, 111, 0.15);
            transform: scale(0.9) translateY(20px);
            transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
            border: 1px solid rgba(177, 152, 111, 0.15);
            opacity: 0;
        }
        .team-modal.active .team-modal-content {
            transform: scale(1) translateY(0);
            opacity: 1;
        }
        .team-modal-close {
            position: absolute;
            top: 25px;
            right: 25px;
            background: transparent;
            border: none;
            color: rgba(255, 255, 255, 0.6);
            font-size: 24px;
            cursor: pointer;
            transition: color 0.3s ease, transform 0.3s ease;
            line-height: 1;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }
        .team-modal-close:hover {
            color: #ffffff;
            background-color: rgba(255, 255, 255, 0.05);
            transform: rotate(90deg);
        }
        .team-modal-body {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        .team-modal-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 36px;
            font-weight: 500;
            color: #d6c09b; /* elegant gold/bronze title */
            margin-bottom: 25px;
            margin-top: 10px;
            letter-spacing: 0.5px;
            line-height: 1.2;
        }
        .team-modal-image-container {
            width: 160px;
            height: 160px;
            margin-bottom: 25px;
            border-radius: 50%;
            overflow: hidden;
            border: 3px solid #b1986f; /* gold border around circular image */
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
            background-color: #3f4b3d;
        }
        .team-modal-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .team-modal-role {
            font-family: 'Inter', sans-serif;
            font-size: 18px;
            font-weight: 600;
            color: #b1986f;
            margin-bottom: 6px;
            letter-spacing: 0.5px;
        }
        .team-modal-gdc {
            font-family: 'Inter', sans-serif;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.5);
            margin-bottom: 20px;
            letter-spacing: 1px;
            text-transform: uppercase;
        }
        .team-modal-bio {
            font-family: 'Inter', sans-serif;
            font-size: 14.5px;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 30px;
            max-width: 420px;
            font-weight: 300;
        }
        .team-modal-footer {
            width: 100%;
            display: flex;
            justify-content: center;
        }
        .team-modal-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 14px 35px;
            border-radius: 30px;
            background: #b1986f; /* primary gold button background */
            color: #1e2b1d; /* dark green text for readability */
            text-decoration: none;
            font-size: 16px;
            font-weight: 600;
            transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 8px 25px rgba(177, 152, 111, 0.3);
        }
        .team-modal-btn:hover {
            background-color: #d6c09b;
            color: #1e2b1d;
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(177, 152, 111, 0.5);
        }
        .team-modal-btn i {
            font-size: 16px;
            transition: transform 0.3s ease;
        }
        .team-modal-btn:hover i {
            transform: translateX(4px);
        }

        /* About Page Centered 3x2 Grid Styling */
        .about-feature-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto; /* centers the grid horizontally */
            padding-top: 40px;
            padding-bottom: 60px;
            width: 100%;
        }

        @media (max-width: 991.98px) {
            .about-feature-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 767.98px) {
            .about-feature-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Referral Form Layout & Styles */
        .referral-section {
            padding: 60px 0 100px 0;
        }

        .referral-header {
            margin-bottom: 50px;
        }

        .referral-title {
            font-family: var(--heading-font);
            font-size: 48px;
            font-weight: 600;
            color: #173a28;
            margin-top: 15px;
            margin-bottom: 15px;
        }

        .referral-subtitle {
            font-size: 16px;
            color: var(--text-gray);
            max-width: 600px;
            margin: 15px auto 0 auto;
        }

        .referral-container {
            max-width: 850px;
            margin: 0 auto;
        }

        .referral-card {
            background: #ffffff;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
            border: 1px solid rgba(0, 0, 0, 0.05);
            margin-bottom: 30px;
            overflow: hidden;
        }

        .referral-card-header {
            background: rgba(85, 99, 79, 0.03); /* light green tint */
            padding: 24px 30px;
            display: flex;
            align-items: center;
            gap: 15px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

        .referral-card-header i {
            font-size: 20px;
            color: #b1986f; /* gold */
        }

        .referral-card-header h2 {
            font-family: var(--heading-font);
            font-size: 20px;
            font-weight: 600;
            color: #173a28;
            margin: 0;
        }

        .referral-card-body {
            padding: 30px;
        }

        .form-col-title {
            flex: 0 0 120px;
        }
        .form-col-name {
            flex: 1;
        }

        @media (max-width: 991.98px) {
            .form-col-title {
                flex: 1;
                width: 100%;
            }
            .form-col-name {
                flex: 1;
                width: 100%;
            }
        }

        /* Custom Checkbox Grid */
        .checkbox-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-top: 15px;
        }
        @media (max-width: 991.98px) {
            .checkbox-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 575.98px) {
            .checkbox-grid {
                grid-template-columns: 1fr;
            }
        }

        .checkbox-item {
            position: relative;
            display: flex;
            align-items: center;
        }

        .checkbox-item input[type="checkbox"] {
            position: absolute;
            opacity: 0;
            cursor: pointer;
            height: 0;
            width: 0;
        }

        .checkbox-label {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 14.5px;
            font-weight: 500;
            color: #173a28;
            cursor: pointer;
            user-select: none;
            transition: var(--transition);
        }

        .checkbox-checkmark {
            width: 24px;
            height: 24px;
            border: 1px solid #d1d5db;
            border-radius: 6px;
            background-color: #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
            color: transparent;
            font-size: 12px;
        }

        .checkbox-item input:checked ~ .checkbox-label .checkbox-checkmark {
            background-color: #b1986f;
            border-color: #b1986f;
            color: #ffffff;
        }

        .checkbox-item:hover .checkbox-checkmark {
            border-color: #b1986f;
        }

        /* Custom Radio Group */
        .radio-group {
            display: flex;
            gap: 30px;
            margin-top: 15px;
        }

        .radio-item {
            position: relative;
            display: flex;
            align-items: center;
        }

        .radio-item input[type="radio"] {
            position: absolute;
            opacity: 0;
            cursor: pointer;
            height: 0;
            width: 0;
        }

        .radio-label {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 14.5px;
            font-weight: 500;
            color: #173a28;
            cursor: pointer;
            user-select: none;
            transition: var(--transition);
        }

        .radio-checkmark {
            width: 24px;
            height: 24px;
            border: 1px solid #d1d5db;
            border-radius: 50%;
            background-color: #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
            position: relative;
        }

        .radio-checkmark::after {
            content: "";
            position: absolute;
            display: none;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: #ffffff;
        }

        .radio-item input:checked ~ .radio-label .radio-checkmark {
            background-color: #b1986f;
            border-color: #b1986f;
        }

        .radio-item input:checked ~ .radio-label .radio-checkmark::after {
            display: block;
        }

        .radio-item:hover .radio-checkmark {
            border-color: #b1986f;
        }

        /* Custom File Upload Area */
        .file-upload-wrapper {
            position: relative;
            width: 100%;
        }

        .file-upload-input {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            cursor: pointer;
            z-index: 2;
        }

        .file-upload-dropzone {
            border: 2px dashed rgba(177, 152, 111, 0.4);
            border-radius: 16px;
            background-color: rgba(177, 152, 111, 0.02);
            padding: 30px 20px;
            text-align: center;
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
        }

        .file-upload-icon {
            font-size: 32px;
            color: #b1986f;
        }

        .file-upload-text {
            font-size: 14.5px;
            color: #173a28;
            margin: 0;
            font-weight: 500;
        }

        .file-upload-text span {
            color: #b1986f;
            text-decoration: underline;
        }

        .file-upload-hint {
            font-size: 12px;
            color: #6b7280;
            margin: 0;
        }

        .file-upload-input:hover ~ .file-upload-dropzone {
            border-color: #b1986f;
            background-color: rgba(177, 152, 111, 0.05);
        }

        /* Submit Button */
        .btn-submit-referral {
            width: 100%;
            height: 60px;
            border-radius: 12px;
            background: #b1986f;
            color: #ffffff;
            font-size: 16px;
            font-weight: 600;
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: 0 8px 25px rgba(177, 152, 111, 0.25);
        }

        .btn-submit-referral:hover {
            background: #9f875e;
            transform: translateY(-2px);
            box-shadow: 0 12px 30px rgba(177, 152, 111, 0.4);
        }

        .btn-submit-referral:active {
            transform: translateY(0);
        }

        /* Dark Theme overrides */
        body.dark-theme .referral-title {
            color: #ffffff;
        }

        body.dark-theme .referral-subtitle {
            color: rgba(255, 255, 255, 0.7);
        }

        body.dark-theme .referral-card {
            background: rgba(73, 87, 70, 0.3);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(177, 152, 111, 0.15);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
        }

        body.dark-theme .referral-card-header {
            background: rgba(255, 255, 255, 0.02);
            border-bottom: 1px solid rgba(177, 152, 111, 0.15);
        }

        body.dark-theme .referral-card-header h2 {
            color: #ffffff;
        }

        body.dark-theme .checkbox-label {
            color: rgba(255, 255, 255, 0.9);
        }

        body.dark-theme .checkbox-checkmark {
            background-color: rgba(255, 255, 255, 0.02);
            border-color: rgba(177, 152, 111, 0.25);
        }

        body.dark-theme .radio-label {
            color: rgba(255, 255, 255, 0.9);
        }

        body.dark-theme .radio-checkmark {
            background-color: rgba(255, 255, 255, 0.02);
            border-color: rgba(177, 152, 111, 0.25);
        }

        body.dark-theme .file-upload-text {
            color: rgba(255, 255, 255, 0.9);
        }

        body.dark-theme .file-upload-hint {
            color: rgba(255, 255, 255, 0.4);
        }

        body.dark-theme .file-upload-dropzone {
            background-color: rgba(255, 255, 255, 0.01);
        }

        body.dark-theme .btn-submit-referral {
            background: #e0b04d;
            color: #1a1a1a;
            box-shadow: 0 8px 25px rgba(224, 176, 77, 0.25);
        }

        body.dark-theme .btn-submit-referral:hover {
            background: #f0bf58;
            box-shadow: 0 12px 30px rgba(224, 176, 77, 0.4);
        }

        /* Dropdown Contrast Styling Fix */
        select.form-control-custom option {
            background-color: #ffffff;
            color: #173a28;
        }
        body.dark-theme select.form-control-custom option {
            background-color: #3f4b3d; /* dark green to match dark card */
            color: #ffffff;
        }

        /* Typography Consistency Fix */
        .referral-container input,
        .referral-container select,
        .referral-container textarea,
        .referral-container button,
        .referral-container label,
        .referral-container span,
        .referral-container div {
            font-family: var(--body-font) !important;
        }

        .referral-container h1,
        .referral-container h2,
        .referral-container h3,
        .referral-container h4,
        .referral-container h5,
        .referral-container h6 {
            font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif !important;
        }

        /* Font details consistency */
        .referral-container .form-label {
            font-size: 13px;
            font-weight: 600;
            line-height: 1.5;
            letter-spacing: 0.02em;
        }
        .referral-container .form-control-custom {
            font-size: 14px;
            font-weight: 400;
            line-height: 1.5;
        }
        .referral-container .checkbox-label,
        .referral-container .radio-label {
            font-size: 14.5px;
            font-weight: 500;
            line-height: 1.5;
        }
        .referral-container .btn-submit-referral {
            font-size: 16px;
            font-weight: 600;
            letter-spacing: 0.03em;
        }

        /* Success Popup Modal Styling */
        .success-modal {
            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: 9999;
            align-items: center;
            justify-content: center;
        }

        .success-modal-content {
            background: #ffffff;
            border-radius: 20px;
            max-width: 450px;
            width: 90%;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
            border: 1px solid rgba(0, 0, 0, 0.05);
            animation: modalAppear 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        @keyframes modalAppear {
            from {
                opacity: 0;
                transform: scale(0.9) translateY(20px);
            }
            to {
                opacity: 1;
                transform: scale(1) translateY(0);
            }
        }

        .success-modal-icon {
            font-size: 60px;
            color: #b1986f; /* gold */
            margin-bottom: 20px;
        }

        .success-modal-content h2 {
            font-family: var(--heading-font);
            font-size: 24px;
            color: #173a28;
            margin-bottom: 12px;
            font-weight: 600;
        }

        .success-modal-content p {
            font-family: var(--body-font);
            font-size: 14.5px;
            color: var(--text-gray);
            line-height: 1.6;
            margin-bottom: 30px;
        }

        .btn-success-close {
            background-color: #b1986f;
            color: #ffffff;
            border: none;
            border-radius: 10px;
            padding: 12px 30px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            width: 100%;
        }

        .btn-success-close:hover {
            background-color: #9f875e;
            transform: translateY(-2px);
        }

        /* Dark theme overrides for success modal */
        body.dark-theme .success-modal-content {
            background: #233222;
            border: 1px solid rgba(177, 152, 111, 0.25);
        }

        body.dark-theme .success-modal-content h2 {
            color: #ffffff;
        }

        body.dark-theme .success-modal-content p {
            color: rgba(255, 255, 255, 0.7);
        }

        body.dark-theme .btn-success-close {
            background-color: #e0b04d;
            color: #1a1a1a;
        }

        body.dark-theme .btn-success-close:hover {
            background-color: #f0bf58;
        }

        /* Validation Error Messaging & Highlight Styles */
        .error-msg {
            color: #ef4444;
            font-size: 12px;
            font-weight: 500;
            margin-top: 5px;
            display: none;
            text-align: left;
        }
        .form-control-custom.input-error {
            border-color: #ef4444 !important;
            background-color: rgba(239, 68, 68, 0.02) !important;
        }
        body.dark-theme .form-control-custom.input-error {
            background-color: rgba(239, 68, 68, 0.05) !important;
        }

        /* ==================== PREMIUM MEGA MENU STYLING ==================== */
        @media (min-width: 1200px) {
            .pgn-dropdown.mega-dropdown {
                position: static !important;
            }

            .mega-menu {
                position: absolute;
                top: 100px;
                left: 0;
                width: 100%;
                background: linear-gradient(135deg, rgba(63, 75, 61, 0.98), rgba(44, 53, 42, 0.98));
                backdrop-filter: blur(25px);
                -webkit-backdrop-filter: blur(25px);
                border-bottom: 3px solid rgba(177, 152, 111, 0.35);
                border-top: 1px solid rgba(255, 255, 255, 0.08);
                box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
                padding: 40px 80px 45px 80px;
                opacity: 0;
                visibility: hidden;
                transform: translateY(15px);
                transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
                z-index: 999;
                display: grid;
                grid-template-columns: repeat(5, 1fr);
                gap: 35px;
            }

            .pgn-dropdown.mega-dropdown:hover .mega-menu {
                opacity: 1;
                visibility: visible;
                transform: translateY(0);
            }

            .mega-column {
                display: flex;
                flex-direction: column;
                transition: all 0.3s ease;
            }

            .mega-column-header {
                display: flex;
                align-items: center;
                gap: 12px;
                margin-bottom: 12px;
                text-decoration: none !important;
                transition: transform 0.3s ease;
            }

            .mega-column-header:hover {
                transform: translateX(4px);
            }

            .mega-icon {
                width: 38px;
                height: 38px;
                border-radius: 50%;
                background: rgba(177, 152, 111, 0.15);
                border: 1px solid rgba(177, 152, 111, 0.3);
                display: flex;
                align-items: center;
                justify-content: center;
                color: #d6c09b;
                font-size: 16px;
                transition: all 0.3s ease;
                flex-shrink: 0;
            }

            .mega-column-header:hover .mega-icon {
                background: #b1986f;
                color: #ffffff;
                border-color: #b1986f;
                box-shadow: 0 0 12px rgba(177, 152, 111, 0.4);
            }

            .mega-column-title {
                font-family: var(--heading-font);
                font-size: 19px;
                font-weight: 600;
                color: #ffffff;
                margin: 0;
                letter-spacing: 0.5px;
            }

            .mega-column-desc {
                font-size: 12.5px;
                color: rgba(255, 255, 255, 0.65);
                line-height: 1.5;
                margin-bottom: 20px;
                padding-left: 2px;
            }

            .mega-links-list {
                list-style: none;
                padding: 0 0 0 2px;
                margin: 0;
                display: flex;
                flex-direction: column;
                gap: 10px;
            }

            .mega-links-list li a {
                color: rgba(255, 255, 255, 0.8);
                text-decoration: none;
                font-size: 13.5px;
                font-weight: 450;
                transition: all 0.25s ease;
                display: inline-flex;
                align-items: center;
                gap: 6px;
            }

            .mega-links-list li a::before {
                content: '→';
                opacity: 0;
                transform: translateX(-8px);
                transition: all 0.25s ease;
                color: #d6c09b;
                font-size: 12px;
            }

            .mega-links-list li a:hover {
                color: #d6c09b;
                padding-left: 4px;
            }

            .mega-links-list li a:hover::before {
                opacity: 1;
                transform: translateX(0);
            }

            /* Light theme overrides for mega menu */
            body.light-theme .mega-menu {
                background: linear-gradient(135deg, rgba(255, 255, 255, 0.99), rgba(247, 245, 240, 0.99));
                border-bottom: 3px solid rgba(177, 152, 111, 0.4);
                border-top: 1px solid rgba(177, 152, 111, 0.15);
                box-shadow: 0 25px 50px rgba(63, 75, 61, 0.12);
            }

            body.light-theme .mega-column-title {
                color: #3f4b3d;
            }

            body.light-theme .mega-icon {
                background: rgba(177, 152, 111, 0.08);
                border-color: rgba(177, 152, 111, 0.25);
                color: #b1986f;
            }

            body.light-theme .mega-column-desc {
                color: #555555;
            }

            body.light-theme .mega-links-list li a {
                color: #444444;
            }

            body.light-theme .mega-links-list li a:hover {
                color: #b1986f;
            }
        }






