/* --- 1. THEME VARIABLES (Strictly Dark Mode) --- */
:root {
    /* Brand Identity Colors */
    --brand-navy: #022e47;
    --brand-cream: #FAF8F1;
    --brand-orange: #f68f1d;
    --brand-pink: #ea3b60;
    --vf-navy: #000000;
    
    /* Dark Theme Mapping */
    --bg-body: var(--vf-navy);
    --text-main: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.7);
    --nav-bg-scrolled: rgba(10, 17, 40, 0.95);
    --nav-mobile-bg: var(--vf-navy);
    --nav-mobile-shadow: rgba(0,0,0,0.5);
    --footer-bg: #050812; /* Deep dark for footer */
    
    --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;
}

/* --- 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);
}

.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); }
}

/* --- 4. BRAND LOGO & THEME IMAGES --- */
.brand-logo { 
    height: clamp(50px, 5vw, 70px); /* Responsive logo height */
    width: auto; 
    object-fit: contain; 
}
.logo-light, .theme-img-light { display: none; }
.logo-dark, .theme-img-dark { display: block; }

    
		
		/* --- 7. HERO SECTION (RESTORED & STYLED) --- */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: clamp(60px, 10vw, 100px);
}

/* --- 8. AESTHETIC HERO SECTION --- */
.hero-aesthetic {
    position: relative;
    padding-top: clamp(100px, 15vw, 200px);
    padding-bottom: clamp(60px, 10vw, 100px);
    text-align: center;
    overflow: hidden;
    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: clamp(250px, 40vw, 450px);
    height: clamp(250px, 40vw, 450px);
    background: rgba(246, 143, 29, 0.2);
    top: -100px;
    left: -150px;
}

.hero-glow-2 {
    width: clamp(200px, 30vw, 350px);
    height: clamp(200px, 30vw, 350px);
    background: rgba(2, 46, 71, 0.4);
    bottom: 0;
    right: -50px;
    animation-delay: -4s;
}

@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(255, 255, 255, 0.15);
    padding: clamp(6px, 2vw, 8px) clamp(16px, 4vw, 24px);
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: clamp(0.75rem, 2vw, 0.85rem);
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
    transition: all 0.3s ease;
}

/* Bakbak One Headline */
.hero-headline-clean {
    font-family: 'Bakbak One', sans-serif;
    font-size: clamp(2.5rem, 7vw, 6.5rem);
    line-height: 0.9;
    margin-bottom: clamp(1rem, 3vw, 1.8rem);
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
    position: relative;
}

.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: clamp(0.95rem, 2.5vw, 1.1rem);
    color: rgba(255, 255, 255, 0.8);
    max-width: 550px; 
    margin: 0 auto;
    line-height: 1.4;
    font-weight: 600;
    font-family: var(--font-body);
    padding: 0 15px;
}

/* --- 9. WIDE MAP SECTION --- */
.map-section {
    padding: clamp(20px, 4vw, 40px) 0 clamp(40px, 6vw, 60px);
    position: relative;
    z-index: 1;
}

.map-wide-wrapper {
    border-radius: clamp(16px, 4vw, 20px);
    overflow: hidden;
    height: clamp(300px, 50vw, 450px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    width: 100%;
}

/* --- 10. CONTACT FORM SECTION --- */
.contact-form-section {
    padding: 0 0 clamp(60px, 10vw, 100px);
    position: relative;
    z-index: 1;
}

.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);
    border-radius: clamp(16px, 4vw, 20px);
    padding: clamp(25px, 6vw, 50px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    max-width: 850px;
    margin: 0 auto;
    width: 100%;
}

.form-control-custom {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    border-radius: 8px;
    padding: clamp(12px, 3vw, 16px) clamp(16px, 4vw, 20px);
    width: 100%;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    font-family: var(--font-body);
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.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: clamp(12px, 3vw, 15px) clamp(25px, 5vw, 35px);
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: clamp(0.9rem, 2vw, 1rem);
    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;
    width: 100%;
}

@media (min-width: 768px) {
    .btn-submit { width: auto; }
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(246, 143, 29, 0.5);
}

/* --- BRAND LOGO --- */
.brand-logo { 
    height: clamp(50px, 8vw, 70px); 
    width: auto; 
    object-fit: contain; 
}
.logo-light { display: none; }
.logo-dark { display: block; }

/* --- VF SERVICE CARD --- */
.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);
    transition: all 0.3s ease;
    border-radius: 16px;
}

.vf-svc-card:hover {
    transform: translateY(-5px);
    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%;
}

.vf-input-wrap .vf-input { padding-right: 45px; }

.vf-info-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    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); }

