/* Self-hosted Inter font — eliminates cross-origin font request */
@import url('../fonts/fonts.css');

/* Skip navigation link — accessibility bypass block */
.skip-link {
  position: absolute;
  top: -100px;
  left: 8px;
  z-index: 10000;
  background: #0D2B4B;
  color: #fff;
  padding: 10px 18px;
  border-radius: 0 0 8px 8px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: top 0.15s;
}
.skip-link:focus {
  top: 0;
}

:root {
  --brand-dark: #0D2B4B;
  --brand: #1E3A5F;
  --brand-orange: #C05000;
  --brand-orange-light: #A84400;
  --brand-blue: #00B4D8;
  --light-bg: #F5F9FF;
  --text-dark: #1A1A2E;
  --text-gray: #555E6D;
  --border: #E2E8F0;
}

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

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  padding-top: 132px; /* emergency banner ~52px + header-bar 80px */
  overflow-x: hidden;
  max-width: 100%;
}

/* ---- HEADER ---- */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
}

.header-inner {
  background: var(--brand-dark);
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
  transition: box-shadow 0.3s ease;
}

.header-inner.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.35);
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 80px;
  max-width: 1280px;
  margin: 0 auto;
  gap: 32px;
}

/* Logo */
.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-link img {
  display: block;
  height: 42px;
  width: auto;
  max-width: 180px;
}

/* Logo blends with dark header — no pill needed */
.header-bar .logo-link {
  background: transparent;
  padding: 6px 14px;
  border-radius: 10px;
}

/* Navigation */
.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.2s;
  white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
  color: #fff;
  background: rgba(255,255,255,0.12);
}

.nav-link svg { transition: transform 0.2s; }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(13,43,75,0.18);
  min-width: 240px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  border: 1px solid rgba(0,0,0,0.06);
  z-index: 100;
}

.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-dark);
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.18s;
}

.dropdown-link:hover {
  background: var(--light-bg);
  color: var(--brand-orange);
}

.dropdown-link .dd-icon {
  width: 32px; height: 32px;
  background: rgba(255,107,0,0.08);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}

/* 3-level nav: sub-menu */
.dropdown-item { position: relative; }

.dropdown-item .arrow {
  margin-left: auto;
  font-size: 14px;
  color: #aaa;
}

.sub-menu {
  display: none;
  position: absolute;
  left: 100%;
  top: 0;
  background: #fff;
  min-width: 210px;
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(13,43,75,0.18);
  padding: 8px;
  z-index: 200;
  border: 1px solid rgba(0,0,0,0.06);
}

.dropdown-item.has-sub:hover > .sub-menu { display: block; }

.sub-link {
  display: block;
  padding: 9px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dark);
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.15s;
}

.sub-link:hover {
  background: var(--light-bg);
  color: var(--brand-orange);
}

/* Mobile sub-links expanded height */
.mobile-sub-links.open { max-height: 1200px; }

/* CTA Phone */
.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.phone-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--brand-orange);
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.2s;
  box-shadow: 0 4px 15px rgba(255,107,0,0.3);
}

.phone-btn:hover {
  background: var(--brand-orange-light);
  box-shadow: 0 6px 20px rgba(255,107,0,0.4);
  transform: translateY(-1px);
}

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
  border-radius: 6px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: #fff;
  border-radius: 3px;
  transition: all 0.3s;
}

.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  background: #fff;
  border-top: 1px solid var(--border);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.mobile-nav.open {
  max-height: 100vh;
}

.mobile-nav-inner {
  padding: 16px 24px 24px;
  max-width: 1280px;
  margin: 0 auto;
}

.mobile-nav-link {
  display: block;
  padding: 12px 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--brand-dark);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
}

.mobile-nav-link:hover { color: var(--brand-orange); }

.mobile-submenu { padding-left: 16px; }

.mobile-submenu-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 12px 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--brand-dark);
  background: none;
  border: none;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
}

.mobile-submenu-toggle svg { transition: transform 0.3s; }
.mobile-submenu-toggle.open svg { transform: rotate(180deg); }

.mobile-sub-links {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.mobile-sub-links.open { max-height: 500px; }

.mobile-sub-link {
  display: block;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-gray);
  text-decoration: none;
  border-bottom: 1px solid #f1f5f9;
}

