/* ═══════════════════════════════════════════════════════════════════════
   OZLINK OUTSOURCING PTY LTD — Production Stylesheet
   ═══════════════════════════════════════════════════════════════════════ */

/* ─── CSS Custom Properties ─── */
:root {
    --navy: #0B1F3A;
    --blue: #1E88E5;
    --green: #00C853;
    --gold: #D4A843;
    --white: #FFFFFF;
    --gray-50: #F8FAFC;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-400: #94A3B8;
    --gray-500: #64748B;
    --gray-600: #475569;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    --container-max: 1280px;
    --container-px: 1rem;
}

/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-600);
    background: var(--white);
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
main { flex: 1; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ─── Container ─── */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-px);
}

/* ─── Section Defaults ─── */
.section {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

/* ─── Typography ─── */
.section-header { margin-bottom: 3rem; }
.section-header-center { text-align: center; max-width: 48rem; margin-left: auto; margin-right: auto; margin-bottom: 3rem; }
.section-title {
    font-family: var(--font-heading);
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
    margin-top: 1rem;
}
.section-subtitle {
    font-size: 1rem;
    color: var(--gray-500);
    margin-top: 1rem;
    line-height: 1.6;
}
.text-blue { color: var(--blue); }
.text-gold { color: var(--gold); }
.text-green { color: var(--green); }

/* ─── Badges ─── */
.badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.badge-blue { background: rgba(30,136,229,0.1); color: var(--blue); border: 1px solid rgba(30,136,229,0.1); }
.badge-gold { background: rgba(212,168,67,0.12); color: var(--gold); }

/* ─── Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    padding: 0.875rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 9999px;
    min-height: 44px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.btn-primary {
    background: var(--white);
    color: var(--navy);
    box-shadow: 0 4px 24px rgba(0,0,0,0.15);
}
.btn-primary:hover { transform: translateY(-2px) scale(1.04); box-shadow: 0 8px 32px rgba(0,0,0,0.2); }
.btn-secondary {
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.btn-secondary:hover { background: rgba(255,255,255,0.2); transform: translateY(-2px) scale(1.04); }
.btn-white { background: var(--white); color: var(--navy); box-shadow: 0 4px 24px rgba(0,0,0,0.15); }
.btn-white:hover { transform: translateY(-2px) scale(1.05); box-shadow: 0 8px 32px rgba(0,0,0,0.2); }
.btn-outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.3); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); transform: translateY(-2px) scale(1.05); }
.btn-arrow { transition: transform 0.3s ease; }
.btn:hover .btn-arrow { transform: translateX(4px); }
.btn-shimmer {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 30%, rgba(30,136,229,0.15) 50%, transparent 70%);
    animation: shimmer 2.5s linear infinite;
}
@keyframes shimmer { 0% { transform: translateX(-150%); } 100% { transform: translateX(150%); } }

/* ─── Animate on Scroll ─── */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════════════════════════ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.5s ease;
    animation: navbarSlideIn 0.6s ease-out;
}
@keyframes navbarSlideIn { from { opacity: 0; transform: translateY(-100%); } to { opacity: 1; transform: translateY(0); } }
.navbar.scrolled {
    box-shadow: 0 1px 12px rgba(0,0,0,0.06);
    border-bottom: 1px solid rgba(226,232,240,0.6);
}
.scroll-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, #0B1F3A 0%, #1E88E5 40%, #00C853 70%, #D4A843 100%);
    transform-origin: left;
    transition: width 0.1s linear;
}
.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}
.navbar-logo img { height: 48px; width: auto; }

/* Desktop Nav */
.desktop-nav { display: none; align-items: center; gap: 0.25rem; }
.nav-link {
    padding: 0.5rem 1rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--gray-500);
    transition: color 0.3s ease;
    position: relative;
}
.nav-link:hover { color: var(--navy); }
.nav-link.active { color: var(--navy); }
.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 2.5px;
    background: var(--green);
    border-radius: 9999px;
}

/* Hamburger */
.hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    border-radius: 12px;
    background: rgba(241,245,249,0.8);
    transition: background 0.2s ease;
}
.hamburger:hover { background: rgba(226,232,240,0.8); }
.hamburger .icon-x { display: none; }
.hamburger.active .icon-menu { display: none; }
.hamburger.active .icon-x { display: block; }

/* Mobile Menu */
.mobile-menu {
    display: none;
    overflow: hidden;
    max-height: 0;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(241,245,249,1);
    transition: max-height 0.35s ease;
}
.mobile-menu.open {
    display: block;
    max-height: 400px;
}
.mobile-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.875rem 1rem;
    border-radius: 12px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--gray-500);
    min-height: 44px;
    transition: all 0.2s ease;
}
.mobile-link:hover { background: rgba(248,250,252,1); color: var(--navy); }
.mobile-link.active {
    background: var(--gray-100);
    color: var(--navy);
    border-left: 3px solid var(--green);
}
.mobile-link.active::after {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
}
body.menu-open { overflow: hidden; }

