/* --- 1. THEME VARIABLES (Permanently Dark Mode) --- */
:root {
    /* Brand Identity Colors */
    --brand-navy: #022e47;
    --brand-cream: #FAF8F1;
    --brand-orange: #f68f1d;
    --brand-pink: #ea3b60;
    
    /* Base Colors (Hardcoded Dark Theme) */
    --bg-body: #011a2a; 
    --text-main: #e6e6e6;
    --text-muted: rgba(255, 255, 255, 0.6);
    --nav-bg-scrolled: rgba(1, 26, 42, 0.95);
    --nav-mobile-bg: #022e47;
    --nav-mobile-shadow: rgba(0, 0, 0, 0.4);
    --footer-bg: var(--brand-navy);
    
    /* Gradients & Fonts */
    --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;

    /* Glassmorphism Variables */
    --vf-glass-bg: rgba(2, 46, 71, 0.3);
    --vf-glass-border: rgba(255, 255, 255, 0.1);
    --vf-glass-shadow: rgba(0, 0, 0, 0.3);
}

/* --- 2. GLOBAL STYLES --- */
*, *::before, *::after {
    box-sizing: border-box;
}

body {
    background-color: var(--bg-body);
    font-family: var(--font-body);
    color: var(--text-main);
    overflow-x: hidden;
    max-width: 100vw;
}

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); }
}

/* --- 7. HERO SECTION --- */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: clamp(80px, 15vh, 120px) clamp(1rem, 5vw, 3rem) clamp(60px, 10vh, 80px);
    z-index: 1;
}

/* Typography Updates */
.hero-title, .ready-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 5.5rem); 
    line-height: 0.9;
    letter-spacing: -0.001em; 
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-title {
    line-height: 0.7;
}

/* Mapped text-navy to match dark layout intentions */
.text-navy {
    color: var(--text-main) !important;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 600;
    max-width: min(90%, 800px);
    margin-bottom: clamp(20px, 4vw, 40px);
    line-height: 1.1 !important;
}

.hero-tag {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Action Buttons */
.hero-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-glow {
    background: var(--vf-grad);
    color: white !important;
    padding: clamp(12px, 2vw, 16px) clamp(24px, 4vw, 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);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-main) !important;
    padding: clamp(12px, 2vw, 16px) clamp(24px, 4vw, 32px);
    border-radius: 100px;
    font-family: var(--font-body);
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

/* --- AESTHETIC MINIMALIST BENTO GRID --- */
.aesthetic-bento {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: clamp(200px, 30vh, 280px) clamp(160px, 25vh, 220px);
    gap: clamp(12px, 2vw, 20px);
    width: 100%;
    position: relative;
}

.bento-card {
    border-radius: clamp(16px, 2vw, 24px);
    overflow: hidden;
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    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, border-color 0.4s ease;
}

.bento-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

.bento-card img, 
.bento-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-card:hover img, 
.bento-card:hover video {
    transform: scale(1.03); 
}

.bento-wide {
    grid-column: 1 / -1;
    grid-row: 1 / 2;
}

.bento-square-1 {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
}

.bento-square-2 {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}

@media (max-width: 991px) {
    .aesthetic-bento {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        grid-auto-rows: clamp(200px, 30vh, 250px);
        margin-top: clamp(20px, 4vw, 40px);
    }
    
    .bento-wide, .bento-square-1, .bento-square-2 {
        grid-column: 1 / -1;
        grid-row: auto;
    }
}

/* --- SERVICES GRID LAYOUT --- */
.vf-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: clamp(20px, 3vw, 30px);
}

/* --- 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: 16px;
    padding: clamp(24px, 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%;
}

.vf-svc-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);
}

.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: clamp(1.1rem, 2vw, 1.25rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    letter-spacing: 0.02em;
}

.svc-desc {
    color: #94a3b8;
    font-size: 0.95rem;
    font-weight: 400; 
    line-height: 1.6;
    margin-bottom: 10px;
    flex-grow: 1; 
    width: 100%; 
}

.svc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
}

.svc-tags span {
    background: rgba(255, 255, 255, 0.05);
    color: #cbd5e1;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* --- V4 SECTION TITLE --- */