.mobile-sub-link:hover { color: var(--brand-orange); }

.mobile-phone-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  background: var(--brand-orange);
  color: #fff;
  text-decoration: none;
  padding: 14px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 16px;
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: calc(100vh - 132px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 90% 70% at 15% 60%, rgba(255,107,0,0.12) 0%, transparent 55%),
    linear-gradient(150deg, #08192e 0%, #0D2B4B 45%, #162f52 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,107,0,0.2);
  border: 1px solid rgba(255,107,0,0.4);
  color: #FF9640;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.hero h1 {
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
  max-width: 780px;
}

.hero h1 em {
  font-style: normal;
  color: #E06000;
}

.hero p {
  font-size: clamp(16px, 1.8vw, 20px);
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--brand-orange);
  color: #fff;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 17px;
  transition: all 0.25s;
  box-shadow: 0 6px 25px rgba(255,107,0,0.4);
}

.btn-primary:hover {
  background: var(--brand-orange-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 35px rgba(255,107,0,0.5);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.35);
  color: #fff;
  text-decoration: none;
  padding: 14px 30px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 17px;
  transition: all 0.25s;
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.6);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  font-weight: 500;
}

.trust-item svg { color: #4ADE80; }

/* Stats bar */
.stats-bar {
  background: var(--brand-orange);
  padding: 20px 0;
}

.stats-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}

.stat-item {
  padding: 8px 16px;
  border-right: 1px solid rgba(255,255,255,0.3);
}

.stat-item:last-child { border-right: none; }

.stat-num {
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ---- SECTION BASICS ---- */
section { padding: 80px 0; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,107,0,0.1);
  color: var(--brand-orange);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 900;
  color: var(--brand-dark);
  line-height: 1.2;
  margin-bottom: 14px;
}

.section-title span { color: var(--brand-orange); }

.section-sub {
  font-size: 17px;
  color: var(--text-gray);
  max-width: 580px;
  line-height: 1.7;
}

.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.service-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 24px;
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(13,43,75,0.12);
  border-color: var(--brand-orange);
}

.service-icon {
  width: 58px; height: 58px;
  background: linear-gradient(135deg, rgba(255,107,0,0.1), rgba(255,107,0,0.05));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  border: 1px solid rgba(255,107,0,0.15);
}

.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--brand-dark);
}

.service-card p {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.6;
  flex: 1;
}

.service-arrow {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--brand-orange);
  font-size: 13px;
  font-weight: 600;
  margin-top: 4px;
}

/* Why Us / Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 48px;
}

.feature-card {
  padding: 28px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--border);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
  border-color: var(--brand-orange);
  box-shadow: 0 12px 40px rgba(13,43,75,0.1);
}

.feature-icon {
  width: 52px; height: 52px;
  background: var(--brand-dark);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.65;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--brand-dark) 0%, #1E3A5F 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,107,0,0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-content h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.2;
}

.cta-content p {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--brand-orange);
  color: #fff;
  text-decoration: none;
  padding: 18px 40px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 22px;
  transition: all 0.25s;
  box-shadow: 0 8px 30px rgba(255,107,0,0.45);
}

.cta-phone:hover {
  background: var(--brand-orange-light);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255,107,0,0.55);
}

/* Emergency Banner */
.emergency-banner {
  background: linear-gradient(90deg, #B91C1C, #DC2626);
  padding: 14px 24px;
  text-align: center;
}

.emergency-banner p {
  color: #fff;
  font-weight: 600;
  font-size: 15px;
}

.emergency-banner a {
  color: #FEF08A;
  text-decoration: none;
  font-weight: 800;
  font-size: 17px;
  margin-left: 8px;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.testimonial-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.stars { color: #FBBF24; font-size: 16px; margin-bottom: 14px; }

.testimonial-text {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 18px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-dark), var(--brand-orange));
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.author-info .name {
  font-weight: 700;
  font-size: 15px;
  color: var(--brand-dark);
}

.author-info .location {
  font-size: 13px;
  color: var(--text-gray);
}

/* Page Hero (inner pages) */
.page-hero {
  background: linear-gradient(135deg, var(--brand-dark) 0%, #1E3A5F 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  right: -5%; top: 50%; transform: translateY(-50%);
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,107,0,0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.page-hero-content { position: relative; z-index: 1; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.breadcrumb a:hover { color: var(--brand-orange); }

.breadcrumb span {
  color: rgba(255,255,255,0.4);
  font-size: 14px;
}

.breadcrumb .current {
  color: var(--brand-orange);
  font-size: 14px;
  font-weight: 600;
}

.page-hero h1 {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.page-hero .call-now-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--brand-orange);
  color: #fff;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.25s;
}

.page-hero .call-now-btn:hover {
  background: var(--brand-orange-light);
  transform: translateY(-2px);
}

/* Content sections */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.content-grid.reverse { direction: rtl; }
.content-grid.reverse > * { direction: ltr; }

.content-img {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.content-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.content-text h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 900;
  color: var(--brand-dark);
  margin-bottom: 16px;
  line-height: 1.25;
}

.content-text p {
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.75;
  margin-bottom: 16px;
}

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--text-gray);
}

.check-list li::before {
  content: '✓';
  color: var(--brand-orange);
  font-weight: 800;
  font-size: 15px;
  margin-top: 1px;
  flex-shrink: 0;
}

.call-btn-inline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--brand-orange);
  color: #fff;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.25s;
  box-shadow: 0 4px 20px rgba(255,107,0,0.3);
}