.vf-info-icon::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: calc(100% + 12px);
    right: -10px;
    width: max-content;
    max-width: clamp(180px, 40vw, 220px);
    background: #1e293b;
    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;
    line-height: 1.4;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.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;
}

.vf-info-icon:hover::after,
.vf-info-icon:hover::before {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* --- CONTACT BOX DESIGN --- */
.vf-contact-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: clamp(16px, 3vw, 20px);
    padding: clamp(20px, 4vw, 30px);
    display: block;      
    width: 100%;         
    text-align: left;
}

.contact-box-title {
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--brand-orange);
    margin-bottom: clamp(15px, 3vw, 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: clamp(35px, 8vw, 45px);
    height: clamp(35px, 8vw, 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: clamp(1rem, 2.5vw, 1.1rem);
    flex-shrink: 0;
}

.contact-text { display: flex; flex-direction: column; }

.contact-text label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #94a3b8; 
    margin-bottom: 2px;
    font-weight: 600;
}

.contact-text span {
    font-size: clamp(0.95rem, 2.5vw, 1.05rem);
    font-weight: 500;
    color: #ffffff; 
}

/* --- AESTHETIC STATIC GLASSMAP SECTION --- */
.aesthetic-map-section {
    padding: clamp(30px, 6vw, 40px) 0 clamp(50px, 8vw, 80px);
    position: relative;
    z-index: 1;
}

.map-canvas-wrapper {
    position: relative;
    width: 100%;
    height: clamp(400px, 70vh, 600px);
    border-radius: clamp(20px, 5vw, 32px);
    overflow: hidden;
    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;
    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;
}

.floating-glass-card {
    position: absolute;
    bottom: clamp(20px, 4vw, 40px);
    left: clamp(20px, 4vw, 40px);
    width: 100%;
    max-width: clamp(300px, 80vw, 380px);
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: clamp(16px, 3vw, 20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    z-index: 2;
    padding: clamp(20px, 4vw, 30px); 
}

.glass-contact-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.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: clamp(35px, 8vw, 42px);
    height: clamp(35px, 8vw, 42px);
    border-radius: 12px;
    background: var(--vf-grad);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(1rem, 2.5vw, 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: rgba(255, 255, 255, 0.7);
    margin-bottom: 2px;
}

.glass-value {
    font-size: clamp(0.85rem, 2vw, 0.9rem);
    font-weight: 600;
    color: #ffffff;
}

@media (max-width: 991px) {
    .map-canvas-wrapper {
        height: auto;
        background: transparent;
        box-shadow: none;
        border: none;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    .map-canvas-wrapper iframe {
        position: relative;
        height: 400px;
        border-radius: 24px;
        box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    }
    .floating-glass-card {
        position: relative;
        bottom: 0; left: 0;
        max-width: 100%;
    }
}

/* --- MAP TITLE BOX --- */
.map-title-box {
    background: rgba(15, 23, 42, 0.85);
    border-radius: clamp(20px, 5vw, 32px);
    padding: clamp(20px, 4vw, 30px) clamp(15px, 3vw, 20px);
    margin-bottom: 24px; 
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    width: 100%;
}

/* --- IMMERSIVE CONTACT SECTION --- */
.contact-img-wrapper {
    border-radius: clamp(24px, 5vw, 32px);
    overflow: hidden;
    position: relative;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.5);
}

.contact-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.6) 100%);
    z-index: 0;
}

