/* --- 1. GLOBAL VARIABLES --- */
:root {
    /* Brand Identity Colors */
    --brand-navy: #022e47;
    --brand-cream: #FAF8F1;
    --brand-orange: #f68f1d;
    --brand-pink: #ea3b60;
    
    /* Hardcoded Dark Theme Colors */
    --bg-body: #000000; 
    --text-main: #e6e6e6;
    --text-muted: rgba(255, 255, 255, 0.6);
    --nav-bg-scrolled: rgba(1, 26, 42, 0.95);
    --nav-mobile-bg: #000000;
    --nav-mobile-shadow: rgba(0, 0, 0, 0.4);
    --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;
}

/* --- 2. GLOBAL STYLES --- */
body {
    background-color: var(--bg-body);
    font-family: var(--font-body);
    color: var(--text-main);
    overflow-x: hidden;
}

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;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- 3. AMBIENT BACKGROUND --- */
.ambient-light {
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100vw; 
    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: clamp(200px, 30vw, 400px); height: clamp(200px, 30vw, 400px); background: var(--brand-pink); bottom: 10%; right: -5%; animation-delay: -5s; opacity: 0.15; }
.orb-3 { width: clamp(300px, 60vw, 800px); height: clamp(300px, 60vw, 800px); 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. NAVBAR STYLING --- */
.navbar-prestige {
    background: transparent; 
    padding: clamp(1rem, 2vw, 1.5rem) 0;
    transition: all 0.4s ease-in-out;
}

.navbar-prestige.scrolled {
    padding: 15px 0;
    background: var(--nav-bg-scrolled);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand .logo-text {
    background: linear-gradient(120deg, #f68f1d 40%, #ffffff 50%, #ea3b60 75%, #f68f1d 65%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text; 
    -webkit-text-fill-color: transparent;
}

.nav-link {
    font-family: var(--font-body); 
    font-weight: 700;
    color: var(--text-main) !important;
    margin: 0 clamp(5px, 1vw, 10px); 
    position: relative; 
    transition: color 0.3s ease-in-out;
    padding-bottom: 5px; 
}

.nav-link:hover, 
.nav-link.active { 
    color: var(--brand-orange) !important; 
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px; 
    bottom: 0;
    left: 0;
    background: var(--vf-grad);
    transition: width 0.3s ease-in-out;
    border-radius: 2px;
}

.nav-link:hover::after, 
.nav-link.active::after {
    width: 100%;
}

/* --- 5. NAVBAR CONTACT BUTTON --- */
.btn-nav-contact {
    background: var(--vf-grad); 
    color: #ffffff !important; 
    padding: 8px 22px; 
    border-radius: 50px; 
    text-decoration: none; 
    font-family: var(--font-body);
    font-weight: 700; 
    font-size: 0.8rem; 
    letter-spacing: 1px;
    text-transform: uppercase; 
    display: inline-flex; 
    align-items: center; 
    border: none; 
    position: relative; 
    z-index: 1; 
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 10px rgba(246, 143, 29, 0.2);
}

.btn-nav-contact:hover { 
    transform: translateY(-2px); 
    box-shadow: 0 8px 20px rgba(246, 143, 29, 0.4); 
}

/* Mobile Menu Adjustments */
.navbar-toggler { 
    border: none; 
    padding: 0; 
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 991px) {
    .btn-nav-contact { 
        margin-bottom: 15px; 
        width: 100%; 
        justify-content: center; 
    }
    
    .navbar-collapse {
        background: var(--nav-mobile-bg);
        padding: 20px;
        border-radius: 12px;
        box-shadow: 0 10px 40px var(--nav-mobile-shadow);
        margin-top: 15px;
        border: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .nav-item { 
        border-bottom: 1px solid rgba(255, 255, 255, 0.1); 
        padding: 8px 0; 
    }
    
    .nav-item:last-child { 
        border-bottom: none; 
    }
    
    .navbar-nav { 
        align-items: center !important; 
    }
    
    .btn-pulse { 
        margin-right: 0; 
        margin-bottom: 15px; 
        width: 100%; 
        justify-content: center; 
    }
}

/* --- 7. HERO SECTION --- */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: clamp(100px, 10vw, 120px);
    padding-bottom: clamp(60px, 8vw, 80px);
    z-index: 1;
}

.hero-title, 
.ready-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 5.5rem); 
    letter-spacing: -0.04em; 
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-title {
    line-height: 1.05;
}

.ready-title {
    line-height: 0.9;
    letter-spacing: -0.001em; 
}

.text-navy {
    color: var(--text-main) !important;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    font-weight: 500;
    max-width: 90%;
    margin-bottom: 40px;
    line-height: 1.3;
}

.hero-tag {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-glow {
    background: var(--vf-grad);
    color: #ffffff !important;
    padding: 16px 32px;
    border-radius: 100px;
    font-family: var(--font-body);
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: none;
    box-shadow: 0 10px 20px rgba(246, 143, 29, 0.3);
}

.btn-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(234, 59, 96, 0.4);
}

/* --- 8. AESTHETIC MINIMALIST BENTO GRID --- */
.aesthetic-bento {
    display: flex;
    flex-direction: column; /* Stacks them perfectly */
    gap: 24px; /* Space between the two cards */
    width: 100%;
}

.bento-card {
    width: 100% !important; /* Forces it to span the full width */
    aspect-ratio: 16 / 9; /* FORCES EXACT SAME HEIGHT FOR BOTH CARDS */
    border-radius: 24px; 
    overflow: hidden; /* Clips the corners for that smooth modern look */
    position: relative;
    background: #ffffff; /* Prevents transparent gaps */
    border: 1px solid rgba(255, 255, 255, 0.08); 
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04); 
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.bento-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.bento-card img, 
.bento-card video {
    width: 100%; 
    height: 100%; 
    
    /* This makes the image completely fill the box edge-to-edge just like your reference photo */
    object-fit: cover; 
    object-position: center;
    
    display: block; 
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-card:hover img, 
.bento-card:hover video {
    transform: scale(1.03); 
}

/* We don't even need the grid-column rules anymore, but we'll override them just in case they are stuck in your code */
.bento-wide,
.bento-wide-bottom {
    width: 100%;
}

@media (max-width: 768px) {
    .bento-card {
        aspect-ratio: 4 / 3; /* Makes them a little taller on mobile screens */
    }
}

/* --- 9. SERVICES GRID LAYOUT --- */
.vf-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); 
    gap: clamp(20px, 3vw, 30px);
}

.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); 
    border-radius: 16px;
    padding: clamp(25px, 4vw, 40px) clamp(20px, 3vw, 30px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.svc-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(246, 143, 29, 0.15), rgba(234, 59, 96, 0.15));
    color: var(--brand-orange);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

