/* ══════════════════════════════════════════════
   ERIKA MEDIA — Website Stylesheet
   ══════════════════════════════════════════════ */

/* ── Variables ─────────────────────────────── */
:root {
    --navy:    #0d1b3e;
    --navy2:   #162348;
    --blue:    #4a90d9;
    --blue2:   #357abd;
    --teal:    #1abc9c;
    --teal2:   #16a085;
    --light:   #f8faff;
    --white:   #ffffff;
    --text:    #1a1a2e;
    --muted:   #6b7280;
    --border:  #e5e9f2;
    --shadow:  0 4px 24px rgba(13,27,62,0.09);
    --shadow-lg: 0 12px 48px rgba(13,27,62,0.14);
    --radius:  12px;
    --radius-lg: 20px;
    --font-head: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* ── Reset ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Typography ────────────────────────────── */
h1, h2, h3, h4, h5 {
    font-family: var(--font-head);
    line-height: 1.2;
    color: var(--navy);
}

.gradient-text {
    background: linear-gradient(135deg, var(--blue), var(--teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 12px;
    padding: 6px 14px;
    background: rgba(74,144,217,0.08);
    border-radius: 20px;
    border: 1px solid rgba(74,144,217,0.2);
}

.section-header {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 56px;
}

.section-header h2 { font-size: clamp(28px, 4vw, 42px); margin-bottom: 14px; }
.section-header p  { color: var(--muted); font-size: 16px; line-height: 1.7; }

/* ── Buttons ────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    border: 2px solid transparent;
    transition: all 0.22s;
    white-space: nowrap;
}

.btn-lg { padding: 15px 36px; font-size: 15px; }
.btn-full { width: 100%; justify-content: center; }

.btn-primary {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}
.btn-primary:hover { background: var(--blue); border-color: var(--blue); }

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.8); }

.btn-white {
    background: var(--white);
    color: var(--navy);
    border-color: var(--white);
}
.btn-white:hover { background: var(--light); }

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.6);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: white; }

/* ── Scroll Animations ──────────────────────── */
[data-animate] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

/* ════════════════════════════════════════════
   NAVBAR
════════════════════════════════════════════ */
#navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(13,27,62,0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: background 0.3s;
}

.nav-inner {
    display: flex;
    align-items: center;
    gap: 40px;
    padding-top: 14px;
    padding-bottom: 14px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-family: var(--font-head);
    font-size: 18px;
    flex-shrink: 0;
}

.nav-logo img { height: 36px; width: 36px; object-fit: contain; border-radius: 6px; }
.nav-logo span { font-weight: 400; }
.nav-logo strong { font-weight: 700; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    flex: 1;
}

.nav-links a {
    color: rgba(255,255,255,0.75);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-phone {
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    transition: color 0.2s;
}
.nav-phone:hover { color: var(--teal); }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 4px;
    margin-left: auto;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s;
}

/* ════════════════════════════════════════════
   HERO
════════════════════════════════════════════ */
#hero {
    background: var(--navy);
    min-height: 100vh;
    padding: 130px 0 80px;
    position: relative;
    overflow: hidden;
}

/* Animated BG shapes */
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; }

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: floatShape 8s ease-in-out infinite;
}

.shape-1 { width: 400px; height: 400px; background: rgba(74,144,217,0.12); top: -100px; right: -100px; animation-delay: 0s; }
.shape-2 { width: 300px; height: 300px; background: rgba(26,188,156,0.1); bottom: 0; left: -80px; animation-delay: 2s; }
.shape-3 { width: 200px; height: 200px; background: rgba(74,144,217,0.08); top: 40%; left: 30%; animation-delay: 4s; }
.shape-4 { width: 150px; height: 150px; background: rgba(26,188,156,0.08); top: 20%; left: 60%; animation-delay: 1s; }

@keyframes floatShape {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50%       { transform: translate(20px, -20px) scale(1.05); }
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 8px 18px;
    border-radius: 30px;
    color: rgba(255,255,255,0.8);
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 24px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--teal);
    border-radius: 50%;
    animation: pulse 2s ease infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.6; transform: scale(1.3); }
}

