/* =============================================================
   Call Jim - Global Stylesheet
   Layout inspired by Klondike Air | Media inspired by Trilobio
   ============================================================= */

:root {
  --navy:        #0a2540;
  --navy-deep:   #061a30;
  --navy-soft:   #14365e;
  --slate:       #475569;
  --slate-soft:  #64748b;
  --slate-bg:    #f1f5f9;
  --orange:      #ff6b1a;
  --orange-dark: #e6571a;
  --yellow:      #ffc107;
  --white:       #ffffff;
  --off-white:   #f7f8fa;
  --line:        #e2e8f0;
  --text:        #0f172a;
  --text-muted:  #64748b;
  --shadow-sm:   0 2px 8px rgba(10, 37, 64, 0.06);
  --shadow:      0 10px 30px rgba(10, 37, 64, 0.08);
  --shadow-lg:   0 24px 60px rgba(10, 37, 64, 0.18);
  --radius:      8px;
  --radius-lg:   16px;
  --container:   1240px;
  --header-h:    76px;
  --ease:        cubic-bezier(0.625, 0.05, 0, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4, h5, h6 { font-family: 'Space Grotesk', 'Inter', sans-serif; font-weight: 700; line-height: 1.15; margin: 0 0 0.6em; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.5rem, 6vw, 4.75rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.25rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 2rem); }
p  { margin: 0 0 1em; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section   { padding: 100px 0; }
.section-sm{ padding: 64px 0; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--orange); margin-bottom: 16px;
}
.eyebrow::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--orange);
}

/* =============================================================
   STICKY HEADER + NAV
   ============================================================= */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10, 37, 64, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.3s ease, padding 0.3s ease;
}
.site-header.scrolled { background: rgba(10, 37, 64, 0.98); }

.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h);
}
.brand {
  display: flex; align-items: center; gap: 10px;
  color: var(--white); font-weight: 800; font-size: 22px;
  font-family: 'Space Grotesk', sans-serif; letter-spacing: -0.02em;
}
.brand-mark {
  width: 36px; height: 36px; border-radius: 8px;
  background: linear-gradient(135deg, var(--orange), var(--yellow));
  display: grid; place-items: center;
  color: var(--navy); font-weight: 900; font-size: 18px;
  box-shadow: 0 4px 12px rgba(255, 107, 26, 0.4);
}
.brand span { color: var(--orange); }

.nav-links {
  display: flex; align-items: center; gap: 4px;
  list-style: none; margin: 0; padding: 0;
}
.nav-links a {
  display: inline-block;
  padding: 8px 14px; border-radius: 6px;
  color: rgba(255, 255, 255, 0.86); font-weight: 500; font-size: 15px;
  transition: background 0.2s, color 0.2s;
}
.nav-links a:hover, .nav-links a.active { background: rgba(255, 255, 255, 0.08); color: var(--white); }

.has-dropdown { position: relative; }
.has-dropdown > a::after {
  content: '▾'; margin-left: 6px; font-size: 10px; opacity: 0.7;
}
.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  min-width: 220px; padding: 8px;
  background: var(--white); border-radius: 12px;
  box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: all 0.2s ease;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown a {
  display: block; padding: 10px 14px;
  color: var(--navy); font-weight: 500; border-radius: 8px;
}
.dropdown a:hover { background: var(--slate-bg); color: var(--orange); }

.nav-cta { display: flex; align-items: center; gap: 12px; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px; border-radius: 999px;
  font-weight: 600; font-size: 15px; line-height: 1;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, color 0.2s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange); color: var(--white);
  box-shadow: 0 6px 18px rgba(255, 107, 26, 0.35);
}
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(255, 107, 26, 0.45); }
.btn-secondary {
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}
.btn-secondary:hover { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn-dark {
  background: var(--navy); color: var(--white);
}
.btn-dark:hover { background: var(--navy-soft); transform: translateY(-2px); }
.btn-lg { padding: 16px 28px; font-size: 16px; }
.btn .arrow { transition: transform 0.25s ease; }
.btn:hover .arrow { transform: translateX(4px); }

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  width: 40px; height: 40px; border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  align-items: center; justify-content: center;
}
.menu-toggle span {
  display: block; width: 18px; height: 2px; background: var(--white);
  position: relative; transition: 0.2s;
}
.menu-toggle span::before,
.menu-toggle span::after {
  content: ''; position: absolute; left: 0; width: 18px; height: 2px; background: var(--white);
  transition: 0.2s;
}
.menu-toggle span::before { top: -6px; }
.menu-toggle span::after  { top: 6px; }