.call-btn-inline:hover {
  background: var(--brand-orange-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,107,0,0.4);
}

/* Process steps */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.process-step {
  text-align: center;
  padding: 28px 20px;
}

.step-num {
  width: 60px; height: 60px;
  background: var(--brand-orange);
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 6px 20px rgba(255,107,0,0.35);
}

.process-step h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 8px;
}

.process-step p {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.6;
}

/* FAQ */
.faq-list { margin-top: 40px; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.faq-item:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.07); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  background: #fff;
  gap: 16px;
}

.faq-question h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--brand-dark);
}

.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,107,0,0.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--brand-orange);
  font-size: 18px;
  font-weight: 700;
  transition: transform 0.3s;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.35s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}

.faq-answer p {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.7;
}

/* Blog cards */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 48px;
}

.blog-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 45px rgba(13,43,75,0.12);
}

.blog-img {
  height: 200px;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.blog-card:hover .blog-img img { transform: scale(1.05); }

.blog-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }

.blog-tag {
  display: inline-block;
  background: rgba(255,107,0,0.1);
  color: var(--brand-orange);
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-card p {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.65;
  flex: 1;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-gray);
}

/* Service area */
.area-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.area-tag {
  background: #fff;
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  color: var(--brand-dark);
  transition: all 0.2s;
  cursor: default;
}

.area-tag:hover {
  border-color: var(--brand-orange);
  color: var(--brand-orange);
  background: rgba(255,107,0,0.04);
}

/* ---- FOOTER ---- */
.site-footer {
  background: var(--brand-dark);
  color: rgba(255,255,255,0.75);
}

.footer-main {
  padding: 64px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand .logo-link { margin-bottom: 16px; display: flex; }

.footer-desc {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}

.footer-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--brand-orange);
  color: #fff;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.2s;
  width: fit-content;
}

.footer-phone:hover { background: var(--brand-orange-light); }

.footer-col-title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover { color: var(--brand-orange); }
.footer-links a::before { content: '→'; font-size: 12px; opacity: 0.6; }

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

.footer-bottom-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.65); }

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}

.footer-bottom-links a:hover { color: var(--brand-orange); }

/* Light bg section */
.bg-light { background: var(--light-bg); }
.bg-dark { background: var(--brand-dark); }

/* Card grid 2col */
.two-col { grid-template-columns: 1fr 1fr; }
.three-col { grid-template-columns: repeat(3, 1fr); }

/* Benefit boxes */
.benefit-box {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  border-left: 4px solid var(--brand-orange);
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.benefit-box h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 8px;
}

.benefit-box p { font-size: 14px; color: var(--text-gray); line-height: 1.65; }