/* ═══════════════════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════════════════ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--navy);
    padding-top: 5rem;
    padding-bottom: 2rem;
    overflow: hidden;
}
.hero-bg-image {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to bottom, #0B1F3A, rgba(11,31,58,0.6), rgba(11,31,58,0.9));
}
.hero-blobs { position: absolute; inset: 0; z-index: 2; overflow: hidden; pointer-events: none; }
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}
.blob-1 { width: 420px; height: 420px; left: -5%; top: -10%; background: radial-gradient(circle, #1E88E5 0%, transparent 70%); opacity: 0.25; animation: blobDrift1 18s ease-in-out infinite; }
.blob-2 { width: 350px; height: 350px; left: 60%; top: 10%; background: radial-gradient(circle, #00C853 0%, transparent 70%); opacity: 0.15; animation: blobDrift2 22s ease-in-out infinite; }
.blob-3 { width: 300px; height: 300px; left: 30%; top: 50%; background: radial-gradient(circle, #D4A843 0%, transparent 70%); opacity: 0.12; animation: blobDrift3 20s ease-in-out infinite; }
.blob-4 { width: 380px; height: 380px; left: 75%; top: 60%; background: radial-gradient(circle, #1E88E5 0%, transparent 70%); opacity: 0.18; animation: blobDrift4 24s ease-in-out infinite; }

@keyframes blobDrift1 { 0%,100% { transform: translate(0,0) scale(1); } 33% { transform: translate(60px,-40px) scale(1.15); } 66% { transform: translate(-30px,20px) scale(0.9); } }
@keyframes blobDrift2 { 0%,100% { transform: translate(0,0) scale(1); } 33% { transform: translate(-50px,50px) scale(1.1); } 66% { transform: translate(40px,-30px) scale(0.9); } }
@keyframes blobDrift3 { 0%,100% { transform: translate(0,0) scale(1); } 33% { transform: translate(40px,-20px) scale(1.1); } 66% { transform: translate(-60px,40px) scale(0.9); } }
@keyframes blobDrift4 { 0%,100% { transform: translate(0,0) scale(1); } 33% { transform: translate(-30px,30px) scale(1.1); } 66% { transform: translate(50px,-50px) scale(0.9); } }

.hero-sparkles { position: absolute; inset: 0; z-index: 4; pointer-events: none; }
.sparkle {
    position: absolute;
    border-radius: 50%;
    background: white;
    animation: sparkleFloat 4s ease-in-out infinite;
}
@keyframes sparkleFloat {
    0% { opacity: 0; transform: translateY(0) translateX(0) scale(0.5); }
    25% { opacity: 0.9; transform: translateY(-18px) translateX(6px) scale(1.2); }
    50% { opacity: 0.6; transform: translateY(-8px) translateX(-4px) scale(0.8); }
    100% { opacity: 0; transform: translateY(-24px) translateX(2px) scale(0.4); }
}
.hero-vignette {
    position: absolute;
    inset: 0;
    z-index: 5;
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(11,31,58,0.3), transparent, rgba(11,31,58,0.7));
}
.hero-content { position: relative; z-index: 10; width: 100%; }
.hero-grid { display: grid; gap: 2.5rem; align-items: center; }
.hero-text { text-align: center; }

/* Badge */
.hero-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 1rem;
    background: rgba(0,200,83,0.15);
    color: var(--green);
    border-radius: 9999px;
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(0,200,83,0.3);
}
.badge-pulse {
    position: absolute;
    inset: 0;
    background: rgba(0,200,83,0.15);
    border-radius: 9999px;
    filter: blur(12px);
    animation: badgePulse 2.5s ease-in-out infinite;
}
@keyframes badgePulse { 0%,100% { transform: scale(1); opacity: 0.6; } 50% { transform: scale(1.4); opacity: 0; } }
.badge-dot { width: 8px; height: 8px; background: var(--green); border-radius: 50%; animation: pulse 2s ease-in-out infinite; position: relative; z-index: 2; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }

/* H1 */
.hero-title {
    font-family: var(--font-heading);
    font-size: 1.875rem;
    font-weight: 700;
    line-height: 1.2;
    color: white;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}