.vf-svc-card:hover .svc-icon {
    transform: scale(1.1);
}

.svc-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    letter-spacing: 0.02em;
}

.svc-desc {
    color: #cbd5e1;
    font-size: 0.95rem;
    font-weight: 400 !important; 
    line-height: 1.6;
    margin-bottom: 10px; 
    flex-grow: 1; 
    width: 100%; 
}

/* Service / Global Tag Pills */
.service-tags,
.svc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(6px, 1vw, 10px);
    margin-top: auto; 
}

.tag-pill,
.svc-tags span {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 0.85rem;
    padding: 8px 16px; 
    border-radius: 50px;
    font-weight: 600;
    transition: background 0.3s ease;
    white-space: nowrap; 
}

.tag-pill:hover,
.svc-tags span:hover {
    background: rgba(255, 255, 255, 0.1);
}
        
/* --- 10. V4 SECTION TITLE --- */
.section-title-v4 {
    font-family: var(--font-display);
    text-transform: uppercase;
    font-size: clamp(2rem, 5vw, 2.5rem);
    letter-spacing: 0.04em;
    position: relative;
    display: inline-block;
    padding-bottom: 16px; 
    margin-bottom: 0;
    color: #ffffff; 
}

.section-title-v4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, var(--brand-orange), var(--brand-pink));
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(246, 143, 29, 0.4); 
    transition: width 0.3s ease;
}

.section-title-v4:hover::after {
    width: 120px;
}

/* --- 11. V4 SERVICES WRAPPER --- */
.vf-services-wrapper-v4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 450px), 1fr));
    gap: clamp(20px, 4vw, 40px); 
    margin: clamp(30px, 5vw, 50px) auto clamp(40px, 6vw, 60px) auto;
    padding: clamp(10px, 2vw, 15px); 
    max-width: 1200px; 
}

