/* ══════════════════════════════════════════════════════
   JAY MATAJI FABRICATION — PREMIUM STYLESHEET
   Theme: White + Deep Navy #0F2744 + Gold #C9981C
   ══════════════════════════════════════════════════════ */

/* ── IMPORTS & RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ══════════════════════════════════════════════════════
   PAGE LOADER
   ══════════════════════════════════════════════════════ */
.loader-wrap {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #0F2744;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.loader-wrap.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  animation: loader-pop 0.5s ease both;
}
@keyframes loader-pop {
  from { opacity: 0; transform: scale(0.85); }
  to   { opacity: 1; transform: scale(1); }
}
.loader-gears {
  position: relative;
  width: 90px;
  height: 90px;
}
.loader-gear {
  position: absolute;
  line-height: 1;
  display: block;
}
.loader-gear.lg {
  font-size: 5rem;
  color: #C9981C;
  top: 0; left: 0;
  animation: gear-spin-cw 1.8s linear infinite;
  filter: drop-shadow(0 0 12px rgba(201,152,28,0.6));
}
.loader-gear.sm {
  font-size: 2.4rem;
  color: rgba(255,255,255,0.3);
  bottom: 0; right: 0;
  animation: gear-spin-ccw 1.2s linear infinite;
}
@keyframes gear-spin-cw  { to { transform: rotate(360deg); } }
@keyframes gear-spin-ccw { to { transform: rotate(-360deg); } }

.loader-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.loader-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  letter-spacing: 0.18em;
  color: #FFFFFF;
  line-height: 1;
}
.loader-sub {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.38em;
  color: #C9981C;
  text-transform: uppercase;
}
.loader-bar-wrap {
  width: 200px;
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  overflow: hidden;
}
.loader-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #C9981C, #E8B52A);
  border-radius: 10px;
  transition: width 0.3s ease;
  box-shadow: 0 0 10px rgba(201,152,28,0.7);
}
.loader-text {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}



:root {
  /* Accent Colors */
  --navy:         #0F2744;
  --navy-mid:     #1A3A5C;
  --navy-light:   #2A5080;
  --gold:         #C9981C;
  --gold-light:   #E8B52A;
  --gold-pale:    #FDF4DC;

  /* Backgrounds */
  --white:        #FFFFFF;
  --off-white:    #F7F8FC;
  --light-gray:   #EEF0F5;
  --border:       #DDE1EA;
  --border-dark:  #C5CBDA;

  /* Text */
  --text-dark:    #0F1C2E;
  --text-body:    #374151;
  --text-muted:   #6B7280;
  --text-light:   #9CA3AF;

  /* Fonts */
  --font-head:    'Bebas Neue', sans-serif;
  --font-sub:     'Rajdhani', sans-serif;
  --font-body:    'Inter', sans-serif;

  /* Utilities */
  --radius:       10px;
  --radius-lg:    18px;
  --shadow-sm:    0 1px 4px rgba(15,39,68,0.08);
  --shadow:       0 4px 20px rgba(15,39,68,0.10);
  --shadow-md:    0 8px 40px rgba(15,39,68,0.14);
  --shadow-navy:  0 8px 32px rgba(15,39,68,0.25);
  --shadow-gold:  0 4px 24px rgba(201,152,28,0.25);

  --transition:       0.3s ease;
  --transition-slow:  0.6s ease;
}

html { scroll-behavior: smooth; }

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

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb { background: var(--navy-mid); border-radius: 3px; }

/* ── UTILITY ── */
.highlight { color: var(--gold); }
.section-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-label {
  display: inline-block;
  font-family: var(--font-sub);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  color: var(--gold);
  background: var(--gold-pale);
  border: 1px solid rgba(201,152,28,0.3);
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.section-heading {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  letter-spacing: 0.04em;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 14px;
}
.section-sub { color: var(--text-muted); font-size: 1.05rem; max-width: 560px; margin: 0 auto; line-height: 1.7; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.06em;
  border: 2px solid var(--navy);
  border-radius: var(--radius);
  cursor: pointer;
  transition: color 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, transform 0.2s ease, background 0.35s ease;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  box-shadow: var(--shadow-navy);
  text-decoration: none;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateX(-101%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
  border-radius: inherit;
}
.btn-primary:hover {
  border-color: var(--gold);
  color: var(--navy);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary:active { transform: scale(0.98); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.06em;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}
.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,152,28,0.1);
}
.btn-outline-navy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  background: transparent;
  color: var(--navy);
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.06em;
  border: 2px solid var(--navy);
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
}
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }
.btn-full { width: 100%; justify-content: center; }

