        /*
            Main Stylesheet
            Theme: Gold & Elegant
        */

        /* --- 1. CSS Reset & Base Styles --- */
        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            -webkit-text-size-adjust: 100%;
            -moz-tab-size: 4;
            tab-size: 4;
            line-height: 1.5;
        }

        body {
            /* Typography */
            font-family: 'Inter', sans-serif;
            background-color: #f8fbff;

            color: #333333;

            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            padding-bottom: 0;

        }

        /* Fix for body scroll lock */
        body.popup-open {
            overflow: hidden;
        }

        /* Typography Hierarchy */
        h1,
        h2,
        h3,
        h4,
        .section-title,
        .product-card-title,
        .director-name,
        .slide-title,
        .rate-card h4,
        .why-us-title,
        .faq-question-text {
            font-family: 'Playfair Display', serif;
            color: #111;
        }

        img,
        video,
        svg {
            display: block;
            max-width: 100%;
            height: auto;
        }

        a {
            color: inherit;
            text-decoration: inherit;
        }

        button {
            background-color: transparent;
            background-image: none;
            border: none;
            cursor: pointer;
        }

        .container {
            width: 100%;
            margin-left: auto;
            margin-right: auto;
            padding-left: 1rem;
            /* px-4 */
            padding-right: 1rem;
        }

        @media (min-width: 640px) {
            .container {
                max-width: 640px;
            }
        }

        @media (min-width: 768px) {
            .container {
                max-width: 768px;
            }
        }

        @media (min-width: 1024px) {
            .container {
                max-width: 1024px;
                padding-left: 1.5rem;
                /* lg:px-6 */
                padding-right: 1.5rem;
            }

            body {
                padding-bottom: 0;
                /* lg:pb-0 */
            }
        }

        @media (min-width: 1280px) {
            .container {
                max-width: 1280px;
            }
        }

        @media (min-width: 1536px) {
            .container {
                max-width: 1536px;
            }
        }

        .relative {
            position: relative;
        }

        .absolute {
            position: absolute;
        }

        .fixed {
            position: fixed;
        }

        .sticky {
            position: sticky;
        }

        .hidden {
            display: none;
        }

        /* --- 2. Animations & Custom Styles --- */
        .side-drawer {
            transition: transform 0.3s ease-in-out;
        }

        .drawer-open {
            transform: translateX(0) !important;
        }

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

        .reveal-on-scroll {
            opacity: 1;
            /* DEBUG: Force visible */
            transform: translateY(0);
            /* DEBUG: Force visible */
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }

        .reveal-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* New Scroll Header Class (Shadow Only) */
        .header-scrolled .main-header {
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
        }

        /* Sticky Wrapper for Top Bar + Header */
        .sticky-wrapper {
            position: sticky;
            top: 0;
            z-index: 100;
            /* High z-index to stay on top */
            width: 100%;
        }

        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }

        ::-webkit-scrollbar-thumb {
            background: #3673a5;
            border-radius: 10px;
        }

        /* GOLD */
        ::-webkit-scrollbar-thumb:hover {
            background: #2b5a80;
        }

        /* --- Hero Slider (FIX) --- */
        .slider-container {
            position: relative;
            width: 100%;
            height: 60vh;
            /* Base height */
            max-height: 90vh;
            overflow: hidden;
        }

        @media (max-width: 767px) {
            .slider-container {
                height: 56.25vw;
                /* 16:9 aspect ratio */
            }
        }

        @media (min-width: 768px) {
            .slider-container {
                height: 75vh;
                /* Taller on desktop */
            }
        }

        .slide {
            position: absolute;
            width: 100%;
            height: 100%;
            transition: opacity 1s ease-in-out, transform 1s ease-in-out;
            opacity: 0;
            transform: scale(1.05);
            pointer-events: none;
        }

        .slide.active {
            opacity: 1;
            transform: scale(1);
            pointer-events: auto;
        }

        .slide-bg {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

        @media (min-width: 1024px) {

            /* lg breakpoint */
            .slide-overlay-container {
                transform: translateX(-100%);
            }

            .slide.active .slide-overlay-container {
                animation: slideInFromLeft 1s cubic-bezier(0.23, 1, 0.32, 1) 1.2s both;
            }
        }

        .slide.active .slide-content {
            animation: fadeInUp 0.8s ease-out 1.8s both;
        }

        @keyframes slideInFromLeft {
            from {
                transform: translateX(-100%);
            }

            to {
                transform: translateX(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInMobileOverlay {
            from {
                background-color: transparent;
            }

            to {
                background-color: rgba(0, 0, 0, 0.5);
            }
        }

        @media (max-width: 1023px) {

            /* Up to lg breakpoint */
            .slide-overlay-container {
                background-color: transparent;
                /* Start transparent */
            }

            .slide.active .slide-overlay-container {
                animation: fadeInMobileOverlay 0.8s ease-out 1.2s both;
                /* Start just before text */
            }
        }

        /* --- Product Category Carousel (FIX) --- */
        .carousel-container {
            position: relative;
            overflow: hidden;
            -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
            mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
        }

        .carousel-track {
            display: flex;
        }

        /* --- New Product Nav Button Styles --- */
        .product-nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 10;
            background-color: rgba(0, 0, 0, 0.5);
            color: white;
            border-radius: 50%;
            width: 2.5rem;
            /* 40px */
            height: 2.5rem;
            /* 40px */
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            transition: background-color 0.3s ease, opacity 0.3s ease;
            opacity: 1;
        }

        .product-nav-btn:hover {
            background-color: rgba(0, 0, 0, 0.8);
        }

        #product-prev-btn {
            left: 0.5rem;
            /* 8px */
        }

        #product-next-btn {
            right: 0.5rem;
            /* 8px */
        }

        @media (min-width: 1024px) {

            /* lg and up */
            .product-nav-btn {
                display: none;
                opacity: 0;
            }

            .carousel-container:hover .product-nav-btn {
                display: flex;
                opacity: 1;
            }
        }


        /* --- New Slider Nav Button Styles --- */
        .slider-nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 10;
            background-color: rgba(0, 0, 0, 0.3);
            color: white;
            border-radius: 50%;
            width: 3rem;
            /* 48px */
            height: 3rem;
            /* 48px */
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            /* 24px */
            transition: all 0.3s ease;
            opacity: 1;
        }

        .slider-nav-btn:hover {
            background-color: rgba(0, 0, 0, 0.6);
            transform: translateY(-50%) scale(1.05);
        }

        .slider-prev-btn {
            left: 1rem;
            /* 16px */
        }

        .slider-next-btn {
            right: 1rem;
            /* 16px */
        }

        @media (max-width: 767px) {

            /* Mobile */
            .slider-nav-btn {
                width: 2.5rem;
                /* 40px */
                height: 2.5rem;
                /* 40px */
                font-size: 1.25rem;
                /* 20px */
            }
        }

        @media (min-width: 1024px) {

            /* lg and up */
            .slider-nav-btn {
                opacity: 0;
            }

            .slider-container:hover .slider-nav-btn {
                opacity: 1;
            }
        }

        /* --- 3. Re-created Component Styles --- */

        /* --- Pulse Animation for Top Bar Text --- */
        @keyframes text-shimmer {
            0% {
                color: #d1e9fa;
            }

            50% {
                color: #ffffff;
                text-shadow: 0 0 8px rgba(209, 233, 250, 0.6);
            }

            100% {
                color: #d1e9fa;
            }
        }

        /* --- Static Top Bar Styles --- */
        .top-bar {
            background-color: #111;
            /* Dark BG */
            padding: 0.75rem 0;
            font-family: 'Inter', sans-serif;
            z-index: 60;
            position: relative;
            text-align: center;
        }

        .top-bar-flex {
            display: flex;
            justify-content: center;
            /* Center the text */
            align-items: center;
            flex-wrap: wrap;
            /* Allow wrapping on very small screens */
            gap: 1.5rem;
            /* Space between items */
        }

        .rate-item {
            color: #d1e9fa;
            /* Pale Blue */
            font-size: 0.9rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            /* APPLY PULSE ANIMATION */
            animation: text-shimmer 2s infinite ease-in-out;
        }

        .rate-divider {
            color: #666;
            display: block;
            font-size: 0.9rem;
            margin: 0 0.5rem;
        }

        @media (max-width: 640px) {
            .hidden-mobile {
                display: none !important;
            }

            .rate-item {
                display: block;
                width: 100%;
            }
        }

        /* Mobile adjustment: Single line view with reduced font */
        @media (max-width: 480px) {
            .top-bar .container {
                padding-left: 0.25rem;
                padding-right: 0.25rem;
            }

            .top-bar-flex {
                gap: 0.2rem;
                flex-direction: row;
                /* Keep as row */
                flex-wrap: nowrap;
                /* Prevent wrapping */
                justify-content: center;
            }

            .rate-item {
                font-size: 3.1vw;
                /* Responsive size based on width */
                white-space: nowrap;
            }

            .rate-divider {
                display: block;
                /* Show divider */
                font-size: 3.1vw;
                margin: 0 1px;
            }
        }

        /* --- Header --- */
        .main-header {
            background: linear-gradient(to bottom, #3673a5, #0e2232);
            /* bg-black - to gradient */
            /* REMOVED: position: sticky etc. Now handled by wrapper */
            /* box-shadow moved to .header-scrolled class */
            transition: box-shadow 300ms ease;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 0.75rem;
            /* py-3 */
            padding-bottom: 0.75rem;
        }

        .logo {
            height: 2.5rem;
            /* h-10 */
            width: auto;
        }

        .nav-links {
            display: none;
            /* hidden */
            align-items: center;
        }

        .nav-links>*:not(:first-child) {
            margin-left: 2rem;
            /* space-x-8 */
        }

        .nav-link {
            color: #ffffff;
            /* text-white - */
            font-weight: 500;
            /* font-medium */
            transition: color 300ms;
            font-size: 0.95rem;
        }

        /* THEME */
        .nav-link:hover {
            color: #d1e9fa;
            /* hover:text-pale-blue - */
        }

        .nav-link.active {
            color: #d1e9fa;
            /* text-pale-blue - */
            font-weight: 700;
            /* font-bold */
        }

        .nav-link.has-dropdown {
            display: flex;
            align-items: center;
        }

        .nav-link.has-dropdown i {
            margin-left: 0.5rem;
            /* ml-2 */
            font-size: 0.75rem;
            /* text-xs */
        }

        /* Dropdown Menu */
        .group {
            position: relative;
        }

        .dropdown-menu {
            display: none;
            position: absolute;
            background-color: #ffffff;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
            /* shadow-lg */
            border-radius: 0.5rem;
            /* rounded-lg */
            padding-top: 1rem;
            /* pt-4 */
            padding-bottom: 0.5rem;
            /* pb-2 */
            width: 16rem;
            /* w-64 */
            z-index: 10;
            top: 100%;
            /* top-full */
            opacity: 0;
            transform: translateY(10px);
            transition: opacity 0.3s ease, transform 0.3s ease;
        }

        .group:hover .dropdown-menu {
            display: block;
            /* group-hover:block */
            opacity: 1;
            transform: translateY(0);
        }

        .dropdown-link {
            display: block;
            padding: 0.5rem 1rem;
            /* px-4 py-2 */
            color: #4b5563;
            /* text-gray-600 */
        }

        /* THEME */
        .dropdown-link:hover {
            background-color: #f8fbff;
            /* hover:bg-light-blue */
            color: #2b5a80;
            /* hover:text-dark-blue */
        }

        /* THEME */
        .cta-button {
            display: none;
            /* hidden */
            background-color: #3673a5;
            /* bg-steel-blue */
            color: #ffffff;
            /* text-white */
            font-weight: 600;
            /* font-semibold */
            padding: 0.5rem 1.5rem;
            /* px-6 py-2 */
            border-radius: 9999px;
            /* rounded-full */
            /* box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1); */
            /* shadow-lg - REMOVED */
            transition: all 300ms;
        }

        .cta-button:hover {
            background-color: #2b5a80;
            /* hover:bg-dark-blue */
            transform: scale(1.05);
            /* hover:scale-105 */
        }

        /* NEW: Header Phone Link (REMOVED) */

        .mobile-menu-toggle {
            font-size: 1.5rem;
            /* text-2xl */
            color: #ffffff;
            /* text-white */
            display: block;
            cursor: pointer;
            background: transparent;
            border: none;
            z-index: 60;
        }

        @media (min-width: 1024px) {

            /* lg: */
            .nav-container {
                padding-top: 1rem;
                /* lg:py-4 */
                padding-bottom: 1rem;
            }

            .logo {
                height: 3rem;
            }

            /* lg:h-12 */
            .nav-links {
                display: flex;
            }

            /* lg:flex */
            .cta-button {
                display: inline-flex;
                /* CHANGED */
                align-items: center;
                /* ADDED */
            }

            .mobile-menu-toggle {
                display: none;
            }

            /* lg:hidden */
        }

        /* --- Mobile Drawer --- */
        .side-drawer {
            position: fixed;
            top: 0;
            left: 0;
            height: 100%;
            width: 16rem;
            /* w-64 */
            background-color: #111827;
            /* bg-gray-900 */
            color: #ffffff;
            /* text-white */
            z-index: 50;
            padding: 1.5rem;
            /* p-6 */
            transform: translateX(-100%);
            /* -translate-x-full */
            transition: transform 0.3s ease-in-out;
        }

        .side-drawer.drawer-open {
            transform: translateX(0);
        }

        .close-drawer-btn {
            position: absolute;
            top: 1rem;
            /* top-4 */
            right: 1rem;
            /* right-4 */
            font-size: 1.5rem;
            /* text-2xl */
        }

        .drawer-links {
            margin-top: 3rem;
            /* mt-12 */
            display: flex;
            flex-direction: column;
        }

        .drawer-links>*:not(:first-child) {
            margin-top: 1.5rem;
            /* space-y-6 */
        }

        .drawer-link {
            font-size: 1.125rem;
            /* text-lg */
            line-height: 1.75rem;
            font-weight: 500;
            /* font-medium */
        }

        /* THEME */
        .drawer-link:hover {
            color: #d1e9fa;
            /* hover:text-light-gold */
        }

        .drawer-link.active {
            color: #d1e9fa;
            /* text-light-gold */
        }

        .drawer-link.cta-button {
            display: inline-block;
            margin-top: 1rem;
            /* mt-4 */
            text-align: center;
        }

        .drawer-overlay {
            position: fixed;
            inset: 0;
            background-color: rgba(0, 0, 0, 0.5);
            /* bg-black bg-opacity-50 */
            z-index: 40;
            display: none;
            /* hidden */
        }

        @media (max-width: 1023px) {

            /* lg:hidden */
            .hidden-mobile {
                display: none !important;
            }

            /* ADDED: Mobile only padding */
            body {
                padding-bottom: 4.5rem;
            }
        }

        @media (min-width: 1024px) {

            /* lg: */
            .side-drawer {
                display: none;
            }

            .drawer-overlay {
                display: none !important;
            }

            /* !important to override JS */
        }

        /* --- DRAWER ACCORDION STYLES --- */
        .drawer-accordion-btn {
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: none;
            border: none;
            color: #ffffff;
            font-size: 1.125rem;
            /* text-lg */
            font-weight: 500;
            padding: 0;
            cursor: pointer;
            text-align: left;
            font-family: inherit;
            margin-top: 0;
        }

        .drawer-accordion-btn:hover {
            color: #d1e9fa;
        }

        .drawer-accordion-btn i {
            font-size: 0.875rem;
            transition: transform 0.3s;
        }

        .drawer-accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out, margin-top 0.3s;
            padding-left: 1rem;
            border-left: 2px solid #374151;
            margin-left: 0.5rem;
        }

        .drawer-accordion-content.open {
            max-height: 500px;
            /* Arbitrary large height */
            margin-top: 1rem;
        }

        .drawer-accordion-content .drawer-link {
            display: block;
            margin-top: 0.75rem;
            font-size: 1rem;
            color: #9ca3af;
        }

        .drawer-accordion-content .drawer-link:hover {
            color: #ffffff;
        }

        /* --- Hero Slider --- */
        .slide-overlay-container {
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 100%;
            display: flex;
            align-items: center;
            z-index: 10;
        }

        /* THEME */
        .slide-overlay-1 {
            background-color: rgba(31, 41, 55, 0.8);
        }

        /* lg:bg-gray-800/80 */
        .slide-overlay-2 {
            background-color: rgba(54, 115, 165, 0.85);
        }

        /* lg:bg-gold-dark/80 */
        .slide-overlay-3 {
            background-color: rgba(31, 41, 55, 0.8);
        }

        /* lg:bg-gray-800/80 */

        .hero-container {
            padding-left: 1.5rem;
            /* px-6 */
            padding-right: 1.5rem;
        }

        .slide-content {
            color: #ffffff;
            /* text-white */
            text-align: center;
        }

        .slide-title {
            font-size: 1.875rem;
            /* text-3xl */
            line-height: 2.25rem;
            font-weight: 700;
            /* font-bold */
            margin-bottom: 1rem;
            /* mb-4 */
            line-height: 1.1;
            /* leading-tight */
            color: #ffffff;
            /* Override heading color */
        }

        .slide-subtitle {
            font-size: 1.5rem;
            /* text-2xl */
            line-height: 2rem;
            font-weight: 600;
            /* font-semibold */
            margin-bottom: 1rem;
            /* mb-4 */
            color: #e5e7eb;
            /* text-gray-200 */
        }

        .slide-description {
            display: none;
            /* hidden */
            font-size: 1.125rem;
            /* text-lg */
            line-height: 1.75rem;
            margin-bottom: 2rem;
            /* mb-8 */
            color: #e5e7eb;
            /* text-gray-200 */
        }

        .slide-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            /* gap-4 */
            justify-content: center;
            position: relative;
            z-index: 20;
            pointer-events: auto;
        }

        .slide-button-primary {
            display: none;
            /* hidden */
            background-color: #ffffff;
            /* bg-white */
            color: #1f2937;
            /* text-gray-800 */
            font-weight: 600;
            padding: 0.75rem 1.5rem;
            /* px-6 py-3 */
            border-radius: 9999px;
            /* box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1); */
            /* REMOVED */
            transition: all 300ms;
        }

        .slide-button-primary:hover {
            background-color: #e5e7eb;
            /* hover:bg-gray-200 */
            transform: scale(1.05);
        }

        /* THEME */
        .slide-button-secondary {
            background-color: #3673a5;
            /* bg-gold-primary */
            border: 2px solid #3673a5;
            /* border-gold-primary */
            color: #ffffff;
            font-weight: 600;
            padding: 0.5rem 1.25rem;
            /* px-5 py-2 */
            font-size: 0.875rem;
            /* text-sm */
            border-radius: 9999px;
            /* box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1); */
            /* REMOVED */
            transition: all 300ms;
        }

        .slide-button-secondary:hover {
            background-color: #2b5a80;
            /* hover:bg-gold-dark */
            border-color: #2b5a80;
        }

        .slide-button-tertiary {
            /* For slide 2 */
            background-color: #3673a5;
            /* bg-gold-primary */
        }

        .slide-button-tertiary:hover {
            background-color: #2b5a80;
            /* hover:bg-gold-dark */
        }

        .cta-button {
            display: none;
            background: linear-gradient(to right, #4a90cd, #3673a5);
            /* Gold Gradient */
            color: #ffffff;
            font-weight: 600;
            padding: 0.5rem 1.5rem;
            border-radius: 9999px;
            transition: all 300ms;
            text-decoration: none;
            box-shadow: 0 4px 6px -1px rgba(184, 155, 62, 0.3);
        }

        .slide-button-outline {
            /* For slide 2 */
            background-color: transparent;
            border: 2px solid #ffffff;
            color: #ffffff;
            font-weight: 600;
            padding: 0.75rem 1.5rem;
            border-radius: 9999px;
            /* box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1); */
            /* REMOVED */
            transition: all 300ms;
            display: none;
        }

        .slide-button-outline:hover {
            background-color: #ffffff;
            color: #2b5a80;
            /* hover:text-gold-dark */
        }

        .slide-button-outline.gray:hover {
            color: #1f2937;
            /* hover:text-gray-800 */
        }

        .slider-dots {
            position: absolute;
            bottom: 1.25rem;
            /* bottom-5 */
            left: 50%;
            transform: translateX(-50%);
            display: flex;
        }

        .slider-dots>*:not(:first-child) {
            margin-left: 0.5rem;
            /* space-x-2 */
        }

        .slider-dots button {
            width: 0.75rem;
            /* w-3 */
            height: 0.75rem;
            /* h-3 */
            border-radius: 50%;
            border: 2px solid #ffffff;
            transition: background-color 300ms;
        }

        .slider-dots button.bg-white {
            background-color: #ffffff;
        }

        @media (min-width: 640px) {

            /* sm: */
            .slide-title {
                font-size: 2.25rem;
                /* sm:text-4xl */
                line-height: 2.5rem;
            }

            .slide-subtitle {
                font-size: 1.875rem;
                /* sm:text-3xl */
                line-height: 2.25rem;
            }
        }

        @media (min-width: 768px) {

            /* md: */
            .slide-title {
                font-size: 3rem;
                /* md:text-5xl */
                line-height: 1;
            }

            .slide-subtitle {
                font-size: 2.25rem;
                /* md:text-4xl */
                line-height: 2.5rem;
            }

            .slide-description {
                font-size: 1.25rem;
                /* md:text-xl */
                line-height: 1.75rem;
            }
        }

        @media (min-width: 1024px) {

            /* lg: */
            .slide-overlay-container {
                width: 50%;
                /* lg:w-1/2 */
            }

            .hero-container {
                padding-left: 3rem;
                /* lg:px-12 */
                padding-right: 3rem;
            }

            .slide-content {
                text-align: left;
            }

            /* lg:text-left */
            .slide-description {
                display: block;
            }

            /* lg:block */
            .slide-buttons {
                justify-content: flex-start;
            }

            /* lg:justify-start */
            .slide-button-primary {
                display: inline-block;
            }

            /* lg:inline-block */
            .slide-button-secondary {
                padding: 0.75rem 1.5rem;
                /* lg:px-6 lg:py-3 */
                font-size: 1rem;
                /* lg:text-base */
            }

            .slide-button-outline {
                display: inline-block;
            }

            /* lg:inline-block */
        }

        /* --- Section (General) --- */
        .section {
            padding-top: 4rem;
            /* py-16 */
            padding-bottom: 4rem;
        }

        .section.bg-white {
            background-color: #ffffff;
        }

        .section.bg-gray-50 {
            background-color: #f8fbff;
        }

        /* */
        .section.bg-ivory {
            background-color: #f8fbff;
        }

        /* NEW */

        .section-header {
            text-align: center;
            margin-bottom: 3rem;
            /* mb-12 */
        }

        .section-title {
            font-size: 1.875rem;
            /* text-3xl */
            line-height: 2.25rem;
            font-weight: 700;
            /* font-bold */
        }

        .section-title.mb-4 {
            margin-bottom: 1rem;
        }

        .section-subtitle {
            margin-top: 1rem;
            /* mt-4 */
            color: #6b7280;
            /* text-gray-600 */
            max-width: 42rem;
            /* max-w-2xl */
            margin-left: auto;
            margin-right: auto;
        }

        .text-gray-600 {
            color: #6b7280;
        }

        .mb-6 {
            margin-bottom: 1.5rem;
        }

        .mb-8 {
            margin-bottom: 2rem;
        }

        .font-semibold {
            font-weight: 600;
        }

        .text-center {
            text-align: center;
        }

        .mt-8 {
            margin-top: 2rem;
        }

        @media (min-width: 1024px) {

            /* lg: */
            .section {
                padding-top: 6rem;
                /* lg:py-24 */
                padding-bottom: 6rem;
            }

            .section-title {
                font-size: 2.25rem;
                /* lg:text-4xl */
                line-height: 2.5rem;
            }
        }

        /* --- Product Carousel --- */
        .product-card-link {
            display: block;
            margin-left: 1rem;
            /* mx-4 */
            margin-right: 1rem;
            flex-shrink: 0;
            width: 22rem;
            /* for Regular Hexagon (Flat Top) Aspect Ratio */
            position: relative;
            /* Added for enquiry button position */
        }

        .product-card-wrapper {
            position: relative;
            height: 19rem;
            /* for Regular Hexagon Aspect Ratio (W/H ~ 1.15) */
            /* border-radius: 0.5rem; */
            /* rounded-lg - REMOVED */
            overflow: hidden;
            /* box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1); */
            /* shadow-lg - REMOVED */
            transition: all 300ms;
            /* Hexagon clip-path (Flat Top/Bottom) */
            clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
        }

        /* FIXED: Updated hover logic to only affect specific card */
        .product-card-link:hover .product-card-wrapper {
            /* box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1); */
            /* group-hover:shadow-2xl - REMOVED */
        }

        .product-card-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 500ms ease-in-out;
        }

        /* FIXED: Updated hover logic */
        .product-card-link:hover .product-card-img {
            transform: scale(1.1);
        }

        .product-card-gradient {
            position: absolute;
            inset: 0;
            background-image: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
            /* bg-gradient-to-t from-black/80 to-transparent */
        }

        .product-card-content {
            position: absolute;
            bottom: 0;
            left: 0;
            padding: 1.5rem;
            /* p-6 */
            /* NEW: Center text */
            width: 100%;
            text-align: center;
            /* NEW: Add more bottom padding to clear the hexagon point */
            padding-bottom: 2.5rem;
        }

        .product-card-title {
            color: #ffffff;
            font-size: 1.5rem;
            /* text-2xl */
            line-height: 2rem;
            font-weight: 700;
            transition: transform 300ms ease-in-out;
        }

        /* FIXED: Updated hover logic */
        .product-card-link:hover .product-card-title {
            transform: translateY(-0.5rem);
        }

        /* --- NEW: Whatsapp Enquiry Button on Product Card --- */
        .product-whatsapp-btn {
            position: absolute;
            bottom: 2rem;
            /* Adjusted position to be inside the hexagon base */
            left: 50%;
            transform: translateX(-50%);
            display: inline-flex;
            align-items: center;
            padding: 0.5rem 1rem;
            background-color: #25D366;
            /* WhatsApp Green */
            color: white;
            border-radius: 9999px;
            font-size: 0.875rem;
            font-weight: 600;
            z-index: 5;
            /* Above gradient but below content (title) */
            opacity: 0;
            /* Hidden by default */
            transition: opacity 300ms ease, transform 300ms ease;
            text-decoration: none;
            width: 90%;
            /* Responsive width */
            justify-content: center;
        }

        .product-card-link:hover .product-whatsapp-btn {
            opacity: 1;
            /* Show on hover */
        }

        .product-whatsapp-btn i {
            margin-right: 0.5rem;
        }

        /* --- Why Choose Us (Promise of Purity) --- */
        .grid-2-cols {
            display: grid;
            gap: 3rem;
            /* gap-12 */
            align-items: center;
        }

        .section-image {
            border-radius: 0.5rem;
            /* rounded-lg */
            /* box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1); */
            /* shadow-xl - REMOVED */
            width: 100%;
        }

        /* THEME */
        .cta-button-large {
            display: inline-block;
            background: linear-gradient(to right, #4a90cd, #3673a5);
            /* bg-gold-gradient */
            color: #ffffff;
            /* text-white */
            font-weight: 600;
            /* font-semibold */
            padding: 0.75rem 2rem;
            /* px-8 py-3 */
            border-radius: 9999px;
            /* rounded-full */
            box-shadow: 0 4px 6px -1px rgba(184, 155, 62, 0.3);
            /* shadow-lg */
            transition: all 300ms;
        }

        .cta-button-large:hover {
            background: linear-gradient(to right, #3673a5, #2b5a80);
            /* hover:bg-gold-dark */
            transform: scale(1.05);
            /* hover:scale-105 */
            box-shadow: 0 10px 15px -3px rgba(184, 155, 62, 0.4);
        }

        .why-us-grid {
            margin-top: 4rem;
            /* mt-16 */
            display: grid;
            gap: 2rem;
            /* gap-8 */
        }

        .why-us-card {
            background-color: #ffffff;
            padding: 2rem;
            /* Increased padding */
            border-radius: 0.5rem;
            text-align: center;
            border: 1px solid #e5e7eb;
            border-top: 4px solid #3673a5;
            /* Blue Top Border */
            transition: all 300ms ease;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
            /* Subtle shadow */
            height: 100%;
            /* Ensure full height */
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .why-us-card:hover {
            transform: translateY(-0.5rem);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.01);
            /* Premium lift shadow */
            border-color: #3673a5;
        }

        /* THEME */
        .why-us-icon {
            color: #3673a5;
            font-size: 2.5rem;
            /* Larger icon */
            line-height: 1;
            margin-bottom: 1.5rem;
            /* Increased spacing */
            display: inline-block;
        }

        .why-us-title {
            font-family: 'Playfair Display', serif;
            /* Premium Heading Font */
            font-weight: 700;
            font-size: 1.35rem;
            color: #111827;
            /* text-gray-900 */
            line-height: 1.4;
            margin-bottom: 0.75rem;
        }

        .why-us-text {
            color: #6b7280;
            /* text-gray-600 */
            font-size: 0.875rem;
            /* text-sm */
            line-height: 1.25rem;
        }

        @media (min-width: 768px) {

            /* md: */
            .why-us-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            /* md:grid-cols-2 */
        }

        @media (min-width: 1024px) {

            /* lg: */
            .grid-2-cols {
                grid-template-columns: repeat(2, 1fr);
            }

            /* lg:grid-cols-2 */
            .why-us-grid {
                margin-top: 6rem;
                /* lg:mt-24 */
                grid-template-columns: repeat(4, 1fr);
                /* 4 Columns */
                gap: 2rem;
            }
        }

        /* --- NEW: USEFUL EXPERTISE (Category/Service Cards) --- */
        .expertise-section {
            padding: 2rem 0;
            background-color: #ffffff;
        }

        .expertise-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
            margin-top: 2rem;
        }

        @media (min-width: 768px) {
            .expertise-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .expertise-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .expertise-card {
            position: relative;
            border-radius: 0.75rem;
            overflow: hidden;
            aspect-ratio: 4/3;
            /* Consistent height */
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: block;
            text-decoration: none;
        }

        .expertise-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
        }

        .expertise-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

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

        .expertise-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.1) 60%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 1.5rem;
            transition: background 0.3s ease;
        }

        .expertise-card:hover .expertise-overlay {
            background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.2) 60%);
        }

        .expertise-card h4 {
            color: #ffffff;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            font-family: 'Playfair Display', serif;
        }

        .expertise-card span {
            color: #d1e9fa;
            /* Pale Blue accent */
            font-size: 0.9rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            opacity: 0.9;
        }


        /* --- NEW: Unbeatable Value Section --- */
        .value-section {
            background-color: #ffffff;
        }

        .value-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
            /* gap-6 */
        }

        @media (min-width: 768px) {
            .value-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .value-card {
            text-align: center;
            padding: 2rem 1.5rem;
            background-color: #f8fbff;
            /* bg-very-light-blue */
            border: 1px solid #d1e9fa;
            /* border-pale-blue */
            border-radius: 0.5rem;
            /* rounded-lg */
        }

        .value-icon {
            font-size: 2.5rem;
            /* text-5xl */
            color: #3673a5;
            /* text-steel-blue */
            margin-bottom: 1rem;
            /* mb-4 */
        }

        .value-card h3 {
            font-size: 1.5rem;
            /* text-2xl */
            font-weight: 700;
            margin-bottom: 0.5rem;
            /* mb-2 */
        }

        .value-card p {
            font-size: 1rem;
            /* text-base */
            color: #6b7280;
            /* text-gray-600 */
        }

        /* --- Footer --- */
        .footer {
            background: linear-gradient(to bottom, #3673a5, #0e2232);
            /* bg-black - to gradient */
            color: #ffffff;
            /* text-white */
        }

        .footer-container {
            padding-top: 4rem;
            /* pt-16 */
            padding-bottom: 2rem;
            /* pb-8 */
        }

        .footer-grid {
            display: grid;
            gap: 2rem;
            /* gap-8 */
        }

        .footer-logo {
            height: auto;
            width: 12rem;
            /* w-48 */
            margin-bottom: 1rem;
            /* mb-4 */
            margin-left: auto;
            /* Center on mobile */
            margin-right: auto;
            /* Center on mobile */
        }

        .footer-text {
            color: #9ca3af;
            /* text-gray-400 */
            font-size: 0.875rem;
            /* text-sm */
            line-height: 1.25rem;
        }

        .footer h4 {
            font-weight: 700;
            font-size: 1.125rem;
            /* text-lg */
            margin-bottom: 1rem;
            /* mb-4 */
            color: #ffffff;
            /* Override heading color */
        }

        .footer-links-list,
        .footer-contact-list {
            list-style: none;
        }

        .footer-links-list>*:not(:first-child) {
            margin-top: 0.5rem;
        }

        /* space-y-2 */
        .footer-contact-list>*:not(:first-child) {
            margin-top: 0.75rem;
        }

        /* space-y-3 */
        .footer-links-list a {
            color: #9ca3af;
            font-size: 0.875rem;
            transition: color 300ms;
        }

        .footer-links-list a:hover {
            color: #ffffff;
        }

        .footer-contact-item {
            display: flex;
            align-items: flex-start;
            color: #9ca3af;
            font-size: 0.875rem;
        }

        /* THEME */
        .footer-contact-item i {
            margin-top: 0.25rem;
            /* mt-1 */
            margin-right: 0.75rem;
            /* mr-3 */
            width: 1rem;
            /* w-4 */
            text-align: center;
            color: #d1e9fa;
            /* text-pale-blue */
        }

        .footer-contact-item a {
            transition: color 300ms;
        }

        .footer-contact-item a:hover {
            color: #ffffff;
        }

        /* NEW: Footer contact item text styling */
        .footer-contact-item span {
            display: block;
            line-height: 1.4;
        }

        .footer-contact-item span strong {
            color: #e5e7eb;
            /* Slightly brighter for the label */
        }

        /* End new styles */

        /* --- NEW: Small Footer Map Styles --- */
        .footer-small-map-container {
            overflow: hidden;
            border-radius: 0.5rem;
            border: 1px solid #4b5563;
            height: 120px;
            margin-bottom: 1.5rem;
            width: 100%;
        }

        .footer-small-map-container iframe {
            width: 100%;
            height: 100%;
            display: block;
            border: none;
        }

        /* --- NEW: Contact Section Map Styles (Rectangle above details) --- */
        .contact-map-container-rect {
            overflow: hidden;
            border-radius: 0.5rem;
            border: 1px solid #d1d5db;
            /* Light gray border */
            height: 200px;
            /* Taller than footer map, still compact */
            margin-bottom: 2rem;
            /* Space before details */
        }

        .contact-map-container-rect iframe {
            display: block;
            width: 100%;
            height: 100%;
            border: none;
        }

        /* REMOVED: .contact-map-container and .contact-map-iframe styles */

        .footer-copyright {
            text-align: center;
            color: #6b7280;
            /* text-gray-500 */
            margin-top: 0;
            padding-top: 2rem;
            /* pt-8 */
            font-size: 0.875rem;
            /* text-sm */
        }

        /* THEME */
        .footer-dev-link {
            font-weight: 600;
            color: #d1e9fa;
            /* text-pale-blue */
            transition: color 300ms;
        }

        .footer-dev-link:hover {
            color: #ffffff;
        }

        /* --- NEW: Full Width Review Button Wrapper --- */
        .footer-review-wrapper {
            width: 100%;
            padding-top: 2rem;
            /* Space from grid */
            padding-bottom: 2rem;
            /* ADDED padding below buttons */
            margin-top: 2rem;
            /* Space from grid */
            border-top: 1px solid #374151;
            /* Separator line (darker) */
            display: flex;
            justify-content: center;
        }

        /* --- NEW: Footer Review Buttons --- */
        .footer-review-buttons {
            margin-top: 0;
            /* Reset margin */
            display: flex;
            flex-direction: row;
            /* Side-by-side */
            gap: 0.75rem;
            /* gap-3 */
            align-items: center;
            justify-content: center;
        }

        .footer-review-btn {
            display: inline-flex;
            align-items: center;
            font-size: 0.875rem;
            /* text-sm */
            font-weight: 500;
            /* font-medium */
            color: #d1d5db;
            /* text-gray-300 */
            padding: 0.5rem 1rem;
            /* px-4 py-2 */
            border: 1px solid #4b5563;
            /* border-gray-600 */
            border-radius: 9999px;
            /* rounded-full */
            transition: all 300ms ease;
        }

        .footer-review-btn i {
            margin-right: 0.5rem;
            /* mr-2 */
            color: #f59e0b;
            /* text-yellow-500 */
        }

        .footer-review-btn:hover {
            background-color: #374151;
            /* hover:bg-gray-700 */
            color: #ffffff;
            /* hover:text-white */
            border-color: #374151;
            /* hover:border-gray-700 */
        }

        /* --- NEW: Footer Map Column --- */
        @media (min-width: 768px) {

            /* md: */
            .footer-map-column {
                grid-column: span 2 / span 2;
                /* md:col-span-2 */
            }
        }

        @media (min-width: 1024px) {

            /* lg: */
            .footer-map-column {
                grid-column: auto;
                /* Reset for lg */
            }
        }

        /* NEW: Footer Grid Columns */
        @media (min-width: 768px) {

            /* md: */
            .footer-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            /* md:grid-cols-3 */
            .footer-logo {
                margin-left: 0;
                /* Align left on desktop */
                margin-right: 0;
                /* Align left on desktop */
            }
        }

        @media (min-width: 1024px) {

            /* lg: */
            /* to 5 columns for new layout */
            /* to 5 columns for single row layout */
            .footer-grid {
                grid-template-columns: repeat(5, 1fr);
            }
        }

        /* --- Floating Buttons --- */
        .floating-buttons {
            position: fixed;
            bottom: 5rem;
            /* bottom-20 */
            right: 1rem;
            /* right-4 */
            z-index: 40;
            display: flex;
            flex-direction: column;
        }

        .floating-buttons>*:not(:first-child) {
            margin-top: 0.75rem;
            /* space-y-3 */
        }

        .float-btn {
            width: 3.5rem;
            /* w-14 */
            height: 3.5rem;
            /* h-14 */
            border-radius: 9999px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            font-size: 1.5rem;
            /* text-2xl */
            /* box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1); */
            /* REMOVED */
            transition: all 300ms;
        }

        .float-btn:hover {
            transform: scale(1.1);
        }

        .float-btn.whatsapp {
            background-color: #25D366;
            /* bg-green-500 */
        }

        .float-btn.whatsapp:hover {
            background-color: #16a34a;
            /* hover:bg-green-600 */
        }

        /* THEME */
        .float-btn.phone {
            background-color: #3673a5;
            /* bg-steel-blue */
        }

        .float-btn.phone:hover {
            background-color: #2b5a80;
            /* hover:bg-dark-blue */
        }

        .float-btn.google {
            background-color: #ffffff;
            /* bg-white */
            color: #DB4437;
            /* Google Red */
            font-size: 1.65rem;
            /* text-3xl, slightly larger star */
        }

        .float-btn.google:hover {
            background-color: #f1f1f1;
            /* hover:bg-gray-100 */
        }

        @media (min-width: 1024px) {

            /* lg: */
            .floating-buttons {
                bottom: 2rem;
                /* lg:bottom-8 */
            }
        }

        /* --- Mobile Bottom Nav (DESIGN) --- */
        .mobile-bottom-nav-wrapper {
            display: block;
        }

        .mobile-bottom-nav {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: #ffffff;
            /* Subtle top shadow */
            box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.08);
            z-index: 50;
            /* Safe area for modern iPhones */
            padding-bottom: env(safe-area-inset-bottom);
        }

        .mobile-bottom-nav-flex {
            display: grid;
            /* 5 Columns for Equal Width */
            grid-template-columns: repeat(5, 1fr);
            align-items: center;
            height: 60px;
            /* Fixed height */
        }

        .mobile-nav-link {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: #6b7280;
            /* text-gray-500 */
            height: 100%;
            transition: all 0.3s ease;
            /* No margin needed with Grid */
        }

        /* THEME */
        .mobile-nav-link:hover {
            color: #3673a5;
            /* hover:text-steel-blue */
            background-color: #f8fbff;
        }

        .mobile-nav-link.active {
            color: #3673a5;
            /* text-steel-blue */
            font-weight: 600;
        }

        .mobile-nav-icon {
            font-size: 1.35rem;
            /* Slightly larger icon */
            margin-bottom: 0.2rem;
        }

        .mobile-nav-text {
            font-size: 0.7rem;
            /* text-xs */
            line-height: 1;
        }

        @media (min-width: 1024px) {

            /* lg: */
            .mobile-bottom-nav-wrapper {
                display: none;
                /* lg:hidden */
            }

            body,
            body {
                /* Reset if needed, but now default is 0 */
            }
        }

        /* --- NEW: Contact Us Section --- */
        .contact-grid {
            display: grid;
            gap: 2rem;
            /* gap-8 */
            align-items: flex-start;
            /* Aligh to top */
        }

        @media (min-width: 1024px) {

            /* lg: */
            .contact-grid {
                grid-template-columns: repeat(2, 1fr);
                /* lg:grid-cols-2 */
                gap: 3rem;
                /* lg:gap-12 */
            }
        }

        /* REMOVED: .contact-map-container and .contact-map-iframe styles */

        .contact-details-container {
            padding: 0;
            /* Reset padding */
        }

        @media (min-width: 1024px) {

            /* lg: */
            .contact-details-container {
                padding: 0;
                /* Reset padding */
            }
        }

        .contact-details-title {
            font-size: 1.5rem;
            /* text-2xl */
            line-height: 2rem;
            font-weight: 700;
            /* font-bold */
            margin-bottom: 1.5rem;
            /* mb-6 */
            color: #111827;
            /* text-gray-900 */
        }

        .contact-info-block {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1.5rem;
            /* mb-6 */
        }

        /* THEME */
        .contact-info-icon {
            font-size: 1.25rem;
            /* text-xl */
            color: #3673a5;
            /* text-steel-blue */
            margin-right: 1rem;
            /* mr-4 */
            margin-top: 0.25rem;
            /* mt-1 */
            width: 1.25rem;
            /* w-5 */
            text-align: center;
        }

        .contact-info-label {
            font-size: 0.875rem;
            /* text-sm */
            font-weight: 600;
            /* font-semibold */
            color: #6b7280;
            /* text-gray-500 */
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .contact-info-text {
            font-size: 1.125rem;
            /* text-lg */
            color: #374151;
            /* text-gray-700 */
        }

        .contact-info-phone {
            font-size: 1.5rem;
            /* text-2xl */
            font-weight: 700;
            color: #1f2937;
            /* text-gray-800 */
            transition: color 300ms;
        }

        /* THEME */
        .contact-info-phone:hover {
            color: #3673a5;
            /* hover:text-steel-blue */
        }

        .review-button {
            display: inline-flex;
            /* Use inline-flex to align icon and text */
            align-items: center;
        }

        /* --- NEW: Enquiry Form Styles --- */
        .enquiry-form-container {
            background-color: #f8f4ed;
            /* Light Ivory Background */
            border-radius: 0.5rem;
            padding: 2rem;
            /* box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05); */
        }

        .enquiry-form-container h4 {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: #111;
        }

        .form-group {
            margin-bottom: 1rem;
        }

        .form-group label {
            display: block;
            font-size: 0.875rem;
            font-weight: 600;
            color: #4b5563;
            margin-bottom: 0.3rem;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.75rem;
            border: 1px solid #d1d5db;
            border-radius: 0.375rem;
            font-size: 1rem;
            transition: border-color 0.3s;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #3673a5;
            box-shadow: 0 0 0 1px #3673a5;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 5rem;
        }

        .form-submit-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            padding: 0.75rem;
            background-color: #25D366;
            /* WhatsApp Green */
            color: white;
            font-weight: 700;
            border-radius: 0.375rem;
            transition: background-color 0.3s;
            margin-top: 1.5rem;
        }

        .form-submit-btn:hover {
            background-color: #16a34a;
            /* Darker Green */
        }

        .form-submit-btn i {
            margin-left: 0.5rem;
        }

        /* END Enquiry Form Styles */

        /* --- NEW: Live Gold Rate Section --- */
        .live-rates-grid {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1.5rem;
            max-width: 64rem;
            margin-left: auto;
            margin-right: auto;
        }

        .rate-card {
            flex: 1 1 250px;
            max-width: 18rem;
            /* approx 288px */
            background-color: #ffffff;
            /* white card on ivory BG */
            border: 1px solid #d1e9fa;
            /* border-pale-blue */
            border-radius: 0.5rem;
            /* rounded-lg */
            padding: 1.5rem;
            /* p-6 */
            text-align: center;
            /* box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05); */
            /* REMOVED */
            transition: all 300ms ease;
        }

        .rate-card:hover {
            transform: translateY(-5px);
            /* box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1); */
            /* REMOVED */
        }

        .rate-card h4 {
            font-size: 1.125rem;
            /* text-lg */
            font-weight: 700;
            /* font-bold */
            color: #2b5a80;
            /* text-gold-dark */
            margin-bottom: 0.5rem;
            /* mb-2 */
        }

        .rate-card p {
            font-size: 1.875rem;
            /* text-3xl */
            font-weight: 700;
            /* font-bold */
            color: #1f2937;
            /* text-gray-800 */
        }

        .rate-card p span {
            font-size: 0.875rem;
            /* text-sm */
            font-weight: 500;
            /* font-medium */
            color: #6b7280;
            /* text-gray-500 */
        }

        .rate-card-placeholder {
            background-color: #f9fafb;
            /* bg-gray-50 */
            border: 1px solid #e5e7eb;
            /* border-gray-200 */
            border-radius: 0.5rem;
            padding: 1.5rem;
            text-align: center;
            color: #6b7280;
            grid-column: 1 / -1;
            /* Span full width */
            font-size: 1.125rem;
        }

        .rate-disclaimer {
            text-align: center;
            font-size: 0.875rem;
            /* text-sm */
            color: #6b7280;
            /* text-gray-500 */
            margin-top: 2rem;
            /* mt-8 */
        }

        /* --- NEW: Section Shared Styles (Diamond Icon) --- */
        .section-header-icon {
            display: inline-block;
            width: 3rem;
            /* 48px */
            height: 3rem;
            background-image: url('../img/logo/section-icon.webp');
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            margin-bottom: 0.5rem;
            /* mb-2 */
        }

        .section-header-icon::before {
            content: none;
            display: none;
        }

        /* --- REBUILT: Diamond Jewellery Grid --- */
        .diamond-grid-layout {
            display: grid;
            grid-template-columns: 1fr;
            /* 1 col mobile */
            gap: 1.5rem;
            /* gap-6 */
        }

        .diamond-grid-item {
            position: relative;
            border-radius: 0.5rem;
            /* rounded-lg */
            overflow: hidden;
            /* box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1); */
            /* REMOVED */
        }

        .diamond-grid-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .diamond-grid-item:hover img {
            transform: scale(1.05);
        }

        /* Base Overlay Content */
        .overlay-content-left,
        .overlay-content-center {
            position: absolute;
            inset: 0;
            display: flex;
            flex-direction: column;
            padding: 1.5rem;
            /* p-6 */
            color: #ffffff;
        }

        /* Large Item (Left) */
        .diamond-grid-item-1 {
            min-height: 500px;
        }

        .overlay-content-left {
            align-items: flex-start;
            text-align: left;
            justify-content: center;
            /* Center vertically */
            background: linear-gradient(90deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.1));
        }

        .overlay-content-left h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.875rem;
            /* text-3xl */
            color: #ffffff;
            margin-bottom: 0.5rem;
            /* mb-2 */
        }

        .overlay-content-left p {
            font-size: 1rem;
            /* text-base */
            color: #e5e7eb;
            /* text-gray-200 */
            margin-bottom: 1rem;
            /* mb-4 */
            max-width: 300px;
        }

        /* CTA Button Style */
        .diamond-grid-cta {
            font-weight: 600;
            border: 2px solid #ffffff;
            color: #ffffff;
            padding: 0.5rem 1rem;
            /* px-4 py-2 */
            border-radius: 9999px;
            /* rounded-full */
            text-transform: uppercase;
            font-size: 0.875rem;
            /* text-sm */
            transition: all 0.3s ease;
        }

        .diamond-grid-cta:hover {
            background-color: #ffffff;
            color: #111;
        }

        /* Top-Right Item (2) */
        .diamond-grid-item-2 {
            min-height: 250px;
            /* FIXED: Add flex-grow to fill space */
            flex-grow: 1;
        }

        .overlay-content-center {
            justify-content: center;
            align-items: center;
            text-align: center;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.2));
        }

        .overlay-content-center h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            /* text-2xl */
            color: #ffffff;
            margin-bottom: 1rem;
            /* mb-4 */
        }

        /* Container for right-side items */
        .diamond-right-column {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            /* gap-6 */
        }

        /* Container for 3 bottom-row items */
        .diamond-bottom-row {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            /* gap-6 */
        }

        /* Small Bottom Items (3, 4, 5) */
        .diamond-grid-item-3,
        .diamond-grid-item-4,
        .diamond-grid-item-5 {
            /* Make them square */
            aspect-ratio: 1 / 1;
            min-height: auto;
            /* Reset min-height */
        }

        /* NEW: Style for small item overlays */
        .overlay-content-small {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            text-align: center;
            padding: 0.75rem;
            /* p-3 */
            background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
            transition: all 0.3s ease;
            opacity: 0;
            /* Hide by default */
        }

        .diamond-grid-item:hover .overlay-content-small {
            opacity: 1;
            /* Show on hover */
        }

        .overlay-content-small h4 {
            font-family: 'Playfair Display', serif;
            font-size: 1.125rem;
            /* text-lg */
            color: #ffffff;
            font-weight: 700;
        }

        /* Desktop Grid Layout (Exact Match) */
        @media (min-width: 768px) {

            /* md: */
            .diamond-grid-layout {
                grid-template-columns: repeat(2, 1fr);
                /* 2 columns */
            }

            .diamond-grid-item-1 {
                min-height: 0;
                /* Reset min-height */
            }

            /* .diamond-grid-item-2 is handled by flex-grow */
        }

        /* End of rebuilt section */

        /* FIXED: Button wrapper styles */
        .diamond-button-wrapper {
            /* Use flex for centering */
            display: flex;
            justify-content: center;
            width: 100%;
            margin-top: 3rem;
            /* Add margin to separate from grid */
        }


        /* --- NEW: Shop by Category Grid --- */
        .category-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            /* 2 cols on mobile */
            gap: 1.5rem;
            /* gap-6 */
        }

        @media (min-width: 768px) {

            /* md: */
            .category-grid {
                grid-template-columns: repeat(3, 1fr);
                /* 3 cols on tablet */
            }
        }

        .category-card {
            text-align: center;
        }

        .category-card-image {
            display: block;
            border-radius: 0.5rem;
            /* rounded-lg */
            overflow: hidden;
            /* box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1); */
            /* REMOVED */
            margin-bottom: 1rem;
            /* mb-4 */
            transition: all 0.3s ease;
        }

        .category-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .category-card:hover .category-card-image {
            /* box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1); */
            /* REMOVED */
        }

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

        .category-card h4 {
            font-family: 'Playfair Display', serif;
            font-size: 1.25rem;
            /* text-xl */
            font-weight: 700;
            color: #333;
            transition: color 0.3s ease;
        }

        .category-card:hover h4 {
            color: #3673a5;
            /* Gold */
        }

        /* --- NEW: Help Section --- */
        .help-section {
            background-color: #ffffff;
            /* White BG */
            padding-top: 4rem;
            padding-bottom: 4rem;
        }

        .help-section-grid {
            display: grid;
            grid-template-columns: 1fr;
            /* 1 col mobile */
            gap: 3rem;
            /* gap-12 */
            align-items: center;
        }

        .help-section-images {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .help-image-1 {
            width: 100%;
            height: auto;
            border-radius: 1rem;
            /* rounded-2xl */
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            /* shadow-xl */
            object-fit: cover;
        }

        .help-image-2 {
            display: none;
        }

        .help-section-content {
            text-align: left;
        }

        .help-section-content h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.25rem;
            /* text-4xl */
            font-weight: 700;
            color: #111827;
            /* text-gray-900 */
            margin-bottom: 1.5rem;
            /* mb-6 */
            line-height: 1.2;
        }

        .help-section-content p {
            font-family: 'Inter', sans-serif;
            color: #4b5563;
            /* text-gray-600 */
            font-size: 1.125rem;
            /* text-lg */
            margin-bottom: 2.5rem;
            /* mb-10 */
            line-height: 1.75;
        }

        .help-buttons {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .help-btn-primary {
            display: inline-flex;
            align-items: center;
            justify-content: flex-start;
            /* Left align content */
            text-align: left;
            /* Left align text */
            background-color: #3673a5;
            color: #ffffff;
            padding: 1rem 2.5rem;
            /* Larger padding */
            border-radius: 9999px;
            font-weight: 600;
            font-size: 1.125rem;
            /* Larger font */
            text-decoration: none;
            transition: all 300ms;
            border: 2px solid transparent;
            line-height: 1.2;
            min-width: 200px;
            /* Ensure some width */
        }

        .help-btn-primary:hover {
            background-color: #2b5a80;
        }

        .help-btn-secondary {
            display: inline-flex;
            align-items: center;
            justify-content: flex-start;
            /* Left align content */
            text-align: left;
            /* Left align text */
            background-color: #ffffff;
            border: 2px solid #3673a5;
            color: #3673a5;
            padding: 1rem 2.5rem;
            /* Larger padding */
            border-radius: 9999px;
            font-weight: 600;
            font-size: 1.125rem;
            /* Larger font */
            text-decoration: none;
            transition: all 300ms;
            line-height: 1.2;
            min-width: 220px;
        }

        .help-btn-secondary:hover {
            background-color: #f0f9ff;
            /* Pale blue hover */
            color: #3673a5;
        }

        @media (min-width: 640px) {

            /* sm: */
            .help-buttons {
                flex-direction: row;
                gap: 1.5rem;
            }
        }

        @media (min-width: 1024px) {

            /* lg: */
            .help-section-grid {
                grid-template-columns: repeat(2, 1fr);
                /* 2 cols desktop */
            }

            .help-section-images {
                min-height: 450px;
            }

            .help-section-content {
                padding: 2rem;
            }
        }

        /* Button Below Grid (FIXED) */
        .section-cta-button {
            display: inline-block;
            background: linear-gradient(to right, #4a90cd, #3673a5);
            /* bg-gold-gradient */
            color: #ffffff;
            padding: 0.75rem 2.5rem;
            border-radius: 9999px;
            font-weight: 600;
            text-decoration: none;
            transition: all 300ms;
            margin-top: 2rem;
            box-shadow: 0 4px 6px -1px rgba(184, 155, 62, 0.3);
        }

        .section-cta-button:hover {
            background: linear-gradient(to right, #3673a5, #2b5a80);
            transform: translateY(-2px);
            box-shadow: 0 10px 15px -3px rgba(184, 155, 62, 0.4);
        }

        /* --- NEW: GALLERY SECTION --- */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
            /* gap-4 */
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 0.5rem;
            /* rounded-lg */
            cursor: pointer;
            aspect-ratio: 1 / 1;
            /* Make items square */
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease, opacity 0.4s ease;
        }

        .gallery-item::after {
            content: '\f00e';
            /* Font Awesome search-plus icon */
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0.5);
            color: white;
            font-size: 3rem;
            /* text-5xl */
            background-color: rgba(0, 0, 0, 0.4);
            border-radius: 50%;
            width: 80px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: all 0.4s ease;
            pointer-events: none;
            /* So it doesn't block the image click */
        }

        .gallery-item:hover img {
            transform: scale(1.1);
            opacity: 0.8;
        }

        .gallery-item:hover::after {
            opacity: 1;
            transform: translate(-50%, -50%) scale(1);
        }

        /* --- NEW: GALLERY POPUP SLIDER --- */
        .gallery-popup {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }

        .gallery-popup.open {
            opacity: 1;
            visibility: visible;
        }

        .popup-content {
            position: relative;
            max-width: 90vw;
            max-height: 90vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .popup-img {
            max-width: 100%;
            max-height: 85vh;
            /* Give space for counter */
            display: block;
            border-radius: 0.5rem;
            transition: opacity 0.3s ease;
        }

        .popup-close {
            position: absolute;
            top: -10px;
            right: 0;
            font-size: 2.5rem;
            /* 40px */
            color: #ffffff;
            background-color: rgba(0, 0, 0, 0.5);
            border-radius: 50%;
            width: 40px;
            height: 40px;
            line-height: 38px;
            text-align: center;
            cursor: pointer;
            z-index: 1002;
            transition: all 0.3s ease;
            transform: translate(50%, -50%);
        }

        .popup-close:hover {
            color: #3673a5;
            background-color: rgba(255, 255, 255, 0.9);
        }

        .popup-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 3rem;
            /* 48px */
            height: 3rem;
            /* 48px */
            background-color: rgba(0, 0, 0, 0.5);
            color: #ffffff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            /* 24px */
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 1001;
            user-select: none;
        }

        .popup-nav:hover {
            background-color: rgba(0, 0, 0, 0.8);
        }

        .popup-prev {
            left: -4rem;
            /* 64px outside */
        }

        .popup-next {
            right: -4rem;
            /* 64px outside */
        }

        .popup-counter {
            position: absolute;
            bottom: -2.5rem;
            /* 40px below */
            left: 50%;
            transform: translateX(-50%);
            color: #ffffff;
            font-size: 1.125rem;
            /* text-lg */
            font-weight: 500;
            /* text-lg */
            font-weight: 500;
        }

        /* --- FAQ SECTION STYLES --- */
        .faq-item {
            border-bottom: 1px solid #e5e7eb;
            margin-bottom: 1rem;
        }

        .faq-question {
            width: 100%;
            text-align: left;
            padding: 1.5rem 0;
            background: none;
            border: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 1.125rem;
            font-weight: 600;
            color: #1f2937;
            cursor: pointer;
            transition: color 0.3s;
        }

        .faq-question:hover {
            color: #3673a5;
        }

        .faq-question.active {
            color: #3673a5;
        }

        .faq-question.active .faq-icon {
            transform: rotate(180deg);
        }

        .faq-icon {
            transition: transform 0.3s ease;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
            padding-right: 1.5rem;
        }

        .faq-answer p {
            padding-bottom: 1.5rem;
            color: #4b5563;
            line-height: 1.6;
        }

        @media (max-width: 767px) {
            .popup-nav {
                width: 2.5rem;
                /* 40px */
                height: 2.5rem;
                /* 40px */
                font-size: 1.25rem;
                /* 20px */
            }

            .popup-prev {
                left: 0.5rem;
                /* 8px inside */
            }

            .popup-next {
                right: 0.5rem;
                /* 8px inside */
            }

            .popup-close {
                top: 0.5rem;
                right: 0.5rem;
                transform: none;
                background-color: rgba(0, 0, 0, 0.7);
            }
        }

        /* Global Section Styles */
        .section {
            padding: 5rem 0;
        }

        .bg-ivory {
            background-color: #f8f4ed;
        }

        .bg-white {
            background-color: #ffffff;
        }

        .text-gold {
            color: #B89B3E;
        }

        /* Page Hero (Breadcrumb) Section */
        .page-hero {
            position: relative;
            padding: 8rem 0 4rem;
            /* Top padding to clear fixed header */
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            color: #ffffff;
            text-align: center;
            margin-bottom: 0;
        }

        /* Ensure the overlay is built-in via linear-gradient in inline style, 
   but we can add a fallback or additional subtle overlay here if needed */

        .page-title {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1rem;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        /* Breadcrumb Styles */
        .breadcrumb {
            background-color: transparent;
            justify-content: center;
            padding: 0;
            margin-bottom: 0;
            font-size: 1rem;
        }

        .breadcrumb-item a {
            color: #d1e9fa;
            /* Pale Blue */
            text-decoration: none;
            transition: color 0.3s;
        }

        .breadcrumb-item a:hover {
            color: #ffffff;
        }

        .breadcrumb-item.active {
            color: #ffffff;
            font-weight: 600;
        }

        .breadcrumb-item+.breadcrumb-item::before {
            color: #ffffff;
            content: "/";
        }

        /* Section Headers */
        .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            font-weight: 700;
            color: #111827;
            margin-bottom: 1rem;
        }

        .section-subtitle {
            color: #6b7280;
            font-size: 1.1rem;
        }

        /* Icon Box */
        .icon-box {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: #B89B3E;
            /* Gold Fallback */
            /* Gradient Text Support */
            background: linear-gradient(to right, #F0C75E, #B89B3E);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .icon-box i {
            font-size: 3rem;
        }

        /* About Us Specifics */
        .about-image-wrapper {
            position: relative;
            padding: 1rem;
            background: #fff;
            border-radius: 1rem;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }

        .border-gold {
            border: 1px solid #d1e9fa;
            /* Using the theme pale blue instead of gold for border to match */
        }

        /* Project Cards */
        .project-card {
            position: relative;
            border-radius: 0.75rem;
            overflow: hidden;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
            background: #fff;
            cursor: pointer;
        }

        .project-card:hover {
            transform: translateY(-5px);
        }

        .project-img-wrapper {
            position: relative;
            aspect-ratio: 4/3;
            overflow: hidden;
        }

        .project-img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .project-card:hover .project-img-wrapper img {
            transform: scale(1.1);
        }

        .project-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            align-items: flex-start;
        }

        .badge-gold {
            background: linear-gradient(to right, #F0C75E, #B89B3E);
            color: #fff;
            padding: 0.25rem 0.75rem;
            border-radius: 9999px;
            font-size: 0.75rem;
            font-weight: 600;
            margin-top: 0.5rem;
        }

        /* Team Member */
        .team-member {
            text-align: center;
            background: #fff;
            padding: 2rem;
            border-radius: 1rem;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        }

        .team-img-wrapper {
            margin-bottom: 1.5rem;
        }

        /* Contact Info Blocks are handled in base.html CSS, but ensuring margin here */
        .mb-4 {
            margin-bottom: 1.5rem !important;
        }

        /* Contact Map Wrapper */
        .contact-map-wrapper {
            height: 400px;
            /* Taller on contact page */
            width: 100%;
            border-radius: 0.75rem;
            overflow: hidden;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        }

        .contact-map-wrapper iframe {
            width: 100%;
            height: 100%;
            border: 0;
        }

        /* Testimonials */
        .card-body {
            padding: 2rem;
        }

        /* --- NEW: Simple Stylish Page Header --- */
        .simple-page-header {
            background: linear-gradient(135deg, #1e3a8a, #3673a5);
            /* Deep Blue to Brand Blue */
            padding: 6rem 0 2rem;
            /* Reduced top/bottom padding */
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .simple-page-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: radial-gradient(#ffffff 1px, transparent 1px);
            background-size: 20px 20px;
            opacity: 0.05;
            pointer-events: none;
        }

        .simple-page-header .page-title {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            /* Reduced from 3.5rem */
            font-weight: 700;
            color: #ffffff;
            margin: 0;
            text-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            display: inline-block;
            position: relative;
        }

        .simple-page-header .page-title::after {
            content: '';
            display: block;
            width: 60px;
            /* Slightly smaller */
            height: 3px;
            /* Slightly thinner */
            background: linear-gradient(to right, #F0C75E, #B89B3E);
            /* Gold Gradient */
            margin: 1rem auto 0;
            /* Reduced margin */
            border-radius: 2px;
        }

        /* Mobile Adjustments for Header */
        @media (max-width: 768px) {
            .simple-page-header {
                padding: 5rem 0 1.5rem;
                /* Even tighter on mobile */
            }

            .simple-page-header .page-title {
                font-size: 2rem;
                /* Smaller font on mobile */
            }
        }

        /* Added by Assistant */
        .bg-primary {
            background-color: #1e3a8a;
        }

        .text-white {
            color: #ffffff;
        }