.word {
    display: inline-block;
    margin-right: 0.28em;
    opacity: 0;
    transform: translateY(24px);
    animation: wordFadeUp 0.5s ease-out forwards;
}
.word-white { color: white; }
.word-gradient { background: linear-gradient(to right, #1E88E5, #00C853); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.word-green { color: var(--green); }
@keyframes wordFadeUp { to { opacity: 1; transform: translateY(0); } }
.hero-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    margin-left: 4px;
    vertical-align: middle;
    animation: heroDotPulse 1.5s ease-in-out infinite 1s;
    opacity: 0;
    animation-fill-mode: forwards;
}
@keyframes heroDotPulse { 0% { opacity: 0; transform: scale(0); } 10% { opacity: 1; transform: scale(1); } 100% { opacity: 1; transform: scale(1); animation: dotBounce 1.5s ease-in-out infinite; } }
@keyframes dotBounce { 0%,100% { transform: scale(1); } 50% { transform: scale(1.5); } }

.hero-subtitle {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    max-width: 36rem;
    margin: 0 auto 1.75rem;
    line-height: 1.625;
    opacity: 0;
    animation: fadeUp 0.6s ease-out 1.2s forwards;
}
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
.hero-subtitle { transform: translateY(20px); }

.hero-ctas {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    justify-content: center;
    opacity: 0;
    animation: fadeUp 0.6s ease-out 1.4s forwards;
    transform: translateY(20px);
}
.hero-ctas .btn { width: 100%; }

/* Hero Visual (Desktop) */
.hero-visual { display: none; }
.hero-globe {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    max-width: 28rem;
    margin: 0 auto;
}
.globe-outer-ring {
    position: absolute;
    inset: 1rem;
    border-radius: 50%;
    border: 1px dashed rgba(30,136,229,0.15);
}
.globe-inner-ring {
    position: absolute;
    inset: 3rem;
    border-radius: 50%;
    background: linear-gradient(to bottom right, rgba(11,31,58,0.05), rgba(30,136,229,0.1));
    border: 1px solid rgba(30,136,229,0.1);
    animation: globePulse 4s ease-in-out infinite;
}
@keyframes globePulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.03); } }
.ring-dot {
    position: absolute;
    border-radius: 50%;
}
.ring-dot-green { top: 0; left: 50%; transform: translate(-50%,-50%); width: 16px; height: 16px; background: var(--green); box-shadow: 0 4px 12px rgba(0,200,83,0.3); }
.ring-dot-blue { bottom: 0; left: 50%; transform: translate(-50%,50%); width: 12px; height: 12px; background: var(--blue); box-shadow: 0 4px 12px rgba(30,136,229,0.3); }
.ring-dot-gold { left: 0; top: 50%; transform: translate(-50%,-50%); width: 12px; height: 12px; background: var(--gold); box-shadow: 0 4px 12px rgba(212,168,67,0.3); }
.globe-center {
    position: absolute;
    inset: 5rem;
    border-radius: 50%;
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.1);
    animation: globePulse 3s ease-in-out infinite;
}
.globe-pulse-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(30,136,229,0.2);
    animation: pulseRing 3s ease-in-out infinite 0.5s;
}
@keyframes pulseRing { 0%,100% { transform: scale(1); opacity: 0.8; } 50% { transform: scale(1.15); opacity: 0; } }
.globe-icon {
    text-align: center;
    padding: 1.5rem;
    position: relative;
    z-index: 2;
    animation: globeFloat 3s ease-in-out infinite;
}
@keyframes globeFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
.globe-title { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 700; color: white; margin-top: 0.75rem; }
.globe-subtitle { font-size: 0.875rem; color: rgba(255,255,255,0.5); margin-top: 0.25rem; }
.country-card {
    position: absolute;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 1rem;
    padding: 0.625rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
    white-space: nowrap;
    opacity: 0;
    animation: countryFadeIn 0.5s ease-out forwards;
}
.country-aus { animation-delay: 1s; }
.country-can { animation-delay: 2.5s; }
.country-usa { animation-delay: 4s; }
.country-eu { animation-delay: 5.5s; }
@keyframes countryFadeIn { to { opacity: 1; } }
.country-card { animation: countryFadeIn 0.5s ease-out forwards, countryFloat 3s ease-in-out infinite; }
.country-aus { animation-delay: 1s, 1s; }
.country-can { animation-delay: 2.5s, 2.5s; }
.country-usa { animation-delay: 4s, 4s; }
.country-eu { animation-delay: 5.5s, 5.5s; }
@keyframes countryFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* Stats Bar */
.hero-stats-bar {
    margin-top: 3rem;
    position: relative;
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 1.5rem;
    padding: 1.5rem;
    border: 1px solid rgba(255,255,255,0.1);
    overflow: hidden;
}
.stats-bar-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(30,136,229,0.06), rgba(0,200,83,0.06), transparent);
    animation: barGlow 6s linear infinite;
}
@keyframes barGlow { 0% { transform: translateX(-100%); } 100% { transform: translateX(200%); } }
.stats-bar-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    position: relative;
    z-index: 2;
}
.stat-item { text-align: center; }
.stat-icon { margin: 0 auto 0.375rem; animation: iconFloat 3s ease-in-out infinite; }
@keyframes iconFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-3px); } }
.stat-value { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; color: white; }
.stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.6); margin-top: 0.125rem; }

/* Marquee */
.hero-marquee {
    margin-top: 2rem;
    overflow: hidden;
    position: relative;
}
.marquee-fade-left, .marquee-fade-right {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 4rem;
    z-index: 2;
    pointer-events: none;
}
.marquee-fade-left { left: 0; background: linear-gradient(to right, #0B1F3A, transparent); }
.marquee-fade-right { right: 0; background: linear-gradient(to left, #0B1F3A, transparent); }
.marquee-track {
    display: flex;
    gap: 2rem;
    white-space: nowrap;
    animation: marqueeScroll 20s linear infinite;
}
.marquee-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.3);
    font-weight: 500;
}
.marquee-dot { width: 6px; height: 6px; background: rgba(0,200,83,0.4); border-radius: 50%; flex-shrink: 0; }
@keyframes marqueeScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-1200px); } }

/* ═══════════════════════════════════════════════════════════════════════
   ABOUT SECTION
   ═══════════════════════════════════════════════════════════════════════ */
.about-section { background: var(--white); }
.about-dots {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.04;
}
.about-accent {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}
.about-accent-1 {
    width: 18rem;
    height: 18rem;
    top: 5rem;
    right: -5rem;
    background: radial-gradient(circle, rgba(30,136,229,0.08) 0%, transparent 70%);
    animation: aboutFloat1 8s ease-in-out infinite;
}
.about-accent-2 {
    width: 15rem;
    height: 15rem;
    bottom: 5rem;
    left: -4rem;
    background: radial-gradient(circle, rgba(0,200,83,0.07) 0%, transparent 70%);
    animation: aboutFloat2 10s ease-in-out infinite 1s;
}
.about-accent-3 {
    width: 12rem;
    height: 12rem;
    top: 50%;
    left: 33%;
    background: radial-gradient(circle, rgba(212,168,67,0.05) 0%, transparent 70%);
    animation: aboutFloat3 7s ease-in-out infinite 2s;
}
@keyframes aboutFloat1 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(10px,-20px); } }
@keyframes aboutFloat2 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-12px,15px); } }
@keyframes aboutFloat3 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(12px); } }

.about-grid { display: grid; gap: 2.5rem; align-items: center; position: relative; z-index: 2; }
.about-content { order: 2; }
.about-image { order: 1; }
.about-text { font-size: 1rem; color: var(--gray-500); line-height: 1.625; margin-bottom: 2rem; }

