/* ============================================
   CVDN GROUP WEBSITE - Creative Design
   Primary Dark : #0D1B3E
   Blue         : #1A56DB
   Accent Blue  : #3B9EFF
   Orange       : #FF8C00  (from CVDN logo)
   ============================================ */

:root {
    --chv-dark:    #0D1B3E;
    --chv-navy:    #152347;
    --chv-blue:    #1A56DB;
    --chv-accent:  #3B9EFF;
    --chv-orange:  #FF8C00;
    --chv-light:   #E8F1FF;
    --chv-white:   #FFFFFF;
    --chv-gray:    #F4F7FC;
    --chv-text:    #4A5568;
    --chv-muted:   #718096;
    --gradient:    linear-gradient(135deg, #0D1B3E 0%, #1A56DB 60%, #3B9EFF 100%);
    --gradient-v:  linear-gradient(180deg, #1A56DB 0%, #3B9EFF 100%);
    --gradient-h:  linear-gradient(90deg, #1A56DB 0%, #3B9EFF 100%);
    --gradient-orange: linear-gradient(135deg, #FF8C00 0%, #FFB347 100%);
}

/* ---- Base ---- */
*, *::before, *::after { box-sizing: border-box; }
body {
    font-family: 'Inter', sans-serif;
    color: var(--chv-text);
    background: var(--chv-white);
    padding-top: 76px;
    overflow-x: hidden;
}
h1,h2,h3,h4,h5,h6 { color: var(--chv-dark); font-weight: 700; }
a { text-decoration: none; }

/* ---- Scroll Reveal ---- */
.reveal, .reveal-left, .reveal-right {
    transition: opacity 0.7s ease, transform 0.7s ease;
}
body.js-ready .reveal        { opacity: 0; transform: translateY(32px); }
body.js-ready .reveal-left   { opacity: 0; transform: translateX(-36px); }
body.js-ready .reveal-right  { opacity: 0; transform: translateX(36px); }
body.js-ready .reveal.visible,
body.js-ready .reveal-left.visible,
body.js-ready .reveal-right.visible { opacity: 1; transform: none; }
.delay-100 { transition-delay: 0.1s !important; }
.delay-150 { transition-delay: 0.15s !important; }
.delay-200 { transition-delay: 0.2s !important; }
.delay-250 { transition-delay: 0.25s !important; }
.delay-300 { transition-delay: 0.3s !important; }
.delay-350 { transition-delay: 0.35s !important; }
.delay-400 { transition-delay: 0.4s !important; }
.delay-500 { transition-delay: 0.5s !important; }

/* ---- Navbar ---- */
.chv-navbar {
    background: #ffffff;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 16px rgba(13,27,62,0.10);
    padding: 5px 0;
    transition: all 0.3s ease;
}
.chv-navbar.scrolled { padding: 3px 0; }
.navbar-logo-img { height: 58px; width: auto; max-width: 210px; object-fit: contain; }
.chv-navbar .nav-link {
    color: rgba(13,27,62,0.78) !important;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 8px 14px !important;
    border-radius: 7px;
    transition: all 0.2s;
    position: relative;
}
.chv-navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--chv-accent);
    border-radius: 2px;
    transition: width 0.3s;
}
.chv-navbar .nav-link:hover::after,
.chv-navbar .nav-link.active::after { width: 20px; }
.chv-navbar .nav-link:hover,
.chv-navbar .nav-link.active {
    color: var(--chv-dark) !important;
    background: rgba(59,158,255,0.08);
}
.btn-chv-accent {
    background: var(--gradient-orange);
    color: #fff !important;
    font-weight: 700;
    border-radius: 8px;
    border: none;
    padding: 10px 22px !important;
    transition: all 0.3s;
    font-size: 0.88rem;
    box-shadow: 0 4px 15px rgba(255,140,0,0.4);
}
.btn-chv-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,140,0,0.55);
    color: #fff !important;
    background: linear-gradient(135deg, #e07d00 0%, #FF8C00 100%);
}

/* ---- Hero ---- */
.hero-section {
    background: var(--chv-dark);
    min-height: calc(100vh - 76px);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
/* Animated geometric bg */
.hero-section .geo-shape {
    position: absolute;
    pointer-events: none;
}
.geo-1 {
    top: -100px; right: -80px;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(26,86,219,0.18) 0%, transparent 70%);
    animation: floatShape 8s ease-in-out infinite;
}
.geo-2 {
    bottom: -120px; left: -80px;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59,158,255,0.12) 0%, transparent 70%);
    animation: floatShape 10s ease-in-out infinite reverse;
}
.geo-3 {
    top: 40%; left: 40%;
    width: 200px; height: 200px;
    border: 1px solid rgba(59,158,255,0.08);
    border-radius: 50%;
    animation: spinSlow 20s linear infinite;
}
.geo-4 {
    top: 20%; left: 50%;
    width: 1px; height: 200px;
    background: linear-gradient(to bottom, transparent, rgba(59,158,255,0.2), transparent);
    animation: floatShape 6s ease-in-out infinite;
}
@keyframes floatShape {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}
@keyframes spinSlow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(59,158,255,0.12);
    border: 1px solid rgba(59,158,255,0.25);
    color: var(--chv-accent);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 1.4rem;
}
.eyebrow-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--chv-accent);
    animation: pulse 2s ease infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.7); }
}
.hero-title {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--chv-white);
    line-height: 1.12;
    margin-bottom: 1.2rem;
    letter-spacing: -0.5px;
}
.gradient-text {
    background: linear-gradient(135deg, #3B9EFF 0%, #60C8FF 50%, #3B9EFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: shimmer 3s linear infinite;
}
@keyframes shimmer { 0% { background-position: 0% center; } 100% { background-position: 200% center; } }
.hero-desc {
    color: rgba(255,255,255,0.68);
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 2rem;
    max-width: 520px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 2.5rem; }
.btn-hero-primary {
    background: var(--gradient-h);
    color: #fff;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 10px;
    font-size: 0.95rem;
    border: none;
    transition: all 0.3s;
    box-shadow: 0 6px 24px rgba(26,86,219,0.45);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-hero-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(59,158,255,0.5); color: #fff; }
.btn-hero-outline {
    background: rgba(255,255,255,0.06);
    color: var(--chv-white);
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 10px;
    font-size: 0.95rem;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s;
    backdrop-filter: blur(4px);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-hero-outline:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.4); color: #fff; }
.hero-stats { display: flex; gap: 2rem; flex-wrap: wrap; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.08); }
.stat-item { }
.stat-number { font-size: 2.2rem; font-weight: 800; color: var(--chv-accent); line-height: 1; }
.stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }

