/* ==========================================================
   ROADSTAR INFRATECH – Global Stylesheet
   Brand: Safety Yellow + Deep Navy + Crisp White
   ========================================================== */

:root {
  --brand-yellow: #FFC72C;
  --brand-yellow-dark: #E5A800;
  --brand-navy: #0B1E3F;
  --brand-navy-2: #122B57;
  --brand-red: #D8232A;
  --ink: #1A1A1A;
  --ink-soft: #4A5568;
  --muted: #6B7280;
  --line: #E5E7EB;
  --bg: #FFFFFF;
  --bg-soft: #F7F9FC;
  --bg-dark: #0B1E3F;
  --shadow-sm: 0 2px 8px rgba(11, 30, 63, 0.06);
  --shadow-md: 0 8px 24px rgba(11, 30, 63, 0.08);
  --shadow-lg: 0 20px 40px rgba(11, 30, 63, 0.12);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --container: 1200px;
  --header-h: 84px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* -------------------- Reset -------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--brand-navy);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2rem, 4.5vw, 3.5rem); }
h2 { font-size: clamp(1.65rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
h4 { font-size: 1.15rem; }

p { color: var(--ink-soft); }

/* -------------------- Layout helpers -------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 88px 0; }
.section-sm { padding: 56px 0; }
.section-soft { background: var(--bg-soft); }
.section-dark { background: var(--bg-dark); color: #fff; }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }
.section-dark p { color: rgba(255, 255, 255, 0.78); }

.text-center { text-align: center; }
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 992px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.flex { display: flex; gap: 16px; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }

/* -------------------- Section header -------------------- */
.section-header { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.section-header .eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-yellow-dark);
  margin-bottom: 14px;
  padding: 6px 14px;
  background: rgba(255, 199, 44, 0.12);
  border-radius: 999px;
}
.section-header h2 { margin-bottom: 14px; }
.section-header p { font-size: 1.05rem; }
.section-header.left { text-align: left; margin-left: 0; }

/* -------------------- Buttons -------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.97rem;
  letter-spacing: 0.01em;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--brand-yellow);
  color: var(--brand-navy);
  box-shadow: 0 6px 16px rgba(255, 199, 44, 0.35);
}
.btn-primary:hover { background: var(--brand-yellow-dark); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(255, 199, 44, 0.45); }
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
}
.btn-outline:hover { background: #fff; color: var(--brand-navy); }
.btn-dark { background: var(--brand-navy); color: #fff; }
.btn-dark:hover { background: var(--brand-navy-2); transform: translateY(-2px); }
.btn-ghost { color: var(--brand-navy); border-color: var(--brand-navy); }
.btn-ghost:hover { background: var(--brand-navy); color: #fff; }
.btn .arrow { transition: transform var(--transition); }
.btn:hover .arrow { transform: translateX(4px); }

/* -------------------- Top bar -------------------- */
.topbar {
  background: #06122A;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.86rem;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.topbar .topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.topbar a { color: rgba(255, 255, 255, 0.85); }
.topbar a:hover { color: var(--brand-yellow); }
.topbar .info { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar .info span, .topbar .info a { display: inline-flex; align-items: center; gap: 7px; }
.topbar .social { display: flex; gap: 12px; }
.topbar .social a {
  width: 28px; height: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255, 255, 255, 0.08); border-radius: 50%;
  transition: all var(--transition);
}
.topbar .social a:hover { background: var(--brand-yellow); color: var(--brand-navy); }

@media (max-width: 768px) {
  .topbar { padding: 7px 0; font-size: 0.78rem; }
  .topbar .topbar-inner { flex-wrap: nowrap; gap: 12px; justify-content: flex-start; }
  .topbar .info { gap: 12px; flex-wrap: nowrap; flex: 1; min-width: 0; }
  .topbar .info > *:not(:nth-child(-n+2)) { display: none; }
  .topbar .social { display: none; }
  .topbar .info span, .topbar .info a { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
}
@media (max-width: 420px) {
  .topbar { font-size: 0.74rem; }
  .topbar .info { gap: 10px; }
}

/* -------------------- Header / Nav -------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--brand-navy);
  border-bottom: 3px solid var(--brand-yellow);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35); }
.nav {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-logo img {
  height: 54px;
  width: auto;
  display: block;
}
.nav-logo .brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo .brand-text strong { font-family: 'Poppins', sans-serif; font-size: 1.15rem; color: var(--brand-navy); letter-spacing: 0.01em; }
.nav-logo .brand-text span { font-size: 0.72rem; color: var(--muted); letter-spacing: 0.12em; text-transform: uppercase; }

.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-menu a {
  position: relative;
  padding: 10px 16px;
  font-weight: 500;
  font-size: 0.96rem;
  color: rgba(255, 255, 255, 0.85);
  border-radius: 8px;
  transition: all var(--transition);
}
.nav-menu a:hover { color: #fff; background: rgba(255, 255, 255, 0.08); }
.nav-menu a.active { color: var(--brand-yellow); background: transparent; }
.nav-menu a.active::after {
  content: ''; position: absolute; bottom: -2px; left: 16px; right: 16px;
  height: 3px; background: var(--brand-yellow); border-radius: 2px;
}

.nav-cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.menu-toggle { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; border-radius: 8px; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: #fff; position: relative; transition: all var(--transition); }
.menu-toggle span::before, .menu-toggle span::after { content: ''; position: absolute; left: 0; width: 24px; height: 2px; background: #fff; transition: all var(--transition); }
.menu-toggle span::before { top: -8px; }
.menu-toggle span::after { top: 8px; }
.menu-toggle.open span { background: transparent; }
.menu-toggle.open span::before { top: 0; transform: rotate(45deg); }
.menu-toggle.open span::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 992px) {
  .nav-menu {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--brand-navy);
    padding: 16px;
    gap: 4px;
    transform: translateX(100%);
    transition: transform var(--transition);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }
  .nav-menu.open { transform: translateX(0); }
  .nav-menu a { padding: 14px 16px; font-size: 1rem; color: rgba(255, 255, 255, 0.9); }
  .nav-menu a.active::after { display: none; }
  .nav-menu a.active { background: var(--brand-yellow); color: var(--brand-navy); }
  .menu-toggle { display: inline-flex; }
  .nav-cta .btn { display: none; }
}

/* -------------------- Hero (Home) -------------------- */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  background: var(--brand-navy);
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 30, 63, 0.78) 0%, rgba(11, 30, 63, 0.55) 45%, rgba(11, 30, 63, 0.15) 100%),
    linear-gradient(180deg, rgba(11, 30, 63, 0.35) 0%, rgba(11, 30, 63, 0) 30%, rgba(11, 30, 63, 0.55) 100%);
  z-index: 2;
}
.hero-media {
  position: absolute; inset: 0; z-index: 1;
}
.hero-media img, .hero-media video {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-content {
  position: relative; z-index: 3;
  width: 100%;
  padding: 56px 0;
}
.hero .eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--brand-yellow);
  margin-bottom: 20px;
  padding: 8px 16px;
  background: rgba(255, 199, 44, 0.14);
  border: 1px solid rgba(255, 199, 44, 0.35);
  border-radius: 999px;
}
.hero h1 { color: #fff; max-width: 880px; margin-bottom: 22px; text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3); }
.hero h1 .accent { color: var(--brand-yellow); }
.hero p.lead { font-size: 1.15rem; max-width: 620px; color: rgba(255, 255, 255, 0.95); margin-bottom: 36px; text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}
.hero-stats .stat strong { font-family: 'Poppins', sans-serif; display: block; font-size: 1.9rem; color: var(--brand-yellow); line-height: 1.1; }
.hero-stats .stat span { font-size: 0.88rem; color: rgba(255, 255, 255, 0.78); }
@media (max-width: 768px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .hero { min-height: 65vh; }
}

/* -------------------- Page banner (subpages) -------------------- */
.page-banner {
  position: relative;
  padding: 110px 0 90px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-navy-2) 100%);
  overflow: hidden;
}
.page-banner::before {
  content: ''; position: absolute; inset: 0;
  background-image: url('../images/all-roads.jpg');
  background-size: cover; background-position: center;
  opacity: 0.18; z-index: 0;
}
.page-banner::after {
  content: ''; position: absolute; right: -100px; top: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255, 199, 44, 0.22) 0%, transparent 70%);
  z-index: 0;
}
.page-banner .container { position: relative; z-index: 1; }
.page-banner h1 { color: #fff; }
.page-banner .crumbs { display: flex; gap: 8px; align-items: center; font-size: 0.92rem; color: rgba(255, 255, 255, 0.78); margin-bottom: 14px; }
.page-banner .crumbs a:hover { color: var(--brand-yellow); }
.page-banner .crumbs .sep { opacity: 0.5; }
.page-banner p { color: rgba(255, 255, 255, 0.85); max-width: 720px; margin-top: 14px; font-size: 1.05rem; }

/* -------------------- Service / Product cards -------------------- */
.card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--brand-yellow); }
.card-img { aspect-ratio: 4/3; overflow: hidden; background: var(--bg-soft); }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.card:hover .card-img img { transform: scale(1.06); }
.card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.card-body h3 { margin-bottom: 10px; }
.card-body p { font-size: 0.95rem; flex: 1; margin-bottom: 14px; }
.card-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; color: var(--brand-navy);
  font-size: 0.9rem;
  margin-top: auto;
}
.card-link:hover { color: var(--brand-yellow-dark); }
.card-link::after { content: '→'; transition: transform var(--transition); }
.card:hover .card-link::after { transform: translateX(4px); }

