/* ============================================================
   EE Solutions – Main Stylesheet
   Colors: Navy #0d2251 | Gold #f5a623 | White #ffffff
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --navy-dark:  #08152e;
  --navy:       #0d2251;
  --navy-light: #1a3a6e;
  --gold:       #f5a623;
  --gold-dark:  #d4891a;
  --gold-light: #ffd166;
  --white:      #ffffff;
  --off-white:  #f4f7fc;
  --text-dark:  #0f1c38;
  --text-mid:   #3a4a6b;
  --text-gray:  #6b7a99;
  --border:     #dce4f0;
  --shadow-sm:  0 2px 8px rgba(13,34,81,0.08);
  --shadow:     0 4px 20px rgba(13,34,81,0.12);
  --shadow-lg:  0 8px 40px rgba(13,34,81,0.18);
  --radius:     8px;
  --radius-lg:  16px;
  --transition: all 0.3s ease;
  --font-head:  'Montserrat', sans-serif;
  --font-body:  'Open Sans', sans-serif;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

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

img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

h1,h2,h3,h4,h5 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy);
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.125rem; }
p  { color: var(--text-mid); }

.container {
  width: 92%;
  max-width: 1180px;
  margin: 0 auto;
}

section { padding: 80px 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245,166,35,0.4);
}

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

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-light);
  border-color: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-lg { padding: 18px 38px; font-size: 1.05rem; }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }

/* ---------- Section Labels ---------- */
.section-label {
  display: inline-block;
  background: rgba(245,166,35,0.12);
  color: var(--gold-dark);
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 40px;
  margin-bottom: 14px;
}

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

.section-header p {
  margin-top: 14px;
  font-size: 1.05rem;
}

.divider {
  width: 56px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 16px auto 0;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 0 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: var(--navy-dark);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  width: 92%;
  max-width: 1180px;
  margin: 0 auto;
}

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

.logo-shield {
  width: 40px;
  height: 44px;
  flex-shrink: 0;
}

.logo img {
  border-radius: 50%;
  object-fit: cover;
}

.logo-text { line-height: 1.1; }

.logo-name {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.5px;
}

.logo-name span { color: var(--gold); }

.logo-tagline {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: var(--radius);
  transition: var(--transition);
  letter-spacing: 0.3px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  background: rgba(245,166,35,0.08);
}

.nav-cta {
  background: var(--gold) !important;
  color: var(--navy-dark) !important;
  padding: 10px 20px !important;
  border-radius: var(--radius) !important;
}

.nav-cta:hover {
  background: var(--gold-dark) !important;
  color: var(--navy-dark) !important;
}

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

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}

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

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 74px;
  left: 0;
  width: 100%;
  background: var(--navy-dark);
  padding: 20px 0 28px;
  z-index: 999;
  border-top: 1px solid rgba(255,255,255,0.08);
  transform: translateY(-10px);
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}

