/* --- 1. THEME VARIABLES --- */
        :root {
            /* Brand Identity Colors */
            --brand-navy: #022e47;
            --brand-cream: #FAF8F1;
            --brand-orange: #f68f1d;
            --brand-pink: #ea3b60;
            
            /* Default LIGHT Theme Mapping */
            --bg-body: var(--brand-cream);
            --text-main: var(--brand-navy);
            --text-muted: rgba(2, 46, 71, 0.7);
            --nav-bg-scrolled: rgba(250, 248, 241, 0.95);
            --nav-mobile-bg: #FAF8F1;
            --nav-mobile-shadow: rgba(0,0,0,0.1);
            
            /* Footer is always dark */
            --footer-bg: var(--brand-navy);
            
            --vf-grad: linear-gradient(135deg, var(--brand-orange) 0%, var(--brand-orange) 65%, var(--brand-pink) 100%);
            
            --font-display: 'Bakbak One', cursive;
            --font-body: 'Work Sans', sans-serif;
        }

        /* DARK THEME OVERRIDES */
        [data-theme="dark"] {
            --bg-body: #011a2a; 
            --text-main: #e6e6e6;
            --text-muted: rgba(255, 255, 255, 0.7);
            --nav-bg-scrolled: rgba(1, 26, 42, 0.95);
            --nav-mobile-bg: #022e47;
            --nav-mobile-shadow: rgba(0,0,0,0.4);
        }

        /* --- 2. GLOBAL STYLES --- */
        body {
            background-color: var(--bg-body);
            font-family: var(--font-body);
            color: var(--text-main);
            overflow-x: hidden;
            transition: background-color 0.3s ease, color 0.3s ease;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-display);
            text-transform: uppercase;
            font-weight: 600;
        }

        .text-gradient {
            background: var(--vf-grad);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        /* --- 3. AMBIENT BACKGROUND --- */
        .ambient-light {
            position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
            z-index: -1; pointer-events: none; overflow: hidden;
            background: var(--bg-body);
            transition: background-color 0.3s ease;
        }

        .orb {
            position: absolute; border-radius: 50%;
            filter: blur(80px); opacity: 0.5;
            animation: floatOrb 20s infinite ease-in-out;
        }

        .orb-1 { width: 100vw; height: 100vw; background: var(--brand-orange); top: -10%; left: -10%; opacity: 0.15;}
        .orb-2 { width: 30vw; height: 30vw; background: var(--brand-pink); bottom: 10%; right: -5%; animation-delay: -5s; opacity: 0.15;}
        .orb-3 { width: 60vw; height: 60vw; background: #ff5500; top: 40%; left: 40%; animation-delay: -10s; opacity: 0.1;}

        @keyframes floatOrb {
            0%, 100% { transform: translate(0, 0) scale(1); }
            50% { transform: translate(30px, -50px) scale(1.1); }
        }

        /* BRAND LOGO THEME ADAPTATION */
        .brand-logo { height: 70px; width: auto; object-fit: contain; }
        .logo-light { display: block; }
        .logo-dark { display: none; }
        html[data-theme="dark"] .logo-light { display: none; }
        html[data-theme="dark"] .logo-dark { display: block; }

    
		
		/* --- 7. HERO SECTION (RESTORED & STYLED) --- */
        .hero-section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            padding-top: 100px; /* Offset for fixed nav */
        }
		
		/* --- 8. AESTHETIC HERO SECTION --- */
        .hero-aesthetic {
            position: relative;
            padding-top: 200px; /* Lots of top breathing room */
            padding-bottom: 100px;
            text-align: center;
            overflow: hidden; /* Keeps the glowing orbs contained */
            z-index: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        /* Ambient Background Glows */
        .hero-glow-1, .hero-glow-2 {
            position: absolute;
            border-radius: 50%;
            filter: blur(100px);
            -webkit-filter: blur(100px);
            z-index: -1;
            opacity: 0.5;
            animation: pulseGlow 8s infinite alternate ease-in-out;
        }

        .hero-glow-1 {
            width: 450px;
            height: 450px;
            background: rgba(246, 143, 29, 0.15); /* Soft brand orange */
            top: -100px;
            left: -150px;
        }

        .hero-glow-2 {
            width: 350px;
            height: 350px;
            background: rgba(2, 46, 71, 0.1); /* Soft brand blue */
            bottom: 0;
            right: -50px;
            animation-delay: -4s;
        }

        [data-theme="dark"] .hero-glow-1 { background: rgba(246, 143, 29, 0.2); }
        [data-theme="dark"] .hero-glow-2 { background: rgba(2, 46, 71, 0.4); }

        @keyframes pulseGlow {
            0% { transform: scale(1) translate(0, 0); opacity: 0.4; }
            100% { transform: scale(1.1) translate(20px, -20px); opacity: 0.7; }
        }

        /* Minimalist Badge */
        .badge-aesthetic {
            background: transparent;
            border: 1px solid rgba(150, 150, 150, 0.3);
            padding: 8px 24px;
            border-radius: 50px;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            font-family: var(--font-body);
            font-weight: 500;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--text-muted);
            margin-bottom: 2.5rem;
            transition: all 0.3s ease;
        }

        [data-theme="dark"] .badge-aesthetic {
            border-color: rgba(255, 255, 255, 0.15);
        }

        /* Bakbak One Headline */
        .hero-headline-clean {
            font-family: 'Bakbak One', sans-serif;
            font-size: clamp(3.2rem, 7vw, 6.5rem);
            line-height: 0.7;
            margin-bottom: 1.8rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--text-main);
            position: relative;
        }

        [data-theme="dark"] .hero-headline-clean {
            color: #ffffff;
        }

        .text-gradient {
            background: var(--vf-grad, linear-gradient(90deg, #f68f1d, #f9a646));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-block;
        }

        /* Elegant Subtitle */
        .hero-subtitle-clean {
            font-size: 1.1rem;
            color: var;
            max-width: 550px; /* Kept narrow for an elegant text block */
            margin: 0 auto;
            line-height: 1.2;
            font-weight: 600;
            font-family: var(--font-body);
        }

        /* --- 9. WIDE MAP SECTION --- */
        .map-section {
            padding: 20px 0 60px;
            position: relative;
            z-index: 1;
        }

        .map-wide-wrapper {
            border-radius: 20px;
            overflow: hidden;
            height: 450px;
            border: 1px solid rgba(2, 46, 71, 0.08);
            box-shadow: 0 20px 40px rgba(0,0,0,0.08);
            width: 100%;
        }

        [data-theme="dark"] .map-wide-wrapper {
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 20px 40px rgba(0,0,0,0.4);
        }

        /* --- 10. CONTACT FORM SECTION --- */
        .contact-form-section {
            padding: 0 0 100px;
            position: relative;
            z-index: 1;
        }

        .contact-wrapper {
            background: #ffffff;
            border: 1px solid rgba(2, 46, 71, 0.08);
            border-radius: 20px;
            padding: 50px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.05);
            max-width: 850px;
            margin: 0 auto;
        }

        [data-theme="dark"] .contact-wrapper {
            background: rgba(0, 0, 0, 0.4);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            box-shadow: 0 15px 40px rgba(0,0,0,0.3);
        }

        .form-control-custom {
            background: rgba(0,0,0,0.03);
            border: 1px solid rgba(0,0,0,0.1);
            color: var(--text-main);
            border-radius: 8px;
            padding: 16px 20px;
            width: 100%;
            margin-bottom: 20px;
            transition: all 0.3s ease;
            font-family: var(--font-body);
        }

        [data-theme="dark"] .form-control-custom {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            color: #fff;
        }

        [data-theme="dark"] .form-control-custom::placeholder {
            color: rgba(255,255,255,0.4);
        }

        .form-control-custom:focus {
            outline: none;
            border-color: var(--brand-orange);
            background: transparent;
            box-shadow: 0 0 0 3px rgba(246, 143, 29, 0.1);
        }

        .btn-submit {
            background: var(--vf-grad);
            color: white !important;
            border: none;
            padding: 15px 35px;
            border-radius: 50px;
            font-family: var(--font-body);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 15px rgba(246, 143, 29, 0.3);
            text-decoration: none;
            cursor: pointer;
        }

        .btn-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(246, 143, 29, 0.5);
        }

		/* --- BRAND LOGO THEME ADAPTATION --- */
		/* Set a uniform height so it fits cleanly in the navbar */
		.brand-logo {
			height: 70px; /* Adjust this value if you want the logo bigger or smaller */
			width: auto;
		object-fit: contain;
		}

		/* Default (Light Theme) Settings */
		.logo-light {
			display: block;
		}
		.logo-dark {
			display: none;
		}

		/* Dark Theme Settings */
		/* Targets the images when your JS adds data-theme="dark" to the html tag */
		html[data-theme="dark"] .logo-light {
			display: none;
		}
		html[data-theme="dark"] .logo-dark {
			display: block;
		}
		
		/* --- VF SERVICE CARD (Used in your HTML) --- */
        .vf-svc-card {
            background: #ffffff;
            border: 1px solid rgba(2, 46, 71, 0.08);
            transition: all 0.3s ease;
        }

        .vf-svc-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.08) !important;
            border-color: rgba(246, 143, 29, 0.3);
        }

        [data-theme="dark"] .vf-svc-card {
            background: rgba(0, 0, 0, 0.4);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.08);
        }

        [data-theme="dark"] .vf-svc-card:hover {
            border-color: rgba(246, 143, 29, 0.5);
            box-shadow: 0 15px 35px rgba(0,0,0,0.4) !important;
        }

        /* --- INPUT WRAPPER & HOVER TOOLTIP --- */
        .vf-input-wrap {
            position: relative;
            width: 100%;
        }

        /* Add padding to the right so typing doesn't overlap the icon */
        .vf-input-wrap .vf-input {
            padding-right: 45px; 
        }

        /* Info Icon Placement */
        .vf-info-icon {
            position: absolute;
            right: 16px;
            top: 50%;
            transform: translateY(-50%);
            color: #94a3b8; /* Subtle gray */
            cursor: help;
            font-size: 1.1rem;
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 5;
        }

        .vf-info-icon:hover {
            color: var(--brand-orange, #f68f1d);
        }

        /* Custom CSS Tooltip Box */
        .vf-info-icon::after {
            content: attr(data-tooltip);
            position: absolute;
            bottom: calc(100% + 12px);
            right: -10px; /* Align to the icon */
            width: max-content;
            max-width: 220px; /* Keeps text nicely wrapped */
            background: #1e293b; /* Deep slate background */
            color: #ffffff;
            font-family: inherit;
            font-size: 0.85rem;
            font-weight: 500;
            padding: 10px 14px;
            border-radius: 8px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
            pointer-events: none; /* Prevents mouse flickering */
            line-height: 1.4;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* Tooltip Little Triangle Pointer */
        .vf-info-icon::before {
            content: '';
            position: absolute;
            bottom: calc(100% + 4px);
            right: 5px;
            border-width: 8px 8px 0;
            border-style: solid;
            border-color: #1e293b transparent transparent transparent;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
            pointer-events: none;
        }

        /* Show tooltip on hover */
        .vf-info-icon:hover::after,
        .vf-info-icon:hover::before {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        /* Light Mode Overrides for the Icon */
        [data-theme="light"] .vf-info-icon { color: #64748b; }
        [data-theme="light"] .vf-info-icon:hover { color: var(--brand-orange, #f68f1d); }

        /* --- CONTACT BOX DESIGN --- */
        .vf-contact-box {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 20px;
            padding: 30px;
            display: block;      
            width: 100%;         
            max-width: 100%;    
            text-align: left;
        }

        .contact-box-title {
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--brand-orange);
            margin-bottom: 25px;
            font-weight: 700;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }

        .contact-item:last-child { margin-bottom: 0; }

        .icon-circle {
            width: 45px;
            height: 45px;
            background: rgba(246, 143, 29, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--brand-orange);
            font-size: 1.1rem;
            flex-shrink: 0;
        }

        .contact-text {
            display: flex;
            flex-direction: column;
        }

        .contact-text label {
            font-size: 0.75rem;
            text-transform: uppercase;
            color: #64748b; /* Muted slate */
            margin-bottom: 2px;
            font-weight: 600;
        }

        .contact-text span {
            font-size: 1.05rem;
            font-weight: 500;
            color: var(--text-main); 
        }

        [data-theme="dark"] .contact-text span {
            color: #ffffff;
        }
		
		/* --- 10. AESTHETIC STATIC GLASSMAP SECTION --- */
        .aesthetic-map-section {
            padding: 40px 0 80px;
            position: relative;
            z-index: 1;
        }

        .map-canvas-wrapper {
            position: relative;
            width: 100%;
            height: 600px;
            border-radius: 32px;
            overflow: hidden;
            box-shadow: 0 24px 50px rgba(2, 46, 71, 0.08);
            border: 1px solid rgba(2, 46, 71, 0.05);
        }

        [data-theme="dark"] .map-canvas-wrapper {
            box-shadow: 0 24px 50px rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .map-canvas-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 0;
            z-index: 1;
        }

        [data-theme="dark"] .map-canvas-wrapper iframe {
            filter: invert(100%) hue-rotate(180deg) brightness(95%) contrast(90%);
            -webkit-filter: invert(100%) hue-rotate(180deg) brightness(95%) contrast(90%);
            transition: filter 0.3s ease;
        }

        /* The Static Frosted Glass Card - Bottom Left */
        .floating-glass-card {
            position: absolute;
            bottom: 40px;
            left: 40px;
            width: 100%;
            max-width: 380px;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.6);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
            z-index: 2;
            padding: 30px; 
        }

        [data-theme="dark"] .floating-glass-card {
            background: rgba(15, 23, 42, 0.85);
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
        }

        /* Inside the Card */
        .glass-contact-row {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 14px 0;
            border-bottom: 1px solid rgba(0,0,0,0.05);
            text-decoration: none;
            color: inherit;
            transition: transform 0.3s ease;
        }

        [data-theme="dark"] .glass-contact-row { border-bottom: 1px solid rgba(255,255,255,0.05); }
        .glass-contact-row:last-child { border-bottom: none; padding-bottom: 0; }
        .glass-contact-row:first-of-type { padding-top: 0; }
        .glass-contact-row:hover { transform: translateX(8px); }

        .glass-icon-wrap {
            width: 42px;
            height: 42px;
            border-radius: 12px;
            background: var(--vf-grad);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            flex-shrink: 0;
            box-shadow: 0 10px 20px rgba(246, 143, 29, 0.2);
        }

        .glass-text-wrap { display: flex; flex-direction: column; }

        .glass-label {
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            font-weight: 700;
            color: var(--text-muted);
            margin-bottom: 2px;
        }

        .glass-value {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--text-main);
        }

        [data-theme="dark"] .glass-value { color: #ffffff; }

        /* Mobile Adjustments: Stacks cleanly below the map */
        @media (max-width: 991px) {
            .map-canvas-wrapper {
                height: auto;
                background: transparent;
                box-shadow: none;
                border: none;
            }
            .map-canvas-wrapper iframe {
                position: relative;
                height: 400px;
                border-radius: 24px;
                margin-bottom: 24px;
                box-shadow: 0 15px 35px rgba(0,0,0,0.08);
            }
            .floating-glass-card {
                position: relative;
                bottom: 0;
                left: 0;
                max-width: 100%;
                box-shadow: 0 15px 35px rgba(0,0,0,0.05);
                padding: 24px;
            }
        }
		
		/* --- MAP TITLE BOX --- */
        .map-title-box {
            background: #ffffff;
            border-radius: 32px; /* Matches the exact curve of the map */
            padding: 30px 20px;
            margin-bottom: 24px; /* Space between the title box and the map */
            box-shadow: 0 15px 35px rgba(2, 46, 71, 0.05);
            border: 1px solid rgba(2, 46, 71, 0.05);
            width: 100%;
        }

        /* Dark Mode */
        [data-theme="dark"] .map-title-box {
            background: rgba(15, 23, 42, 0.85);
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
        }
		
		/* --- IMMERSIVE CONTACT SECTION --- */
        .contact-img-wrapper {
            border-radius: 32px;
            overflow: hidden;
            position: relative;
            box-shadow: 0 24px 50px rgba(2, 46, 71, 0.15);
        }

        /* The Overlay to make text and the form pop */
        .contact-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            /* A dark navy gradient. Matches your brand but keeps the image visible */
            background: linear-gradient(135deg, rgba(2, 46, 71, 0.9) 0%, rgba(2, 46, 71, 0.6) 100%);
            z-index: 0;
        }

        [data-theme="dark"] .contact-overlay {
            background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.8) 100%);
        }

        /* The Box holding the form on the right */
        .form-glass-card {
            background: #ffffff;
            border-radius: 24px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }

        [data-theme="dark"] .form-glass-card {
            background: rgba(30, 41, 59, 0.95);
            border: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        [data-theme="dark"] .form-glass-card .text-muted {
            color: rgba(255,255,255,0.6) !important;
        }
		
		/* --- IMMERSIVE CONTACT SECTION --- */

/* The Overlay */
.contact-overlay {
    background: linear-gradient(to right, rgba(2, 46, 71, 0.95) 0%, rgba(2, 46, 71, 0.4) 100%);
}

[data-theme="dark"] .contact-overlay {
    background: linear-gradient(to right, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.6) 100%);
}

/* The Form Card */
.form-glass-card {
    background: #ffffff;
    border-radius: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    position: relative;
}

[data-theme="dark"] .form-glass-card {
    background: rgba(30, 41, 59, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .form-glass-card .text-muted {
    color: rgba(255, 255, 255, 0.6) !important;
}

/* Mobile Adjustments */
@media (max-width: 991px) {
    .contact-overlay {
        background: rgba(2, 46, 71, 0.85); /* Solid overlay for mobile readability */
    }
    .contact-img-wrapper {
        border-radius: 24px !important; /* Slightly smaller curves on mobile */
    }
}

.btn-book-gradient {
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--brand-orange) 0%, #ffaa42 100%);
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(246, 143, 29, 0.3);
    border: none;
}

.btn-book-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(246, 143, 29, 0.5);
    color: #ffffff;
}

/* --- CUSTOM FORM LABELS --- */
.form-label-custom {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-main);
    margin-bottom: 8px;
    opacity: 0.8;
}