.features-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.feature-card {
    background: var(--white);
    border-radius: 1rem;
    padding: 1.25rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    border: 1px solid rgba(241,245,249,1);
    transition: all 0.3s ease;
    cursor: default;
}
.feature-card:hover { box-shadow: 0 12px 32px rgba(0,0,0,0.08); transform: translateY(-8px); border-color: rgba(226,232,240,1); }
.feature-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}
.feature-card:hover .feature-icon { transform: scale(1.1); }
.feature-title { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.375rem; }
.feature-desc { font-size: 0.875rem; color: var(--gray-400); line-height: 1.625; }

.about-image-wrapper { position: relative; }
.about-image-border {
    position: absolute;
    inset: -0.75rem;
    border-radius: 1.5rem;
    border: 2px solid rgba(30,136,229,0.2);
    animation: borderPulse 4s ease-in-out infinite;
}
@keyframes borderPulse { 0%,100% { opacity: 0.4; } 50% { opacity: 0.8; } }
.about-image-accent-box {
    position: absolute;
    bottom: -0.75rem;
    right: -0.75rem;
    width: 6rem;
    height: 6rem;
    border-radius: 1rem;
    background: linear-gradient(to bottom right, rgba(30,136,229,0.1), rgba(0,200,83,0.1));
    animation: accentBoxFloat 5s ease-in-out infinite 0.5s;
}
@keyframes accentBoxFloat { 0%,100% { transform: translate(0,0); } 50% { transform: translate(4px,-6px); } }
.about-image-gold-dot {
    position: absolute;
    top: -0.5rem;
    left: -0.5rem;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: rgba(212,168,67,0.3);
    animation: goldDotPulse 3s ease-in-out infinite;
}
@keyframes goldDotPulse { 0%,100% { transform: scale(1); opacity: 0.5; } 50% { transform: scale(1.3); opacity: 1; } }
.about-image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(11,31,58,0.08);
}
.about-image-container img { width: 100%; height: 100%; object-fit: cover; }
.about-image-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 6rem;
    background: linear-gradient(to top, rgba(11,31,58,0.2), transparent);
    pointer-events: none;
}

/* ═══════════════════════════════════════════════════════════════════════
   SERVICES SECTION
   ═══════════════════════════════════════════════════════════════════════ */
.services-section { background: var(--gray-50); }
.services-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.svc-shape { position: absolute; border-radius: 50%; filter: blur(60px); }
.svc-shape-1 { width: 320px; height: 320px; left: 5%; top: 8%; background: radial-gradient(circle, #1E88E5 0%, transparent 70%); opacity: 0.06; animation: svcFloat1 20s ease-in-out infinite; }
.svc-shape-2 { width: 260px; height: 260px; left: 75%; top: 15%; background: radial-gradient(circle, #00C853 0%, transparent 70%); opacity: 0.05; animation: svcFloat2 24s ease-in-out infinite 1.5s; }
.svc-shape-3 { width: 200px; height: 200px; left: 60%; top: 65%; background: radial-gradient(circle, #D4A843 0%, transparent 70%); opacity: 0.05; animation: svcFloat3 18s ease-in-out infinite 3s; }
.svc-shape-4 { width: 180px; height: 180px; left: 10%; top: 70%; background: radial-gradient(circle, #0B1F3A 0%, transparent 70%); opacity: 0.04; animation: svcFloat4 22s ease-in-out infinite 4.5s; }
@keyframes svcFloat1 { 0%,100% { transform: translate(0,0); } 33% { transform: translate(30px,-20px); } 66% { transform: translate(-15px,10px); } }
@keyframes svcFloat2 { 0%,100% { transform: translate(0,0); } 33% { transform: translate(-20px,15px); } 66% { transform: translate(25px,-25px); } }
@keyframes svcFloat3 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(15px,-10px); } }
@keyframes svcFloat4 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(20px,10px); } }

.services-grid-pattern { position: absolute; inset: 0; pointer-events: none; opacity: 0.025; z-index: 0; }
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    position: relative;
    z-index: 2;
}
.service-card {
    position: relative;
    background: var(--white);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    border: 1px solid rgba(241,245,249,1);
    transition: all 0.3s ease;
    cursor: default;
    overflow: hidden;
}
.service-card:hover { box-shadow: 0 12px 32px rgba(0,0,0,0.08); transform: translateY(-8px); border-color: rgba(226,232,240,1); }
.service-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 16px rgba(11,31,58,0.08);
    transition: transform 0.3s ease;
}
.service-card:hover .service-icon { transform: scale(1.1); }
.service-title { font-family: var(--font-heading); font-size: 1.125rem; font-weight: 700; color: var(--navy); margin-bottom: 0.75rem; }
.service-desc { font-size: 0.875rem; color: var(--gray-400); line-height: 1.625; }
.service-accent {
    position: absolute;
    bottom: 0;
    left: 1.5rem;
    right: 1.5rem;
    height: 2px;
    border-radius: 9999px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}
.service-card:hover .service-accent { transform: scaleX(1); }

/* ═══════════════════════════════════════════════════════════════════════
   STATS SECTION
   ═══════════════════════════════════════════════════════════════════════ */
.stats-section { background: var(--white); }
.stats-bg-circles { position: absolute; inset: 0; pointer-events: none; }
.stats-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
}
.stats-circle-1 { width: 320px; height: 320px; left: -8%; top: -12%; background: rgba(30,136,229,0.07); animation: statsPulse 14s ease-in-out infinite; }
.stats-circle-2 { width: 260px; height: 260px; left: 65%; top: -8%; background: rgba(0,200,83,0.06); animation: statsPulse 18s ease-in-out infinite 2s; }
.stats-circle-3 { width: 280px; height: 280px; left: 20%; top: 50%; background: rgba(212,168,67,0.05); animation: statsPulse 16s ease-in-out infinite 1s; }
.stats-circle-4 { width: 220px; height: 220px; left: 75%; top: 55%; background: rgba(11,31,58,0.05); animation: statsPulse 20s ease-in-out infinite 3s; }
.stats-circle-5 { width: 180px; height: 180px; left: 40%; top: -5%; background: rgba(30,136,229,0.04); animation: statsPulse 22s ease-in-out infinite 4s; }
@keyframes statsPulse { 0%,100% { transform: scale(1); opacity: 0.6; } 50% { transform: scale(1.12); opacity: 1; } }

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    position: relative;
    z-index: 2;
}
.stat-card {
    position: relative;
    background: var(--white);
    border: 1px solid rgba(241,245,249,1);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    cursor: default;
    overflow: hidden;
    transition: all 0.3s ease;
}
.stat-card:hover { transform: scale(1.03); box-shadow: 0 12px 32px rgba(0,0,0,0.06); }
.stat-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.stat-card:hover .stat-card-accent { opacity: 1; }
.stat-card-glow {
    position: absolute;
    top: -2rem;
    right: -2rem;
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    opacity: 0.05;
    animation: statsGlow 4s ease-in-out infinite;
}
@keyframes statsGlow { 0%,100% { transform: scale(1); } 50% { transform: scale(1.15); } }
.stat-card-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.stat-card-pulse {
    position: absolute;
    inset: 0;
    border-radius: 0.75rem;
    border: 2px solid;
    animation: cardPulse 3s ease-out infinite;
}
@keyframes cardPulse { 0%,100% { transform: scale(1); opacity: 0.3; } 50% { transform: scale(1.2); opacity: 0; } }
.stat-card-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}
.stat-card-label { margin-top: 0.5rem; font-size: 0.875rem; font-weight: 600; color: var(--navy); }