.mobile-nav.open {
  display: block;
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.mobile-nav a {
  display: block;
  color: rgba(255,255,255,0.85);
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 30px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}

.mobile-nav a:hover { color: var(--gold); background: rgba(245,166,35,0.06); }
.mobile-nav .nav-cta {
  margin: 20px 30px 0;
  display: block;
  text-align: center;
  background: var(--gold) !important;
  color: var(--navy-dark) !important;
  border-radius: var(--radius);
  border-bottom: none !important;
  padding: 14px 20px !important;
}

/* Navbar transparent on hero */
.navbar-transparent .navbar { background: transparent; }

/* ============================================================
   HERO SECTIONS
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 74px;
  background: var(--navy-dark);
}

.hero-bg {
  position: absolute;
  inset: -6% 0;
  background-image: url('../images/hero-poster.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  will-change: transform;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8,21,46,0.92) 0%, rgba(13,34,81,0.8) 60%, rgba(26,58,110,0.7) 100%);
}

.hero-webgl {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: screen;
  opacity: 0.7;
}

@media (prefers-reduced-motion: reduce), (max-width: 640px) {
  .hero-video { display: none; }
  .hero-webgl { display: none; }
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(245,166,35,0.08) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(245,166,35,0.05) 0%, transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 92%;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,166,35,0.15);
  border: 1px solid rgba(245,166,35,0.3);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 40px;
  margin-bottom: 24px;
}

.hero-badge i { font-size: 0.7rem; }

.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
}

.hero h1 span { color: var(--gold); }

.hero p {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  margin-bottom: 36px;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  gap: 28px;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-trust-item i {
  color: var(--gold);
  font-size: 1.3rem;
}

.hero-trust-text strong {
  display: block;
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.95rem;
}

.hero-trust-text span {
  color: rgba(255,255,255,0.55);
  font-size: 0.78rem;
}

/* Hero Quote Card */
.hero-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.hero-card h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.hero-card p {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  margin-bottom: 24px;
}

/* Sub-hero for inner pages */
.page-hero {
  position: relative;
  padding: 140px 0 80px;
  background: var(--navy-dark);
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: -10% 0;
  background:
    linear-gradient(135deg, rgba(8,21,46,0.9) 0%, rgba(13,34,81,0.82) 100%),
    url('../images/page-hero.jpg');
  background-size: cover;
  background-position: center;
  will-change: transform;
}

.page-hero-pattern {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(245,166,35,0.06) 0%, transparent 60%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p  { color: rgba(255,255,255,0.7); font-size: 1.1rem; max-width: 560px; margin: 0 auto; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-top: 20px;
  font-size: 0.85rem;
}

.breadcrumb a { color: var(--gold); }
.breadcrumb i { color: rgba(255,255,255,0.4); font-size: 0.65rem; }
.breadcrumb span { color: rgba(255,255,255,0.55); }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--gold);
  padding: 22px 0;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 20px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-item i {
  font-size: 1.6rem;
  color: var(--navy-dark);
  opacity: 0.8;
}

.trust-item-text strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy-dark);
}

.trust-item-text span {
  font-size: 0.75rem;
  color: rgba(8,21,46,0.65);
  font-weight: 600;
}

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: none;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: linear-gradient(180deg, var(--gold), var(--gold-light));
  transform: scaleY(0);
  transition: var(--transition);
  transform-origin: top;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(245,166,35,0.25);
}

.service-card:hover::before { transform: scaleY(1); }

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.service-icon i {
  color: var(--gold);
  font-size: 1.5rem;
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.service-card p {
  font-size: 0.92rem;
  margin-bottom: 24px;
  line-height: 1.7;
}

.service-features {
  margin-bottom: 28px;
}

.service-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-mid);
  padding: 5px 0;
}

.service-features li i {
  color: var(--gold);
  margin-top: 3px;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 700;
  transition: var(--transition);
}

.service-link:hover { color: var(--gold); gap: 12px; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-section { background: var(--off-white); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-visual {
  position: relative;
}

.why-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--navy);
  background-image:
    linear-gradient(135deg, rgba(8,21,46,0.35) 0%, rgba(13,34,81,0.15) 100%),
    url('../images/why-us.jpg');
  background-size: cover;
  background-position: center;
}

.why-stat-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  min-width: 140px;
}

.why-stat-card .stat-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  display: block;
}

.why-stat-card span {
  font-size: 0.78rem;
  color: var(--text-gray);
  font-weight: 600;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 36px;
}

.why-item {
  display: flex;
  gap: 20px;
}

.why-item-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(245,166,35,0.15), rgba(245,166,35,0.05));
  border: 1px solid rgba(245,166,35,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-item-icon i { color: var(--gold); font-size: 1.1rem; }

.why-item h4 { margin-bottom: 6px; font-size: 1rem; }
.why-item p  { font-size: 0.9rem; }

/* ============================================================
   STATS SECTION
   ============================================================ */
.stats-section {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-light) 100%);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 60%, rgba(245,166,35,0.06) 0%, transparent 60%);
}

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

.stat-item { padding: 20px; }

.stat-number {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================================
   QUOTE FORM SECTION
   ============================================================ */
.quote-section {
  background: var(--off-white);
}

.quote-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
  align-items: start;
}

.quote-info h2 { margin-bottom: 16px; }
.quote-info p  { margin-bottom: 30px; }