[data-theme="dark"] .form-label-custom {
    color: #ffffff;
    opacity: 0.9;
}

/* --- 12. ALTERNATE MODAL STYLES (HERO HEADER & RECEIPT CARD) --- */

.vf-modal-alt {
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 25px 50px rgba(2, 46, 71, 0.15);
    overflow: hidden; /* Keeps the header neatly inside the rounded corners */
}

[data-theme="dark"] .vf-modal-alt {
    background: #0f172a; /* Deep slate to match your aesthetic map card */
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Hero Header Design */
.vf-modal-header-hero {
    position: relative;
    background: var(--vf-grad);
    padding: 30px 24px;
    overflow: hidden;
}

.hero-header-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.15) 100%);
    z-index: 0;
}

.header-icon-circle {
    width: 46px;
    height: 46px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Unified Receipt Card */
.vf-info-card {
    background: rgba(2, 46, 71, 0.02);
    border: 1px solid rgba(2, 46, 71, 0.06);
    border-radius: 20px;
    padding: 24px;
}

[data-theme="dark"] .vf-info-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

/* Rows inside the card */
.vf-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px dashed rgba(2, 46, 71, 0.15);
}

[data-theme="dark"] .vf-info-row {
    border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
}

/* Text Styles */
.vf-info-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.vf-info-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-main);
}