/* Product compact card */
.product-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 26px;
  display: flex; gap: 20px; align-items: flex-start;
  transition: all var(--transition);
}
.product-card:hover { border-color: var(--brand-yellow); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.product-card .icon {
  flex-shrink: 0;
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand-yellow) 0%, var(--brand-yellow-dark) 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--brand-navy);
  font-size: 1.3rem;
  box-shadow: 0 6px 14px rgba(255, 199, 44, 0.35);
}
.product-card h4 { margin-bottom: 6px; font-size: 1.05rem; }
.product-card p { font-size: 0.92rem; }

/* -------------------- About sections -------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 36px; }
  .split.reverse { direction: ltr; }
}
.split-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  aspect-ratio: 5/4;
}
.split-img img { width: 100%; height: 100%; object-fit: cover; }
.split-img .badge {
  position: absolute; bottom: 24px; left: 24px;
  background: var(--brand-yellow);
  color: var(--brand-navy);
  padding: 14px 22px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: var(--shadow-md);
}

.feature-list { display: grid; gap: 18px; margin-top: 24px; }
.feature-list li {
  display: flex; gap: 14px; align-items: flex-start;
  font-size: 0.97rem;
  color: var(--ink-soft);
}
.feature-list li::before {
  content: '✓';
  flex-shrink: 0;
  width: 28px; height: 28px;
  background: var(--brand-yellow);
  color: var(--brand-navy);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

/* -------------------- CTA strip -------------------- */
.cta-strip {
  background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-navy-2) 100%);
  color: #fff;
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: ''; position: absolute; right: -10%; top: -50%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255, 199, 44, 0.18) 0%, transparent 60%);
}
.cta-strip .container { position: relative; }
.cta-strip-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
}
.cta-strip h2 { color: #fff; margin-bottom: 8px; }
.cta-strip p { color: rgba(255, 255, 255, 0.85); margin: 0; }

/* -------------------- Stats band -------------------- */
.stats-band { background: var(--brand-yellow); padding: 50px 0; }
.stats-band .grid-4 { gap: 20px; }
.stats-band .stat {
  text-align: center;
  border-right: 1px solid rgba(11, 30, 63, 0.18);
  padding: 0 16px;
}
.stats-band .stat:last-child { border-right: none; }
.stats-band .stat strong { font-family: 'Poppins', sans-serif; display: block; font-size: 2.5rem; color: var(--brand-navy); line-height: 1.1; }
.stats-band .stat span { font-size: 0.95rem; color: var(--brand-navy); font-weight: 500; }
@media (max-width: 768px) { .stats-band .stat { border-right: none; padding: 14px 0; } }

/* -------------------- Team -------------------- */
.team-card {
  text-align: center;
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: all var(--transition);
}
.team-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.team-img { aspect-ratio: 1/1; overflow: hidden; background: var(--bg-soft); }
.team-img img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.team-body { padding: 22px 18px; }
.team-body h4 { margin-bottom: 4px; font-size: 1.1rem; }
.team-body .role {
  font-size: 0.85rem; color: var(--brand-yellow-dark);
  text-transform: uppercase; letter-spacing: 0.12em; font-weight: 600;
}

/* -------------------- Gallery -------------------- */
.gallery-filters {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 36px;
}
.gallery-filters button {
  padding: 9px 20px;
  border-radius: 999px;
  background: #fff;
  border: 1.5px solid var(--line);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--ink-soft);
  transition: all var(--transition);
}
.gallery-filters button:hover { border-color: var(--brand-navy); color: var(--brand-navy); }
.gallery-filters button.active { background: var(--brand-navy); color: #fff; border-color: var(--brand-navy); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .gallery-grid { grid-template-columns: 1fr; } }
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  background: var(--bg-soft);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item .caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 28px 20px 16px;
  background: linear-gradient(to top, rgba(11, 30, 63, 0.92) 0%, transparent 100%);
  color: #fff;
  font-weight: 600;
  font-size: 0.97rem;
  transform: translateY(100%);
  transition: transform var(--transition);
}
.gallery-item:hover .caption { transform: translateY(0); }
.gallery-item .caption span { display: block; font-size: 0.78rem; opacity: 0.8; font-weight: 400; margin-top: 2px; }