.vf-svc-card-v4 {
    background: rgba(25, 25, 25, 0.4); 
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px; 
    padding: clamp(35px, 5vw, 55px) clamp(25px, 4vw, 40px) clamp(25px, 4vw, 40px);
    position: relative;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease, border-color 0.4s ease;
    display: flex;
    flex-direction: column;
    color: #ffffff;
    min-height: 350px;
}

.vf-svc-card-v4:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(246, 143, 29, 0.4); 
}

.vf-svc-card-v4 .service-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.vf-svc-card-v4 .service-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(246, 143, 29, 0.1), rgba(234, 59, 96, 0.1));
    color: var(--brand-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    border: 1px solid rgba(246, 143, 29, 0.2);
    flex-shrink: 0;
}

.vf-svc-card-v4 h4 {
    font-family: var(--font-display);
    text-transform: uppercase;
    font-size: clamp(1.4rem, 3vw, 1.6rem);
    font-weight: normal; 
    margin-bottom: 0; 
    color: var(--brand-orange) !important;
    line-height: 1.2;
    letter-spacing: 0.02em;
}

.vf-svc-card-v4 p {
    color: #cbd5e1 !important; 
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 30px; 
}

/* --- 12. CORPORATE CARDS --- */
.services-offered-section {
    color: #f8fafc;
}

.vf-corp-card h4 {
    font-family: var(--font-display);
    text-transform: uppercase;
    font-size: clamp(1.2rem, 2.5vw, 1.4rem);
    letter-spacing: 0.02em;
    margin-bottom: 16px;
    color: var(--brand-orange) !important; 
}

.vf-corp-card p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #f8fafc !important; 
}

.vf-corp-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
}

.vf-corp-tags span {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: #ffffff !important; 
}

/* =========================================================
   AVAIL OUR SERVICES & CORPORATE COMPONENTS
========================================================= */

.vf-avail-section {
    padding: clamp(3.75rem, 8vw, 6.25rem) 0;
    position: relative;
    width: 100%;
}

/* Typography & Colors (Permanently Dark) */
.vf-avail-title {
    font-family: 'Bakbak One', sans-serif;
    text-transform: uppercase;
    font-size: clamp(2.2rem, 5vw, 2.8rem);
    line-height: 1.1;
    color: #ffffff;
}

.text-orange {
    color: var(--brand-orange, #f68f1d) !important;
}

.vf-avail-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.15rem);
    line-height: 1.6;
    font-weight: 600;
    color: #e2e8f0;
}

.vf-contact-info span {
    color: #ffffff;
    font-weight: 600;
}

/* Form Card Styling */
.vf-form-card {
    background: rgba(25, 25, 25, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.5rem;
    padding: clamp(1.875rem, 5vw, 3.125rem);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    width: 100%;
    box-sizing: border-box;
}

.vf-form-card .form-title {
    font-family: 'Bakbak One', sans-serif;
    color: var(--brand-orange, #f68f1d);
    text-transform: uppercase;
    font-size: clamp(1.5rem, 4vw, 1.8rem);
    letter-spacing: 0.02em;
    margin-bottom: 1.5rem;
}

/* Input Fields */
.vf-input, 
.vf-select {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff !important;
    border-radius: 0.75rem;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.vf-input::placeholder {
    color: #64748b;
}

.vf-input:focus, 
.vf-select:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--brand-orange, #f68f1d);
    box-shadow: 0 0 0 4px rgba(246, 143, 29, 0.15);
    outline: none;
}

/* Input Wrapper & Tooltip */
.vf-input-wrap {
    position: relative;
    width: 100%;
}

.vf-input-wrap .vf-input {
    padding-right: 2.8125rem;
}

.vf-info-icon {
    position: absolute;
    right: 1rem;
    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, #f68f1d);
}

.vf-info-icon::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: calc(100% + 12px);
    right: -10px;
    width: max-content;
    max-width: clamp(150px, 50vw, 220px);
    background: #1e293b;
    color: #ffffff;
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.625rem 0.875rem;
    border-radius: 0.5rem;
    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);
}