.hero-text h1 {
    font-size: clamp(36px, 5vw, 58px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-sub {
    color: rgba(255,255,255,0.65);
    font-size: 17px;
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 480px;
}

.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-trust {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.trust-item { color: rgba(255,255,255,0.7); font-size: 13px; }
.trust-item strong { display: block; color: var(--white); font-size: 20px; font-family: var(--font-head); font-weight: 700; }
.trust-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.12); }

/* Hero Visual Cards */
.hero-visual {
    position: relative;
    height: 360px;
}

.hero-card {
    position: absolute;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 22px 24px;
    color: white;
    font-size: 13px;
}

.card-digital {
    width: 240px;
    top: 0; left: 20px;
    animation: floatCard1 6s ease-in-out infinite;
}

.card-recruit {
    width: 210px;
    bottom: 20px; right: 0;
    animation: floatCard2 6s ease-in-out infinite;
    animation-delay: 1.5s;
}

@keyframes floatCard1 {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-12px); }
}
@keyframes floatCard2 {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(10px); }
}

.hc-tag {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 8px;
}

.teal-tag { color: var(--teal) !important; }

.hc-title { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.hc-metric { font-size: 12px; color: rgba(255,255,255,0.7); margin-bottom: 8px; }
.metric-up { color: #2ecc71; font-weight: 600; }

.hc-bar { background: rgba(255,255,255,0.1); height: 4px; border-radius: 2px; margin-bottom: 10px; }
.hc-bar-fill { height: 4px; border-radius: 2px; background: linear-gradient(90deg, var(--blue), var(--teal)); }

.hc-row { display: flex; align-items: center; gap: 6px; font-size: 12px; color: rgba(255,255,255,0.7); }
.hc-dot { width: 8px; height: 8px; border-radius: 50%; }
.hc-dot.blue { background: var(--blue); }
.hc-dot.teal { background: var(--teal); }

.hc-role { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.hc-company { font-size: 12px; color: rgba(255,255,255,0.6); margin-bottom: 12px; }
.hc-apps, .hc-interviews { font-size: 12px; color: rgba(255,255,255,0.7); margin-bottom: 4px; }
.hc-apps span, .hc-interviews span { color: var(--teal); font-weight: 700; margin-right: 4px; }

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    pointer-events: none;
}
.orb-1 { width: 180px; height: 180px; background: rgba(74,144,217,0.18); top: 50px; right: 80px; }
.orb-2 { width: 120px; height: 120px; background: rgba(26,188,156,0.15); bottom: 80px; left: 60px; }

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.35);
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    animation: fadeInUp 2s ease 1s both;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.4));
    animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
    0%, 100% { transform: scaleY(1); opacity: 0.5; }
    50%       { transform: scaleY(1.3); opacity: 1; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateX(-50%) translateY(10px); }
    to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ════════════════════════════════════════════
   DUAL INTRO
════════════════════════════════════════════ */
#dual-intro {
    padding: 80px 0;
    background: var(--white);
}

.dual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.dual-card {
    padding: 40px 36px;
    border-radius: var(--radius-lg);
    border: 1.5px solid var(--border);
    transition: transform 0.3s, box-shadow 0.3s;
}
.dual-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.digital-card { background: linear-gradient(135deg, #f0f5ff 0%, #e8f2ff 100%); }
.recruit-card { background: linear-gradient(135deg, #f0fdf9 0%, #e8f9f4 100%); }

.dual-icon {
    width: 56px; height: 56px;
    background: var(--navy);
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    color: white;
    margin-bottom: 20px;
}
.dual-icon svg { width: 26px; height: 26px; }

.teal-icon { background: var(--teal2) !important; }

.dual-card h3 { font-size: 22px; margin-bottom: 12px; }
.dual-card p  { color: var(--muted); line-height: 1.75; margin-bottom: 20px; }

.dual-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--blue);
    transition: gap 0.2s;
}
.teal-link { color: var(--teal2) !important; }
.dual-link:hover { opacity: 0.75; }

/* ════════════════════════════════════════════
   SERVICES
════════════════════════════════════════════ */
#services {
    padding: 100px 0;
    background: var(--light);
}

.services-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 48px;
    background: var(--white);
    padding: 6px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 11px 28px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    background: transparent;
    color: var(--muted);
    transition: all 0.22s;
}
.tab-btn.active { background: var(--navy); color: var(--white); }
.tab-btn:hover:not(.active) { background: var(--light); color: var(--navy); }

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--blue);
}