.section-title-v4 {
    font-family: var(--font-display);
    text-transform: uppercase;
    font-size: clamp(1.8rem, 4vw, 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;
}

.vf-services-wrapper-v4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 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(30px, 5vw, 55px) clamp(20px, 4vw, 40px) clamp(24px, 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: #fff;
    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.25rem, 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: 1.05rem;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 30px; 
}

.service-tags, .vf-svc-card-v4 .service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: auto; 
}

.tag-pill, .vf-svc-card-v4 .tag-pill {
    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, .vf-svc-card-v4 .tag-pill:hover {
    background: rgba(255, 255, 255, 0.15);
}

.services-offered-section {
    color: #f8fafc;
}

/* --- STRICT TEXT COLOR RULES --- */
.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 SPLIT LAYOUT
========================================================= */
.vf-avail-section {
    padding: clamp(60px, 10vw, 100px) clamp(1rem, 5vw, 3rem);
    position: relative;
}

.vf-avail-title {
    font-family: var(--font-display);
    text-transform: uppercase;
    font-size: clamp(2rem, 5vw, 2.8rem);
    line-height: 1.1;
    color: #ffffff; 
}

.text-orange {
    color: var(--brand-orange) !important;
}

.vf-avail-subtitle {
    font-size: clamp(1rem, 2vw, 1.15rem);
    line-height: 1.6;
    font-weight: 600; 
    color: #e2e8f0; 
    margin-top: 10px;
    margin-bottom: 20px;
}

.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: 24px;
    padding: clamp(30px, 5vw, 50px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.vf-form-card .form-title {
    font-family: var(--font-display);
    color: var(--brand-orange);
    text-transform: uppercase;
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    letter-spacing: 0.02em;
    margin-bottom: 24px;
}

/* 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: 12px;
    padding: clamp(12px, 2vw, 16px) clamp(16px, 3vw, 20px);
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-bottom: 16px;
}

.vf-input::placeholder {
    color: #64748b;
}

.vf-input:focus, .vf-select:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--brand-orange);
    box-shadow: 0 0 0 4px rgba(246, 143, 29, 0.15);
    outline: none;
}

/* Submit Button */
.vf-btn-submit {
    position: relative;
    background: transparent; 
    color: #ffffff !important;
    border: 2px solid var(--brand-orange);
    border-radius: 12px;
    padding: clamp(14px, 3vw, 18px) clamp(24px, 4vw, 30px);
    font-size: clamp(1rem, 2vw, 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-block;
    text-align: center;
}

.vf-btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%; 
    height: 100%;
    background: linear-gradient(90deg, var(--brand-orange), var(--brand-pink));
    transition: width 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: -1; 
}

.vf-btn-submit:hover {
    color: #fff !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%; 
}

/* --- INPUT WRAPPER & HOVER TOOLTIP --- */
.vf-input-wrap {
    position: relative;
    width: 100%;
}

.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; 
    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);
}

/* Custom CSS Tooltip Box */
.vf-info-icon::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: calc(100% + 12px);
    right: -10px; 
    width: max-content;
    max-width: clamp(180px, 50vw, 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);
}

/* 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);
}

/* --- 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: clamp(20px, 4vw, 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: 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(40px, 8vw, 45px);
    height: clamp(40px, 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: 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, 2vw, 1.05rem);
    font-weight: 500;
    color: #ffffff;
}

/* --- DROPDOWN OPTION VISIBILITY --- */
.vf-select option {
    background-color: #1a1a1a; 
    color: #ffffff;
}

/* --- CAPTCHA PLACEHOLDER STYLING --- */
.vf-captcha-placeholder {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #cbd5e1; 
    font-size: 0.95rem;
    font-weight: 500;
}

.vf-captcha-checkbox {
    width: 28px;
    height: 28px;
    border: 2px solid #64748b;
    border-radius: 4px;
    background: #0f172a;
    margin-right: 15px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.vf-captcha-checkbox:hover {
    border-color: var(--brand-orange);
}

.vf-captcha-logo {
    text-align: center;
    color: #64748b;
    line-height: 1;
}

.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;
}

/* --- 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: 8px;
    color: #e2e8f0; 
}

/* --- HERO BUTTONS OVERRIDE --- */
.hero-actions .btn-glow,
.hero-actions .btn-glass {
    display: inline-flex; 
    align-items: center;
    justify-content: center;
}