/* Scroll to top */
.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 46px; height: 46px;
  background: var(--brand-orange);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  box-shadow: 0 4px 20px rgba(255,107,0,0.4);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 999;
}

.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { transform: translateY(-3px); }

/* Floating call button (mobile) */
.float-call {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 998;
}

.float-call a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--brand-orange);
  color: #fff;
  text-decoration: none;
  border-radius: 50%;
  font-size: 0;
  box-shadow: 0 4px 20px rgba(255,107,0,0.55);
}

.float-call a svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

/* Service page specifics */
.service-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin: 32px 0;
}

.highlight-box {
  text-align: center;
  padding: 24px 16px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--border);
}

.highlight-box .icon { font-size: 32px; margin-bottom: 10px; }
.highlight-box h4 { font-size: 15px; font-weight: 700; color: var(--brand-dark); }

/* About/Why Us page */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 28px;
  margin-top: 48px;
}

.team-card {
  text-align: center;
  padding: 28px 20px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--border);
}

.team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  display: block;
  border: 3px solid var(--brand-orange);
}

.team-card h3 { font-size: 17px; font-weight: 700; color: var(--brand-dark); margin-bottom: 4px; }
.team-card p { font-size: 14px; color: var(--text-gray); }

/* Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.value-card {
  padding: 32px 24px;
  background: linear-gradient(135deg, var(--brand-dark) 0%, #1E3A5F 100%);
  border-radius: 16px;
  text-align: center;
  color: #fff;
}

.value-card .icon { font-size: 40px; margin-bottom: 16px; }
.value-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.value-card p { font-size: 14px; color: rgba(255,255,255,0.75); line-height: 1.65; }

/* Resources */
.resource-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.resource-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: all 0.25s;
}

.resource-item:hover {
  border-color: var(--brand-orange);
  box-shadow: 0 6px 25px rgba(13,43,75,0.1);
}

.resource-item .res-icon {
  width: 48px; height: 48px;
  background: rgba(255,107,0,0.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.resource-item h3 { font-size: 16px; font-weight: 700; color: var(--brand-dark); margin-bottom: 6px; }
.resource-item p { font-size: 14px; color: var(--text-gray); line-height: 1.6; }

/* Responsive */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .content-grid { grid-template-columns: 1fr; gap: 40px; }
  .content-grid.reverse { direction: ltr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.3); }
  .stat-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.3); }
}