/* ═══════════════════════════════════════════════════════════════════════
   PROCESS SECTION
   ═══════════════════════════════════════════════════════════════════════ */
.process-section { background: #F0F7FF; }
.process-blob { position: absolute; pointer-events: none; border-radius: 50%; }
.process-blob-1 { width: 400px; height: 400px; top: -10%; right: -5%; background: radial-gradient(circle, rgba(30,136,229,0.06) 0%, transparent 70%); filter: blur(60px); animation: statsPulse 10s ease-in-out infinite; }
.process-blob-2 { width: 350px; height: 350px; bottom: -8%; left: -5%; background: radial-gradient(circle, rgba(0,200,83,0.05) 0%, transparent 70%); filter: blur(50px); animation: statsPulse 12s ease-in-out infinite 2s; }
.process-blob-3 { width: 250px; height: 250px; top: 40%; left: 50%; background: radial-gradient(circle, rgba(212,168,67,0.04) 0%, transparent 70%); filter: blur(50px); animation: statsPulse 14s ease-in-out infinite 4s; }

/* Desktop Timeline */
.process-timeline-desktop { display: none; }
.timeline-line {
    position: absolute;
    top: 1.5rem;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: #E2E8F0;
    z-index: 0;
}
.timeline-progress {
    height: 100%;
    width: 0%;
    border-radius: 9999px;
    background: linear-gradient(90deg, #1E88E5, #00C853, #D4A843, #0B1F3A);
    transition: width 0.3s ease;
}
.process-steps-desktop { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; position: relative; z-index: 2; }
.process-step { text-align: center; }
.step-number {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    background: rgba(11,31,58,0.08);
    color: var(--navy);
    border: 2px solid rgba(11,31,58,0.15);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}
.process-step:hover .step-number {
    background: var(--step-color, var(--blue));
    color: white;
    border: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transform: scale(1.12);
}
.step-card {
    background: var(--white);
    border-radius: 1rem;
    border: 1px solid rgba(241,245,249,1);
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    padding: 1.5rem;
    text-align: left;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}
.step-card:hover { transform: translateY(-6px); box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.step-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    opacity: 0.2;
    transition: opacity 0.3s ease;
}
.step-card:hover .step-accent { opacity: 1; }
.step-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}
.step-title { font-family: var(--font-heading); font-size: 1.125rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.step-desc { font-size: 0.875rem; color: var(--gray-500); line-height: 1.625; }

/* Mobile Timeline */
.process-timeline-mobile { display: flex; flex-direction: column; }
.process-step-mobile {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}
.step-mobile-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}
.step-mobile-number {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}
.step-mobile-line {
    width: 2px;
    flex: 1;
    margin-top: 0.5rem;
    min-height: 1.5rem;
    background: rgba(11,31,58,0.06);
}
.step-mobile-card {
    flex: 1;
    background: var(--white);
    border-radius: 1rem;
    border: 1px solid rgba(241,245,249,1);
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    padding: 1.25rem;
    margin-bottom: 1.5rem;
}
.step-mobile-icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
}

/* ═══════════════════════════════════════════════════════════════════════
   TESTIMONIALS SECTION
   ═══════════════════════════════════════════════════════════════════════ */