/* -------------------- Contact -------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 48px;
  align-items: stretch;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info {
  background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-navy-2) 100%);
  color: #fff;
  padding: 44px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.contact-info::before {
  content: ''; position: absolute; right: -80px; bottom: -80px;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(255, 199, 44, 0.22) 0%, transparent 70%);
}
.contact-info > * { position: relative; }
.contact-info h2 { color: #fff; margin-bottom: 12px; }
.contact-info p { color: rgba(255, 255, 255, 0.82); margin-bottom: 32px; }
.contact-info .info-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.contact-info .info-item:last-of-type { border-bottom: none; }
.contact-info .info-item .icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(255, 199, 44, 0.18);
  color: var(--brand-yellow);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem;
}
.contact-info .info-item h5 { color: var(--brand-yellow); font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 4px; font-family: 'Inter', sans-serif; }
.contact-info .info-item p { color: rgba(255, 255, 255, 0.92); margin: 0; font-size: 0.97rem; }
.contact-info .info-item a { color: rgba(255, 255, 255, 0.92); }
.contact-info .info-item a:hover { color: var(--brand-yellow); }

.contact-form {
  background: #fff;
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-weight: 600; font-size: 0.86rem;
  color: var(--brand-navy); margin-bottom: 8px;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.96rem;
  color: var(--ink);
  background: #fff;
  transition: all var(--transition);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none;
  border-color: var(--brand-yellow);
  box-shadow: 0 0 0 4px rgba(255, 199, 44, 0.18);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.contact-form .btn { width: 100%; justify-content: center; padding: 16px; }

/* -------------------- Footer -------------------- */
.site-footer {
  background: #06122A;
  color: rgba(255, 255, 255, 0.72);
  padding: 80px 0 0;
  font-size: 0.93rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h5 {
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 1.02rem;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
}
.site-footer h5::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 32px; height: 3px; background: var(--brand-yellow); border-radius: 2px;
}
.footer-brand p { margin: 18px 0 22px; line-height: 1.7; }
.footer-brand .logo { display: flex; align-items: center; gap: 12px; }
.footer-brand .logo img { height: 64px; width: auto; background: transparent; padding: 0; border-radius: 0; }
.footer-brand .logo strong { color: #fff; font-family: 'Poppins', sans-serif; font-size: 1.1rem; }
.footer-brand .logo span { display: block; font-size: 0.72rem; color: var(--brand-yellow); text-transform: uppercase; letter-spacing: 0.12em; }

.footer-links a {
  display: flex; align-items: center; gap: 8px;
  padding: 7px 0;
  color: rgba(255, 255, 255, 0.72);
  transition: all var(--transition);
}
.footer-links a::before { content: '›'; color: var(--brand-yellow); font-weight: 700; }
.footer-links a:hover { color: var(--brand-yellow); transform: translateX(3px); }

.footer-contact .info-item { display: flex; gap: 12px; margin-bottom: 14px; align-items: flex-start; }
.footer-contact .info-item .icon { flex-shrink: 0; color: var(--brand-yellow); font-size: 1rem; margin-top: 3px; }
.footer-contact .info-item p, .footer-contact .info-item a { font-size: 0.9rem; color: rgba(255, 255, 255, 0.78); }
.footer-contact .info-item a:hover { color: var(--brand-yellow); }

.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--brand-yellow); color: var(--brand-navy); transform: translateY(-3px); }