/* =============================================================
   HERO (Trilobio-style background video)
   ============================================================= */
.hero {
  position: relative; min-height: 100vh;
  padding: calc(var(--header-h) + 48px) 0 100px;
  display: flex; align-items: center;
  overflow: hidden; isolation: isolate;
  color: var(--white);
}
.hero-bg {
  position: absolute; inset: 0; z-index: -2; overflow: hidden;
}
.hero-bg video,
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 37, 64, 0.55) 0%, rgba(10, 37, 64, 0.85) 100%),
    radial-gradient(ellipse at 30% 30%, rgba(20, 54, 94, 0.4), transparent 60%);
}
.hero .container { position: relative; z-index: 2; }

.hero-content { max-width: 820px; }
.hero h1 {
  font-size: clamp(2.75rem, 6.5vw, 5.25rem);
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}
.hero h1 .accent { color: var(--yellow); }
.hero p {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  color: rgba(255, 255, 255, 0.85);
  max-width: 620px; margin-bottom: 36px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-meta {
  margin-top: 56px; display: flex; flex-wrap: wrap; gap: 28px;
  font-size: 14px; color: rgba(255, 255, 255, 0.75);
}
.hero-meta div { display: flex; align-items: center; gap: 8px; }
.hero-meta svg { width: 18px; height: 18px; color: var(--yellow); }

.scroll-cue {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255, 255, 255, 0.7); font-size: 12px; letter-spacing: 0.12em;
  text-transform: uppercase; z-index: 2;
}
.scroll-cue .dot {
  width: 28px; height: 44px; border: 1.5px solid rgba(255, 255, 255, 0.5);
  border-radius: 14px; position: relative;
}
.scroll-cue .dot::after {
  content: ''; position: absolute; left: 50%; top: 8px; transform: translateX(-50%);
  width: 4px; height: 8px; background: var(--white); border-radius: 2px;
  animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0; }
  50%      { transform: translateX(-50%) translateY(14px); opacity: 1; }
}

/* =============================================================
   TRUST BAR
   ============================================================= */
.trust-bar {
  background: var(--navy-deep); color: var(--white);
  padding: 22px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.trust-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  align-items: center;
}
.trust-item {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; font-weight: 500;
}
.trust-item svg { width: 22px; height: 22px; color: var(--yellow); flex-shrink: 0; }

/* =============================================================
   SERVICES GRID (Klondike-style cards)
   ============================================================= */
.services { background: var(--off-white); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-head h2 { color: var(--navy); }
.section-head p  { color: var(--text-muted); font-size: 1.1rem; }

.service-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.service-card {
  position: relative; overflow: hidden;
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--line);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
  display: flex; flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--orange);
}
.service-media {
  position: relative; height: 180px; margin: -32px -28px 24px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden; background: var(--navy);
}
.service-media video,
.service-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.service-card:hover .service-media img,
.service-card:hover .service-media video { transform: scale(1.06); }
.service-icon {
  position: absolute; bottom: -22px; left: 24px;
  width: 52px; height: 52px; border-radius: 12px;
  background: var(--orange); color: var(--white);
  display: grid; place-items: center;
  box-shadow: 0 8px 20px rgba(255, 107, 26, 0.4);
}
.service-icon svg { width: 26px; height: 26px; }
.service-card h3 {
  margin-top: 16px;
  color: var(--navy); font-size: 1.4rem;
}
.service-card p { color: var(--text-muted); font-size: 0.95rem; flex: 1; }
.service-link {
  margin-top: 18px;
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--orange); font-weight: 600; font-size: 14px;
}
.service-link .arrow { transition: transform 0.2s; }
.service-card:hover .service-link .arrow { transform: translateX(4px); }

