/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: #1a1a2e;
  background: #faf9f6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== FONTS ===== */
@font-face { font-family: 'Outfit'; src: url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;800&display=swap'); }

h1, h2, h3 { font-family: 'Outfit', sans-serif; font-weight: 800; line-height: 1.15; }

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(11, 31, 58, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid #f5a623;
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.3); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-mark {
  width: 36px; height: 36px;
  background: #f5a623;
  border-radius: 50%;
  position: relative;
  box-shadow: 0 0 0 4px #0b1f3a, 0 0 0 6px #f5a623;
}
.logo-mark::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 10px; height: 10px;
  background: #0b1f3a;
  border-radius: 50%;
}
.logo-text { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.1rem; color: #fff; letter-spacing: -0.01em; }
.nav-menu { display: flex; align-items: center; gap: 8px; }
.nav-menu a { color: rgba(255,255,255,0.8); font-weight: 500; font-size: 0.95rem; padding: 8px 14px; border-radius: 8px; transition: all 0.2s; }
.nav-menu a:hover { color: #fff; background: rgba(245,166,35,0.15); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger, .hamburger::before, .hamburger::after { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s; }
.hamburger::before, .hamburger::after { content: ''; position: relative; top: -7px; }
.nav-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.nav-toggle[aria-expanded="true"] .hamburger::before { transform: rotate(45deg); top: 0; }
.nav-toggle[aria-expanded="true"] .hamburger::after { transform: rotate(-45deg); top: 0; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: center;
  padding: 120px 0 160px;
  background: #0b1f3a;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(245,166,35,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 10% 90%, rgba(245,166,35,0.10) 0%, transparent 60%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px; border-radius: 100px;
  font-size: 0.82rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  background: rgba(245,166,35,0.15); color: #f5a623;
  border: 1px solid rgba(245,166,35,0.3);
}
.badge-dark { background: rgba(245,166,35,0.12); color: #f5a623; border-color: rgba(245,166,35,0.25); }
.badge-outline { background: transparent; color: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.25); }
.hero-title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: #fff;
  margin: 20px 0 24px;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.hero-title span { color: #f5a623; }
.hero-sub { color: rgba(255,255,255,0.75); font-size: 1.15rem; max-width: 520px; margin-bottom: 36px; line-height: 1.7; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: 12px;
  font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 1rem;
  border: 2px solid transparent; cursor: pointer;
  transition: all 0.25s ease;
}
.btn-gold { background: #f5a623; color: #0b1f3a; border-color: #f5a623; }
.btn-gold:hover { background: #e6951a; border-color: #e6951a; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,166,35,0.35); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.35); }
.btn-outline-light:hover { border-color: #f5a623; color: #f5a623; transform: translateY(-2px); }
.btn-full { width: 100%; }

/* HERO VISUAL */
.hero-visual { position: relative; }
.hero-card-main {
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
  position: relative;
}
.hero-card-main img { width: 100%; height: 340px; object-fit: cover; }
.hero-card-main-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 16px 20px;
  background: linear-gradient(transparent, rgba(11,31,58,0.9));
  color: #fff; font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 1rem;
}
.hero-geometric {
  position: absolute;
  width: 120px; height: 120px;
  border: 3px solid rgba(245,166,35,0.3);
  border-radius: 20px;
  top: -30px; right: -30px;
  transform: rotate(15deg);
  z-index: -1;
}
.hero-geometric-2 {
  position: absolute;
  width: 80px; height: 80px;
  background: rgba(245,166,35,0.12);
  border-radius: 16px;
  bottom: -20px; left: -20px;
  transform: rotate(-10deg);
  z-index: -1;
}

/* FLOATING STAT CARDS */
.stat-cards {
  position: absolute;
  bottom: -80px; left: 0; right: 0;
  display: flex; justify-content: center; gap: 16px;
  flex-wrap: wrap;
  padding: 0 24px;
  z-index: 2;
}
.stat-card {
  display: flex; align-items: center; gap: 12px;
  background: #fff;
  padding: 16px 24px;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  border-left: 4px solid #f5a623;
  min-width: 200px;
}
.stat-icon {
  width: 40px; height: 40px;
  background: rgba(245,166,35,0.12);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #f5a623; flex-shrink: 0;
}
.stat-icon svg { width: 20px; height: 20px; }
.stat-label { font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 0.9rem; color: #0b1f3a; }

/* ===== SECTION COMMON ===== */
.section-header { text-align: center; margin-bottom: 60px; }
.section-title { font-size: clamp(2rem, 4vw, 3rem); color: #0b1f3a; margin: 16px 0 16px; letter-spacing: -0.02em; }
.section-title--light { color: #fff; }
.section-sub { color: #555; font-size: 1.1rem; max-width: 600px; margin: 0 auto; }
.section-sub--light { color: rgba(255,255,255,0.7); }

/* ===== SERVICES ===== */
.services {
  padding: 160px 0 120px;
  background: #faf9f6;
  position: relative;
}
.services::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 6px;
  background: repeating-linear-gradient(90deg, #0b1f3a 0px, #0b1f3a 40px, #f5a623 40px, #f5a623 80px);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.service-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 32px;
  border: 1px solid rgba(11,31,58,0.06);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: #f5a623;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(11,31,58,0.1); }
.service-icon {
  width: 56px; height: 56px;
  background: rgba(11,31,58,0.06);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  color: #0b1f3a;
  transition: all 0.3s;
}
.service-icon svg { width: 26px; height: 26px; }
.service-card:hover .service-icon { background: #f5a623; color: #0b1f3a; }
.service-card h3 { font-size: 1.3rem; color: #0b1f3a; margin-bottom: 10px; }
.service-card p { color: #555; font-size: 0.95rem; line-height: 1.7; }

/* ===== ABOUT ===== */
.about {
  padding: 120px 0;
  background: #0b1f3a;
  position: relative;
  overflow: hidden;
}
.about::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(245,166,35,0.05);
  top: -200px; right: -150px;
  pointer-events: none;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.about-images { position: relative; }
.about-img-main { border-radius: 20px; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.3); }
.about-img-main img { width: 100%; height: 380px; object-fit: cover; }
.about-img-accent {
  position: absolute;
  bottom: -40px; right: -40px;
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
  border: 4px solid #f5a623;
}
.about-img-accent img { width: 100%; height: 200px; object-fit: cover; }
.about-shape {
  position: absolute;
  width: 160px; height: 160px;
  background: rgba(245,166,35,0.1);
  border: 2px solid rgba(245,166,35,0.25);
  border-radius: 30px;
  top: -30px; left: -30px;
  transform: rotate(-15deg);
  z-index: -1;
}
.about-content .section-title { color: #fff; text-align: left; }
.about-content .badge { margin-bottom: 8px; }
.about-content p { color: rgba(255,255,255,0.75); margin-bottom: 16px; font-size: 1.05rem; }
.about-list { margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
.about-list li {
  display: flex; align-items: center; gap: 12px;
  color: rgba(255,255,255,0.85); font-size: 1rem;
}
.about-list li svg { width: 20px; height: 20px; color: #f5a623; flex-shrink: 0; }

/* ===== WHY US ===== */
.why {
  padding: 120px 0;
  background: #f5a623;
  position: relative;
  overflow: hidden;
}
.why::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(11,31,58,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(11,31,58,0.10) 0%, transparent 50%);
  pointer-events: none;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  position: relative;
  z-index: 1;
}
.why-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s;
}
.why-card:hover { transform: translateY(-6px); }
.why-num {
  font-family: 'Outfit', sans-serif;
  font-size: 4rem; font-weight: 800;
  color: rgba(11,31,58,0.06);
  position: absolute; top: 12px; right: 20px;
  line-height: 1;
}
.why-card h3 { font-size: 1.3rem; color: #0b1f3a; margin-bottom: 12px; }
.why-card p { color: #555; font-size: 0.95rem; line-height: 1.7; }

/* ===== CTA BANNER ===== */
.cta-banner {
  padding: 100px 0;
  background: #0b1f3a;
  position: relative;
  overflow: hidden;
}
.cta-shapes { position: absolute; inset: 0; pointer-events: none; }
.cta-shape {
  position: absolute;
  border-radius: 20px;
  opacity: 0.08;
}
.cta-shape--1 { width: 300px; height: 300px; background: #f5a623; top: -80px; left: -80px; transform: rotate(25deg); }
.cta-shape--2 { width: 200px; height: 200px; background: #f5a623; bottom: -60px; right: 10%; transform: rotate(-15deg); }
.cta-shape--3 { width: 120px; height: 120px; background: #fff; top: 20%; right: 5%; transform: rotate(30deg); }
.cta-inner { position: relative; z-index: 1; text-align: center; }
.cta-title { font-size: clamp(2rem, 4vw, 3rem); color: #fff; margin-bottom: 16px; }
.cta-sub { color: rgba(255,255,255,0.7); font-size: 1.15rem; margin-bottom: 36px; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }

/* ===== CONTACT ===== */
.contact {
  padding: 120px 0;
  background: #faf9f6;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info .section-title { text-align: left; }
.contact-details { margin: 28px 0; }
.contact-details p { color: #444; font-size: 1.05rem; line-height: 1.8; }
.contact-details a { color: #f5a623; font-weight: 600; transition: color 0.2s; }
.contact-details a:hover { color: #0b1f3a; }
.contact-map { border-radius: 16px; overflow: hidden; box-shadow: 0 8px 30px rgba(0,0,0,0.1); margin-top: 20px; }

/* FORM */
.contact-form-wrap {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 8px 30px rgba(11,31,58,0.08);
  border: 1px solid rgba(11,31,58,0.06);
}
.form-title { font-size: 1.5rem; color: #0b1f3a; margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; font-size: 0.9rem; color: #0b1f3a; margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid rgba(11,31,58,0.12);
  border-radius: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  color: #1a1a2e;
  background: #faf9f6;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #f5a623;
  box-shadow: 0 0 0 3px rgba(245,166,35,0.15);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #aaa; }
.form-success {
  text-align: center;
  margin-top: 16px;
  padding: 14px;
  background: rgba(245,166,35,0.1);
  border: 1px solid rgba(245,166,35,0.3);
  border-radius: 10px;
  color: #0b1f3a;
  font-weight: 600;
}

/* ===== FOOTER ===== */
.footer {
  background: #071424;
  color: rgba(255,255,255,0.6);
  padding: 60px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand { display: flex; flex-direction: column; gap: 12px; }
.footer-brand .logo-mark { width: 40px; height: 40px; }
.footer-tagline { font-size: 0.95rem; color: rgba(255,255,255,0.5); }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,0.6); font-size: 0.95rem; transition: color 0.2s; }
.footer-links a:hover { color: #f5a623; }
.footer-contact p { font-size: 0.9rem; line-height: 1.8; }
.footer-contact a { color: #f5a623; transition: color 0.2s; }
.footer-contact a:hover { color: #fff; }
.footer-bottom { padding: 20px 0; text-align: center; font-size: 0.85rem; color: rgba(255,255,255,0.35); }

/* ===== SCROLL REVEAL (progressive enhancement) ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .hero-visual { max-width: 500px; margin: 0 auto; }
  .about-grid { grid-template-columns: 1fr; }
  .about-images { max-width: 480px; margin: 0 auto; }
  .about-content .section-title { text-align: center; }
  .about-content .badge { display: block; text-align: center; }
  .about-content p { text-align: center; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info .section-title { text-align: center; }
  .contact-details { text-align: center; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(11,31,58,0.98);
    flex-direction: column;
    padding: 24px;
    gap: 4px;
    transform: translateY(-120%);
    transition: transform 0.35s ease;
    border-bottom: 2px solid #f5a623;
  }
  .nav-menu.open { transform: translateY(0); }
  .nav-menu a { width: 100%; text-align: center; padding: 12px; }
  .nav-toggle { display: block; }
  .stat-cards { position: relative; bottom: 0; margin-top: 40px; }
  .hero { padding: 120px 0 80px; min-height: auto; }
  .services { padding: 100px 0 80px; }
  .about { padding: 80px 0; }
  .why { padding: 80px 0; }
  .cta-banner { padding: 80px 0; }
  .contact { padding: 80px 0; }
  .contact-form-wrap { padding: 28px 20px; }
  .about-img-accent { right: 0; bottom: -30px; }
}

@media (max-width: 480px) {
  .stat-card { min-width: 100%; }
  .hero-title { font-size: 2.4rem; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
  .reveal.revealed { opacity: 1; transform: translateY(0); }
}