.contact-list { display: flex; flex-direction: column; gap: 16px; }

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

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i { color: var(--gold); font-size: 0.95rem; }

.contact-detail strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.85rem;
  color: var(--navy);
  margin-bottom: 2px;
}

.contact-detail span, .contact-detail a {
  font-size: 0.9rem;
  color: var(--text-mid);
}

.contact-detail a:hover { color: var(--gold); }

/* ============================================================
   FORMS
   ============================================================ */
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.form-card h3 {
  margin-bottom: 6px;
}

.form-card > p {
  font-size: 0.88rem;
  color: var(--text-gray);
  margin-bottom: 28px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-row.single { grid-template-columns: 1fr; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group label {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.3px;
}

.form-group label span { color: var(--gold); }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text-dark);
  background: var(--off-white);
  transition: var(--transition);
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(245,166,35,0.12);
}

.form-group textarea { resize: vertical; min-height: 110px; }

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236b7a99' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #e53e3e;
  background: #fff5f5;
}

.form-error-msg {
  font-size: 0.78rem;
  color: #e53e3e;
  margin-top: 2px;
}

.form-success {
  display: none;
  background: #f0fdf4;
  border: 1.5px solid #86efac;
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  margin-top: 20px;
}

.form-success i { font-size: 2rem; color: #16a34a; margin-bottom: 8px; display: block; }
.form-success h4 { color: #15803d; margin-bottom: 6px; }
.form-success p  { font-size: 0.88rem; color: #166534; }

.form-submit { width: 100%; margin-top: 8px; justify-content: center; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--off-white); }

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

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 20px; right: 28px;
  font-size: 5rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.15;
  font-family: Georgia, serif;
}

.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.stars i { color: var(--gold); font-size: 0.85rem; }

.testimonial-text {
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 24px;
  font-style: italic;
}

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

.author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.author-avatar span {
  color: var(--gold);
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
}

.author-name {
  font-family: var(--font-head);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy);
  display: block;
}

.author-location {
  font-size: 0.78rem;
  color: var(--text-gray);
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(245,166,35,0.08) 0%, transparent 70%);
}

.cta-banner-content { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner p  { color: rgba(255,255,255,0.7); font-size: 1.1rem; max-width: 560px; margin: 0 auto 36px; }
.cta-banner-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   BLOG / NEWS
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.blog-image {
  height: 200px;
  background: var(--navy);
  overflow: hidden;
  position: relative;
}

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

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

.blog-cat {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--gold);
  color: var(--navy-dark);
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-body { padding: 24px; }
.blog-meta {
  display: flex;
  gap: 16px;
  font-size: 0.78rem;
  color: var(--text-gray);
  margin-bottom: 12px;
}
.blog-meta i { color: var(--gold); margin-right: 4px; }
.blog-card h4 { margin-bottom: 10px; font-size: 1rem; line-height: 1.4; }
.blog-card p  { font-size: 0.88rem; margin-bottom: 18px; }
.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--navy);
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
}
.blog-read-more:hover { color: var(--gold); gap: 10px; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-filters {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 22px;
  border-radius: 40px;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  border: 2px solid var(--border);
  background: var(--white);
  color: var(--text-mid);
  cursor: pointer;
  transition: var(--transition);
}

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

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 1;
  cursor: pointer;
}

.gallery-item.wide { grid-column: span 2; aspect-ratio: 2/1; }

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

.gallery-item:hover .gallery-img { transform: scale(1.06); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,21,46,0.8) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-caption {
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
}

/* Placeholder gallery items */
.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  font-family: var(--font-head);
  text-align: center;
  padding: 20px;
}

.gallery-placeholder i { font-size: 2rem; color: var(--gold); opacity: 0.6; }

