@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Inter:wght@300;400;500;600;700&display=swap');

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

:root {
  --navy:   #0d1f36;
  --navy2:  #1a3a5c;
  --teal:   #2abdb5;
  --orange: #e8542a;
  --white:  #ffffff;
  --light:  #f4f7fb;
  --gray:   #64748b;
  --border: #e2e8f0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--navy);
  background: var(--white);
  overflow-x: hidden;
}

h1,h2,h3,h4,h5 { font-family: 'Archivo Black', sans-serif; line-height: 1.1; }

a { text-decoration: none; color: inherit; }

img { max-width: 100%; display: block; }

/* ── UTILITIES ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section--dark { background: var(--navy); color: var(--white); }
.section--light { background: var(--light); }
.section--white { background: var(--white); }

.badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(42,189,181,.15); border: 1px solid rgba(42,189,181,.3);
  border-radius: 999px; padding: 6px 16px;
  color: var(--teal); font-size: 13px; font-weight: 600;
  letter-spacing: .05em; text-transform: uppercase; margin-bottom: 16px;
}
.badge span { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); }
.badge--orange { background: rgba(232,84,42,.12); border-color: rgba(232,84,42,.3); color: var(--orange); }
.badge--orange span { background: var(--orange); }

.section-label { color: var(--orange); font-size: 13px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; display: block; margin-bottom: 12px; }
.section-title { font-size: clamp(32px, 5vw, 52px); margin-bottom: 20px; line-height: 1.05; }
.section-sub { font-size: 18px; color: var(--gray); max-width: 600px; margin: 0 auto; }

.text-teal   { color: var(--teal); }
.text-orange { color: var(--orange); }
.text-white  { color: var(--white); }

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

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Archivo Black', sans-serif; font-size: 15px;
  padding: 14px 32px; border-radius: 999px; border: none; cursor: pointer;
  transition: all .3s ease; text-decoration: none;
}
.btn-primary { background: var(--orange); color: var(--white); box-shadow: 0 8px 30px rgba(232,84,42,.35); }
.btn-primary:hover { background: #d4441a; transform: translateY(-2px); box-shadow: 0 12px 40px rgba(232,84,42,.45); }
.btn-outline { background: rgba(255,255,255,.12); border: 2px solid rgba(255,255,255,.3); color: var(--white); backdrop-filter: blur(8px); }
.btn-outline:hover { background: rgba(255,255,255,.22); transform: translateY(-2px); }
.btn-dark { background: var(--navy); color: var(--white); box-shadow: 0 8px 24px rgba(13,31,54,.25); }
.btn-dark:hover { background: var(--navy2); transform: translateY(-2px); }
.btn svg { width: 18px; height: 18px; transition: transform .3s; }
.btn:hover svg { transform: translateX(4px); }

/* ── NAVBAR ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: all .4s ease;
  padding: 5px 0;
}
nav.scrolled {
  background: #fff; backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(13,31,54,.1); padding: 1px 0;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
}
.nav-logo img { height: 84px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  padding: 8px 18px; border-radius: 999px; font-size: 14px; font-weight: 600;
  color: rgba(255,255,255,.85); transition: all .3s;
}
nav.scrolled .nav-links a { color: var(--navy); }
.nav-links a:hover, .nav-links a.active {
  background: var(--navy); color: var(--white) !important;
}
nav.scrolled .nav-links a:hover, nav.scrolled .nav-links a.active {
  background: var(--navy); color: var(--white);
}
.nav-phone { font-size: 14px; font-weight: 600; color: rgba(255,255,255,.75); display: flex; align-items: center; gap: 6px; }
nav.scrolled .nav-phone { color: var(--gray); }
.nav-right { display: flex; align-items: center; gap: 20px; }
.nav-cta { background: var(--orange); color: var(--white) !important; padding: 10px 24px !important; border-radius: 999px !important; font-size: 14px; font-weight: 700; box-shadow: 0 4px 16px rgba(232,84,42,.35); }
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(232,84,42,.45) !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all .3s; }
nav.scrolled .hamburger span { background: var(--navy); }

.mobile-menu {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--white); z-index: 999; padding: 100px 24px 40px; flex-direction: column; gap: 8px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 14px 20px; border-radius: 12px; font-size: 17px; font-weight: 600; color: var(--navy); border-bottom: 1px solid var(--border); }
.mobile-menu a:hover { background: var(--light); }
.mobile-menu .btn { margin-top: 16px; justify-content: center; }
.close-menu { position: absolute; top: 24px; right: 24px; font-size: 28px; cursor: pointer; color: var(--navy); background: none; border: none; }

/* ── HERO ── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
  background-image:
    linear-gradient(135deg, rgba(13,31,54,.92) 0%, rgba(13,31,54,.72) 60%, rgba(42,189,181,.3) 100%),
    url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1920&q=85&auto=format&fit=crop');
  background-size: cover; background-position: center; background-attachment: fixed;
}
.hero-content { max-width: 1170px; padding-top: 80px; }
.hero h1 { font-size: clamp(42px, 6vw, 56px); color: var(--white); margin-bottom: 24px;      margin-right: 380px;}
.hero p { font-size: 20px; color: rgba(255,255,255,.8); line-height: 1.7; margin-bottom: 40px; max-width: 600px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.scroll-hint { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); text-align: center; }
.scroll-dot { width: 24px; height: 40px; border: 2px solid rgba(255,255,255,.3); border-radius: 999px; display: flex; justify-content: center; padding-top: 6px; margin: 0 auto; animation: bounce 2s infinite; }
.scroll-dot::after { content:''; display: block; width: 6px; height: 6px; background: rgba(255,255,255,.6); border-radius: 50%; }
@keyframes bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(6px)} }

/* ── STATS BAR ── */
.stats-bar { background: var(--navy); padding: 56px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.stat-item { padding: 20px; }
.stat-icon { width: 52px; height: 52px; border-radius: 14px; background: rgba(42,189,181,.15); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.stat-icon svg { width: 26px; height: 26px; color: var(--teal); stroke: var(--teal); }
.stat-num { font-family: 'Archivo Black', sans-serif; font-size: 44px; color: var(--white); line-height: 1; }
.stat-label { color: #94a3b8; font-size: 14px; margin-top: 6px; font-weight: 500; }

/* ── ABOUT PREVIEW (HOME) ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-images { position: relative; }
.about-img-main { border-radius: 24px; overflow: hidden; box-shadow: 0 24px 60px rgba(13,31,54,.18); aspect-ratio: 4/3; }
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-badge-1 { position: absolute; bottom: -24px; right: -24px; background: var(--orange); color: var(--white); border-radius: 16px; padding: 20px 24px; box-shadow: 0 12px 32px rgba(232,84,42,.3); }
.about-badge-1 .num { font-family: 'Archivo Black', sans-serif; font-size: 36px; line-height: 1; }
.about-badge-1 .lbl { font-size: 12px; font-weight: 600; opacity: .9; margin-top: 4px; }
.about-badge-2 { position: absolute; top: -24px; left: -24px; background: var(--navy); color: var(--white); border-radius: 16px; padding: 18px 22px; box-shadow: 0 12px 32px rgba(13,31,54,.3); }
.about-badge-2 .num { font-family: 'Archivo Black', sans-serif; font-size: 30px; color: var(--teal); line-height: 1; }
.about-badge-2 .lbl { font-size: 11px; color: #94a3b8; margin-top: 4px; }
.about-text p { font-size: 17px; color: var(--gray); line-height: 1.8; margin-bottom: 20px; }
.checklist { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 36px; }
.check-item { display: flex; align-items: flex-start; gap: 10px; background: var(--light); border-radius: 12px; padding: 14px; }
.check-item svg { width: 18px; height: 18px; stroke: var(--teal); shrink: 0; flex-shrink: 0; margin-top: 2px; }
.check-item span { font-size: 13px; font-weight: 600; color: var(--navy); line-height: 1.4; }

/* ── SERVICES GRID ── */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.service-card { background: var(--white); border-radius: 20px; overflow: hidden; border: 1px solid var(--border); box-shadow: 0 2px 12px rgba(13,31,54,.06); transition: all .35s ease; }
.service-card:hover { transform: translateY(-8px); box-shadow: 0 24px 60px rgba(13,31,54,.14); border-color: rgba(42,189,181,.3); }
.service-img { height: 180px; overflow: hidden; position: relative; }
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.service-card:hover .service-img img { transform: scale(1.08); }
.service-icon-wrap { position: absolute; top: 14px; left: 14px; width: 44px; height: 44px; background: rgba(255,255,255,.95); border-radius: 12px; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 12px rgba(0,0,0,.12); }
.service-icon-wrap svg { width: 22px; height: 22px; stroke: var(--navy); }
.service-body { padding: 22px; }
.service-body h3 { font-size: 17px; margin-bottom: 8px; color: var(--navy); }
.service-body p { font-size: 14px; color: var(--gray); line-height: 1.65; }

/* ── WHY CHOOSE US ── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.why-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.why-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 20px; padding: 28px; transition: background .3s; }
.why-card:hover { background: rgba(255,255,255,.12); }
.why-card-icon { width: 48px; height: 48px; border-radius: 14px; background: rgba(42,189,181,.15); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.why-card-icon svg { width: 24px; height: 24px; stroke: var(--teal); }
.why-card h3 { font-size: 18px; color: var(--white); margin-bottom: 10px; }
.why-card p { font-size: 14px; color: #94a3b8; line-height: 1.65; }
.why-text h2 { font-size: clamp(30px, 4vw, 48px); color: var(--white); margin-bottom: 20px; }
.why-text p { color: #94a3b8; font-size: 17px; line-height: 1.8; margin-bottom: 36px; }

/* ── IMAGE STRIP ── */
.img-strip { position: relative; height: 360px; overflow: hidden; }
.img-strip img { width: 100%; height: 100%; object-fit: cover; }
.img-strip-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(13,31,54,.85), rgba(13,31,54,.6), rgba(13,31,54,.85)); display: flex; align-items: center; justify-content: center; text-align: center; }
.img-strip-overlay h2 { font-size: clamp(26px, 4vw, 46px); color: var(--white); max-width: 700px; }
.img-strip-overlay p { color: #94a3b8; font-size: 18px; margin-top: 12px; }

/* ── CTA BANNER ── */
.cta-banner {
  padding: 96px 0; text-align: center;
  background: linear-gradient(135deg, var(--orange) 0%, #f06830 50%, #f59e0b 100%);
  position: relative; overflow: hidden;
}
.cta-banner::before,.cta-banner::after { content:''; position:absolute; border-radius:50%; background:rgba(255,255,255,.08); }
.cta-banner::before { width:600px; height:600px; top:-200px; right:-100px; }
.cta-banner::after  { width:400px; height:400px; bottom:-150px; left:-80px; }
.cta-banner h2 { font-size: clamp(32px,5vw,60px); color:var(--white); margin-bottom:20px; position:relative; z-index:1; }
.cta-banner p  { font-size:20px; color:rgba(255,255,255,.85); margin-bottom:40px; position:relative; z-index:1; max-width:600px; margin-left:auto; margin-right:auto; }
.cta-btns { display:flex; gap:16px; justify-content:center; flex-wrap:wrap; position:relative; z-index:1; }
.btn-white { background:var(--white); color:var(--orange); box-shadow:0 8px 32px rgba(0,0,0,.2); }
.btn-white:hover { transform:translateY(-2px); box-shadow:0 12px 40px rgba(0,0,0,.25); }
.btn-white-outline { background:rgba(255,255,255,.18); border:2px solid rgba(255,255,255,.5); color:var(--white); }
.btn-white-outline:hover { background:rgba(255,255,255,.28); transform:translateY(-2px); }

/* ── FOOTER ── */
footer { background:#06111f; color:var(--white); padding:72px 0 0; }
.footer-grid { display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:48px; padding-bottom:56px; border-bottom:1px solid rgba(255,255,255,.08); }
.footer-brand img { height:72px; width:auto;  margin-bottom:20px; }
.footer-brand p { color:#94a3b8; font-size:14px; line-height:1.8; max-width:260px; margin-bottom:24px; }
.social-row { display:flex; gap:10px; }
.social-btn { width:36px; height:36px; border-radius:50%; background:rgba(255,255,255,.1); display:flex; align-items:center; justify-content:center; font-size:11px; font-weight:700; text-transform:uppercase; transition:background .3s; cursor:pointer; }
.social-btn:hover { background:var(--orange); }
.footer-col h4 { font-size:11px; font-weight:700; letter-spacing:.12em; text-transform:uppercase; color:var(--white); margin-bottom:20px; }
.footer-col ul { list-style:none; display:flex; flex-direction:column; gap:12px; }
.footer-col ul li a { color:#94a3b8; font-size:14px; transition:color .3s; display:flex; align-items:center; gap:8px; }
.footer-col ul li a:hover { color:var(--teal); }
.footer-col ul li a::before { content:'›'; color:var(--teal); }
.footer-dot { width:6px; height:6px; border-radius:50%; background:var(--teal); display:inline-block; flex-shrink:0; }
.contact-item { display:flex; align-items:flex-start; gap:14px; margin-bottom:18px; }
.contact-item-icon { width:40px; height:40px; border-radius:12px; background:rgba(42,189,181,.12); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.contact-item-icon svg { width:18px; height:18px; stroke:var(--teal); }
.contact-item-text p:first-child { color:#94a3b8; font-size:11px; text-transform:uppercase; letter-spacing:.06em; margin-bottom:2px; }
.contact-item-text a, .contact-item-text p:last-child { color:var(--white); font-size:14px; font-weight:600; transition:color .3s; }
.contact-item-text a:hover { color:var(--teal); }
.footer-bottom { padding:20px 0; display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px; }
.footer-bottom p { color:#475569; font-size:13px; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  min-height: 480px; display:flex; align-items:center; padding-top:80px;
  background-size:cover; background-position:center;
  position:relative; overflow:hidden;
}
.page-hero-overlay { position:absolute; inset:0; background:linear-gradient(135deg,rgba(13,31,54,.95) 0%,rgba(13,31,54,.75) 60%,rgba(42,189,181,.25) 100%); }
.page-hero-content { position:relative; z-index:1; text-align:center; width:100%; }
.page-hero-content h1 { font-size:clamp(38px,6vw,72px); color:var(--white); margin-bottom:16px; }
.page-hero-content p { font-size:19px; color:rgba(255,255,255,.75); max-width:600px; margin:0 auto; line-height:1.7; }

/* ── ABOUT PAGE ── */
.about-story-grid { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; }
.story-images { display:grid; gap:16px; }
.story-img-main { border-radius:20px; overflow:hidden; aspect-ratio:16/9; box-shadow:0 20px 60px rgba(13,31,54,.15); }
.story-img-main img { width:100%; height:100%; object-fit:cover; }
.story-img-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.story-img-row > div { border-radius:16px; overflow:hidden; aspect-ratio:1; box-shadow:0 8px 24px rgba(13,31,54,.1); }
.story-img-row img { width:100%; height:100%; object-fit:cover; }
.story-mini-stats { display:flex; gap:32px; flex-wrap:wrap; margin-top:32px; }
.mini-stat .num { font-family:'Archivo Black',sans-serif; font-size:40px; color:var(--orange); line-height:1; }
.mini-stat .lbl { font-size:13px; color:var(--gray); margin-top:4px; font-weight:500; }

.values-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }
.value-card { background:var(--white); border-radius:20px; padding:36px 28px; text-align:center; border:1px solid var(--border); box-shadow:0 2px 12px rgba(13,31,54,.05); transition:all .35s; }
.value-card:hover { transform:translateY(-8px); box-shadow:0 24px 60px rgba(13,31,54,.1); }
.value-icon { width:60px; height:60px; border-radius:18px; background:var(--navy); display:flex; align-items:center; justify-content:center; margin:0 auto 24px; }
.value-icon svg { width:28px; height:28px; stroke:var(--teal); }
.value-card h3 { font-size:20px; margin-bottom:12px; color:var(--navy); }
.value-card p { font-size:14px; color:var(--gray); line-height:1.7; }

.timeline-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }
.timeline-card { background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.1); border-radius:20px; padding:28px; transition:background .3s; }
.timeline-card:hover { background:rgba(255,255,255,.1); }
.timeline-year { font-family:'Archivo Black',sans-serif; font-size:52px; color:rgba(42,189,181,.3); line-height:1; margin-bottom:12px; }
.timeline-card h3 { font-size:20px; color:var(--white); margin-bottom:10px; }
.timeline-card p { font-size:14px; color:#94a3b8; line-height:1.7; }

.team-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:32px; }
.team-card { text-align:center; }
.team-img { border-radius:20px; overflow:hidden; aspect-ratio:3/4; position:relative; margin-bottom:20px; box-shadow:0 12px 40px rgba(13,31,54,.12); }
.team-img img { width:100%; height:100%; object-fit:cover; transition:transform .5s; }
.team-card:hover .team-img img { transform:scale(1.05); }
.team-overlay { position:absolute; inset:0; background:linear-gradient(to top, rgba(13,31,54,.7), transparent); opacity:0; transition:opacity .3s; display:flex; align-items:flex-end; padding:20px; }
.team-card:hover .team-overlay { opacity:1; }
.team-overlay a { background:var(--orange); color:var(--white); font-weight:700; font-size:13px; padding:10px 20px; border-radius:999px; width:100%; text-align:center; }
.team-card h3 { font-size:18px; margin-bottom:4px; }
.team-card p { color:var(--gray); font-size:14px; }

.about-why-grid { display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center; }
.checklist-full { display:flex; flex-direction:column; gap:16px; margin-bottom:40px; }
.check-full { display:flex; align-items:flex-start; gap:16px; background:var(--white); border:1px solid var(--border); border-radius:16px; padding:18px 20px; }
.check-full svg { width:22px; height:22px; stroke:var(--teal); flex-shrink:0; margin-top:2px; }
.check-full span { font-size:15px; font-weight:600; color:var(--navy); line-height:1.5; }
.about-why-img { position:relative; }
.about-why-img > div { border-radius:24px; overflow:hidden; aspect-ratio:4/3; box-shadow:0 24px 60px rgba(13,31,54,.18); }
.about-why-img img { width:100%; height:100%; object-fit:cover; }
.satisfaction-badge { position:absolute; bottom:-28px; left:-28px; background:var(--orange); color:var(--white); border-radius:18px; padding:22px 28px; box-shadow:0 12px 32px rgba(232,84,42,.3); }
.satisfaction-badge .num { font-family:'Archivo Black',sans-serif; font-size:42px; line-height:1; }
.satisfaction-badge .lbl { font-size:12px; opacity:.9; margin-top:4px; }

/* ── SERVICES PAGE ── */
.services-full { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }
.service-full-card { background:var(--white); border-radius:24px; overflow:hidden; border:1px solid var(--border); box-shadow:0 4px 20px rgba(13,31,54,.07); transition:all .35s; }
.service-full-card:hover { transform:translateY(-8px); box-shadow:0 28px 64px rgba(13,31,54,.14); border-color:rgba(42,189,181,.35); }
.service-full-img { height:220px; overflow:hidden; position:relative; }
.service-full-img img { width:100%; height:100%; object-fit:cover; transition:transform .5s; }
.service-full-card:hover .service-full-img img { transform:scale(1.08); }
.service-full-icon { position:absolute; top:16px; left:16px; width:48px; height:48px; border-radius:14px; background:rgba(255,255,255,.95); display:flex; align-items:center; justify-content:center; box-shadow:0 4px 16px rgba(0,0,0,.12); }
.service-full-icon svg { width:24px; height:24px; stroke:var(--navy); }
.service-full-body { padding:28px; }
.service-full-body h3 { font-size:22px; margin-bottom:12px; color:var(--navy); }
.service-full-body p { font-size:15px; color:var(--gray); line-height:1.75; margin-bottom:20px; }
.service-features { list-style:none; display:flex; flex-direction:column; gap:8px; }
.service-features li { font-size:13px; color:var(--gray); display:flex; align-items:center; gap:8px; }
.service-features li::before { content:''; display:block; width:6px; height:6px; border-radius:50%; background:var(--teal); flex-shrink:0; }

/* ── CONTACT PAGE ── */
.contact-outer { display:grid; grid-template-columns:2fr 3fr; gap:64px; align-items:start; }
.contact-info-cards { display:flex; flex-direction:column; gap:16px; margin-bottom:32px; }
.contact-info-card { display:flex; align-items:flex-start; gap:16px; background:var(--white); border:1px solid var(--border); border-radius:16px; padding:20px; box-shadow:0 2px 12px rgba(13,31,54,.05); }
.cic-icon { width:44px; height:44px; border-radius:12px; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.cic-icon svg { width:22px; height:22px; }
.cic-label { font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:.06em; color:var(--gray); margin-bottom:4px; }
.cic-value { font-size:15px; font-weight:700; color:var(--navy); }
.cic-sub { font-size:12px; color:var(--gray); margin-top:2px; }
.services-list-box { background:var(--light); border-radius:16px; padding:24px; }
.services-list-box h4 { font-size:13px; font-weight:700; text-transform:uppercase; letter-spacing:.08em; color:var(--navy); margin-bottom:16px; }
.services-list-box ul { list-style:none; display:flex; flex-direction:column; gap:10px; }
.services-list-box li { display:flex; align-items:center; gap:10px; font-size:14px; color:var(--gray); }
.services-list-box li svg { width:16px; height:16px; stroke:var(--teal); flex-shrink:0; }

.contact-form-wrap { background:var(--white); border-radius:28px; box-shadow:0 16px 64px rgba(13,31,54,.1); border:1px solid var(--border); overflow:hidden; }
.form-header { background:linear-gradient(135deg, var(--navy), var(--navy2)); padding:32px 40px; }
.form-header h3 { font-size:26px; color:var(--white); margin-bottom:6px; }
.form-header p { color:#94a3b8; font-size:14px; }
.form-body { padding:40px; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:20px; }
.form-group { margin-bottom:22px; }
.form-group label { display:block; font-size:13px; font-weight:700; color:var(--navy); margin-bottom:8px; text-transform:uppercase; letter-spacing:.04em; }
.form-group input, .form-group textarea {
  width:100%; padding:14px 18px; border:2px solid var(--border); border-radius:14px;
  font-family:'Inter',sans-serif; font-size:15px; color:var(--navy); background:var(--light);
  transition:border-color .3s, box-shadow .3s; outline:none;
}
.form-group input:focus, .form-group textarea:focus { border-color:var(--teal); box-shadow:0 0 0 3px rgba(42,189,181,.15); background:var(--white); }
.form-group textarea { min-height:140px; resize:vertical; }
.form-submit { background:var(--orange); color:var(--white); border:none; width:100%; padding:16px; border-radius:14px; font-family:'Archivo Black',sans-serif; font-size:16px; cursor:pointer; transition:all .3s; display:flex; align-items:center; justify-content:center; gap:10px; box-shadow:0 8px 28px rgba(232,84,42,.35); }
.form-submit:hover { background:#d4441a; transform:translateY(-2px); box-shadow:0 12px 36px rgba(232,84,42,.45); }
.form-submit svg { width:20px; height:20px; }
.success-msg { text-align:center; padding:60px 40px; display:none; }
.success-icon { width:80px; height:80px; background:#f0fdf4; border-radius:50%; display:flex; align-items:center; justify-content:center; margin:0 auto 24px; }
.success-icon svg { width:40px; height:40px; stroke:#22c55e; }
.success-msg h3 { font-size:32px; color:var(--navy); margin-bottom:12px; }
.success-msg p { font-size:17px; color:var(--gray); line-height:1.7; }
.contact-strip { position:relative; height:220px; overflow:hidden; }
.contact-strip img { width:100%; height:100%; object-fit:cover; }
.contact-strip-overlay { position:absolute; inset:0; background:rgba(13,31,54,.82); display:flex; align-items:center; justify-content:center; text-align:center; }
.contact-strip-overlay p { color:var(--teal); font-size:12px; font-weight:700; text-transform:uppercase; letter-spacing:.12em; margin-bottom:10px; }
.contact-strip-overlay h2 { font-size:clamp(22px,4vw,40px); color:var(--white); }

/* ── ANIMATIONS ── */
.fade-up { opacity:0; transform:translateY(40px); transition:opacity .7s ease, transform .7s ease; }
.fade-up.visible { opacity:1; transform:translateY(0); }
.fade-left { opacity:0; transform:translateX(-50px); transition:opacity .7s ease, transform .7s ease; }
.fade-left.visible { opacity:1; transform:translateX(0); }
.fade-right { opacity:0; transform:translateX(50px); transition:opacity .7s ease, transform .7s ease; }
.fade-right.visible { opacity:1; transform:translateX(0); }

/* ── RESPONSIVE ── */
@media(max-width:1100px) {
  .services-grid { grid-template-columns:repeat(2,1fr); }
  .values-grid,.timeline-grid,.team-grid { grid-template-columns:repeat(2,1fr); }
  .services-full { grid-template-columns:repeat(2,1fr); }
  .stats-grid { grid-template-columns:repeat(2,1fr); }
  .footer-grid { grid-template-columns:1fr 1fr; }
}
@media(max-width:768px) {
  .section { padding:64px 0; }
  .about-grid,.about-story-grid,.why-grid,.about-why-grid,.contact-outer { grid-template-columns:1fr; gap:48px; }
  .about-badge-1,.about-badge-2,.satisfaction-badge { display:none; }
  .about-images,.about-why-img { order:-1; }
  .checklist { grid-template-columns:1fr; }
  .why-cards { grid-template-columns:1fr; }
  .services-full { grid-template-columns:1fr; }
  .services-grid { grid-template-columns:1fr 1fr; }
  .values-grid,.timeline-grid,.team-grid { grid-template-columns:1fr 1fr; }
  .footer-grid { grid-template-columns:1fr; }
  .footer-bottom { flex-direction:column; text-align:center; }
  .nav-links,.nav-right { display:none; }
  .hamburger { display:flex; }
  .hero-btns { flex-direction:column; }
  .cta-btns { flex-direction:column; align-items:center; }
  .form-row { grid-template-columns:1fr; }
  .contact-outer { grid-template-columns:1fr; }
  .story-img-row { grid-template-columns:1fr 1fr; }
}
@media(max-width:480px) {
  .services-grid,.values-grid,.timeline-grid,.team-grid { grid-template-columns:1fr; }
  .stats-grid { grid-template-columns:repeat(2,1fr); }
}