@media (max-width: 768px) {
  body { padding-top: 146px; } /* 2-line banner ~76px + header-bar 70px */
  .header-bar { height: 70px; padding: 0 16px; }
  .main-nav { display: none; }
  .header-cta .phone-btn { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: block; }
  section { padding: 56px 0; }
  .hero { min-height: calc(100vh - 146px); }
  .hero-content { padding: 56px 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-main { padding: 48px 0 32px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .float-call { display: block; }
  .scroll-top { bottom: 88px; }
  .hero-btns .btn-secondary { display: none; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 30px; }
  .section-title { font-size: 26px; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .cta-phone { font-size: 18px; padding: 16px 28px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}

/* ── Mobile: content-grid → single column, image on top ── */
@media (max-width: 768px) {
  .content-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  /* Push the image column to the top */
  .content-grid .content-img {
    order: -1;
  }
}

/* Animations */
@keyframes pulse-ring {
  0% { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* Header phone button — composited pulse using pseudo-element (transform+opacity only) */
@keyframes phone-glow {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50%       { transform: scale(1.18); opacity: 0; }
}
.phone-btn {
  position: relative;
  overflow: visible;
}
.phone-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 8px;
  background: var(--brand-orange);
  animation: phone-glow 2s ease-in-out infinite;
  z-index: -1;
}

.pulse-btn { position: relative; }
.pulse-btn::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 14px;
  background: var(--brand-orange);
  animation: pulse-ring 2s ease-out infinite;
  z-index: -1;
}

/* Rating badges */
.rating-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 20px;
}

.rating-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 8px 14px;
  border-radius: 8px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}

.rating-badge .stars-sm { color: #FBBF24; font-size: 12px; }

/* Icon list */
.icon-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.icon-list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text-gray);
}

.icon-list-item .icon-circle {
  width: 32px; height: 32px;
  background: rgba(255,107,0,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ---- Focus styles (accessibility) ---- */
:focus-visible {
  outline: 3px solid var(--brand-orange);
  outline-offset: 3px;
  border-radius: 4px;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--brand-orange);
  outline-offset: 3px;
}

/* ---- CSS-driven reveal animation (replaces inline JS styles) ---- */
.reveal-hidden {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal-hidden.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* ---- HERO TWO-COLUMN LAYOUT ---- */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  align-items: center;
  width: 100%;
}

.hero-right-card {
  background: rgba(8,25,46,0.72);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 16px;
  padding: 28px 22px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.hero-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.hero-card-icon { font-size: 22px; }

.hero-card-title {
  font-size: 16px;
  font-weight: 800;
  color: #FF9640;
  line-height: 1.2;
}

.hero-card-desc {
  font-size: 13.5px;
  color: rgba(255,255,255,0.82);
  line-height: 1.6;
  margin-bottom: 12px;
}

.hero-card-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #60CFEF;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 14px;
  transition: color 0.2s;
}
.hero-card-phone:hover { color: #FF9640; }

.hero-card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero-card-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.78);
  line-height: 1.4;
}

.hero-card-list li::before {
  content: '✓';
  color: #4ADE80;
  font-weight: 800;
  font-size: 11px;
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-right-card { display: none; }
}

/* ---- MOBILE PANEL NAVIGATION ---- */
.mobile-nav-inner {
  position: relative;
  overflow: hidden;
}

.mobile-panel {
  width: 100%;
  padding: 14px 20px 22px;
  background: #fff;
  position: absolute;
  top: 0; left: 0;
  transform: translateX(100%);
  transition: transform 0.28s ease;
  pointer-events: none;
  box-sizing: border-box;
}

.mobile-panel.active {
  position: relative;
  transform: translateX(0);
  pointer-events: auto;
}

.mobile-panel.slide-out-left {
  position: absolute;
  transform: translateX(-100%);
  pointer-events: none;
}

.mobile-panel-back {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 0 14px;
  background: none;
  border: none;
  border-bottom: 2px solid var(--brand-orange);
  cursor: pointer;
  margin-bottom: 6px;
  font-size: 15px;
  font-weight: 800;
  color: var(--brand-dark);
  text-align: left;
}

.panel-back-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  background: rgba(255,107,0,0.1);
  border-radius: 50%;
  color: var(--brand-orange);
  font-size: 16px;
  font-weight: 900;
  flex-shrink: 0;
}

.mobile-panel-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--brand-dark);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  background: none;
  border-left: none; border-right: none; border-top: none;
  width: 100%;
}

.mobile-panel-item:hover, .mobile-panel-item:active { color: var(--brand-orange); }

.mobile-panel-arrow {
  color: #bbb;
  font-size: 20px;
  font-weight: 300;
  line-height: 1;
}

.mobile-call-top {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  background: rgba(255,107,0,0.08);
  border-radius: 8px;
  margin-bottom: 10px;
  color: var(--brand-orange);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

.mobile-cat-toggle {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 11px 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--brand-dark);
  background: none;
  border: none;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  gap: 8px;
  text-align: left;
}

.cat-label { flex: 1; }

.cat-arrow {
  color: #bbb;
  font-size: 11px;
  transition: transform 0.25s;
}

.mobile-cat-toggle.open .cat-arrow { transform: rotate(180deg); }

.mobile-cat-links {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: #f7f9fc;
}

.mobile-cat-links.open { max-height: 400px; }

.mobile-cat-link {
  display: block;
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-gray);
  text-decoration: none;
  border-bottom: 1px solid #e8eef5;
}

.mobile-cat-link:last-child { border-bottom: none; }
.mobile-cat-link:hover { color: var(--brand-orange); }

.mobile-cat-direct {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--brand-dark);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
}

.mobile-cat-direct:hover { color: var(--brand-orange); }

.mobile-res-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-gray);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
}

.mobile-res-link:hover { color: var(--brand-orange); }
.mobile-res-icon { font-size: 18px; }

.mobile-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
  background: var(--brand-orange);
  color: #fff;
  text-decoration: none;
  padding: 14px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 16px;
}