/* ══════════════════════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
  background: transparent;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  box-shadow: var(--shadow);
}
.navbar.scrolled .nav-link { color: var(--text-body); }
.navbar.scrolled .nav-link:hover { color: var(--navy); }
.navbar.scrolled .logo-main { color: var(--navy); }
.navbar.scrolled .logo-sub { color: var(--gold); }
.navbar.scrolled .logo-icon { color: var(--navy); }
.navbar.scrolled .hamburger span { background: var(--navy); }
.navbar.scrolled .nav-cta { background: var(--navy); color: var(--white); }
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-icon {
  font-size: 2rem;
  color: var(--gold);
  animation: spin 10s linear infinite;
  display: inline-block;
}
@keyframes spin { to { transform: rotate(360deg); } }
.logo-text { display: flex; flex-direction: column; }
.logo-main {
  font-family: var(--font-head);
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  color: var(--white);
  line-height: 1;
  transition: var(--transition);
}
.logo-sub {
  font-family: var(--font-sub);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  color: var(--gold-light);
  text-transform: uppercase;
  transition: var(--transition);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-link {
  font-family: var(--font-sub);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  width: 0; height: 2px;
  background: var(--gold);
  transform: translateX(-50%);
  transition: var(--transition);
  border-radius: 1px;
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { width: calc(100% - 28px); }
.navbar.scrolled .nav-link::after { background: var(--navy); }
.nav-cta {
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  color: var(--navy);
  background: var(--gold);
  padding: 10px 22px;
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
  box-shadow: var(--shadow-gold);
}
.nav-cta:hover { transform: translateY(-2px); background: var(--gold-light); box-shadow: 0 8px 28px rgba(201,152,28,0.4); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════════════════════════
   HERO — stays dark/dramatic
   ══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/hero_metal_bg.png');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
  opacity: 0.35;
}
.hero:hover .hero-bg { transform: scale(1.0); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15,39,68,0.90) 0%,
    rgba(15,39,68,0.70) 50%,
    rgba(15,39,68,0.90) 100%
  );
}
.hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 30%, rgba(15,39,68,1) 100%);
}
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.particle {
  position: absolute;
  width: 2px; height: 2px;
  background: var(--gold-light);
  border-radius: 50%;
  animation: float-particle linear infinite;
  opacity: 0;
}
@keyframes float-particle {
  0%   { opacity: 0; transform: translateY(0) scale(0); }
  10%  { opacity: 0.8; }
  90%  { opacity: 0.3; }
  100% { opacity: 0; transform: translateY(-120vh) scale(1.5); }
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  animation: fade-up 1s ease both;
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,152,28,0.15);
  border: 1px solid rgba(201,152,28,0.5);
  color: var(--gold-light);
  font-family: var(--font-sub);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  padding: 8px 22px;
  border-radius: 100px;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
  animation: fade-up 1s 0.2s ease both;
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(4rem, 12vw, 9rem);
  letter-spacing: 0.06em;
  line-height: 0.9;
  margin-bottom: 24px;
  animation: fade-up 1s 0.4s ease both;
}
.hero-title-line1 { display: block; color: var(--white); }
.hero-title-line2 {
  display: block;
  color: var(--gold);
  text-shadow: 0 0 60px rgba(201,152,28,0.5);
}
.hero-title-line3 { display: block; color: rgba(255,255,255,0.55); }
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.7);
  margin-bottom: 40px;
  letter-spacing: 0.04em;
  animation: fade-up 1s 0.6s ease both;
}
.hero-cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
  animation: fade-up 1s 0.8s ease both;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  justify-content: center;
  animation: fade-up 1s 1s ease both;
}
.stat-item { text-align: center; }
.stat-number {
  display: block;
  font-family: var(--font-head);
  font-size: 2.4rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  line-height: 1;
}
.stat-label {
  font-family: var(--font-sub);
  font-size: 0.76rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.stat-divider {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(201,152,28,0.4), transparent);
}
.scroll-down {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
}
.scroll-arrow {
  width: 26px; height: 26px;
  border-right: 2px solid rgba(201,152,28,0.7);
  border-bottom: 2px solid rgba(201,152,28,0.7);
  transform: rotate(45deg);
  border-radius: 2px;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(10px); }
}

/* ══════════════════════════════════════════════════════
   TICKER
   ══════════════════════════════════════════════════════ */