/* ============================================================
   TEAM / ABOUT
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  text-align: center;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.team-photo {
  height: 220px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.team-photo i { font-size: 4rem; color: rgba(245,166,35,0.4); }

.team-photo-badge {
  position: absolute;
  bottom: 14px; right: 14px;
  background: var(--gold);
  color: var(--navy-dark);
  font-family: var(--font-head);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.team-info { padding: 24px 20px; }
.team-info h4 { margin-bottom: 4px; font-size: 1.05rem; }
.team-role {
  font-size: 0.8rem;
  color: var(--gold-dark);
  font-weight: 700;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  display: block;
}
.team-info p { font-size: 0.85rem; }

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

.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.value-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.value-icon i { color: var(--gold); font-size: 1.3rem; }
.value-card h4 { margin-bottom: 10px; }
.value-card p  { font-size: 0.88rem; }

/* Mission/Vision boxes */
.mv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.mv-box {
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  overflow: hidden;
}

.mv-box.mission { background: var(--navy); }
.mv-box.vision  { background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%); }

.mv-box h3 { margin-bottom: 12px; }
.mv-box.mission h3 { color: var(--gold); }
.mv-box.vision  h3 { color: var(--navy-dark); }
.mv-box.mission p  { color: rgba(255,255,255,0.75); }
.mv-box.vision  p  { color: rgba(8,21,46,0.8); }

.mv-box i {
  position: absolute;
  bottom: -10px; right: 20px;
  font-size: 5rem;
  opacity: 0.08;
}
.mv-box.mission i { color: var(--gold); }
.mv-box.vision  i { color: var(--navy-dark); }

/* ============================================================
   CAREERS
   ============================================================ */
.jobs-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 60px;
}

.job-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transition: var(--transition);
}

.job-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
}

.job-main { flex: 1; }

.job-title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.job-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.job-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--off-white);
  border: 1px solid var(--border);
  color: var(--text-mid);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
}

.job-tag i { color: var(--gold); font-size: 0.65rem; }

.job-type {
  background: rgba(245,166,35,0.1);
  border-color: rgba(245,166,35,0.2);
  color: var(--gold-dark);
}

/* Perks grid */
.perks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.perk-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: var(--off-white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.perk-item i { color: var(--gold); font-size: 1.2rem; margin-top: 2px; flex-shrink: 0; }
.perk-item h5 { margin-bottom: 4px; font-size: 0.92rem; }
.perk-item p  { font-size: 0.82rem; }

/* ============================================================
   MAP / CONTACT PAGE
   ============================================================ */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition);
}

.contact-card:hover {
  border-color: rgba(245,166,35,0.3);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.contact-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.contact-card-icon i { color: var(--gold); font-size: 1.2rem; }
.contact-card h4 { font-size: 0.9rem; margin-bottom: 8px; }
.contact-card p, .contact-card a {
  font-size: 0.88rem;
  color: var(--text-mid);
  display: block;
  line-height: 1.6;
}
.contact-card a:hover { color: var(--gold); }

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 400px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ============================================================
   SERVICES PAGE DETAIL
   ============================================================ */
.service-detail {
  padding: 80px 0;
}

.service-detail:nth-child(even) { background: var(--off-white); }

.service-detail-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.service-detail-inner.reverse { direction: rtl; }
.service-detail-inner.reverse > * { direction: ltr; }

.service-detail-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--navy);
}

.service-detail-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-detail-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
  font-family: var(--font-head);
}

.service-detail-img-placeholder i { font-size: 4rem; color: var(--gold); opacity: 0.5; }

.feature-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 24px 0;
}

.feature-check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-mid);
}

.feature-check i { color: var(--gold); font-size: 0.8rem; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.7);
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.8;
  margin: 16px 0 24px;
  color: rgba(255,255,255,0.55);
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-dark);
  transform: translateY(-2px);
}

.footer-col h5 {
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.footer-col ul li a:hover { color: var(--gold); padding-left: 4px; }
.footer-col ul li a i { font-size: 0.65rem; color: var(--gold); opacity: 0.7; }

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  align-items: flex-start;
}

.footer-contact-item i {
  color: var(--gold);
  font-size: 0.85rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact-item span {
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  line-height: 1.6;
}

.footer-contact-item a {
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  transition: var(--transition);
}

.footer-contact-item a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

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

.footer-bottom-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  transition: var(--transition);
}

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

/* ============================================================
   NEGATIVE FOOTER (oversized wordmark + white panel)
   ============================================================ */
.footer-negative {
  background: transparent;
  padding: 70px 0 40px;
}