[data-theme="dark"] .vf-info-value {
    color: #ffffff;
}

/* Specific box for the long message */
.vf-message-box {
    background: #ffffff;
    border: 1px solid rgba(2, 46, 71, 0.05);
    border-radius: 12px;
    padding: 16px;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
}

[data-theme="dark"] .vf-message-box {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.2);
}

/* Ghost Button for Editing */
.btn-edit-alt {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid transparent;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-edit-alt:hover {
    color: var(--text-main);
    background: rgba(2, 46, 71, 0.05);
}

[data-theme="dark"] .btn-edit-alt {
    color: rgba(255, 255, 255, 0.6);
}

[data-theme="dark"] .btn-edit-alt:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
}

/* --- 13. SUCCESS MODAL SPECIFICS --- */
.vf-success-text {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-main);
    line-height: 1.5;
}

[data-theme="dark"] .vf-success-text {
    color: rgba(255, 255, 255, 0.8);
}

/* Red outline when invalid */
.form-control-custom.is-invalid {
    border: 2px solid #dc3545; /* Bootstrap danger red */
    box-shadow: 0 0 4px rgba(220, 53, 69, 0.5);
}

/* Green outline when valid (optional) */
.form-control-custom.is-valid {
    border: 2px solid #198754; /* Bootstrap success green */
    box-shadow: 0 0 4px rgba(25, 135, 84, 0.5);
}

