:root {
  --navy: #0b1220;
  --navy-2: #121b2e;
  --blue: #3fa9f5;
  --blue-2: #1d7fd6;
  --white: #ffffff;
  --off-white: #f4f7fb;
  --gray: #98a2b3;
  --gray-light: rgba(255, 255, 255, 0.12);
  --black: #000000;
  --surface: #0d0f14;
  --off-black: #09090b;
  --text: #f5f7fa;
  --radius: 14px;
  --shadow: 0 25px 50px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.07);
  --container: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--black);
  -webkit-font-smoothing: antialiased;
}

img, video { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-2);
  margin-bottom: 12px;
}

h1, h2, h3, h4 { line-height: 1.15; margin: 0 0 16px; font-weight: 800; }
h2 { font-size: clamp(28px, 4vw, 40px); }
h3 { font-size: 20px; }
p { line-height: 1.7; color: var(--gray); margin: 0 0 16px; }

.section { padding: 96px 0; }
.section-head { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.section-head p { margin: 0; }
.bg-off { background: var(--off-black); }
.bg-navy { background: var(--navy); color: var(--white); }
.bg-navy p { color: #aab6c8; }
.bg-navy h2 { color: var(--white); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color: var(--white);
  box-shadow: 0 12px 24px rgba(29, 127, 214, 0.35);
}
.btn-primary:hover { box-shadow: 0 16px 30px rgba(29, 127, 214, 0.45); }
.btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.12); }
.btn-outline-navy {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--text);
}
.btn-outline-navy:hover { background: var(--white); color: var(--black); border-color: var(--white); }
.btn-block { width: 100%; }