.footer-neg-card {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(13, 34, 81, 0.18);
  background: #fff;
}

.footer-neg-block {
  position: relative;
  height: clamp(90px, 10vw, 140px);
  background: var(--navy);
  overflow: hidden;
}

.footer-wordmark {
  position: absolute;
  left: 50%;
  bottom: -0.3em;
  transform: translateX(-50%);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(110px, 18vw, 260px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: #fff;
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
}

.footer-neg-panel {
  background: #fff;
  padding: 54px 54px 28px;
}

.footer-neg-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.1fr auto;
  gap: 44px;
  align-items: start;
}

.footer-neg-intro h3 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.footer-neg-intro > p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: #64748b;
  margin: 12px 0 22px;
}

.footer-neg-news-label {
  display: block;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.footer-neg-form {
  display: flex;
  align-items: center;
  border: 1px solid #d7dde8;
  border-radius: 10px;
  overflow: hidden;
  max-width: 320px;
  margin-bottom: 22px;
  transition: var(--transition);
}

.footer-neg-form:focus-within { border-color: var(--gold); }

.footer-neg-form input {
  flex: 1;
  border: none;
  outline: none;
  padding: 12px 14px;
  font-size: 0.85rem;
  font-family: var(--font-body);
  color: var(--navy);
  background: transparent;
}

.footer-neg-form input::placeholder { color: #9aa5b5; }

.footer-neg-form button {
  border: none;
  background: var(--navy);
  color: #fff;
  padding: 0 16px;
  align-self: stretch;
  cursor: pointer;
  transition: var(--transition);
}

.footer-neg-form button:hover { background: var(--gold); color: var(--navy); }

.footer-neg-intro .social-links .social-link {
  background: #f1f4f9;
  border-color: #e2e8f2;
  color: #64748b;
}

.footer-neg-intro .social-links .social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

.footer-neg-col h5 {
  color: var(--navy);
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-neg-col ul li { margin-bottom: 11px; }

.footer-neg-col ul li a,
.footer-neg-col ul li span {
  color: #64748b;
  font-size: 0.86rem;
  transition: var(--transition);
}

.footer-neg-col ul li a:hover { color: var(--gold); }

.footer-neg-badge {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.footer-neg-badge img {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  object-fit: cover;
}

.footer-neg-bottom {
  border-top: 1px solid #e8edf4;
  margin-top: 40px;
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-neg-bottom p {
  font-size: 0.8rem;
  color: #94a3b8;
}

.footer-neg-bottom .footer-bottom-links a {
  color: #94a3b8;
}

.footer-neg-bottom .footer-bottom-links a:hover { color: var(--gold); }

@media (max-width: 860px) {
  .footer-neg-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-neg-intro { grid-column: 1 / -1; }
  .footer-neg-badge {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
  .footer-neg-panel { padding: 40px 28px 24px; }
}

@media (max-width: 520px) {
  .footer-neg-grid { grid-template-columns: 1fr; }
  .footer-neg-card { border-radius: 20px; }
}

/* Emergency banner above footer */
.emergency-banner {
  background: var(--gold);
  padding: 16px 0;
  text-align: center;
}

.emergency-banner p {
  color: var(--navy-dark);
  font-family: var(--font-head);
  font-size: 0.92rem;
  font-weight: 700;
}

.emergency-banner a {
  color: var(--navy-dark);
  text-decoration: underline;
}

.emergency-banner i { margin-right: 6px; }

/* ============================================================
   LIVE CHAT WIDGET
   ============================================================ */
.chat-widget {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
}

.chat-toggle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--navy);
  border: 3px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(13,34,81,0.3);
  transition: var(--transition);
  position: relative;
}

.chat-toggle:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.05);
}

.chat-toggle:hover i { color: var(--navy-dark); }

.chat-toggle i {
  color: var(--gold);
  font-size: 1.3rem;
  transition: var(--transition);
}

.chat-badge {
  position: absolute;
  top: -4px; right: -4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #e53e3e;
  border: 2px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--white);
}

.chat-panel {
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 320px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 40px rgba(13,34,81,0.2);
  overflow: hidden;
  display: none;
  animation: slideUp 0.3s ease;
}

.chat-panel.open { display: block; }

@keyframes slideUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.chat-header {
  background: var(--navy);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.chat-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-avatar i { color: var(--navy-dark); font-size: 1rem; }

.chat-header-info h5 {
  color: var(--white);
  font-size: 0.9rem;
  font-family: var(--font-head);
}

.chat-header-info span {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  gap: 5px;
}

.online-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #48bb78;
  display: inline-block;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.chat-close {
  margin-left: auto;
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  font-size: 1.1rem;
  transition: var(--transition);
  padding: 4px;
}

.chat-close:hover { color: var(--white); }

.chat-messages {
  padding: 20px;
  min-height: 100px;
  max-height: 160px;
  overflow-y: auto;
}

.chat-message {
  background: var(--off-white);
  border-radius: 12px 12px 12px 0;
  padding: 12px 14px;
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.5;
  margin-bottom: 8px;
  max-width: 85%;
}

.chat-body { padding: 0 20px 20px; }
.chat-body .form-group { margin-bottom: 10px; }
.chat-body .form-group input,
.chat-body .form-group textarea {
  padding: 10px 12px;
  font-size: 0.85rem;
}
.chat-body textarea { min-height: 70px; }

.chat-send {
  width: 100%;
  padding: 11px;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition);
}

.chat-send:hover { background: var(--navy-light); }

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
.scroll-top {
  position: fixed;
  bottom: 100px;
  right: 28px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy-dark);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 998;
}