/* Hero right card */
.hero-right-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 1.8rem;
    backdrop-filter: blur(10px);
}
.service-chip {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.8);
    font-size: 0.88rem;
    font-weight: 500;
    transition: all 0.2s;
}
.service-chip:last-child { border-bottom: none; padding-bottom: 0; }
.chip-icon {
    width: 38px; height: 38px;
    background: rgba(26,86,219,0.25);
    border: 1px solid rgba(59,158,255,0.2);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--chv-accent);
    font-size: 0.95rem;
    flex-shrink: 0;
}
.chip-arrow { margin-left: auto; color: rgba(255,255,255,0.25); font-size: 0.75rem; }

/* ---- Ticker Strip ---- */
.ticker-strip {
    background: var(--chv-dark);
    border-top: 1px solid rgba(59,158,255,0.12);
    border-bottom: 1px solid rgba(59,158,255,0.12);
    padding: 16px 0;
    overflow: hidden;
}
.ticker-track {
    display: flex;
    gap: 0;
    animation: ticker 28s linear infinite;
    width: max-content;
}
.ticker-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 36px;
    color: rgba(255,255,255,0.45);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    white-space: nowrap;
}
.ticker-item i { color: var(--chv-accent); font-size: 0.9rem; }
.ticker-dot { color: var(--chv-accent); }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ---- Section Base ---- */
section { padding: 90px 0; }
.section-eyebrow {
    display: inline-block;
    background: var(--chv-light);
    color: var(--chv-blue);
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}
.section-title {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--chv-dark);
    line-height: 1.2;
    letter-spacing: -0.3px;
}
.section-subtitle { color: var(--chv-muted); font-size: 1rem; line-height: 1.75; max-width: 560px; margin: 0 auto; }
.accent-line {
    width: 48px; height: 4px;
    background: var(--gradient-h);
    border-radius: 2px;
    margin: 1rem auto 0;
}
.accent-line-left { margin: 1rem 0 0; }