.g-recaptcha.is-invalid {
    border: 2px solid #dc3545; /* Bootstrap danger red */
    border-radius: 6px;
    padding: 4px;
}

/* Wrapper to align with textboxes */
.vf-recaptcha-wrapper {
  width: 100%; /* same width as inputs */
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px;
  border-radius: 8px;
  background: var(--vf-grad);
  box-shadow: 0 6px 12px rgba(2, 46, 71, 0.25);
}

/* Scale the widget to match input width */
.vf-recaptcha-wrapper .g-recaptcha {
  transform: scale(1.05); /* adjust scale to match textbox height */
  transform-origin: center;
}

/* Red outline when invalid */
.vf-recaptcha-wrapper.is-invalid {
  border: 2px solid #dc3545;
}



/* Verafede Branding Styles */
.verafede-form {
    background: #ffffff;
    padding: 2rem;
    border-radius: 20px;
    /* Optional: Add a subtle shadow to the whole form card if needed */
}

/* Typography */
.verafede-form .form-title {
    color: #062b48; /* Dark Navy */
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.verafede-form .form-subtitle {
    color: #6c757d;
    font-size: 0.95rem;
}

/* Input Fields */
.verafede-form .form-floating > .form-control-custom {
    background-color: #f8f9fa; /* Light grey background */
    border: 1px solid #dee2e6;
    border-radius: 8px;
    box-shadow: none;
    font-weight: 500;
    color: #495057;
    transition: all 0.3s ease;
}

/* Focus State (Orange Border and White Background like the image) */
.verafede-form .form-floating > .form-control-custom:focus {
    border-color: #f38626; /* Verafede Orange */
    background-color: #ffffff;
    box-shadow: 0 0 0 0.1rem rgba(243, 134, 38, 0.25);
}

/* Label Styling */
.verafede-form .form-label-custom {
    color: #5c6b7a;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding-left: 1rem;
}

/* Submit Button Gradient */
.verafede-form .btn-submit {
    background: linear-gradient(90deg, #f5841f 0%, #f04b57 100%);
    color: #ffffff;
    border: none;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 14px 35px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 15px rgba(240, 75, 87, 0.3);
}

.verafede-form .btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(240, 75, 87, 0.4);
    color: #ffffff;
}

/* Ensure the red asterisks pop */
.verafede-form .text-danger {
    color: #f04b57 !important;
}

/* =========================================
   DARK MODE OVERRIDES FOR VERAFEDE FORM
   ========================================= */

/* 1. Form Container Background */
[data-theme="dark"] .verafede-form {
    background: transparent; /* Or your dark card background color */
}

/* 2. Style the input fields for dark mode */
[data-theme="dark"] .verafede-form .form-floating > .form-control-custom {
    background-color: #273142; /* Adjust to match your exact dark blue/gray background */
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff; /* Color of the text the user types */
}

/* 3. FIX OVERLAP: Hide the placeholder text to let the label do its job */
[data-theme="dark"] .verafede-form .form-floating > .form-control-custom::placeholder {
    color: transparent !important;
}

/* 4. Focus State in dark mode */
[data-theme="dark"] .verafede-form .form-floating > .form-control-custom:focus {
    border-color: #f38626; /* Verafede Orange */
    background-color: #2c3749; /* Slightly lighter dark color when clicked */
    box-shadow: 0 0 0 0.1rem rgba(243, 134, 38, 0.25);
    color: #ffffff;
}

/* 5. Style the label text for dark mode */
[data-theme="dark"] .verafede-form .form-label-custom {
    color: rgba(255, 255, 255, 0.7);
}

/* The background color here MUST match your dark input background exactly */
[data-theme="dark"] .verafede-form .form-floating > .form-control-custom:focus ~ .form-label-custom::after,
[data-theme="dark"] .verafede-form .form-floating > .form-control-custom:not(:placeholder-shown) ~ .form-label-custom::after,
[data-theme="dark"] .verafede-form .form-floating > .form-control-custom:-webkit-autofill ~ .form-label-custom::after {
    background-color: #273142 !important; /* Update this hex code if needed */
}

/* Make headers look good in dark mode */
[data-theme="dark"] .verafede-form .form-title {
    color: #ffffff;
}
[data-theme="dark"] .verafede-form .form-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

/* Keep the floating label text white when clicked/focused or when it has text */
[data-theme="dark"] .verafede-form .form-floating > .form-control-custom:focus ~ .form-label-custom,
[data-theme="dark"] .verafede-form .form-floating > .form-control-custom:not(:placeholder-shown) ~ .form-label-custom {
    color: #ffffff !important;
}

html {
    scroll-behavior: smooth;
}

#contactForm {
    scroll-margin-top: 100px;
}