/* ===================== FIX'D BY — STYLE.CSS ===================== */
/* Brand: Gold #FCB614 | Navy #053046 | White #FFFFFF              */

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

:root {
  --gold: #FCB614;
  --gold-dark: #D99D0B;
  --gold-light: #FFC940;
  --navy: #053046;
  --navy-mid: #0A4460;
  --navy-light: #0E5A7E;
  --dark: #0B0F14;
  --dark-mid: #111920;
  --dark-card: #14202A;
  --text: #D4DBE0;
  --text-muted: #8A9BAA;
  --white: #FFFFFF;
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --max-width: 1200px;
  --section-pad: 100px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* ===================== HEADER / NAV ===================== */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(11,15,20,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(252,182,20,0.08);
  transition: background 0.3s;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--max-width); margin: 0 auto; padding: 12px 24px;
}
.logo { display: flex; align-items: center; }
.logo-img { height: 52px; width: auto; }
nav ul { display: flex; list-style: none; gap: 36px; }
nav a {
  font-size: 0.9rem; font-weight: 500; color: var(--text-muted);
  transition: color 0.25s;
}
nav a:hover { color: var(--gold); }
.nav-cta {
  background: var(--gold); color: var(--navy);
  padding: 10px 24px; border-radius: 6px;
  font-family: var(--font-heading); font-weight: 700; font-size: 0.9rem;
  transition: all 0.25s;
}
.nav-cta:hover { background: var(--gold-light); }

.mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.mobile-toggle span {
  display: block; width: 24px; height: 2px; background: var(--gold);
  margin: 6px 0; transition: 0.3s;
}

/* ===================== HERO ===================== */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
  background: linear-gradient(170deg, var(--dark) 0%, var(--navy) 60%, var(--dark) 100%);
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(252,182,20,0.10) 0%, transparent 55%),
    radial-gradient(ellipse at 30% 80%, rgba(252,182,20,0.05) 0%, transparent 45%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 720px; padding: var(--section-pad) 0;
}
.hero-logo { margin-bottom: 32px; }
.hero-logo-img { max-width: 340px; height: auto; }
.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.75rem);
  font-weight: 800; line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: normal; color: var(--gold);
}
.hero p {
  font-size: 1.1rem; color: var(--text-muted);
  max-width: 560px; margin-bottom: 40px; line-height: 1.75;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--navy);
  padding: 16px 32px; border-radius: 8px;
  font-family: var(--font-heading); font-weight: 700; font-size: 1rem;
  transition: all 0.25s; border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--white);
  padding: 16px 32px; border-radius: 8px;
  border: 1px solid rgba(252,182,20,0.3);
  font-family: var(--font-heading); font-weight: 600; font-size: 1rem;
  transition: all 0.25s; cursor: pointer;
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }

/* ===================== TRUST BAR ===================== */
.trust-bar {
  background: var(--navy);
  border-top: 2px solid var(--gold);
  padding: 32px 0;
}
.trust-items {
  display: flex; justify-content: center; align-items: center;
  gap: 48px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.9rem; color: var(--text); font-weight: 500;
}
.trust-icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: rgba(252,182,20,0.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}

/* ===================== SECTIONS ===================== */
.services { padding: var(--section-pad) 0; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-eyebrow {
  font-family: var(--font-heading); font-size: 0.8rem; font-weight: 600;
  color: var(--gold); text-transform: uppercase; letter-spacing: 3px;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  font-weight: 700; color: var(--white);
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1.05rem; color: var(--text-muted); max-width: 560px; margin: 0 auto;
}

/* ===================== SERVICES GRID ===================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--dark-card);
  border: 1px solid rgba(252,182,20,0.06);
  border-radius: 16px; padding: 36px;
  transition: all 0.3s;
}
.service-card:hover {
  border-color: rgba(252,182,20,0.25);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.service-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(252,182,20,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  margin-bottom: 20px;
}
.service-card h3 {
  font-family: var(--font-heading); font-size: 1.15rem;
  font-weight: 700; color: var(--white); margin-bottom: 12px;
}
.service-card p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.65; }

/* ===================== WHY US ===================== */
.why-us {
  padding: var(--section-pad) 0;
  background: var(--dark-mid);
}
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.why-features { display: flex; flex-direction: column; gap: 32px; }
.why-feature { display: flex; gap: 20px; }
.why-number {
  flex-shrink: 0; width: 44px; height: 44px;
  background: var(--gold); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 700; font-size: 1rem;
  color: var(--navy);
}
.why-feature h3 {
  font-family: var(--font-heading); font-size: 1.1rem;
  font-weight: 700; color: var(--white); margin-bottom: 6px;
}
.why-feature p { font-size: 0.95rem; color: var(--text-muted); }

.why-image {
  background: var(--dark-card); border-radius: 20px;
  aspect-ratio: 4/3; position: relative; overflow: hidden;
  border: 1px solid rgba(252,182,20,0.08);
}
.why-image-placeholder {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  height: 100%; gap: 16px;
  color: var(--text-muted); font-size: 0.9rem;
}

/* ===================== BOOKING ===================== */
.booking { padding: var(--section-pad) 0; }
.booking-wrapper {
  background: var(--dark-card);
  border: 1px solid rgba(252,182,20,0.08);
  border-radius: 24px; overflow: hidden;
}
.booking-header { padding: 48px 48px 24px; }
.booking-frame {
  width: 100%; min-height: 700px; border: none;
  border-radius: 0 0 24px 24px;
  background: #fff;
}

/* ===================== CONTACT ===================== */
.contact {
  padding: var(--section-pad) 0;
  background: var(--dark-mid);
}
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
}
.contact-info h3 {
  font-family: var(--font-heading); font-size: 1.1rem;
  font-weight: 700; color: var(--white); margin-bottom: 8px; margin-top: 28px;
}
.contact-info h3:first-child { margin-top: 0; }
.contact-info p { color: var(--text-muted); font-size: 0.95rem; }
.contact-info a { color: var(--gold); transition: color 0.25s; }
.contact-info a:hover { color: var(--gold-light); }

.contact-map { border-radius: 16px; overflow: hidden; min-height: 380px; }

/* ===================== FOOTER ===================== */
footer {
  border-top: 1px solid rgba(252,182,20,0.08);
  padding: 48px 0 32px;
}
.footer-inner {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 24px;
  margin-bottom: 32px;
}
.footer-brand { display: flex; align-items: center; gap: 16px; }
.footer-logo { height: 48px; width: auto; }
.footer-tagline { font-size: 0.9rem; color: var(--text-muted); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 0.85rem; color: var(--text-muted); transition: color 0.25s; }
.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  text-align: center;
}
.footer-copy { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 4px; }
.footer-address { font-size: 0.8rem; color: rgba(138,155,170,0.6); }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 900px) {
  .why-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .trust-items { gap: 20px; }
  nav ul { display: none; }
  .nav-cta { display: none; }
  .mobile-toggle { display: block; }
  .hero-content { padding-top: 140px; }
  .hero-logo-img { max-width: 260px; }
  :root { --section-pad: 64px; }
  .booking-header { padding: 32px 24px 16px; }
  .footer-brand { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 500px) {
  .trust-items { flex-direction: column; gap: 16px; }
  .hero-buttons { flex-direction: column; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
  .services-grid { grid-template-columns: 1fr; }
}

/* ===================== MOBILE NAV OPEN ===================== */
.nav-open nav ul {
  display: flex; flex-direction: column;
  position: absolute; top: 100%; left: 0; right: 0;
  background: var(--dark); padding: 24px;
  border-bottom: 2px solid var(--gold);
  gap: 16px;
}