.teal-card:hover { border-color: var(--teal) !important; }

.sc-icon {
    width: 52px; height: 52px;
    background: rgba(74,144,217,0.08);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: var(--blue);
    margin-bottom: 18px;
}
.sc-icon svg { width: 24px; height: 24px; }

.teal-sc-icon { background: rgba(26,188,156,0.08) !important; color: var(--teal2) !important; }

.service-card h4 { font-size: 17px; margin-bottom: 10px; }
.service-card p  { color: var(--muted); font-size: 14px; line-height: 1.7; margin-bottom: 18px; }

.sc-features {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sc-features li {
    font-size: 13px;
    color: var(--muted);
    padding-left: 14px;
    position: relative;
}
.sc-features li::before {
    content: '';
    position: absolute;
    left: 0; top: 7px;
    width: 6px; height: 6px;
    background: var(--blue);
    border-radius: 50%;
}

.sc-teal li::before { background: var(--teal) !important; }

/* ════════════════════════════════════════════
   STATS
════════════════════════════════════════════ */
#stats {
    padding: 80px 0;
    background: var(--navy);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item { color: var(--white); position: relative; }
.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -20px; top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255,255,255,0.1);
}

.stat-number {
    font-family: var(--font-head);
    font-size: 52px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--blue), var(--teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.stat-plus { display: inline-block; font-size: 28px; font-weight: 700; color: var(--teal); vertical-align: top; margin-top: 10px; }
.stat-label { color: rgba(255,255,255,0.55); font-size: 14px; margin-top: 6px; }

/* ════════════════════════════════════════════
   ABOUT
════════════════════════════════════════════ */
#about {
    padding: 100px 0;
    background: var(--white);
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Abstract card stack */
.about-card-stack {
    position: relative;
    height: 380px;
}

.about-img-card {
    background: var(--light);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    width: 320px;
    margin: 0 auto;
    box-shadow: var(--shadow-lg);
}

.ac-header {
    background: var(--navy);
    padding: 12px 16px;
}
.ac-dots { display: flex; gap: 6px; }
.ac-dots span { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.2); }
.ac-dots span:first-child { background: #ff5f57; }
.ac-dots span:nth-child(2) { background: #febc2e; }
.ac-dots span:nth-child(3) { background: #28c840; }

.ac-body { padding: 20px 18px; }
.ac-line { height: 8px; background: var(--border); border-radius: 4px; margin-bottom: 10px; }
.ac-line.w80 { width: 80%; }
.ac-line.w60 { width: 60%; }
.ac-line.w90 { width: 90%; }
.ac-line.w50 { width: 50%; }

.ac-tag-row { display: flex; gap: 8px; margin: 14px 0; flex-wrap: wrap; }
.ac-tag {
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 12px;
}
.blue-tag    { background: rgba(74,144,217,0.12); color: var(--blue2); }
.teal-tag-sm { background: rgba(26,188,156,0.12); color: var(--teal2); }
.grey-tag    { background: var(--border); color: var(--muted); }

.ac-progress { height: 6px; background: var(--border); border-radius: 3px; margin: 10px 0 6px; overflow: hidden; }
.ac-prog-fill { height: 100%; width: 72%; background: linear-gradient(90deg, var(--blue), var(--teal)); border-radius: 3px; animation: progress 3s ease-in-out infinite alternate; }
@keyframes progress { from { width: 55%; } to { width: 85%; } }

.ac-label { font-size: 11px; color: var(--muted); }

.about-badge-float {
    position: absolute;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 20px;
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    box-shadow: var(--shadow);
    animation: floatBadge 4s ease-in-out infinite;
}

.badge-karachi { bottom: 40px; left: -10px; animation-delay: 0s; }
.badge-founded { top: 30px; right: -10px; animation-delay: 1s; }

@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-8px); }
}