.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--gold-dark); transform: translateY(-2px); }

/* ============================================================
   BACKGROUND VARIANTS
   ============================================================ */
.bg-white   { background: var(--white); }
.bg-light   { background: var(--off-white); }
.bg-navy    { background: var(--navy); }
.bg-dark    { background: var(--navy-dark); }
.text-white { color: var(--white) !important; }
.text-gold  { color: var(--gold) !important; }
.text-navy  { color: var(--navy) !important; }
.text-center { text-align: center; }
.mt-0 { margin-top: 0 !important; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
/* CSS fallback: if JS never adds .visible, reveal after 2.5s */
@keyframes reveal-safe { to { opacity: 1; transform: none; } }

.fade-in {
  opacity: 0;
  transform: translateY(28px) scale(0.97);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  animation: reveal-safe 0.55s ease 2.5s forwards;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  animation: none;
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ============================================================
   SECTION INTRO — simpler, left-aligned alternative to .section-header
   ============================================================ */
.section-intro {
  margin-bottom: 52px;
}

.section-intro h2 {
  margin-bottom: 12px;
  text-align: left;
}

.section-intro p {
  font-size: 1.02rem;
  max-width: 640px;
  text-align: left;
}

.section-intro.centered { text-align: center; }
.section-intro.centered h2 { text-align: center; }
.section-intro.centered p  { text-align: center; margin: 0 auto; }

/* Tighter testimonial cards */
.testimonial-card {
  box-shadow: none;
  border-width: 1px;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

/* Blog card hover — less aggressive */
.blog-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* CTA banner — less gradient-heavy */
.cta-banner {
  background: var(--navy-dark);
}

/* Why section image height fix */
.why-image {
  min-height: 400px;
  aspect-ratio: auto;
}

/* ============================================================
   REVIEWS EMPTY STATE
   ============================================================ */
.reviews-placeholder {
  text-align: center;
  padding: 64px 40px;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  border: 2px dashed var(--border);
}
.reviews-placeholder-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(245,166,35,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.reviews-placeholder-icon i { font-size: 2rem; color: var(--gold); }
.reviews-placeholder h2 { font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: 14px; }
.reviews-placeholder > p { color: var(--text-gray); max-width: 520px; margin: 0 auto 32px; line-height: 1.75; }
.reviews-placeholder-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.reviews-empty {
  text-align: center;
  padding: 80px 40px;
  max-width: 640px;
  margin: 0 auto;
}
.reviews-empty-icon {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: rgba(245,166,35,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
}
.reviews-empty-icon i { font-size: 2.5rem; color: var(--gold); }
.reviews-empty h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); margin-bottom: 20px; }
.reviews-empty > p { color: var(--text-gray); line-height: 1.8; margin-bottom: 36px; font-size: 1.05rem; }
.reviews-empty-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.reviews-empty-note {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 20px 28px;
  border: 1px solid var(--border);
}
.reviews-empty-note p { font-size: 0.9rem; color: var(--text-gray); margin: 0; }
.reviews-empty-note a { color: var(--navy); font-weight: 600; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-content     { grid-template-columns: 1fr; }
  .hero-card        { max-width: 480px; }
  .footer-grid      { grid-template-columns: 1fr 1fr; gap: 30px; }
  .contact-cards    { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid     { grid-template-columns: repeat(3, 1fr); }
  .gallery-item.wide { grid-column: span 1; aspect-ratio: 1; }
  .stats-grid       { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  section { padding: 60px 0; }

  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero-content {
    grid-template-columns: 1fr;
    padding: 40px 0;
  }
  .hero-card { display: none; }
  .hero-trust { flex-wrap: wrap; gap: 16px; }

  .services-grid     { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid         { grid-template-columns: 1fr; }
  .team-grid         { grid-template-columns: 1fr; }
  .values-grid       { grid-template-columns: 1fr; }
  .why-grid          { grid-template-columns: 1fr; }
  .mv-grid           { grid-template-columns: 1fr; }
  .perks-grid        { grid-template-columns: 1fr; }
  .gallery-grid      { grid-template-columns: repeat(2, 1fr); }
  .contact-cards     { grid-template-columns: 1fr 1fr; }
  .stats-grid        { grid-template-columns: repeat(2, 1fr); }
  .feature-checklist { grid-template-columns: 1fr; }
  .service-detail-inner { grid-template-columns: 1fr; gap: 36px; }
  .service-detail-inner.reverse { direction: ltr; }
  .quote-inner       { grid-template-columns: 1fr; gap: 40px; }
  .form-row          { grid-template-columns: 1fr; }
  .trust-bar-inner   { flex-wrap: wrap; gap: 16px; justify-content: flex-start; }
  .job-card          { flex-direction: column; align-items: flex-start; }
  .footer-grid       { grid-template-columns: 1fr; }
  .footer-bottom     { flex-direction: column; text-align: center; }

  .chat-panel { width: 290px; right: -4px; }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn-lg { padding: 14px 28px; font-size: 0.95rem; }
  .contact-cards { grid-template-columns: 1fr; }
  .gallery-grid  { grid-template-columns: 1fr 1fr; }
  .cta-banner-actions { flex-direction: column; align-items: center; }
}

/* ============================================================
   SCROLL-SCRUBBED CINEMATIC SEQUENCE  ("From Alert to Arrival")
   ============================================================ */
.scroll-story-track {
  position: relative;
  height: 600vh;
  background: var(--navy-dark);
}

.scroll-story-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: var(--navy-dark);
}

.story-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  will-change: opacity;
}

.scroll-story-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,21,46,0.95) 0%, rgba(8,21,46,0.35) 45%, rgba(8,21,46,0.55) 100%);
  z-index: 1;
}

.scroll-story-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 0 5% 64px;
  max-width: 1180px;
  margin: 0 auto;
}

.scroll-story-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.scroll-story-captions {
  position: relative;
  height: 3.6em;
}

.scroll-story-caption {
  position: absolute;
  left: 0;
  bottom: 0;
  color: var(--white);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  max-width: 640px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.scroll-story-caption.active {
  opacity: 1;
  transform: translateY(0);
}

.scroll-story-progress {
  margin-top: 28px;
  height: 3px;
  width: 100%;
  max-width: 420px;
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
  overflow: hidden;
}

.scroll-story-progress-bar {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

@media (max-width: 640px) {
  .scroll-story-track { height: 480vh; }
  .scroll-story-caption { font-size: 1.3rem; }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-story-track { height: auto; }
  .scroll-story-sticky { position: static; height: auto; aspect-ratio: 16 / 10; }
  .story-frame { transition: none; }
  .scroll-story-caption { transition: none; }
  .fade-in { transform: none; }
  .hero-bg, .page-hero-bg { transform: none !important; }
}