.footer-bottom {
  padding: 22px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}
.footer-bottom .legal-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-bottom .legal-links a:hover { color: var(--brand-yellow); }

/* -------------------- Policy / Legal pages -------------------- */
.legal {
  max-width: 880px;
  margin: 0 auto;
  padding: 64px 0;
}
.legal h1 { margin-bottom: 8px; }
.legal .updated { color: var(--muted); font-size: 0.92rem; margin-bottom: 36px; }
.legal h2 {
  font-size: 1.4rem;
  margin: 36px 0 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--brand-yellow);
  display: inline-block;
}
.legal h3 { font-size: 1.1rem; margin: 22px 0 10px; }
.legal p, .legal li { color: var(--ink-soft); line-height: 1.8; }
.legal ul, .legal ol { margin: 12px 0 16px 24px; }
.legal ul li, .legal ol li { margin-bottom: 8px; }
.legal a { color: var(--brand-navy); text-decoration: underline; text-decoration-color: var(--brand-yellow); text-underline-offset: 3px; }

/* -------------------- Reveal animations -------------------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation: none !important; transition: none !important; }
}

/* -------------------- Floating WhatsApp -------------------- */
.float-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 56px; height: 56px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.45);
  z-index: 90;
  transition: transform var(--transition);
}
.float-whatsapp:hover { transform: scale(1.1); }

/* -------------------- Video block -------------------- */
.video-block {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16/9;
  background: var(--brand-navy);
  max-width: 1040px;
  margin: 0 auto;
}
.video-block video { width: 100%; height: 100%; object-fit: cover; display: block; }
.video-block .play-pill {
  position: absolute; left: 24px; bottom: 24px;
  background: rgba(11, 30, 63, 0.78);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  pointer-events: none;
  backdrop-filter: blur(6px);
}

/* -------------------- Utility -------------------- */
.mt-0 { margin-top: 0; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 16px; }
.text-yellow { color: var(--brand-yellow); }
.text-navy { color: var(--brand-navy); }