/* About text */
.about-text h2 { font-size: clamp(28px, 3.5vw, 40px); margin-bottom: 20px; }
.about-text p  { color: var(--muted); line-height: 1.8; margin-bottom: 16px; }

.about-values { display: flex; flex-direction: column; gap: 16px; margin-top: 28px; }
.value-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 16px 20px;
    background: var(--light);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}
.value-icon { font-size: 22px; flex-shrink: 0; }
.value-item strong { display: block; font-size: 15px; color: var(--navy); margin-bottom: 2px; }
.value-item div { font-size: 13px; color: var(--muted); }

/* ════════════════════════════════════════════
   PROCESS
════════════════════════════════════════════ */
#process {
    padding: 100px 0;
    background: var(--light);
}

.process-tabs {
    display: flex;
    gap: 8px;
    margin: 0 auto 48px;
    width: fit-content;
    background: var(--white);
    padding: 5px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.proc-tab {
    padding: 10px 28px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    background: transparent;
    color: var(--muted);
    transition: all 0.22s;
}
.proc-tab.active { background: var(--navy); color: white; }
.proc-tab:hover:not(.active) { background: var(--light); color: var(--navy); }

.process-steps {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    gap: 8px;
    align-items: center;
}

.step {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--blue); }
.teal-step:hover { border-color: var(--teal) !important; }

.step-num {
    font-family: var(--font-head);
    font-size: 36px;
    font-weight: 800;
    color: var(--blue);
    line-height: 1;
    margin-bottom: 12px;
    opacity: 0.7;
}
.teal-num { color: var(--teal) !important; }

.step-body h4 { font-size: 15px; margin-bottom: 8px; }
.step-body p  { color: var(--muted); font-size: 13px; line-height: 1.65; }

.step-arrow {
    font-size: 22px;
    color: var(--border);
    font-weight: 300;
    flex-shrink: 0;
}

/* ════════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════════ */
#testimonials {
    padding: 100px 0;
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testi-card {
    background: var(--light);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: transform 0.3s, box-shadow 0.3s;
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.featured-testi {
    background: var(--navy);
    border-color: var(--navy);
    color: white;
    transform: translateY(-8px);
}
.featured-testi:hover { transform: translateY(-12px); }

.testi-stars { color: #f39c12; font-size: 16px; margin-bottom: 14px; }
.featured-testi .testi-stars { color: #f1c40f; }

.testi-card p { color: var(--muted); font-size: 14px; line-height: 1.75; margin-bottom: 24px; font-style: italic; }
.featured-testi p { color: rgba(255,255,255,0.8); }

.testi-author { display: flex; align-items: center; gap: 14px; }

.testi-avatar {
    width: 42px; height: 42px;
    background: var(--blue);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}
.teal-avatar { background: var(--teal2) !important; }

.testi-author strong { display: block; font-size: 14px; color: var(--navy); }
.testi-author span   { font-size: 12px; color: var(--muted); }
.featured-testi .testi-author strong { color: white; }
.featured-testi .testi-author span   { color: rgba(255,255,255,0.55); }

/* ════════════════════════════════════════════
   CTA BANNER
════════════════════════════════════════════ */
#cta-banner {
    padding: 90px 0;
    background: linear-gradient(135deg, var(--navy) 0%, #1a2e5a 50%, #0d3d30 100%);
    position: relative;
    overflow: hidden;
}
#cta-banner::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");
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    position: relative;
    z-index: 1;
}

.cta-text h2 { font-size: clamp(24px, 3vw, 36px); color: white; margin-bottom: 12px; }
.cta-text p  { color: rgba(255,255,255,0.65); font-size: 16px; }
.cta-actions { display: flex; gap: 16px; flex-shrink: 0; flex-wrap: wrap; }

/* ════════════════════════════════════════════
   CONTACT
════════════════════════════════════════════ */
#contact {
    padding: 100px 0;
    background: var(--light);
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start;
}

.contact-info h2 { font-size: clamp(26px, 3vw, 36px); margin-bottom: 16px; }
.contact-info p  { color: var(--muted); line-height: 1.75; margin-bottom: 36px; }

.contact-details { display: flex; flex-direction: column; gap: 20px; }

.cd-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.cd-icon {
    width: 44px; height: 44px;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--blue);
    flex-shrink: 0;
}