/* =============================================================
   WHY-CHOOSE (split screen)
   ============================================================= */
.why-choose { background: var(--navy); color: var(--white); position: relative; overflow: hidden; }
.why-choose::before {
  content: ''; position: absolute; top: -120px; right: -120px;
  width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 26, 0.25), transparent 70%);
  pointer-events: none;
}
.why-grid {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 64px;
  align-items: center;
}
.why-media {
  position: relative; aspect-ratio: 4/3;
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.why-media video,
.why-media img { width: 100%; height: 100%; object-fit: cover; }
.why-media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10, 37, 64, 0.5));
}
.why-text h2 { color: var(--white); }
.why-text > p { color: rgba(255, 255, 255, 0.78); font-size: 1.05rem; margin-bottom: 28px; }

.why-list { list-style: none; margin: 0; padding: 0; }
.why-list li {
  display: flex; gap: 16px; padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.why-list li:last-child { border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
.why-list .num {
  flex-shrink: 0;
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255, 107, 26, 0.18); color: var(--orange);
  display: grid; place-items: center;
  font-weight: 700; font-size: 13px;
}
.why-list strong { color: var(--white); display: block; margin-bottom: 4px; font-size: 1.05rem; }
.why-list p { color: rgba(255, 255, 255, 0.7); margin: 0; font-size: 0.95rem; }

/* =============================================================
   TESTIMONIALS
   ============================================================= */
.testimonials { background: var(--white); }
.review-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.review-card {
  background: var(--off-white); border-radius: var(--radius-lg);
  padding: 32px; border: 1px solid var(--line);
  transition: transform 0.3s, box-shadow 0.3s;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.stars { color: var(--yellow); margin-bottom: 14px; font-size: 18px; letter-spacing: 2px; }
.review-card blockquote {
  margin: 0 0 24px; font-size: 1.05rem; color: var(--text);
  line-height: 1.6;
}
.review-author { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  color: var(--white); display: grid; place-items: center;
  font-weight: 700; font-size: 16px;
}
.review-author strong { display: block; color: var(--navy); font-size: 0.95rem; }
.review-author span   { color: var(--text-muted); font-size: 0.85rem; }

.reviews-summary {
  display: flex; align-items: center; justify-content: center;
  gap: 24px; margin-top: 48px;
  padding: 24px; border-radius: var(--radius-lg);
  background: var(--off-white); border: 1px solid var(--line);
  flex-wrap: wrap;
}
.reviews-summary .big {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem; font-weight: 700; color: var(--navy);
}
.reviews-summary .stars-lg { font-size: 22px; }
.reviews-summary p { margin: 0; color: var(--text-muted); }

/* =============================================================
   CTA STRIP
   ============================================================= */
.cta-strip {
  background: linear-gradient(135deg, var(--orange) 0%, #ff8a3d 100%);
  color: var(--white); padding: 80px 0;
  position: relative; overflow: hidden;
}
.cta-strip::before {
  content: ''; position: absolute; top: -50%; right: -10%;
  width: 600px; height: 600px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}
.cta-strip .container { position: relative; }
.cta-grid {
  display: grid; grid-template-columns: 1.5fr 1fr; gap: 32px;
  align-items: center;
}
.cta-grid h2 { color: var(--white); margin-bottom: 8px; }
.cta-grid p  { color: rgba(255, 255, 255, 0.92); margin: 0; font-size: 1.1rem; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: flex-end; }
.cta-strip .btn-dark { background: var(--navy); }
.cta-strip .btn-light {
  background: var(--white); color: var(--navy);
}
.cta-strip .btn-light:hover { background: var(--off-white); transform: translateY(-2px); }

/* =============================================================
   FOOTER
   ============================================================= */
.site-footer {
  background: var(--navy-deep); color: rgba(255, 255, 255, 0.75);
  padding: 80px 0 32px;
}
.footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.4fr; gap: 48px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-brand .brand { color: var(--white); margin-bottom: 16px; }
.footer-brand p { font-size: 0.95rem; color: rgba(255, 255, 255, 0.6); max-width: 280px; }
.footer-col h4 {
  color: var(--white); font-size: 1rem; font-weight: 700;
  margin-bottom: 20px;
  font-family: 'Inter', sans-serif; letter-spacing: 0.02em;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 0.95rem; color: rgba(255, 255, 255, 0.65); transition: color 0.2s; }
.footer-col a:hover { color: var(--orange); }

.footer-form {
  display: flex; gap: 8px; margin-bottom: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px; padding: 4px;
}
.footer-form input {
  flex: 1; background: transparent; border: none;
  padding: 10px 16px; color: var(--white); font-size: 14px;
  outline: none;
}
.footer-form input::placeholder { color: rgba(255, 255, 255, 0.5); }
.footer-form button {
  background: var(--orange); color: var(--white);
  padding: 10px 18px; border-radius: 999px;
  font-weight: 600; font-size: 14px;
}
.footer-form button:hover { background: var(--orange-dark); }
.footer-note { font-size: 12px; color: rgba(255, 255, 255, 0.5); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 32px; flex-wrap: wrap; gap: 16px;
  font-size: 13px; color: rgba(255, 255, 255, 0.5);
}
.footer-bottom a:hover { color: var(--white); }
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: grid; place-items: center;
  transition: background 0.2s;
}
.footer-socials a:hover { background: var(--orange); color: var(--white); }
.footer-socials svg { width: 16px; height: 16px; }

/* Floating call button (mobile) */
.floating-call {
  position: fixed; bottom: 20px; right: 20px; z-index: 90;
  display: none;
  background: var(--orange); color: var(--white);
  padding: 14px 20px; border-radius: 999px;
  font-weight: 700; font-size: 15px;
  box-shadow: 0 12px 28px rgba(255, 107, 26, 0.5);
  align-items: center; gap: 8px;
}
.floating-call svg { width: 18px; height: 18px; }

/* =============================================================
   INNER PAGE HEADER (Services / About / Contact)
   ============================================================= */
.page-hero {
  position: relative; padding: calc(var(--header-h) + 80px) 0 80px;
  background: var(--navy); color: var(--white);
  overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0; z-index: 0;
  opacity: 0.35;
}
.page-hero-bg video,
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10, 37, 64, 0.6), rgba(10, 37, 64, 0.95));
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .eyebrow { color: var(--yellow); }
.page-hero .eyebrow::before { background: var(--yellow); }
.page-hero h1 { color: var(--white); max-width: 800px; }
.page-hero p { color: rgba(255, 255, 255, 0.78); max-width: 640px; font-size: 1.1rem; }
.breadcrumbs {
  font-size: 13px; color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.06em; margin-bottom: 24px;
  text-transform: uppercase;
}
.breadcrumbs a:hover { color: var(--orange); }
.breadcrumbs span { margin: 0 8px; opacity: 0.5; }