/* Form Labels (Outside Inputs) */
.vf-form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    color: #e2e8f0;
}

/* Dropdown Options */
.vf-select option {
    background-color: #1a1a1a;
    color: #ffffff;
}

/* Captcha Styling */
.vf-captcha-placeholder {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #cbd5e1;
    font-size: clamp(0.85rem, 2.5vw, 0.95rem);
    font-weight: 500;
    width: 100%;
    box-sizing: border-box;
}

.vf-captcha-checkbox {
    width: 1.75rem;
    height: 1.75rem;
    border: 2px solid #64748b;
    border-radius: 0.25rem;
    background: #0f172a;
    margin-right: clamp(0.5rem, 2vw, 1rem);
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.vf-captcha-checkbox:hover {
    border-color: var(--brand-orange, #f68f1d);
}

.vf-captcha-logo {
    text-align: center;
    color: #64748b;
    line-height: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.vf-captcha-logo i {
    font-size: 1.5rem;
    margin-bottom: 4px;
}

.vf-captcha-logo small {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Submit Button */
.vf-btn-submit {
    position: relative;
    background: transparent;
    color: #ffffff !important;
    border: 2px solid var(--brand-orange, #f68f1d);
    border-radius: 0.75rem;
    padding: clamp(1rem, 3vw, 1.125rem) clamp(1.25rem, 4vw, 1.875rem);
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s ease;
    cursor: pointer;
    width: 100%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.vf-btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--brand-orange, #f68f1d), #ea3b60);
    transition: width 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: -1;
}

.vf-btn-submit:hover {
    color: #ffffff !important;
    border-color: transparent;
    box-shadow: 0 10px 25px rgba(246, 143, 29, 0.4);
    transform: translateY(-3px);
}

.vf-btn-submit:hover::before {
    width: 100%;
}

/* Contact Box Design */
.vf-contact-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.25rem;
    padding: clamp(1.25rem, 4vw, 1.875rem);
    display: flex;
    flex-direction: column;
    width: 100%;
    box-sizing: border-box;
}

.contact-box-title {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--brand-orange, #f68f1d);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.icon-circle {
    width: 2.8125rem;
    height: 2.8125rem;
    background: rgba(246, 143, 29, 0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-orange, #f68f1d);
    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;
    margin-bottom: 2px;
    font-weight: 600;
}

.contact-text span {
    font-size: clamp(0.95rem, 2.5vw, 1.05rem);
    font-weight: 500;
    color: #ffffff;
    word-break: break-word;
}

/* Hero Actions */
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    width: 100%;
}

.hero-actions .btn-glow,
.hero-actions .btn-glass {
    padding: 0.75rem 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 100%;
}

@media (min-width: 768px) {
    .hero-actions .btn-glow,
    .hero-actions .btn-glass {
        flex: 0 1 auto;
    }
}

/* Digital Marketing Services Section */
.vf-dm-section {
    padding: clamp(3.125rem, 8vw, 5rem) 0;
    position: relative;
    z-index: 2;
    width: 100%;
}

.vf-dm-header {
    margin-bottom: clamp(2rem, 5vw, 3.125rem);
}

.vf-dm-header h2 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.25rem;
}

.vf-dm-header p {
    color: #cbd5e1;
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    line-height: 1.6;
}

/* Services Grid Layout */
.vf-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: clamp(1.25rem, 3vw, 1.875rem);
    width: 100%;
}

/* Service Cards (Merged `.vf-svc-card` and `.vf-dm-card` structures) */
.vf-svc-card, 
.vf-dm-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);
    border-radius: 1rem;
    padding: clamp(1.5rem, 4vw, 2.5rem) clamp(1.25rem, 3vw, 1.875rem);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    box-sizing: border-box;
}