.testimonials-section { background: var(--white); }
.testimonial-carousel { max-width: 48rem; margin: 0 auto; }
.testimonial-card {
    background: var(--white);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 12px 40px rgba(226,232,240,0.4);
    border: 1px solid rgba(241,245,249,1);
    overflow: hidden;
}
.quote-badge {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}
.quote-badge > * {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(30,136,229,0.08);
    animation: quotePulse 3s ease-in-out infinite;
}
@keyframes quotePulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.08); } }
.testimonial-content-area {
    position: relative;
    min-height: 200px;
    overflow: hidden;
}
.testimonial-slide {
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.testimonial-slide.slide-left { transform: translateX(80px); opacity: 0; }
.testimonial-slide.slide-right { transform: translateX(-80px); opacity: 0; }
.testimonial-slide.slide-active { transform: translateX(0); opacity: 1; }
.testimonial-text {
    font-family: var(--font-heading);
    font-size: 1rem;
    text-align: center;
    color: #4B5563;
    line-height: 1.625;
}
.testimonial-stars { display: flex; justify-content: center; gap: 0.25rem; margin-top: 1.25rem; }
.testimonial-stars svg { color: var(--gold); fill: var(--gold); width: 1rem; height: 1rem; }
.testimonial-author { text-align: center; font-family: var(--font-heading); font-size: 1rem; font-weight: 700; color: var(--navy); margin-top: 1.25rem; }
.testimonial-role { text-align: center; font-size: 0.875rem; color: var(--gray-400); margin-top: 0.125rem; }

.testimonial-nav { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-top: 2rem; }
.carousel-btn {
    width: 2.75rem;
    height: 2.75rem;
    min-width: 44px;
    min-height: 44px;
    border-radius: 50%;
    border: 2px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    transition: all 0.2s ease;
}
.carousel-btn:hover { background: var(--navy); color: white; border-color: var(--navy); transform: scale(1.08); }
.carousel-dots { display: flex; gap: 0.5rem; }
.carousel-dot-btn {
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}
.carousel-dot-indicator {
    height: 0.5rem;
    border-radius: 9999px;
    background: rgba(11,31,58,0.25);
    transition: all 0.3s ease;
    opacity: 0.4;
    width: 8px;
}
.carousel-dot-indicator.active {
    background: var(--navy);
    opacity: 1;
    width: 2rem;
}

/* ═══════════════════════════════════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════════════════════════════════ */
.cta-section {
    background: var(--navy);
    position: relative;
}
.cta-bg-image {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.cta-bg-image img { width: 100%; height: 100%; object-fit: cover; opacity: 0.08; }
.cta-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(11,31,58,0.92) 0%, rgba(11,31,58,0.85) 40%, rgba(19,45,82,0.95) 100%);
}
.cta-orb { position: absolute; border-radius: 50%; pointer-events: none; }
.cta-orb-1 { top: -4rem; right: -4rem; width: 24rem; height: 24rem; background: radial-gradient(circle, rgba(30,136,229,0.25) 0%, rgba(30,136,229,0.08) 40%, transparent 70%); filter: blur(60px); animation: ctaOrb1 10s ease-in-out infinite; }
.cta-orb-2 { bottom: -5rem; left: -5rem; width: 18rem; height: 18rem; background: radial-gradient(circle, rgba(0,200,83,0.22) 0%, rgba(0,200,83,0.06) 40%, transparent 70%); filter: blur(55px); animation: ctaOrb2 8s ease-in-out infinite 1.5s; }
.cta-orb-3 { top: 50%; left: 50%; transform: translate(-50%,-50%); width: 16rem; height: 16rem; background: radial-gradient(circle, rgba(212,168,67,0.18) 0%, rgba(212,168,67,0.04) 40%, transparent 70%); filter: blur(50px); animation: ctaOrb3 6s ease-in-out infinite 3s; }
@keyframes ctaOrb1 { 0%,100% { transform: translate(0,0) scale(1); opacity: 0.6; } 25% { transform: translate(25px,-15px) scale(1.25); opacity: 0.85; } 50% { transform: translate(-10px,10px) scale(0.95); } 75% { transform: translate(15px,-5px) scale(1.15); } }
@keyframes ctaOrb2 { 0%,100% { transform: translate(0,0) scale(1); opacity: 0.5; } 25% { transform: translate(-20px,12px) scale(1.2); } 50% { transform: translate(10px,-8px) scale(0.9); } 75% { transform: translate(-15px,15px) scale(1.1); } }
@keyframes ctaOrb3 { 0%,100% { transform: translate(-50%,-50%) scale(1); opacity: 0.15; } 50% { transform: translate(-50%,-50%) scale(1.8); opacity: 0.35; } }

.cta-dots { position: absolute; inset: 0; pointer-events: none; }
.cta-dot { position: absolute; border-radius: 50%; animation: ctaDotFloat 4s ease-in-out infinite; }
@keyframes ctaDotFloat { 0% { opacity: 0.2; transform: translateY(0) scale(0.8); } 25% { opacity: 0.9; transform: translateY(-18px) scale(1.3); } 50% { opacity: 0.3; transform: translateY(4px) scale(0.9); } 75% { opacity: 0.8; transform: translateY(-12px) scale(1.15); } 100% { opacity: 0.2; transform: translateY(0) scale(0.8); } }
.cta-line { position: absolute; left: 5%; right: 5%; height: 1px; pointer-events: none; }
.cta-line-top { top: 15%; background: linear-gradient(90deg, transparent, rgba(30,136,229,0.15), rgba(212,168,67,0.2), rgba(0,200,83,0.15), transparent); animation: linePulse 4s ease-in-out infinite; }
.cta-line-bottom { bottom: 15%; left: 10%; right: 10%; background: linear-gradient(90deg, transparent, rgba(212,168,67,0.15), rgba(30,136,229,0.2), rgba(212,168,67,0.15), transparent); animation: linePulse 5s ease-in-out infinite 1s; }
@keyframes linePulse { 0%,100% { opacity: 0.3; } 50% { opacity: 0.7; } }