@media (max-width: 767px) {
    .hero-actions {
        display: flex;
        flex-direction: column;
        gap: 16px; 
        width: 100%;
    }

    .hero-actions .btn-glow,
    .hero-actions .btn-glass {
        width: 100%; 
    }
}

/* --- DIGITAL MARKETING SERVICES SECTION --- */
.vf-dm-section {
    padding: clamp(60px, 10vw, 80px) clamp(1rem, 5vw, 3rem);
    position: relative;
    z-index: 2;
}

.vf-dm-header {
    margin-bottom: clamp(30px, 6vw, 50px);
}

.vf-dm-header h2 {
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 700;
    color: #ffffff; 
    margin-bottom: 20px;
}

.vf-dm-header p {
    color: #cbd5e1; 
    font-size: clamp(1rem, 2vw, 1.1rem);
    line-height: 1.6;
}

/* Service Card Specifics for DM Section */
.vf-svc-card h4 {
    font-family: var(--font-display) !important; 
    color: #ffffff; 
    font-size: clamp(1.15rem, 3vw, 1.25rem);
    margin-bottom: 15px;
    letter-spacing: 0.5px; 
}

.vf-svc-card p {
    color: #94a3b8; 
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
    font-weight: 600; 
    text-align: justify; 
}

.vf-dm-banner h4 {
    font-family: var(--font-display) !important;
    letter-spacing: 0.5px;
}

.vf-dm-icon {
    width: 60px;
    height: 60px;
    background: rgba(246, 143, 29, 0.1);
    color: var(--brand-orange);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 25px;
}

.vf-dm-card h4 {
    color: #ffffff;
    font-weight: 600;
    font-size: clamp(1.15rem, 3vw, 1.25rem);
    margin-bottom: 15px;
}

.vf-dm-card p {
    color: #94a3b8; 
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 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: 20px;
    padding: clamp(30px, 6vw, 50px);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.vf-dm-stars {
    color: var(--brand-orange);
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 20px;
    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: 16px; 
    padding: clamp(24px, 5vw, 40px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

/* Custom Utility for Heading Theme Swapping (Locked to Dark) */
.vf-title-navy-white {
    color: #ffffff !important; 
}

/* --- BRAND SEPARATOR LINE --- */
.vf-brand-line {
    display: block;
    width: 250px;
    max-width: 80%;
    height: 5px;
    background: var(--vf-grad) !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; 
    border-radius: 30px; 
    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(12px, 2vw, 16px) clamp(24px, 4vw, 32px);
}

.btn-vf-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--vf-grad); 
    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); 
}

/* --- BOOST SECTION CARDS (Completely Static) --- */
.vf-boost-section .vf-svc-card {
    transition: none !important; 
}

.vf-boost-section .vf-svc-card:hover {
    transform: none !important; 
    box-shadow: none !important; 
    border-color: rgba(255, 255, 255, 0.08) !important; 
    background: rgba(0, 0, 0, 0.4) !important; 
}

/* --- INTERACTIVE ARTICLE WRAPPER --- */
.interactive-article-wrapper {
    perspective: 1000px; 
}

.article-frame {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    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;
}

.interactive-article-wrapper:hover .article-frame {
    box-shadow: 0 30px 50px rgba(0,0,0,0.15);
}

/* --- INTERACTIVE ARTICLE FRAME (CONTINUED) --- */
.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(300px, 40vw, 470px); 
    overflow: hidden; 
}

.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: 15px; 
    left: 15px;
    background: rgba(0,0,0,0.6); 
    color: white;
    backdrop-filter: blur(5px); 
    -webkit-backdrop-filter: blur(5px);
    font-size: 0.75rem;
    padding: 5px 12px; 
    border-radius: 50px; 
    text-transform: uppercase;
    font-weight: 600; 
    letter-spacing: 1px;
    z-index: 3;
}

.frame-content { 
    padding: clamp(20px, 4vw, 30px); 
    position: relative;
    z-index: 3;
}

.frame-title {
    font-size: clamp(1.25rem, 3vw, 1.5rem); 
    letter-spacing: -0.04em;
    margin-bottom: 12px; 
    line-height: 1.2;
}