.ticker-wrap {
  background: var(--navy);
  overflow: hidden;
  padding: 15px 0;
  position: relative;
}
.ticker-wrap::before, .ticker-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 3px;
  background: var(--gold);
}
.ticker-wrap::before { left: 0; }
.ticker-wrap::after  { right: 0; }
.ticker-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
}
.ticker-track span {
  font-family: var(--font-sub);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  flex-shrink: 0;
}
.ticker-track span strong {
  color: var(--gold);
  font-weight: 700;
  margin-right: 6px;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════════════════
   ABOUT — white section
   ══════════════════════════════════════════════════════ */
.about {
  padding: 120px 0;
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.about-visual { position: relative; }
.about-img-frame {
  width: 100%;
  aspect-ratio: 1;
  max-width: 420px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  background: var(--light-gray);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.about-img-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(15,39,68,0.04) 40px, rgba(15,39,68,0.04) 41px),
    repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(15,39,68,0.04) 40px, rgba(15,39,68,0.04) 41px);
}
.about-img-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-icon-big {
  font-size: 8rem;
  color: var(--navy);
  opacity: 0.07;
  animation: spin 20s linear infinite;
}
.about-sparks { position: absolute; inset: 0; }
.spark {
  position: absolute;
  color: var(--gold);
  font-size: 1rem;
  animation: sparkle 2s ease-in-out infinite;
}
.s1 { top: 20%; left: 15%; animation-delay: 0s; }
.s2 { top: 15%; right: 20%; animation-delay: 0.5s; }
.s3 { bottom: 20%; left: 20%; animation-delay: 1s; }
.s4 { bottom: 15%; right: 15%; animation-delay: 1.5s; }
@keyframes sparkle {
  0%, 100% { opacity: 0.4; transform: scale(1) rotate(0deg); }
  50%       { opacity: 1; transform: scale(1.3) rotate(180deg); }
}
.about-badge-float {
  position: absolute;
  bottom: 24px; right: 0;
  transform: translateX(20%);
  background: var(--navy);
  border-radius: var(--radius);
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--shadow-navy);
}
.badge-num {
  font-family: var(--font-head);
  font-size: 2.4rem;
  color: var(--gold);
  line-height: 1;
}
.badge-txt {
  font-family: var(--font-sub);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.75);
  text-align: center;
  text-transform: uppercase;
}
.about-content .section-label { display: block; margin-bottom: 12px; }
.about-lead {
  font-size: 1.1rem;
  color: var(--text-dark);
  font-weight: 500;
  margin-bottom: 16px;
  line-height: 1.7;
}
.about-body {
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.8;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 36px;
}
.feature-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-family: var(--font-sub);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-body);
  transition: var(--transition);
}
.feature-chip:hover {
  border-color: var(--navy);
  background: rgba(15,39,68,0.04);
  color: var(--navy);
}
.feature-icon { font-size: 1.1rem; }

/* ══════════════════════════════════════════════════════
   SERVICES — light gray section
   ══════════════════════════════════════════════════════ */
.services {
  padding: 120px 0;
  background: var(--off-white);
  position: relative;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.service-card:hover {
  border-color: var(--navy);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.service-card:hover .service-img { transform: scale(1.06); }
.service-img-wrap { position: relative; height: 220px; overflow: hidden; }
.service-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.service-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 30%, rgba(15,39,68,0.85) 100%);
}
.service-card-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-icon { font-size: 2rem; margin-bottom: 10px; }
.service-title {
  font-family: var(--font-sub);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--navy);
  margin-bottom: 10px;
}
.service-desc { color: var(--text-muted); font-size: 0.92rem; line-height: 1.7; margin-bottom: 16px; }
.service-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
  flex: 1;
}
.service-list li {
  font-family: var(--font-sub);
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--text-body);
  padding-left: 16px;
  position: relative;
}
.service-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--gold);
}
.service-cta {
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  color: var(--navy);
  transition: var(--transition);
  align-self: flex-start;
  display: flex;
  align-items: center;
  gap: 6px;
}
.service-cta::after { content: '→'; transition: var(--transition); }
.service-cta:hover { color: var(--gold); }
.service-cta:hover::after { transform: translateX(4px); }