.cta-content { text-align: center; max-width: 48rem; margin: 0 auto; position: relative; z-index: 2; }
.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--green);
    margin-bottom: 1.5rem;
}
.cta-badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); animation: pulse 2s ease-in-out infinite; }
.cta-title {
    font-family: var(--font-heading);
    font-size: 1.875rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
}
.cta-subtitle { font-size: 1rem; color: rgba(255,255,255,0.6); margin-top: 1.25rem; line-height: 1.625; max-width: 40rem; margin-left: auto; margin-right: auto; }
.cta-buttons { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; align-items: center; }
.cta-buttons .btn { width: 100%; max-width: 20rem; }

/* ═══════════════════════════════════════════════════════════════════════
   CONTACT SECTION
   ═══════════════════════════════════════════════════════════════════════ */
.contact-section { background: var(--white); }
.contact-accent { position: absolute; border-radius: 50%; pointer-events: none; }
.contact-accent-1 { top: 0; right: 0; width: 31.25rem; height: 31.25rem; background: rgba(30,136,229,0.03); transform: translate(50%,-50%); }
.contact-accent-2 { bottom: 0; left: 0; width: 25rem; height: 25rem; background: rgba(0,200,83,0.03); transform: translate(-50%,50%); }

.contact-grid { display: grid; gap: 3rem; position: relative; z-index: 2; }
.contact-info-title { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.contact-info-text { color: var(--gray-500); margin-bottom: 2rem; line-height: 1.625; }

.contact-cards { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-bottom: 2rem; }
.contact-card {
    background: var(--gray-50);
    border: 1px solid rgba(241,245,249,1);
    border-radius: 1rem;
    padding: 1.25rem;
    transition: all 0.3s ease;
}
.contact-card:hover { border-color: rgba(30,136,229,0.3); box-shadow: 0 8px 24px rgba(30,136,229,0.05); }
.contact-card-icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    transition: transform 0.3s ease;
}
.contact-card:hover .contact-card-icon { transform: scale(1.1); }
.contact-card-title { font-size: 0.875rem; font-weight: 600; color: var(--navy); margin-bottom: 0.25rem; }
.contact-card-text { font-size: 0.875rem; color: var(--gray-500); }
.contact-card-text a { transition: color 0.2s ease; }
.contact-card-text a:hover { color: var(--blue); }

.contact-social-label { font-size: 0.75rem; font-weight: 600; color: var(--navy); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.75rem; }
.contact-social-links { display: flex; gap: 0.75rem; }
.social-link {
    width: 2.75rem;
    height: 2.75rem;
    min-width: 44px;
    min-height: 44px;
    border-radius: 0.75rem;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
    transition: all 0.3s ease;
}
.social-link:hover { background: var(--navy); color: white; }

/* Contact Form */
.contact-form {
    background: var(--gray-50);
    border: 1px solid rgba(241,245,249,1);
    border-radius: 1rem;
    padding: 1.5rem;
}
.form-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.875rem; font-weight: 500; color: var(--navy); margin-bottom: 0.375rem; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    border: 1px solid var(--gray-200);
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    font-family: var(--font-body);
    color: var(--navy);
    background: white;
    min-height: 44px;
    transition: all 0.2s ease;
    outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(30,136,229,0.15);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--gray-400); }
.form-group select { appearance: none; cursor: pointer; padding-right: 2.5rem; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; }
.form-group textarea { resize: vertical; min-height: 110px; }