.frame-desc {
    font-size: 0.95rem; 
    color: var(--text-muted);
    line-height: 1.5; 
    margin-bottom: 20px;
    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); } 
}

/* --- DARK MODE OVERRIDES --- */
[data-theme="dark"] .search-box-modern { 
    background: rgba(0, 0, 0, 0.3); 
    border-color: rgba(255, 255, 255, 0.1); 
}

[data-theme="dark"] .search-box-modern:focus-within { 
    background: rgba(0, 0, 0, 0.6); 
    border-color: var(--brand-orange); 
}

[data-theme="dark"] .cat-chip { 
    border-color: rgba(255, 255, 255, 0.15); 
    background: rgba(0, 0, 0, 0.2); 
}

[data-theme="dark"] .article-frame { 
    background: rgba(2, 46, 71, 0.4); 
    border-color: rgba(255, 255, 255, 0.05); 
}

/* 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;
}
/* --- SERVICES GRID LAYOUT --- */
.vf-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr) !important; 
    gap: clamp(20px, 3vw, 30px);
}

@media (max-width: 991px) {
    .vf-services-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

@media (max-width: 767px) {
    .vf-services-grid { grid-template-columns: 1fr !important; }
}

/* --- SERVICE CARD BASE (Dark Theme) --- */
.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(30px, 4vw, 40px) clamp(20px, 3vw, 30px);
    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%;
}

.vf-svc-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); 
}

.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, #f68f1d);
    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;
    width: 100%;
}

.svc-desc {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 400 !important; 
    margin-bottom: 10px !important; 
    flex-grow: 1; 
    width: 100%;
}

/* Card Tags (Pills) */
.svc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    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: 0.75rem;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* --- LIGHT MODE ADAPTATIONS FOR SVC CARDS --- */
[data-theme="light"] .vf-svc-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

[data-theme="light"] .vf-svc-card:hover {
    border-color: var(--brand-orange, #f68f1d);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .svc-title { color: var(--brand-orange, #f68f1d) !important; }
[data-theme="light"] .svc-desc { color: #475569; }
[data-theme="light"] .svc-icon { background: rgba(246, 143, 29, 0.1); }
[data-theme="light"] .svc-tags span {
    background: #f1f5f9;
    color: #334155;
    border-color: #e2e8f0;
}

/* --- BRAND LOGO THEME ADAPTATION --- */
.brand-logo {
    height: clamp(50px, 6vw, 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;
}

/* --- 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; 
}

[data-theme="dark"] .vf-modal-alt {
    background: #0f172a; 
    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: clamp(24px, 4vw, 30px) clamp(20px, 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: 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: clamp(16px, 3vw, 24px);
}

[data-theme="dark"] .vf-info-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.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);
}

.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;
}

.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);
}

/* --- 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);
}

/* --- BUTTONS --- */
.btn-submit {
    background: var(--vf-grad, linear-gradient(135deg, #f68f1d 0%, #ea3b60 100%));
    color: #ffffff !important;
    border: none !important;
    font-weight: 600;
    font-size: 1rem; 
    padding: 14px 28px; 
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(234, 59, 96, 0.25);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-submit:hover {
    color: #ffffff;
    transform: translateY(-2px); 
    box-shadow: 0 8px 25px rgba(234, 59, 96, 0.4); 
}

.btn-submit i {
    transition: transform 0.3s ease;
}

.btn-submit:hover i.fa-arrow-right {
    transform: translateX(4px);
}

.btn-edit-alt {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--text-muted, #64748b);
    border: 1px solid transparent;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    padding: 14px 24px; 
}

.btn-edit-alt:hover {
    color: var(--text-main, #0f172a);
    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);
}

/* Force Dark Blue for Submit Button in Dark Mode */
[data-theme="dark"] .vf-btn-submit {
    background: #022e47 !important; 
    color: #ffffff !important; 
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 4px 15px rgba(2, 46, 71, 0.5) !important;
}

[data-theme="dark"] .vf-btn-submit:hover {
    background: #034166 !important; 
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(2, 46, 71, 0.7) !important;
}

/* --- VIDEO SHOWCASE --- */
.video-showcase-full {
    width: 100%;
    padding: clamp(30px, 5vw, 60px) clamp(10px, 3vw, 20px);
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent; 
}

.phone-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 19.5;
    border: 14px solid #1a1a1a;
    border-radius: 40px;
    background-color: #000;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8), inset 0 0 0 2px #333;
    overflow: hidden;
}

.phone-frame .notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 25px;
    background-color: #1a1a1a;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    z-index: 10;
}

.phone-frame video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 26px;
    pointer-events: none;
}

.iphonee-frame {
    position: relative;
    width: clamp(280px, 90vw, 360px);  
    height: clamp(560px, 180vw, 720px); 
    border: 14px solid #000;
    border-radius: 48px;
    background: #000;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(0,0,0,0.25);
}

.iphonee-frame::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 10px;
    background: #333;
    border-radius: 5px;
}

/* --- UTILS --- */
.asterisk {
    color: #dc3545; 
    font-weight: bold;
}

.vf-recaptcha-wrapper {
    width: 100%; 
    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);
}

.vf-recaptcha-wrapper .g-recaptcha {
    transform: scale(1.05); 
    transform-origin: center;
}

html, body {
    background-color: #000000 !important;
    color: #e6e6e6 !important;
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

/* =========================================
   6. PREMIUM IMAGE PLACEHOLDER
   ========================================= */
.premium-hero-col {
    position: relative;
    z-index: 1;
    padding: 2rem 1rem 2rem 2rem; 
}

.premium-glow-backdrop {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 90%;
    height: 90%;
    transform: translate(-50%, -50%);
    background: linear-gradient(45deg, rgba(20, 30, 48, 0.6), rgba(36, 59, 85, 0.6)); 
    filter: blur(60px);
    z-index: -1;
    border-radius: 50%;
    animation: pulse-glow 5s ease-in-out infinite alternate;
}

.premium-image-wrapper {
    position: relative;
    border-radius: 24px;
    padding: 6px; 
    background: linear-gradient(135deg, rgba(255,255,255,0.6) 0%, rgba(255,255,255,0.05) 100%);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.12),
        0 10px 25px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255,255,255,0.8);
    transform: translateY(0);
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.5s ease;
}

.premium-image-wrapper:hover {
    transform: translateY(-12px);
    box-shadow: 
        0 40px 80px rgba(0, 0, 0, 0.15),
        0 15px 35px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255,255,255,0.9);
}