.service-wide {
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: center;
  background: var(--navy);
  border-color: var(--navy);
}
.service-wide .service-card-body { padding: 52px; }
.service-wide .service-title { color: var(--gold); }
.service-wide .service-desc { color: rgba(255,255,255,0.65); }
.service-wide-graphic {
  position: relative;
  width: 300px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}
.cog-large {
  font-size: 8rem;
  color: rgba(255,255,255,0.04);
  animation: spin 20s linear infinite;
  position: absolute;
}
.cog-small {
  font-size: 4rem;
  color: rgba(201,152,28,0.2);
  animation: spin 10s linear infinite reverse;
  position: absolute;
  bottom: 20px; right: 20px;
}

/* ══════════════════════════════════════════════════════
   WHY US — white with navy accents
   ══════════════════════════════════════════════════════ */
.why-us {
  padding: 120px 0;
  background: var(--white);
  position: relative;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--navy), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.why-card:hover::after { transform: scaleX(1); }
.why-card:hover {
  border-color: var(--border-dark);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  background: var(--white);
}
.why-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  display: block;
}
.why-card h3 {
  font-family: var(--font-sub);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: 0.03em;
}
.why-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }

/* ══════════════════════════════════════════════════════
   CONTACT — light gray
   ══════════════════════════════════════════════════════ */
.contact {
  padding: 120px 0;
  background: var(--off-white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
}
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow);
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label {
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--navy);
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 13px 16px;
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-group select {
  cursor: pointer;
  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 d='M1 1l5 5 5-5' stroke='%230F2744' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  background-color: var(--off-white);
}
.form-group select option { background: var(--white); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(15,39,68,0.08);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-light); }
.form-group textarea { resize: vertical; }
.phone-input-wrap {
  display: flex;
  align-items: center;
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.phone-input-wrap:focus-within {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(15,39,68,0.08);
  background: var(--white);
}
.phone-prefix {
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--navy);
  padding: 13px 14px;
  border-right: 1.5px solid var(--border);
  white-space: nowrap;
  background: rgba(15,39,68,0.04);
}
.phone-input-wrap input {
  flex: 1;
  background: transparent;
  border: none;
  border-radius: 0;
  padding-left: 12px;
  box-shadow: none !important;
}
.phone-input-wrap input:focus { box-shadow: none; }
.form-error { font-size: 0.78rem; color: #DC2626; font-family: var(--font-sub); min-height: 1em; }
.form-success {
  background: rgba(21,128,61,0.07);
  border: 1px solid rgba(21,128,61,0.25);
  color: #15803D;
  border-radius: var(--radius);
  padding: 16px;
  font-family: var(--font-sub);
  font-weight: 600;
  text-align: center;
}
.contact-info-wrap { display: flex; flex-direction: column; gap: 16px; }
.contact-info-cards { display: flex; flex-direction: column; gap: 10px; }
.info-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.info-card:hover {
  border-color: var(--navy);
  box-shadow: var(--shadow);
  transform: translateX(4px);
}
.info-icon { font-size: 1.4rem; flex-shrink: 0; }
.info-text { display: flex; flex-direction: column; }
.info-label {
  font-family: var(--font-sub);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2px;
}
.info-value { font-size: 0.9rem; color: var(--text-dark); font-weight: 500; }
.info-value a { color: var(--text-dark); transition: var(--transition); }
.info-value a:hover { color: var(--navy); }
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.map-wrap iframe { display: block; filter: grayscale(20%); }

/* ══════════════════════════════════════════════════════
   REVIEWS — white
   ══════════════════════════════════════════════════════ */
.reviews {
  padding: 120px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.reviews::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at top right, rgba(201,152,28,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.reviews .section-label { color: var(--gold); background: rgba(201,152,28,0.1); border-color: rgba(201,152,28,0.3); }
.reviews .section-heading { color: var(--white); }
.reviews .section-sub { color: rgba(255,255,255,0.55); }
.reviews-carousel {
  position: relative;
  max-width: 760px;
  margin: 0 auto 24px;
  min-height: 260px;
}
.review-card {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 44px;
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.5s ease;
  pointer-events: none;
  backdrop-filter: blur(10px);
}
.review-card.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
.review-stars {
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 16px;
  letter-spacing: 4px;
}
.review-text {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.8);
  font-style: italic;
  margin-bottom: 28px;
}
.review-author { display: flex; align-items: center; gap: 14px; }
.review-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: var(--navy);
  flex-shrink: 0;
}
.review-name {
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
}
.review-role { font-size: 0.82rem; color: rgba(255,255,255,0.45); }
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 64px;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: var(--transition);
}
.dot.active { background: var(--gold); border-color: var(--gold); transform: scale(1.3); }
.review-form-wrap {
  max-width: 760px;
  margin: 0 auto;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 44px;
  backdrop-filter: blur(10px);
}
.review-form-title {
  font-family: var(--font-sub);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 28px;
  letter-spacing: 0.04em;
}
.review-form { display: flex; flex-direction: column; gap: 18px; }
.review-form .form-group label { color: rgba(255,255,255,0.7); }
.review-form .form-group input,
.review-form .form-group textarea {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.15);
  color: var(--white);
}
.review-form .form-group input:focus,
.review-form .form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.09);
  box-shadow: 0 0 0 3px rgba(201,152,28,0.15);
}
.review-form .form-group input::placeholder,
.review-form .form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.star-rating { display: flex; gap: 8px; }
.star {
  font-size: 2rem;
  color: rgba(255,255,255,0.15);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  transition: var(--transition);
}
.star.active, .star:hover { color: var(--gold); transform: scale(1.2); }