/* Service detail page */
.service-detail { padding: 80px 0; }
.detail-grid {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 64px;
  align-items: start;
}
.detail-content h2 { color: var(--navy); }
.detail-content p, .detail-content li { color: var(--text); font-size: 1.05rem; line-height: 1.75; }
.detail-content ul { padding-left: 0; list-style: none; margin: 0 0 24px; }
.detail-content ul li {
  position: relative; padding: 10px 0 10px 32px;
  border-bottom: 1px solid var(--line);
}
.detail-content ul li::before {
  content: '✓'; position: absolute; left: 0; top: 10px;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--orange); color: var(--white);
  font-size: 13px; font-weight: 700;
  display: grid; place-items: center;
}

.detail-aside {
  position: sticky; top: calc(var(--header-h) + 24px);
  background: var(--off-white); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 32px;
}
.detail-aside h3 { color: var(--navy); margin-bottom: 8px; font-size: 1.4rem; }
.detail-aside p  { color: var(--text-muted); margin-bottom: 20px; font-size: 0.95rem; }
.detail-aside .btn { width: 100%; justify-content: center; margin-bottom: 10px; }

.aside-list {
  list-style: none; padding: 0; margin: 24px 0 0;
  font-size: 0.9rem; color: var(--text-muted);
}
.aside-list li { padding: 8px 0; border-top: 1px solid var(--line); display: flex; justify-content: space-between; }
.aside-list strong { color: var(--navy); }