.premium-image-inner {
    border-radius: 18px;
    overflow: hidden;
    background-color: #f8f9fa;
    position: relative;
    z-index: 2;
}

.premium-hero-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transform: scale(1.01);
}

/* --- GLOBAL RESETS FOR SECTION --- */
.vf-portfolio-section,
.vf-portfolio-section *,
.vf-portfolio-section *::before,
.vf-portfolio-section *::after {
    box-sizing: border-box;
}

/* --- 3. PORTFOLIO SECTION & LAYOUT --- */
.vf-portfolio-section {
    background-color: var(--bg-body, #011a2a);
    color: #ffffff;
    padding: clamp(4rem, 8vw, 8rem) clamp(1rem, 5vw, 2.5rem);
    font-family: var(--font-body, system-ui, sans-serif);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

.vf-container {
    width: 100%;
    max-width: 75rem; /* 1200px */
    margin: 0 auto;
}

.vf-z-row {
    display: grid;
    /* Flexible grid: 1 column on mobile, 2 columns when space allows */
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 25rem), 1fr));
    align-items: center; /* Vertically centers content */
    gap: clamp(3rem, 6vw, 5rem);
    margin-bottom: clamp(4rem, 10vw, 8rem);
}

.vf-z-row:last-child {
    margin-bottom: 0;
}

@media (min-width: 62rem) { /* Desktop strict 2-col override */
    .vf-z-row {
        grid-template-columns: 1fr 1fr;
    }
    .vf-z-row.reverse-row .vf-text-content {
        order: 2;
    }
    .vf-z-row.reverse-row .vf-phones-wrapper {
        order: 1;
    }
}

/* --- 4. GLASSMORPHISM TEXT CONTENT CARD --- */
.vf-text-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    padding: clamp(2rem, 5vw, 3.5rem);
    width: 100%;
    max-width: 38rem;
    background: var(--vf-glass-bg, rgba(255, 255, 255, 0.03));
    backdrop-filter: blur(1.25rem);
    -webkit-backdrop-filter: blur(1.25rem);
    border: 1px solid var(--vf-glass-border, rgba(255, 255, 255, 0.08));
    border-radius: 1.5rem;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.3);
}