/* ---- Service Cards ---- */
.service-card {
    background: var(--chv-white);
    border: 1px solid #E8EDF5;
    border-radius: 18px;
    padding: 2rem;
    height: 100%;
    transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.service-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gradient-h);
    transform: scaleX(0);
    transition: transform 0.35s ease;
    transform-origin: left;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(13,27,62,0.12);
    border-color: rgba(59,158,255,0.3);
}
.service-card:hover::before { transform: scaleX(1); }
.service-number {
    position: absolute;
    top: 1.5rem; right: 1.8rem;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(26,86,219,0.05);
    line-height: 1;
    transition: color 0.3s;
}
.service-card:hover .service-number { color: rgba(26,86,219,0.08); }
.service-icon {
    width: 56px; height: 56px;
    background: var(--chv-light);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--chv-blue);
    margin-bottom: 1.3rem;
    transition: all 0.35s;
}
.service-card:hover .service-icon { background: var(--gradient-h); color: #fff; box-shadow: 0 8px 20px rgba(26,86,219,0.35); }
.service-card h5 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.6rem; color: var(--chv-dark); }
.service-card p { font-size: 0.875rem; color: var(--chv-muted); line-height: 1.65; margin: 0; }

/* ---- Why Choose Us ---- */
.why-card {
    background: linear-gradient(145deg, var(--chv-dark) 0%, #1a2d5a 100%);
    border: 1px solid rgba(59,158,255,0.12);
    border-radius: 20px;
    padding: 2.2rem;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}
.why-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 1px;
    background: var(--gradient-h);
    opacity: 0;
    transition: opacity 0.3s;
}
.why-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(13,27,62,0.4); }
.why-card:hover::before { opacity: 1; }
.why-icon {
    width: 56px; height: 56px;
    background: rgba(59,158,255,0.15);
    border: 1px solid rgba(59,158,255,0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--chv-accent);
    margin-bottom: 1.3rem;
}
.why-card h5 { color: var(--chv-white); font-size: 1.05rem; margin-bottom: 0.6rem; }
.why-card p { color: rgba(255,255,255,0.55); font-size: 0.875rem; line-height: 1.65; margin: 0; }

/* ---- Process Steps ---- */
.process-step {
    text-align: center;
    padding: 0 1rem;
    position: relative;
}
.process-step::after {
    content: '';
    position: absolute;
    top: 35px; left: calc(50% + 45px);
    right: calc(-50% + 45px);
    height: 2px;
    background: linear-gradient(90deg, var(--chv-blue), rgba(59,158,255,0.2));
    display: none;
}
.col-lg-3:not(:last-child) .process-step::after { display: block; }
.step-number {
    width: 70px; height: 70px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 900;
    color: #fff;
    margin: 0 auto 1.2rem;
    box-shadow: 0 8px 24px rgba(26,86,219,0.4);
    position: relative;
    z-index: 1;
}
.step-number::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid rgba(59,158,255,0.3);
}
.process-step h5 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.process-step p { font-size: 0.85rem; color: var(--chv-muted); line-height: 1.6; }

/* ---- Tech Stack ---- */
.tech-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 1.2rem 1rem;
    background: var(--chv-white);
    border: 1px solid #E8EDF5;
    border-radius: 14px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--chv-text);
    transition: all 0.3s;
    cursor: default;
}
.tech-badge i { font-size: 1.8rem; }
.tech-badge:hover {
    border-color: var(--chv-blue);
    background: var(--chv-light);
    transform: translateY(-4px);
    color: var(--chv-blue);
    box-shadow: 0 8px 20px rgba(26,86,219,0.12);
}

/* ---- Stats Counter ---- */
.stats-section { background: var(--gradient); padding: 80px 0; position: relative; overflow: hidden; }
.stats-section::before {
    content: '';
    position: absolute;
    top: -50%; left: -10%;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
}
.stat-card {
    text-align: center;
    padding: 1rem;
}
.counter-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.3rem;
}
.counter-suffix { color: var(--chv-accent); }
.stat-card p { color: rgba(255,255,255,0.65); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1.5px; margin: 0; }
.stat-divider {
    width: 1px;
    background: rgba(255,255,255,0.15);
    align-self: stretch;
}