/* About */
.about-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  margin-top: 48px;
}
.stat-card {
  text-align: center; padding: 32px 16px;
  background: var(--off-white); border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}
.stat-card .num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.75rem; font-weight: 700; color: var(--orange);
  line-height: 1;
}
.stat-card p { margin: 8px 0 0; font-size: 0.95rem; color: var(--text-muted); }

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.team-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.team-card .photo {
  aspect-ratio: 4/3; background: var(--slate-bg);
  background-size: cover; background-position: center;
}
.team-card .info { padding: 20px; }
.team-card h4 { color: var(--navy); margin: 0 0 4px; font-size: 1.1rem; }
.team-card span { color: var(--orange); font-size: 0.9rem; font-weight: 500; }

/* Contact */
.contact-grid {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px;
}
.contact-form {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 40px;
  box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { margin-bottom: 18px; }
.form-field label {
  display: block; margin-bottom: 6px;
  font-size: 13px; font-weight: 600; color: var(--navy);
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%; padding: 12px 14px;
  border: 1px solid var(--line); border-radius: var(--radius);
  font-family: inherit; font-size: 15px; color: var(--text);
  background: var(--white); outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 107, 26, 0.15);
}
.form-field textarea { min-height: 120px; resize: vertical; }
.contact-info {
  background: var(--navy); color: var(--white); border-radius: var(--radius-lg);
  padding: 40px;
}
.contact-info h3 { color: var(--white); margin-bottom: 20px; }
.info-item {
  display: flex; gap: 14px; padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.info-item:first-of-type { border-top: 0; }
.info-item .icon-wrap {
  flex-shrink: 0;
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255, 107, 26, 0.18); color: var(--orange);
  display: grid; place-items: center;
}
.info-item svg { width: 20px; height: 20px; }
.info-item strong { display: block; color: var(--white); margin-bottom: 2px; font-size: 0.95rem; }
.info-item span { color: rgba(255, 255, 255, 0.7); font-size: 0.9rem; }

.service-areas {
  margin-top: 32px; padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.service-areas h4 { color: var(--white); font-size: 0.9rem; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 12px; }
.area-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.area-tags span {
  padding: 6px 12px; border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 13px; color: rgba(255, 255, 255, 0.85);
}

/* =============================================================
   ANIMATIONS
   ============================================================= */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 991px) {
  .nav-links, .nav-cta .btn-secondary { display: none; }
  .menu-toggle { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 16px; right: 16px;
    background: var(--white); border-radius: 12px;
    box-shadow: var(--shadow-lg); padding: 16px;
    align-items: stretch; gap: 4px;
  }
  .nav-links.open a { color: var(--navy); padding: 12px 16px; }
  .nav-links.open .has-dropdown a::after { display: none; }
  .nav-links.open .dropdown { position: static; opacity: 1; visibility: visible;
    transform: none; box-shadow: none; padding: 0 0 0 12px; min-width: 0; }
  .nav-links.open .dropdown a { padding: 8px 12px; font-size: 14px; }

  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid, .cta-grid, .contact-grid, .detail-grid {
    grid-template-columns: 1fr; gap: 40px;
  }
  .cta-actions { justify-content: flex-start; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .review-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .detail-aside { position: static; }
  .floating-call { display: inline-flex; }
}

@media (max-width: 600px) {
  .section { padding: 72px 0; }
  .hero { min-height: 92vh; padding-top: calc(var(--header-h) + 32px); }
  .service-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .about-stats { grid-template-columns: 1fr 1fr; gap: 12px; }
  .team-grid { grid-template-columns: 1fr; }
  .reviews-summary { flex-direction: column; gap: 8px; text-align: center; }
  .hero-meta { gap: 16px; }
  .scroll-cue { display: none; }
}