/* --- 5. TYPOGRAPHY (RESPONSIVE) --- */
.vf-eyebrow {
    color: var(--vf-pink, #ea3b60);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15rem;
    font-size: clamp(0.75rem, 1.5vw, 0.875rem);
}

/* Merged gradient text utilities */
.vf-display-heading,
.hero-title,
.vf-btn {
    background: var(--vf-grad, linear-gradient(135deg, #f68f1d, #ea3b60));
}

.vf-display-heading,
.hero-title {
    font-family: var(--font-display, inherit);
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin: 0;
    line-height: 1;
    letter-spacing: -0.04em;
    padding-bottom: 0.5rem;
    text-transform: uppercase;
    color: var(--vf-text-primary, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.1s backwards;
}

.vf-sub-text {
    font-family: var(--font-body, inherit);
    font-weight: 600;
    line-height: 1.6;
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: var(--vf-text-secondary, #e0e0e0);
    margin: 0;
    max-width: 90%;
}

/* --- 6. ANIMATED ACCENT LINE --- */
.vf-accent-line {
    height: 0.25rem;
    background: var(--vf-grad, linear-gradient(135deg, #f68f1d, #ea3b60));
    border-radius: 0.25rem;
    animation: drawLine 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.3s forwards;
}

/* --- 7. BUTTONS --- */
.vf-btn-wrapper {
    margin-top: 1rem;
    animation: fadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.3s backwards;
}

.vf-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: #ffffff !important;
    padding: 1rem 2rem;
    border-radius: 6.25rem;
    font-family: var(--font-body, inherit);
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.0625rem;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s ease;
    border: none;
    box-shadow: 0 0.5rem 1.5rem rgba(246, 143, 29, 0.25);
    cursor: pointer;
}

.vf-btn:hover {
    transform: translateY(-0.25rem);
    box-shadow: 0 1rem 2rem rgba(246, 143, 29, 0.4);
}

/* --- 8. IPHONE MOCKUP (SCALED & CENTERED) --- */
.vf-phones-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.iphone-frame {
    /* Flow natively in flexbox to fix vertical grid alignment */
    position: relative; 
    
    /* 
      Decreased size and introduced vh to ensure the phone's height 
      (which is width * 19/9) never exceeds the viewport height (100vh).
      38vh width results in ~80vh height, keeping it fully visible. 
    */
    width: clamp(15rem, min(40vw, 38vh), 21rem); 
    aspect-ratio: 9 / 19; /* Standard modern smartphone ratio */
    
    border: clamp(0.5rem, 1.2vw, 0.875rem) solid #000;
    border-radius: clamp(1.75rem, 4vw, 3rem);
    background: #000;
    overflow: hidden;
    box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.5);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
    cursor: pointer;
    z-index: 2;
}

/* Normalize the legacy staggered classes if they remain in HTML */
.phone-back, .phone-front {
    transform: none;
    top: auto;
    left: auto;
    right: auto;
}

/* Hover Interaction */
.iphone-frame:hover {
    transform: translateY(-0.75rem) scale(1.02);
    box-shadow: 0 2rem 5rem rgba(234, 59, 96, 0.3); 
}

/* Embedded Content */
.vf-facade-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border: none;
    background-color: #fff; /* Instagram fallback bg */
}

/* --- 9. SCROLL ANIMATIONS --- */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(2.5rem);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- 10. KEYFRAMES --- */
@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(1.5rem);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes drawLine {
    0% { width: 0; }
    100% { width: 8rem; }
}

/* --- 11. RESPONSIVE / MOBILE OPTIMIZATIONS --- */
@media (max-width: 61.9375rem) { /* < 992px */
    .vf-z-row {
        text-align: center;
        gap: 4rem;
    }
    
    .vf-text-content {
        align-items: center;
        margin: 0 auto; /* Center card in the grid cell */
    }

    .vf-sub-text {
        max-width: 100%;
    }
    
    @keyframes drawLine {
        0% { width: 0; }
        100% { width: 6rem; }
    }
}