/* ══════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════ */
.footer {
  background: var(--text-dark);
  border-top: 3px solid var(--gold);
}
.footer-top { padding: 80px 0 60px; }
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-tagline {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 24px;
}
.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
  cursor: pointer;
}
.social-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  transform: translateY(-3px);
}
.footer-heading {
  font-family: var(--font-sub);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a, .footer-col ul li {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--white); padding-left: 6px; }
.footer-contact ul { gap: 14px; }
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
}
.fc-icon { color: var(--gold); font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
.footer-contact li a { color: rgba(255,255,255,0.5); transition: var(--transition); }
.footer-contact li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 0;
}
.footer-bottom .footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  grid-template-columns: unset;
  gap: 16px;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.35); }

/* ══════════════════════════════════════════════════════
   BACK TO TOP
   ══════════════════════════════════════════════════════ */
.back-to-top {
  position: fixed;
  bottom: 32px; right: 32px;
  z-index: 999;
  width: 48px; height: 48px;
  background: var(--navy);
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: var(--shadow-navy);
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
}
.back-to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top:hover { background: var(--gold); color: var(--navy); transform: translateY(-4px); }

/* ══════════════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
   ══════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { max-width: 400px; margin: 0 auto; }
  .about-badge-float { transform: translateX(0); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-container { grid-template-columns: 1fr 1fr; }
  .footer-bottom .footer-container { grid-template-columns: unset; flex-direction: column; text-align: center; }
}
@media (max-width: 768px) {
  .navbar { padding: 14px 0; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 20px 24px 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    gap: 4px;
  }
  .nav-links.open { display: flex; }
  .nav-link { color: var(--text-body); padding: 12px 0; border-bottom: 1px solid var(--border); }
  .nav-link::after { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .stat-divider { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .service-wide { flex-direction: column; }
  .service-wide-graphic { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-container { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
  .review-card { padding: 28px; }
  .review-form-wrap { padding: 28px; }
}
@media (max-width: 480px) {
  .about-features { grid-template-columns: 1fr; }
  .footer-container { grid-template-columns: 1fr; }
  .hero-title { font-size: clamp(3.2rem, 15vw, 6rem); }
  .hero-cta-group { flex-direction: column; align-items: center; }
  .contact-form-wrap { padding: 20px; }
  .review-form-wrap { padding: 20px; }
  .back-to-top { bottom: 20px; right: 20px; }
}