.form-glass-card {
    background: rgba(30, 41, 59, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: clamp(20px, 5vw, 30px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    position: relative;
}

.form-glass-card .text-muted {
    color: rgba(255, 255, 255, 0.6) !important;
}

@media (max-width: 991px) {
    .contact-overlay {
        background: rgba(15, 23, 42, 0.9); 
    }
}

.btn-book-gradient {
    display: inline-flex;
    justify-content: center;
    padding: clamp(12px, 3vw, 16px) clamp(25px, 5vw, 40px);
    background: linear-gradient(135deg, var(--brand-orange) 0%, #ffaa42 100%);
    color: #ffffff;
    font-size: clamp(0.85rem, 2vw, 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;
    width: 100%;
}

@media (min-width: 768px) {
    .btn-book-gradient { width: auto; }
}

.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: #ffffff;
    margin-bottom: 8px;
    opacity: 0.9;
}

/* --- ALTERNATE MODAL STYLES --- */
.vf-modal-alt {
    border-radius: clamp(20px, 4vw, 28px);
    background: #0f172a; 
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden; 
}

.vf-modal-header-hero {
    position: relative;
    background: var(--vf-grad);
    padding: clamp(20px, 4vw, 30px) clamp(16px, 4vw, 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: clamp(38px, 8vw, 46px);
    height: clamp(38px, 8vw, 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: clamp(1rem, 2vw, 1.2rem);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.vf-info-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: clamp(16px, 3vw, 20px);
    padding: clamp(16px, 4vw, 24px);
}

.vf-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
}

.vf-info-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.6);
}

.vf-info-value {
    font-size: clamp(0.85rem, 2vw, 0.95rem);
    font-weight: 600;
    color: #ffffff;
}

.vf-message-box {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: clamp(12px, 3vw, 16px);
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.2);
}

.btn-edit-alt {
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    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: #ffffff;
    background: rgba(255, 255, 255, 0.05);
}

.vf-success-text {
    font-size: clamp(0.9rem, 2vw, 1rem);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

/* --- VALIDATION STATES --- */
.form-control-custom.is-invalid {
    border: 2px solid #dc3545;
    box-shadow: 0 0 4px rgba(220, 53, 69, 0.5);
}

.form-control-custom.is-valid {
    border: 2px solid #198754; 
    box-shadow: 0 0 4px rgba(25, 135, 84, 0.5);
}

.g-recaptcha.is-invalid {
    border: 2px solid #dc3545; 
    border-radius: 6px;
    padding: 4px;
}

.vf-recaptcha-wrapper {
    width: 100%; 
    display: flex;
    justify-content: center;
    align-items: center;
    padding: clamp(4px, 2vw, 8px);
    border-radius: 8px;
    background: var(--vf-grad);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

.vf-recaptcha-wrapper .g-recaptcha {
    transform: scale(1.05); 
    transform-origin: center;
}

@media (max-width: 400px) {
    .vf-recaptcha-wrapper .g-recaptcha {
        transform: scale(0.85);
    }
}

.vf-recaptcha-wrapper.is-invalid {
    border: 2px solid #dc3545;
}

/* --- VERAFEDE FORM BRANDING --- */
.verafede-form {
    background: transparent; 
    padding: clamp(1.5rem, 4vw, 2rem);
    border-radius: clamp(16px, 4vw, 20px);
}

.verafede-form .form-title {
    color: #ffffff;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    font-size: clamp(1.2rem, 3vw, 1.5rem);
}

.verafede-form .form-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: clamp(0.85rem, 2vw, 0.95rem);
}

.verafede-form .form-floating > .form-control-custom {
    background-color: #273142; 
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    box-shadow: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.verafede-form .form-floating > .form-control-custom::placeholder {
    color: transparent !important;
}

.verafede-form .form-floating > .form-control-custom:focus {
    border-color: #f38626; 
    background-color: #2c3749; 
    box-shadow: 0 0 0 0.1rem rgba(243, 134, 38, 0.25);
    color: #ffffff;
}

.verafede-form .form-label-custom {
    color: rgba(255, 255, 255, 0.7);
    font-size: clamp(0.75rem, 2vw, 0.85rem);
    font-weight: 700;
    letter-spacing: 1px;
    padding-left: 1rem;
}

.verafede-form .form-floating > .form-control-custom:focus ~ .form-label-custom::after,
.verafede-form .form-floating > .form-control-custom:not(:placeholder-shown) ~ .form-label-custom::after,
.verafede-form .form-floating > .form-control-custom:-webkit-autofill ~ .form-label-custom::after {
    background-color: #273142 !important; 
}

.verafede-form .form-floating > .form-control-custom:focus ~ .form-label-custom,
.verafede-form .form-floating > .form-control-custom:not(:placeholder-shown) ~ .form-label-custom {
    color: #ffffff !important;
}

.verafede-form .btn-submit {
    background: linear-gradient(90deg, #f5841f 0%, #f04b57 100%);
    color: #ffffff;
    border: none;
    font-weight: 700;
    letter-spacing: 1px;
    padding: clamp(12px, 3vw, 14px) clamp(25px, 5vw, 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);
    width: 100%;
}

@media (min-width: 768px) {
    .verafede-form .btn-submit { width: auto; }
}

.verafede-form .btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(240, 75, 87, 0.4);
    color: #ffffff;
}

.verafede-form .text-danger {
    color: #f04b57 !important;
}

/* --- UTILITIES --- */
html {
    scroll-behavior: smooth;
}

#contactForm {
    scroll-margin-top: clamp(80px, 10vw, 100px);
}

body, html {
    background-color: var(--bg-body, #000000) !important; 
    color: var(--text-main, #e6e6e6) !important;
    overflow-x: hidden;
}

/* Gradient Text Utility */
.text-gradient {
    background: var(--vf-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent; /* Fallback */
}

/* Custom Checkbox focus state */
.form-check-input:checked {
    background-color: var(--brand-orange);
    border-color: var(--brand-orange);
}

.form-check-input:focus {
    box-shadow: 0 0 0 0.25rem rgba(246, 143, 29, 0.25); /* Uses brand-orange with opacity */
}