.vf-svc-card h4, 
.vf-dm-card h4 {
    font-family: 'Bakbak One', sans-serif !important;
    color: #ffffff;
    font-size: clamp(1.1rem, 3vw, 1.25rem);
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.vf-svc-card p, 
.vf-dm-card p {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
    font-weight: 600;
    text-align: justify;
}

.vf-dm-icon {
    width: 3.75rem;
    height: 3.75rem;
    background: rgba(246, 143, 29, 0.1);
    color: var(--brand-orange, #f68f1d);
    border-radius: 0.9375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}

/* Testimonial Block */
.vf-dm-testimonial {
    background: linear-gradient(135deg, rgba(246, 143, 29, 0.1), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(246, 143, 29, 0.2);
    border-radius: 1.25rem;
    padding: clamp(1.875rem, 6vw, 3.125rem);
    text-align: center;
    position: relative;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

.vf-dm-stars {
    color: var(--brand-orange, #f68f1d);
    font-size: clamp(1rem, 3vw, 1.2rem);
    margin-bottom: 1.25rem;
    letter-spacing: 5px;
}

.vf-dm-quote {
    font-size: clamp(1.1rem, 3vw, 1.25rem);
    color: #ffffff;
    font-style: italic;
    font-weight: 500;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Banner Inline Block */
.vf-dm-banner {
    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: 1rem;
    padding: clamp(1.5rem, 5vw, 2.5rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.25rem;
    width: 100%;
    box-sizing: border-box;
}

.vf-dm-banner h4 {
    font-family: 'Bakbak One', sans-serif !important;
    letter-spacing: 0.5px;
    color: #ffffff;
    margin: 0;
}

/* Global Utilities */
.vf-title-navy-white {
    color: #ffffff !important;
    transition: color 0.3s ease;
}

.vf-brand-line {
    display: block;
    width: clamp(150px, 40vw, 250px);
    max-width: 80%;
    height: 5px;
    background: var(--vf-grad, linear-gradient(90deg, #f68f1d, #ea3b60)) !important;
    border-radius: 5px;
    box-shadow: 0 0 15px rgba(246, 143, 29, 0.7), 0 0 5px rgba(234, 59, 96, 0.5);
    transition: box-shadow 0.3s ease;
}

/* Sliding Gradient Button */
.btn-vf-slide {
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff !important;
    border-radius: 1.875rem;
    text-decoration: none;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    padding: clamp(0.6rem, 2vw, 0.75rem) clamp(1.2rem, 3vw, 1.5rem);
    white-space: nowrap;
}

.btn-vf-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--vf-grad, linear-gradient(90deg, #f68f1d, #ea3b60));
    z-index: -1;
    transform: translateX(-101%);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-vf-slide:hover::before {
    transform: translateX(0);
}

.btn-vf-slide:hover {
    border-color: transparent !important;
    box-shadow: 0 5px 15px rgba(246, 143, 29, 0.4);
}

/* Articles and Search Adjustments */
.search-box-modern {
    background: rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.1);
}

.search-box-modern:focus-within {
    background: rgba(0, 0, 0, 0.6);
    border-color: var(--brand-orange, #f68f1d);
}

.cat-chip {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(0, 0, 0, 0.2);
}

/* Article Frame */
.article-frame {
    position: relative;
    z-index: 1;
    background: rgba(2, 46, 71, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    transition: transform 0.1s ease-out, box-shadow 0.3s ease;
    transform-style: preserve-3d;
    will-change: transform;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.interactive-article-wrapper:hover .article-frame {
    box-shadow: 0 30px 50px rgba(0,0,0,0.15);
}

.frame-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(255,255,255,0.4), transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
    pointer-events: none;
}

.interactive-article-wrapper:hover .frame-glow {
    opacity: 0.7;
}

.frame-img-wrapper {
    position: relative;
    width: 100%;
    height: clamp(250px, 40vw, 470px);
    overflow: hidden;
    flex-shrink: 0;
}

.frame-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.interactive-article-wrapper:hover .frame-img {
    transform: scale(1.08);
}

.frame-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(0,0,0,0.6);
    color: #ffffff;
    backdrop-filter: blur(5px);
    font-size: 0.75rem;
    padding: 0.375rem 0.75rem;
    border-radius: 3.125rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    z-index: 3;
}

.frame-content {
    padding: clamp(1.25rem, 4vw, 1.875rem);
    position: relative;
    z-index: 3;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.frame-title {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    letter-spacing: -0.04em;
    margin-bottom: 0.75rem;
    line-height: 1.2;
    color: #ffffff;
}

.frame-desc {
    font-size: 0.95rem;
    color: #94a3b8;
    line-height: 1.5;
    margin-bottom: 1.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Animations */
@keyframes pulse-glow {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
}

.fade-in-up {
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* CTA Card */
.vf-cta-card {
    background-color: var(--brand-navy, #022e47);
    border-radius: clamp(1.5rem, 4vw, 2rem);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    padding: clamp(2.5rem, 6vw, 4rem) clamp(1.25rem, 4vw, 3rem);
    transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    width: 100%;
    box-sizing: border-box;
}

.vf-cta-card .vf-title-navy-white {
    color: #ffffff !important;
}

.vf-cta-card .hero-title {
    margin-bottom: 1.25rem;
}

.vf-cta-card .hero-subtitle {
    max-width: min(100%, 800px);
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: clamp(1rem, 2.5vw, 1.15rem);
    line-height: 1.6;
}

.vf-cta-card .hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* =========================================================
   VERAFEDE - UNIFIED DARK THEME & RESPONSIVE COMPONENTS
========================================================= */

/* Enables smooth gliding when clicking anchor links */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
    width: 100%;
    background-color: #000000; /* Baseline dark bg */
    color: #ffffff;
}

#avail-section {
    scroll-margin-top: clamp(60px, 8vh, 100px);
}

/* --- IMAGE & LOGO ADAPTATION (Permanently Dark) --- */
.vf-img-light,
.logo-light {
    display: none !important;
}

.vf-img-dark,
.logo-dark {
    display: block !important;
}

.brand-logo {
    height: clamp(50px, 8vw, 70px);
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

/* --- SERVICE CARD BASE --- */
.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);
    border-radius: clamp(1rem, 3vw, 1.25rem);
    padding: clamp(1.5rem, 4vw, 2.5rem) clamp(1.25rem, 3vw, 1.875rem);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    align-items: flex-start !important;
    text-align: left !important;
    height: 100%;
    width: 100%;
    box-sizing: border-box;
    color: #ffffff;
}

.vf-svc-card:hover {
    transform: translateY(-5px);
}

.vf-svc-card-inner {
    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(1rem, 3vw, 1.25rem);
    transform: translateZ(0);
    transition: all 0.4s ease;
    width: 100%;
    box-sizing: border-box;
}

.vf-svc-card:hover .vf-svc-card-inner {
    border-color: rgba(246, 143, 29, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.svc-icon {
    width: clamp(45px, 8vw, 60px);
    height: clamp(45px, 8vw, 60px);
    background: linear-gradient(135deg, rgba(246, 143, 29, 0.15), rgba(234, 59, 96, 0.15));
    color: var(--brand-orange, #f68f1d);
    border-radius: clamp(0.6rem, 2vw, 0.875rem);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.vf-svc-card:hover .svc-icon {
    transform: scale(1.1);
}

.svc-title {
    font-size: clamp(1.1rem, 3vw, 1.25rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: clamp(0.75rem, 2vw, 1rem);
    letter-spacing: 0.02em;
    width: 100%;
}

.svc-desc {
    color: #94a3b8;
    font-size: clamp(0.875rem, 2vw, 0.95rem);
    line-height: 1.6;
    font-weight: 400 !important;
    margin-bottom: 0.625rem !important;
    flex-grow: 1;
    width: 100%;
}

/* Card Tags (Pills) */
.svc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    width: 100%;
    justify-content: flex-start !important;
    margin-top: auto !important;
}

.svc-tags span {
    background: rgba(255, 255, 255, 0.05);
    color: #cbd5e1;
    font-size: clamp(0.7rem, 1.5vw, 0.75rem);
    font-weight: 500;
    padding: 0.375rem 0.75rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* --- BRANDING SECTION STYLES --- */
.branding-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.15rem);
    line-height: 1.2;
    font-weight: 600;
    color: #e2e8f0;
}

.branding-glass-card,
.testimonial-card,
.branding-cta-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: clamp(1rem, 4vw, 1.25rem);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.testimonial-card {
    padding: clamp(1.25rem, 4vw, 1.875rem);
    height: 100%;
}

.branding-cta-box {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(246, 143, 29, 0.1) 100%);
    border: 1px solid rgba(246, 143, 29, 0.3);
}

.branding-card-title {
    color: #ffffff;
    font-size: clamp(1.1rem, 2.5vw, 1.25rem);
}

.branding-card-text {
    color: #cbd5e1;
    font-size: clamp(0.875rem, 2vw, 0.95rem);
}

/* --- INNER MINI CARDS --- */
.vf-mini-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: clamp(0.5rem, 2vw, 0.75rem);
    transition: background 0.3s ease;
    padding: clamp(0.75rem, 2vw, 1rem);
    box-sizing: border-box;
    width: 100%;
}

.vf-card-text-muted {
    color: rgba(255, 255, 255, 0.7);
    font-size: clamp(0.8rem, 2vw, 0.9rem);
}

/* --- PROJECT CARDS --- */
.vf-project-card,
.project-hover-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);
    border-radius: clamp(0.75rem, 3vw, 1rem);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    box-sizing: border-box;
}

.vf-project-card:hover,
.project-hover-card:hover {
    transform: translateY(-8px);
    border-color: rgba(246, 143, 29, 0.4);
    background: rgba(0, 0, 0, 0.7);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.project-img-wrap {
    overflow: hidden;
    border-radius: clamp(0.5rem, 2vw, 0.75rem);
    width: 100%;
}

.project-img-wrap img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.vf-project-card:hover .project-img-wrap img,
.project-hover-card:hover .project-img-wrap img {
    transform: scale(1.08);
}

/* Pills */
.glass-pill,
.vf-glass-pill {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-size: clamp(0.75rem, 2vw, 0.85rem);
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
}

/* --- INNOVATIVE SOLUTIONS SECTION --- */
.vf-feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: clamp(0.75rem, 3vw, 1rem);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    color: #ffffff;
    padding: clamp(1.25rem, 4vw, 2rem);
    width: 100%;
    box-sizing: border-box;
}

.vf-feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(246, 143, 29, 0.5);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.icon-circle-lg {
    width: clamp(45px, 10vw, 60px);
    height: clamp(45px, 10vw, 60px);
    border-radius: 50%;
    background: #121212;
    border: 2px solid rgba(246, 143, 29, 0.5);
    color: #f68f1d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    flex-shrink: 0;
}

.vf-testimonial-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: clamp(0.75rem, 3vw, 1rem);
    padding: clamp(1.25rem, 4vw, 2rem);
    height: 100%;
    width: 100%;
    box-sizing: border-box;
    color: rgba(255, 255, 255, 0.85);
    transition: all 0.3s ease;
}

.vf-testimonial-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.vf-cta-box {
    background: linear-gradient(135deg, rgba(246, 143, 29, 0.15) 0%, rgba(0, 0, 0, 0.6) 100%);
    border: 1px solid rgba(246, 143, 29, 0.3);
    border-radius: clamp(1rem, 4vw, 1.5rem);
    backdrop-filter: blur(10px);
    color: #ffffff;
    padding: clamp(1.5rem, 4vw, 3rem);
    width: 100%;
    box-sizing: border-box;
}

/* --- IMAGE ZOOM EFFECT --- */
.img-zoom {
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vf-feature-card:hover .img-zoom {
    transform: scale(1.08);
}

/* --- PREMIUM CTA ARROW --- */
.vf-cta-arrow {
    width: clamp(50px, 12vw, 75px);
    height: clamp(50px, 12vw, 75px);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff !important;
    font-size: clamp(1.4rem, 4vw, 1.8rem);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    animation: smoothBounce 2.5s infinite ease-in-out;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.vf-cta-arrow:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
    animation-play-state: paused;
}

@keyframes smoothBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(15px); }
}

/* --- CTA MAIN CARD --- */
.vf-cta-card {
    background-color: var(--brand-navy, #022e47);
    border-radius: clamp(1.25rem, 4vw, 2rem);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    padding: clamp(1.5rem, 5vw, 3rem) clamp(1.25rem, 4vw, 2.5rem);
    transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.vf-cta-card .vf-title-navy-white {
    color: #ffffff !important;
}

.vf-cta-card .hero-subtitle {
    color: rgba(255, 255, 255, 0.6);
    max-width: min(100%, 800px);
    margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
    font-size: clamp(0.95rem, 2.5vw, 1.15rem);
    line-height: 1.6;
}

.vf-cta-card .hero-title {
    margin-bottom: clamp(1rem, 3vw, 1.25rem);
}

.vf-cta-card .hero-actions {
    display: flex;
    gap: clamp(0.75rem, 2vw, 1rem);
    flex-wrap: wrap;
    width: 100%;
}

/* --- BUTTONS & BRAND ELEMENTS --- */
.btn-vf-slide {
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    border-radius: 30px;
    padding: clamp(0.6rem, 2vw, 0.8rem) clamp(1.2rem, 4vw, 1.8rem);
    font-size: clamp(0.875rem, 2.5vw, 1rem);
    text-decoration: none;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    text-align: center;
    box-sizing: border-box;
}

.btn-vf-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--vf-grad, linear-gradient(90deg, #f68f1d, #ea3b60));
    z-index: -1;
    transform: translateX(-101%);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-vf-slide:hover::before {
    transform: translateX(0);
}

.btn-vf-slide:hover {
    color: #ffffff !important;
    border-color: transparent !important;
    box-shadow: 0 5px 15px rgba(246, 143, 29, 0.4);
}

.vf-brand-line {
    display: block;
    width: clamp(150px, 40vw, 250px);
    max-width: 80%;
    height: 5px;
    background: var(--vf-grad, linear-gradient(90deg, #f68f1d, #ea3b60)) !important;
    border-radius: 5px;
    box-shadow: 0 0 15px rgba(246, 143, 29, 0.7), 0 0 5px rgba(234, 59, 96, 0.5);
    transition: box-shadow 0.3s ease;
}

.vf-btn-submit {
    background: #0f172a;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    padding: clamp(0.75rem, 3vw, 1rem) clamp(1.5rem, 5vw, 2rem);
    border-radius: clamp(0.5rem, 2vw, 0.75rem);
    font-size: clamp(0.9rem, 2.5vw, 1.05rem);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
}

.vf-btn-submit:hover {
    background: #1e293b;
    border-color: var(--brand-orange, #f68f1d);
    box-shadow: 0 4px 20px rgba(246, 143, 29, 0.2);
}

/* --- MODALS & RECEIPT CARDS --- */
.vf-modal-alt {
    border-radius: clamp(1rem, 4vw, 1.75rem);
    background: #0f172a;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.vf-modal-header-hero {
    position: relative;
    background: var(--vf-grad, linear-gradient(90deg, #f68f1d, #ea3b60));
    padding: clamp(1.25rem, 4vw, 1.875rem) clamp(1rem, 4vw, 1.5rem);
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

.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(36px, 8vw, 46px);
    height: clamp(36px, 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, 3vw, 1.2rem);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.vf-info-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: clamp(0.75rem, 3vw, 1.25rem);
    padding: clamp(1rem, 4vw, 1.5rem);
    width: 100%;
    box-sizing: border-box;
}

.vf-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding-bottom: clamp(0.75rem, 2vw, 1rem);
    margin-bottom: clamp(0.75rem, 2vw, 1rem);
    border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
    width: 100%;
}

.vf-info-row:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
}

.vf-info-label {
    font-size: clamp(0.7rem, 2vw, 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.875rem, 2.5vw, 0.95rem);
    font-weight: 600;
    color: #ffffff;
    text-align: right;
    word-break: break-word;
}

/* =========================================
   3. Tablet Mockup Styling (Landscape)
========================================= */
.tablet-mockup-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.tablet-frame {
  position: relative;
  width: 100%;
  max-width: 540px; /* Increased from 380px to accommodate landscape width */
  aspect-ratio: 4 / 3; /* Flipped from 3/4 to standard landscape tablet ratio */
  background: #1a1a1a; /* Dark device bezel */
  border-radius: 24px;
  padding: 16px; /* Bezel thickness */
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Optional: Adds a tiny camera dot to the bezel */
.tablet-frame::before {
  content: '';
  position: absolute;
  top: 50%; /* Moved to the side to simulate a turned tablet */
  left: 6px;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background-color: #333;
  border-radius: 50%;
}

.tablet-screen {
  width: 100%;
  height: 100%;
  background: #ffffff;
  border-radius: 12px; /* Inner screen curve */
  overflow: hidden;
  position: relative;
}

.tablet-image {
  width: 100%;
  height: 100%;
  object-fit: cover; 
  object-position: center; /* Centered works better for landscape */
  display: block;
}

/* 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 */
}