/* ---- Testimonials ---- */
.testimonial-card {
    background: var(--chv-white);
    border: 1px solid #E8EDF5;
    border-radius: 20px;
    padding: 2.2rem;
    height: 100%;
    position: relative;
    transition: all 0.3s;
}
.testimonial-card:hover { box-shadow: 0 20px 40px rgba(13,27,62,0.1); transform: translateY(-5px); border-color: rgba(59,158,255,0.25); }
.quote-icon { font-size: 2.5rem; color: var(--chv-light); margin-bottom: 1rem; line-height: 1; }
.testimonial-card p { font-size: 0.92rem; line-height: 1.75; color: var(--chv-text); margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; border-top: 1px solid #F0F4FB; padding-top: 1.2rem; }
.author-avatar {
    width: 46px; height: 46px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    font-size: 1rem;
    flex-shrink: 0;
}
.author-name { font-size: 0.9rem; font-weight: 700; color: var(--chv-dark); margin-bottom: 2px; }
.author-role { font-size: 0.78rem; color: var(--chv-muted); }
.stars { color: #F6A623; font-size: 0.8rem; margin-bottom: 0.8rem; }

/* ---- Project Cards ---- */
.project-card {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #E8EDF5;
    background: var(--chv-white);
    transition: all 0.35s;
    height: 100%;
}
.project-card:hover { transform: translateY(-8px); box-shadow: 0 24px 48px rgba(13,27,62,0.14); }
.project-thumb {
    height: 200px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.project-thumb-overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
}
.project-card:hover .project-thumb-overlay { opacity: 1; }
.project-body { padding: 1.5rem; }
.project-tag {
    display: inline-block;
    background: var(--chv-light);
    color: var(--chv-blue);
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 0.7rem;
}
.project-body h5 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.project-body p { font-size: 0.85rem; color: var(--chv-muted); line-height: 1.6; margin: 0; }

/* ---- Feature List ---- */
.feature-list { list-style: none; padding: 0; margin: 1.5rem 0; }
.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 0;
    font-size: 0.88rem;
    color: var(--chv-text);
    border-bottom: 1px solid #F0F4FB;
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li i { color: var(--chv-blue); font-size: 0.85rem; width: 16px; }

/* ---- About Features ---- */
.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.about-feature-icon {
    width: 48px; height: 48px;
    background: var(--chv-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--chv-blue);
    font-size: 1.15rem;
    flex-shrink: 0;
    transition: all 0.3s;
}
.about-feature:hover .about-feature-icon { background: var(--gradient-h); color: #fff; }
.about-feature h6 { font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; }
.about-feature p { font-size: 0.84rem; color: var(--chv-muted); margin: 0; line-height: 1.6; }

/* ---- CTA Section ---- */
.cta-section {
    background: var(--gradient);
    padding: 90px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -40%; right: -10%;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
}
.cta-section::after {
    content: '';
    position: absolute;
    bottom: -50%; left: -5%;
    width: 350px; height: 350px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
}
.cta-section h2 { color: #fff; font-size: clamp(1.8rem, 3vw, 2.5rem); }
.cta-section p { color: rgba(255,255,255,0.72); font-size: 1.05rem; }

/* ---- Page Header ---- */
.page-header {
    background: var(--gradient);
    padding: 90px 0 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-header h1 { color: #fff; font-size: 2.8rem; margin-bottom: 0.5rem; position: relative; z-index: 1; }
.page-header p { color: rgba(255,255,255,0.72); position: relative; z-index: 1; font-size: 1.05rem; }
.breadcrumb-item a { color: var(--chv-accent); }
.breadcrumb-item.active { color: rgba(255,255,255,0.55); }
.breadcrumb-item+.breadcrumb-item::before { color: rgba(255,255,255,0.35); }

/* ---- Contact ---- */
.contact-form-wrapper {
    background: var(--chv-white);
    border-radius: 22px;
    padding: 2.8rem;
    box-shadow: 0 12px 48px rgba(13,27,62,0.08);
    border: 1px solid #E8EDF5;
}
.contact-info-card {
    background: var(--gradient);
    border-radius: 22px;
    padding: 2.8rem;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.contact-info-card::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
}
.form-control, .form-select {
    border: 1.5px solid #E8EDF5;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 0.9rem;
    background: #F8FAFD;
    transition: all 0.25s;
}
.form-control:focus, .form-select:focus {
    border-color: var(--chv-blue);
    box-shadow: 0 0 0 3px rgba(26,86,219,0.1);
    background: #fff;
}
.form-label { font-weight: 600; font-size: 0.84rem; color: var(--chv-dark); margin-bottom: 6px; }
.btn-chv-primary {
    background: var(--gradient-orange);
    color: #fff;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 10px;
    border: none;
    transition: all 0.3s;
    font-size: 0.95rem;
    box-shadow: 0 6px 20px rgba(255,140,0,0.35);
}
.btn-chv-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(255,140,0,0.5); color: #fff; background: linear-gradient(135deg, #e07d00 0%, #FF8C00 100%); }
.contact-info-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.8rem; }
.contact-info-icon {
    width: 46px; height: 46px;
    background: rgba(255,255,255,0.14);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    color: #fff;
}
.contact-info-item h6 { font-size: 0.76rem; color: rgba(255,255,255,0.55); font-weight: 500; margin-bottom: 4px; letter-spacing: 1px; text-transform: uppercase; }
.contact-info-item p { color: #fff; font-weight: 600; margin: 0; font-size: 0.92rem; }
.alert-success-chv {
    background: #E8F5E9; border: 1px solid #A5D6A7;
    border-radius: 12px; color: #2E7D32;
    padding: 16px 20px; font-weight: 500;
}

/* ---- Company Cards ---- */
.company-card {
    background: var(--chv-white);
    border: 1px solid #E8EDF5;
    border-radius: 18px;
    padding: 1.8rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s;
}
.company-card:hover { border-color: var(--chv-blue); box-shadow: 0 16px 36px rgba(26,86,219,0.12); transform: translateY(-5px); }
.company-badge {
    display: inline-block;
    background: var(--chv-light);
    color: var(--chv-blue);
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
}
.company-card h5 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.company-card p { font-size: 0.83rem; color: var(--chv-muted); margin: 0; }

/* ---- Footer ---- */
.chv-footer { background: #07101E; }
.footer-top { padding: 80px 0 55px; }
.footer-bottom { padding: 22px 0; border-top: 1px solid rgba(255,255,255,0.07); color: rgba(255,255,255,0.35); font-size: 0.82rem; }
.footer-brand img { height: 44px; width: auto; margin-bottom: 1rem; background: #fff; border-radius: 7px; padding: 4px 10px; }
.footer-brand-text { color: #fff; font-weight: 800; font-size: 1.4rem; letter-spacing: 1px; }
.footer-brand-text span { color: var(--chv-accent); font-size: 0.68rem; display: block; letter-spacing: 4px; font-weight: 500; margin-top: 2px; }
.footer-desc { color: rgba(255,255,255,0.45); font-size: 0.875rem; line-height: 1.75; margin-top: 0.8rem; }
.footer-tagline { color: var(--chv-accent); font-size: 0.78rem; font-weight: 600; letter-spacing: 2px; margin-top: 1rem; }
.footer-heading { color: rgba(255,255,255,0.9); font-weight: 700; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 1.2rem; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a { color: rgba(255,255,255,0.45); font-size: 0.875rem; transition: all 0.2s; display: flex; align-items: center; gap: 6px; }
.footer-links a::before { content: ''; width: 0; height: 1px; background: var(--chv-accent); transition: width 0.2s; }
.footer-links a:hover { color: var(--chv-accent); padding-left: 6px; }
.footer-links a:hover::before { width: 8px; }
.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 0.9rem; font-size: 0.875rem; color: rgba(255,255,255,0.45); }
.footer-contact i { color: var(--chv-accent); margin-top: 3px; font-size: 0.82rem; flex-shrink: 0; }
.social-link {
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    transition: all 0.25s;
}
.social-link:hover { background: var(--gradient-h); border-color: transparent; color: #fff; transform: translateY(-3px); }

/* ---- Buttons ---- */
.btn-outline-chv {
    background: transparent;
    color: var(--chv-blue);
    border: 2px solid var(--chv-blue);
    font-weight: 700;
    border-radius: 10px;
    padding: 12px 28px;
    transition: all 0.3s;
    font-size: 0.92rem;
}
.btn-outline-chv:hover { background: var(--gradient-h); border-color: transparent; color: #fff; transform: translateY(-2px); }

/* ---- Utility ---- */
.bg-dark-section { background: var(--chv-dark); }
.bg-chv-gray { background: var(--chv-gray); }
.text-chv-accent { color: var(--chv-accent) !important; }
.text-chv-blue { color: var(--chv-blue) !important; }
.rounded-20 { border-radius: 20px; }
.fw-800 { font-weight: 800 !important; }

/* ---- Responsive ---- */
@media (max-width: 991px) {
    .process-step::after { display: none !important; }
}
@media (max-width: 768px) {
    body { padding-top: 68px; }
    .hero-section { min-height: auto; padding: 70px 0; }
    .hero-stats { gap: 1.5rem; }
    section { padding: 65px 0; }
    .contact-form-wrapper, .contact-info-card { padding: 1.8rem; }
    .hero-title { font-size: 2rem; }
    .counter-number { font-size: 2.5rem; }
}