.btn-submit {
    width: 100%;
    padding: 0.875rem 2rem;
    background: var(--navy);
    color: white;
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: 0.75rem;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(11,31,58,0.2);
}
.btn-submit:hover { background: #132d52; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(11,31,58,0.3); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.spinner { animation: spin 1s linear infinite; }
@keyframes spin { 100% { transform: rotate(360deg); } }

.form-status { margin-top: 1rem; font-size: 0.875rem; font-weight: 500; display: flex; align-items: center; gap: 0.5rem; }
.form-status.success { color: var(--green); }
.form-status.error { color: #EF4444; }

/* ═══════════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════════ */
.footer { background: var(--navy); margin-top: auto; }
.footer-wave { overflow: hidden; line-height: 0; }
.footer-wave svg { width: 100%; height: 40px; display: block; }
.footer-content { padding: 3rem 0 2.5rem; }
.footer-top { display: flex; flex-direction: column; gap: 1.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-logo { font-size: 1.5rem; font-weight: 700; letter-spacing: -0.02em; }
.footer-logo-gold { color: var(--gold); }
.footer-subtitle { font-size: 0.875rem; color: rgba(255,255,255,0.4); margin-top: 0.25rem; }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social-link {
    width: 2.75rem;
    height: 2.75rem;
    min-width: 44px;
    min-height: 44px;
    border-radius: 0.75rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    transition: all 0.3s ease;
}
.footer-social-link:hover { background: var(--blue); border-color: var(--blue); color: white; }

.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; margin: 2.5rem 0; }
.footer-col-title { font-family: var(--font-heading); font-size: 0.75rem; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 1rem; }
.footer-col-text { font-size: 0.875rem; color: rgba(255,255,255,0.5); line-height: 1.625; max-width: 20rem; }
.footer-links li a { font-size: 0.875rem; color: rgba(255,255,255,0.5); display: inline-block; padding: 0.375rem 0; transition: color 0.2s ease; min-height: 44px; display: flex; align-items: center; }
.footer-links li a:hover { color: white; }
.footer-contact a, .footer-contact p { font-size: 0.875rem; color: rgba(255,255,255,0.5); display: block; margin-bottom: 0.75rem; transition: color 0.2s ease; word-break: break-all; }
.footer-contact a:hover { color: white; }

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
.footer-copyright { font-size: 0.75rem; color: rgba(255,255,255,0.4); text-align: center; }
.footer-bottom-links { display: flex; align-items: center; gap: 1rem; }
.footer-bottom-links a { font-size: 0.75rem; color: rgba(255,255,255,0.4); transition: color 0.2s ease; }
.footer-bottom-links a:hover { color: white; }
.footer-sep { color: rgba(255,255,255,0.2); }
.back-to-top {
    width: 2.75rem;
    height: 2.75rem;
    min-width: 44px;
    min-height: 44px;
    border-radius: 0.75rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    margin-left: 0.5rem;
    transition: all 0.3s ease;
}
.back-to-top:hover { background: var(--blue); border-color: var(--blue); color: white; }

/* ═══════════════════════════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   ═══════════════════════════════════════════════════════════════════════ */

/* sm: 640px+ */
@media (min-width: 640px) {
    :root { --container-px: 1.5rem; }
    .section { padding: 5.5rem 0; }
    .section-title { font-size: 2.25rem; }
    .navbar-logo img { height: 56px; }
    .hero-title { font-size: 2.25rem; }
    .hero-subtitle { font-size: 1.125rem; }
    .hero-stats-bar { padding: 1.5rem; border-radius: 1.5rem; }
    .stat-value { font-size: 1.875rem; }
    .hero-marquee { margin-top: 2.5rem; }
    .marquee-item { font-size: 0.875rem; }
    .marquee-track { gap: 2rem; }
    .features-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
    .services-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .stats-grid { gap: 1.5rem; }
    .stat-card-number { font-size: 2.25rem; }
    .stat-card-icon { width: 4.5rem; height: 4.5rem; }
    .contact-cards { grid-template-columns: repeat(2, 1fr); }
    .form-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-form { padding: 2rem; }
    .cta-title { font-size: 2.25rem; }
    .cta-subtitle { font-size: 1.125rem; }
    .cta-buttons { flex-direction: row; justify-content: center; }
    .cta-buttons .btn { width: auto; }
    .testimonial-card { padding: 2rem; }
    .testimonial-text { font-size: 1.125rem; }
    .footer-wave svg { height: 50px; }
    .footer-top { flex-direction: row; align-items: center; justify-content: space-between; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-bottom { flex-direction: row; justify-content: space-between; }
    .hero-ctas { flex-direction: row; justify-content: center; }
    .hero-ctas .btn { width: auto; }
}

/* md: 768px+ */
@media (min-width: 768px) {
    .section { padding: 7rem 0; }
    .section-title { font-size: 3rem; }
    .about-section .section-header { margin-bottom: 4rem; }
    .hero-stats-bar { margin-top: 4rem; padding: 2rem; border-radius: 1.5rem; }
    .stat-value { font-size: 2.25rem; }
    .stat-label { font-size: 0.875rem; }
    .cta-title { font-size: 3rem; }
    .cta-buttons { margin-top: 2.5rem; }
    .testimonial-stars svg { width: 1.25rem; height: 1.25rem; }
    .testimonial-author { font-size: 1.125rem; }
    .form-status { flex-direction: row; }
}

/* lg: 1024px+ */
@media (min-width: 1024px) {
    :root { --container-px: 2rem; }
    .section { padding: 8rem 0; }
    .section-title { font-size: 3rem; }
    .desktop-nav { display: flex; }
    .hamburger { display: none; }
    .navbar-inner { height: 80px; }
    .navbar-logo img { height: 64px; }

    .hero-title { font-size: 3rem; }
    .hero-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
    .hero-text { text-align: left; }
    .hero-subtitle { margin-left: 0; }
    .hero-ctas { justify-content: flex-start; }
    .hero-visual { display: block; }

    .about-grid { grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
    .about-content { order: 1; }
    .about-image { order: 2; }
    .about-image-border { inset: -1rem; border-radius: 1.75rem; }
    .about-image-accent-box { width: 8rem; height: 8rem; bottom: -1rem; right: -1rem; border-radius: 1.5rem; }
    .about-image-gold-dot { width: 2rem; height: 2rem; }
    .about-image-container { border-radius: 1.5rem; }

    .services-grid { grid-template-columns: repeat(3, 1fr); }
    .stats-grid { grid-template-columns: repeat(4, 1fr); }
    .stat-card-number { font-size: 3rem; }

    .process-timeline-desktop { display: block; position: relative; }
    .process-timeline-mobile { display: none; }

    .contact-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }

    .cta-title { font-size: 3rem; }
    .footer-wave svg { height: 60px; }
    .footer-grid { grid-template-columns: repeat(4, 1fr); }
}

/* xl: 1280px+ */
@media (min-width: 1280px) {
    .hero-title { font-size: 3.75rem; }
    .section-title { font-size: 3.75rem; }
    .process-steps-desktop { gap: 2rem; }
    .cta-title { font-size: 3.75rem; }
}

/* ═══════════════════════════════════════════════════════════════════════
   CUSTOM SCROLLBAR (Testimonial Area)
   ═══════════════════════════════════════════════════════════════════════ */
.testimonial-content-area::-webkit-scrollbar { width: 4px; }
.testimonial-content-area::-webkit-scrollbar-track { background: transparent; }
.testimonial-content-area::-webkit-scrollbar-thumb { background: var(--gray-200); border-radius: 9999px; }
.testimonial-content-area::-webkit-scrollbar-thumb:hover { background: var(--gray-400); }

/* ═══════════════════════════════════════════════════════════════════════
   SELECTION COLOR
   ═══════════════════════════════════════════════════════════════════════ */
::selection { background: rgba(30,136,229,0.2); color: var(--navy); }
::-moz-selection { background: rgba(30,136,229,0.2); color: var(--navy); }