.cd-item strong { display: block; font-size: 13px; font-weight: 700; margin-bottom: 3px; color: var(--navy); }
.cd-item span   { font-size: 14px; color: var(--muted); }
.cd-item a      { color: var(--blue); }

/* Contact Form */
.contact-form-wrap {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1.5px solid var(--border);
}

.cf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.cf-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
}

.cf-group label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--muted);
    margin-bottom: 7px;
}

.cf-group input,
.cf-group select,
.cf-group textarea {
    padding: 12px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-size: 14px;
    font-family: inherit;
    color: var(--text);
    background: var(--light);
    transition: border-color 0.2s, box-shadow 0.2s;
    resize: vertical;
    margin-bottom: 16px;
}

.cf-group input:focus,
.cf-group select:focus,
.cf-group textarea:focus {
    outline: none;
    border-color: var(--blue);
    background: white;
    box-shadow: 0 0 0 3px rgba(74,144,217,0.1);
}

.form-success {
    background: #eafaf1;
    border: 1px solid #a9dfbf;
    color: #1e8449;
    padding: 14px 18px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 500;
    margin-top: 12px;
}

/* ════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
#footer {
    background: var(--navy);
    color: rgba(255,255,255,0.7);
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 48px;
    padding-top: 70px;
    padding-bottom: 50px;
}

.footer-logo { margin-bottom: 16px; color: white; }
.footer-brand p { font-size: 14px; line-height: 1.7; margin-bottom: 24px; }

.social-links {
    display: flex;
    gap: 10px;
}
.social-links a {
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.07);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; font-weight: 700;
    color: rgba(255,255,255,0.7);
    transition: all 0.2s;
}
.social-links a:hover { background: var(--blue); color: white; }

.footer-links-group h5 {
    color: white;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 18px;
}
.footer-links-group a {
    display: block;
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    margin-bottom: 10px;
    transition: color 0.2s;
}
.footer-links-group a:hover { color: var(--teal); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 20px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(255,255,255,0.35);
}

/* ════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .hero-inner    { grid-template-columns: 1fr; }
    .hero-visual   { display: none; }
    .about-inner   { grid-template-columns: 1fr; }
    .about-visual  { display: none; }
    .contact-inner { grid-template-columns: 1fr; }
    .footer-inner  { grid-template-columns: 1fr 1fr; }
    .stats-grid    { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .stat-item:nth-child(2)::after { display: none; }
    .services-grid      { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid  { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
    .featured-testi     { transform: none; }
    .process-steps { grid-template-columns: 1fr; gap: 16px; }
    .step-arrow { text-align: center; transform: rotate(90deg); }
    .cta-inner  { flex-direction: column; text-align: center; }
    .cta-actions { justify-content: center; }
}

@media (max-width: 768px) {
    .nav-links, .nav-actions .btn { display: none; }
    .nav-phone { display: none; }
    .nav-toggle { display: flex; }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 64px; left: 0; right: 0;
        background: var(--navy);
        padding: 24px;
        gap: 20px;
        border-top: 1px solid rgba(255,255,255,0.08);
        z-index: 999;
    }

    .nav-links.open + .nav-actions .btn { display: inline-flex; }

    .hero-ctas  { flex-direction: column; }
    .hero-trust { flex-wrap: wrap; gap: 12px; }
    .dual-grid  { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .cf-row    { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom-inner { flex-direction: column; gap: 8px; text-align: center; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item::after { display: none !important; }
}