/* Nav */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: box-shadow 0.2s ease;
}
.nav.is-scrolled { box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 76px;
}
.nav-logo { flex-shrink: 0; min-width: 0; }
.nav-logo img { height: 34px; width: auto; max-width: 100%; }
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0; padding: 0;
  font-weight: 600;
  font-size: 15px;
}
.nav-links a { color: var(--text); opacity: 0.8; transition: opacity 0.15s ease; }
.nav-links a:hover { opacity: 1; }
.nav-cta { display: flex; align-items: center; gap: 20px; }
.nav-phone { font-weight: 700; font-size: 15px; display: none; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--text); }
.nav-mobile {
  display: none;
  position: fixed;
  top: 76px; left: 0; right: 0;
  height: calc(100vh - 76px);
  overflow-y: auto;
  background: var(--black);
  z-index: 99;
  padding: 32px 24px;
  flex-direction: column;
  gap: 24px;
  font-size: 20px;
  font-weight: 700;
}
.nav-mobile.is-open { display: flex; }
.nav-mobile a { padding: 10px 0; border-bottom: 1px solid var(--gray-light); }

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}
.hero-media {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 10, 20, 0.75) 0%, rgba(6, 10, 20, 0.55) 45%, rgba(6, 10, 20, 0.88) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 76px;
}
.hero h1 {
  font-size: clamp(40px, 6.4vw, 76px);
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}
.hero h1 .accent { color: var(--blue); }
.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: #dbe4f0;
  max-width: 560px;
  margin-bottom: 34px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-badges {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  max-width: 720px;
}
.hero-badge { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 14px; color: #e7edf6; }
.hero-badge svg { flex-shrink: 0; color: var(--blue); }
.scroll-cue {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.7);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.scroll-cue .line { width: 1px; height: 28px; background: rgba(255,255,255,0.5); animation: scrollpulse 1.8s ease-in-out infinite; }
@keyframes scrollpulse { 0%,100% { opacity: 0.3; } 50% { opacity: 1; } }

/* Services */
.accent-text { color: var(--blue); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.step-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 44px 32px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.step-card:hover { transform: translateY(-6px); box-shadow: 0 30px 55px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.1); }
.step-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(63, 169, 245, 0.14);
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
}
.step-card h3 { margin-bottom: 10px; }
.step-card p { margin-bottom: 0; font-size: 15px; }
.card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 30px 55px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.1); }
.card-media { aspect-ratio: 4/3; overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.card:hover .card-media img { transform: scale(1.06); }
.card-body { padding: 26px 26px 30px; }
.card-body h3 { margin-bottom: 10px; }
.card-body p { margin-bottom: 0; font-size: 15px; }

/* Stats */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 56px 0;
}
.stat { text-align: center; }
.stat .num { font-size: clamp(28px, 4vw, 40px); font-weight: 800; color: var(--blue); }
.stat .label { font-size: 14px; color: #aab6c8; font-weight: 600; }

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-media { position: relative; }
.about-media img { border-radius: var(--radius); box-shadow: var(--shadow); }
.about-media .float-card {
  position: absolute;
  bottom: -24px; right: -24px;
  background: var(--surface);
  color: var(--text);
  border-radius: var(--radius);
  padding: 18px 22px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
}
.about-media .float-card svg { color: var(--blue-2); flex-shrink: 0; }
.checklist { list-style: none; margin: 24px 0; padding: 0; display: grid; gap: 12px; }
.checklist li { display: flex; align-items: flex-start; gap: 12px; font-weight: 600; color: var(--text); }
.checklist svg { color: var(--blue-2); margin-top: 3px; flex-shrink: 0; }

/* Packages */
.pkg-rows { display: grid; gap: 28px; }
.pkg-row {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  background: var(--navy);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.pkg-row.reverse { grid-template-columns: 1.15fr 0.85fr; }
.pkg-row.reverse .pkg-row-media { order: 2; }
.pkg-row.reverse .pkg-row-body { order: 1; }
.pkg-row-media { position: relative; height: 420px; align-self: stretch; }
.pkg-row-media img { width: 100%; height: 100%; object-fit: cover; }
.pkg-row-tag {
  position: absolute; top: 20px; left: 20px;
  background: var(--blue); color: var(--navy);
  font-size: 12px; font-weight: 800; letter-spacing: 0.06em;
  padding: 8px 16px; border-radius: 999px; text-transform: uppercase;
}
.pkg-row-body { padding: 40px 44px; color: var(--white); display: flex; flex-direction: column; }
.pkg-row-top { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.pkg-row-body h3 { color: var(--white); margin-bottom: 0; font-size: 24px; }
.pkg-row-note { display: block; font-size: 13px; font-weight: 500; color: #7f93ad; margin-top: 4px; }
.pkg-row-price { font-size: 26px; font-weight: 800; color: var(--blue); white-space: nowrap; }
.pkg-row-price span { font-size: 12px; font-weight: 700; color: #7f93ad; margin-left: 4px; }
.pkg-row-duration { font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: #7f93ad; margin: 8px 0 18px; }
.pkg-row-body p { color: #c3ceda; margin-bottom: 20px; }
.pkg-row-body .pkg-features { margin-bottom: 26px; }
.pkg-row-body .pkg-features li { color: #e7edf6; }
.pkg-row-body .btn { align-self: flex-start; }
.pkg-features { list-style: none; margin: 0 0 28px; padding: 0; display: grid; gap: 12px; }
.pkg-features li { display: flex; gap: 10px; font-size: 14.5px; color: var(--text); font-weight: 500; }
.pkg-features svg { color: var(--blue); flex-shrink: 0; margin-top: 2px; }
.pkg-note-footer { text-align: center; margin: 32px 0 0; font-size: 14px; }

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}
.gallery-grid a, .gallery-grid .gallery-video { border-radius: 12px; overflow: hidden; display: block; position: relative; }
.gallery-grid img, .gallery-grid video { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-grid a:hover img, .gallery-grid .gallery-video:hover video { transform: scale(1.08); }
.gallery-grid .tall { grid-row: span 2; }
.gallery-grid .wide { grid-column: span 2; }
.gallery-label {
  position: absolute; top: 14px; left: 14px;
  background: rgba(11, 18, 32, 0.75);
  backdrop-filter: blur(4px);
  color: var(--white);
  font-size: 12px; font-weight: 800; letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px; border-radius: 999px;
}
.gallery-label.after { background: var(--blue-2); }

/* Location */
.location-wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.location-list { list-style: none; margin: 24px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 12px; }
.location-list li {
  background: rgba(63, 169, 245, 0.12);
  color: var(--blue-2);
  font-weight: 700;
  font-size: 14px;
  padding: 10px 18px;
  border-radius: 999px;
}
.map-card {
  background: var(--navy-2);
  border-radius: var(--radius);
  padding: 40px;
  color: var(--white);
  box-shadow: var(--shadow);
}
.map-card .row { display: flex; gap: 16px; margin-bottom: 24px; align-items: flex-start; }
.map-card .row:last-child { margin-bottom: 0; }
.map-card svg { color: var(--blue); flex-shrink: 0; margin-top: 2px; }
.map-card h4 { margin: 0 0 4px; font-size: 15px; }
.map-card p { margin: 0; color: #aab6c8; font-size: 14px; }

/* FAQ */
.faq-list { max-width: 760px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item { border: 1px solid var(--gray-light); border-radius: 12px; overflow: hidden; background: var(--surface); }
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 22px 24px;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  color: var(--text);
}
.faq-q .plus { font-size: 22px; color: var(--blue-2); transition: transform 0.2s ease; flex-shrink: 0; margin-left: 16px; }
.faq-item.is-open .faq-q .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.25s ease; }
.faq-a p { padding: 0 24px 22px; margin: 0; }

/* CTA / Contact */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, #16233d 100%);
  color: var(--white);
  border-radius: 28px;
  padding: 64px;
  text-align: center;
  margin: 0 24px;
  max-width: calc(var(--container) - 48px);
  margin-inline: auto;
}
.cta-section h2 { color: var(--white); }
.cta-section p { color: #aab6c8; max-width: 520px; margin: 0 auto 32px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.contact-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 16px;
}
.contact-card svg { color: var(--blue-2); flex-shrink: 0; }
.contact-card h4 { margin: 0 0 2px; font-size: 15px; }
.contact-card p { margin: 0; font-size: 14px; }
.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-weight: 700; font-size: 13px; margin-bottom: 8px; }
.form-field input, .form-field textarea, .form-field select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid var(--gray-light);
  font-family: inherit;
  font-size: 15px;
  background: var(--surface);
  color: var(--text);
}
.form-field textarea { resize: vertical; min-height: 90px; }
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  outline: none;
  border-color: var(--blue-2);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.checkbox-group { display: grid; gap: 10px; }
.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 500;
  font-size: 14.5px;
  color: var(--text);
  cursor: pointer;
}
.checkbox-field input[type="checkbox"] {
  width: 18px; height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--blue-2);
  cursor: pointer;
}
.consent-text { font-weight: 400; font-size: 12.5px; color: var(--gray); line-height: 1.6; }

.file-input-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.file-drop {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border: 1px dashed var(--gray-light);
  border-radius: 10px;
  background: var(--surface);
  color: var(--gray);
  font-size: 14px;
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.file-drop:hover, .file-drop.has-file { border-color: var(--blue-2); color: var(--text); }
.file-drop svg { flex-shrink: 0; color: var(--blue-2); }
.photo-preview {
  margin-top: 12px;
  max-height: 220px;
  width: auto;
  border-radius: 10px;
  border: 1px solid var(--gray-light);
}

/* Footer */
.footer { background: var(--navy); color: #aab6c8; padding: 72px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.footer-logo img { height: 32px; margin-bottom: 16px; }
.footer h5 { color: var(--white); font-size: 14px; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 20px; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.footer a { font-size: 14.5px; transition: color 0.15s ease; }
.footer a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
}
.social-row { display: flex; gap: 12px; margin-top: 8px; }
.social-row a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
}
.social-row a:hover { background: var(--blue-2); border-color: var(--blue-2); }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (min-width: 900px) { .nav-phone { display: inline-flex; align-items: center; gap: 8px; } }

@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .about-grid, .location-wrap, .contact-grid { grid-template-columns: 1fr; }
  .about-media .float-card { position: static; margin-top: 16px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .pkg-row, .pkg-row.reverse { grid-template-columns: 1fr; }
  .pkg-row-media, .pkg-row.reverse .pkg-row-media { order: 1; height: 260px; }
  .pkg-row-body, .pkg-row.reverse .pkg-row-body { order: 2; padding: 32px; }
}

@media (max-width: 620px) {
  .section { padding: 64px 0; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .cta-section { padding: 40px 24px; border-radius: 20px; }
  .hero-badges { gap: 18px; }
  .hero-actions .btn { flex: 1 1 auto; }
  .pkg-row-body { padding: 28px 24px; }
  .pkg-row-top { flex-direction: column; align-items: flex-start; gap: 4px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
}

@media (max-width: 480px) {
  .nav-inner { gap: 10px; }
  .nav-logo img { height: 26px; }
  .nav-cta { gap: 10px; }
  .nav-cta .btn-primary { display: none; }
}
