@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap');

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  --dark:       #1a2332;
  --slate:      #3d4f5c;
  --blue:       #00aeef;
  --blue-dark:  #0097d6;
  --blue-glow:  rgba(0, 174, 239, 0.18);
  --white:      #ffffff;
  --off-white:  #f4f7f9;
  --light:      #eef2f5;
  --text:       #1a2332;
  --muted:      #5a6e7a;
  --border:     #dce4ea;
  --heading:    'Oswald', sans-serif;
  --body:       'DM Sans', sans-serif;
  --radius:     8px;
  --radius-lg:  16px;
  --shadow-sm:  0 1px 3px rgba(0,0,0,.06), 0 4px 12px rgba(0,0,0,.06);
  --shadow-md:  0 4px 20px rgba(0,0,0,.10), 0 16px 48px rgba(0,0,0,.08);
  --shadow-lg:  0 8px 40px rgba(0,0,0,.14), 0 32px 80px rgba(0,0,0,.10);
}

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

html { scroll-behavior: smooth; }

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

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ============================================================
   NAVIGATION
   ============================================================ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  height: 72px;
  display: flex;
  align-items: center;
  padding: 0 5vw;
  justify-content: space-between;
  box-shadow: 0 1px 16px rgba(0,0,0,0.07);
}

.nav-logo {
  height: 48px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--slate);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--blue); }

.nav-cta {
  background: var(--blue);
  color: var(--white) !important;
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 700 !important;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
}

.nav-cta:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,174,239,0.35);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  background: var(--dark);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 100px 5vw 60px;
  gap: 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 80% at 80% 50%, rgba(0,174,239,0.13) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 10% 30%, rgba(61,79,92,0.45) 0%, transparent 60%);
  pointer-events: none;
}

/* --- Hero: Left Content --- */
.hero-content { position: relative; z-index: 1; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(0,174,239,0.12);
  color: var(--blue);
  border: 1px solid rgba(0,174,239,0.25);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.6s cubic-bezier(0.16,1,0.3,1) both;
}

.hero-eyebrow::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  display: inline-block;
  flex-shrink: 0;
}

.hero h1 {
  font-family: var(--heading);
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 1.25rem;
  animation: fadeUp 0.6s 0.1s cubic-bezier(0.16,1,0.3,1) both;
}

.hero h1 em {
  color: var(--blue);
  font-style: italic;
}

.hero-sub {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: rgba(255,255,255,0.6);
  max-width: 50ch;
  margin-bottom: 2rem;
  line-height: 1.75;
  animation: fadeUp 0.6s 0.2s cubic-bezier(0.16,1,0.3,1) both;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.6s 0.25s cubic-bezier(0.16,1,0.3,1) both;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
  font-weight: 500;
}

.trust-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  animation: fadeUp 0.6s 0.3s cubic-bezier(0.16,1,0.3,1) both;
}

.stat-num {
  font-family: var(--heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
}

.stat-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  margin-top: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

/* --- Hero: Right Card (Form) --- */
.hero-card {
  position: relative;
  z-index: 1;
  animation: fadeUp 0.7s 0.3s cubic-bezier(0.16,1,0.3,1) both;
}

/* ============================================================
   OFFER / BOOKING CARD
   ============================================================ */
.offer-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem 1.75rem;
  box-shadow: var(--shadow-lg);
}

.offer-pill {
  display: inline-block;
  background: rgba(0,174,239,0.1);
  color: var(--blue);
  border: 1px solid rgba(0,174,239,0.25);
  border-radius: 100px;
  padding: 0.3rem 0.9rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.offer-title {
  font-family: var(--heading);
  font-size: 1.85rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 0.3rem;
}

.offer-was {
  font-size: 0.875rem;
  color: var(--muted);
  text-decoration: line-through;
  margin-bottom: 0.15rem;
}

.offer-price {
  font-family: var(--heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 1.5rem;
}

/* ============================================================
   FORM ELEMENTS (shared)
   ============================================================ */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 0.75rem;
}

.form-group:last-of-type { margin-bottom: 0; }

.form-group label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 0.72rem 0.9rem;
  color: var(--text);
  font-family: var(--body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  background: var(--white);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #b0bec5;
}

.form-group textarea {
  resize: vertical;
  min-height: 90px;
}

.btn-submit {
  width: 100%;
  background: var(--blue);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  padding: 0.95rem 1.5rem;
  font-family: var(--heading);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  margin-top: 0.5rem;
}

.btn-submit:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,174,239,0.35);
}

.btn-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

.form-note {
  font-size: 0.75rem;
  color: var(--muted);
  text-align: center;
  margin-top: 0.75rem;
}

/* Form message states */
.form-message {
  display: none;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.form-message.success {
  display: block;
  background: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.form-message.error {
  display: block;
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* ============================================================
   BRANDS STRIP
   ============================================================ */
.brands-strip {
  background: var(--slate);
  padding: 1.25rem 5vw;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.brands-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  font-weight: 700;
  margin-right: 0.5rem;
}

.brand-chip {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.85);
  padding: 0.35rem 1rem;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border: 1px solid rgba(255,255,255,0.15);
  transition: background 0.2s, border-color 0.2s;
}

.brand-chip:hover {
  background: rgba(0,174,239,0.2);
  border-color: rgba(0,174,239,0.4);
}

/* ============================================================
   SECTIONS — shared
   ============================================================ */
.section {
  padding: 6rem 5vw;
}

.section-label {
  display: inline-block;
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 0.75rem;
}

.section-h2 {
  font-family: var(--heading);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--dark);
  margin-bottom: 1rem;
}

.section-body {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 54ch;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header .section-body {
  margin: 0 auto;
}

/* ============================================================
   WHY US
   ============================================================ */
.why-us {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  background: var(--white);
}

.why-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 400px;
  background: var(--light);
}

.why-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.why-float {
  position: absolute;
  top: 2rem;
  right: -1rem;
  background: var(--blue);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-md);
  min-width: 155px;
}

.why-float-num {
  font-family: var(--heading);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.why-float-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.75);
  margin-top: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.feature-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem 1.5rem;
  background: var(--off-white);
  border-radius: 10px;
  border-left: 3px solid var(--blue);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}

.feature-row:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  flex-shrink: 0;
  background: rgba(0,174,239,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--dark);
  margin-bottom: 0.2rem;
}

.feature-desc {
  font-size: 0.875rem;
  color: var(--muted);
}

/* ============================================================
   MODELS GRID
   ============================================================ */
.models {
  background: var(--off-white);
}

.models-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.model-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s cubic-bezier(0.16,1,0.3,1), box-shadow 0.25s;
}

.model-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.model-img {
  background: var(--light);
  padding: 1.5rem;
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.model-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.model-info {
  padding: 1rem 1.25rem 1.25rem;
}

.model-name {
  font-family: var(--heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
}

.model-badge {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: rgba(0,174,239,0.1);
  color: var(--blue);
  padding: 0.25rem 0.65rem;
  border-radius: 100px;
}

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.process {
  background: var(--dark);
  text-align: center;
}

.process .section-h2 {
  color: var(--white);
}

.process .section-body {
  margin: 0 auto;
  color: rgba(255,255,255,0.5);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  margin-top: 3.5rem;
}

.process-step {
  background: rgba(255,255,255,0.03);
  padding: 2.5rem 2rem;
  position: relative;
  transition: background 0.2s;
}

.process-step:hover { background: rgba(255,255,255,0.06); }

.step-num {
  font-family: var(--heading);
  font-size: 4rem;
  font-weight: 700;
  color: rgba(0,174,239,0.12);
  line-height: 1;
  position: absolute;
  top: 1.25rem;
  left: 1.5rem;
}

.step-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(0,174,239,0.12);
  border: 1px solid rgba(0,174,239,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  position: relative;
  z-index: 1;
}

.step-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.step-title {
  font-family: var(--heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}

.step-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

/* ============================================================
   LOCATION
   ============================================================ */
.location {
  background: var(--off-white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.location-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--white);
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  border-left: 3px solid var(--blue);
  box-shadow: var(--shadow-sm);
}

.location-card.muted-border {
  border-left-color: var(--muted);
}

.loc-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  flex-shrink: 0;
  background: rgba(0,174,239,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.loc-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.loc-icon.muted-icon { background: rgba(90,110,122,0.1); }
.loc-icon.muted-icon svg { stroke: var(--muted); }

.loc-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--dark);
  margin-bottom: 0.2rem;
}

.loc-value {
  font-size: 0.875rem;
  color: var(--muted);
}

.loc-value a {
  color: var(--blue);
  font-weight: 600;
}

.loc-value a:hover { text-decoration: underline; }

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 420px;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--dark);
  padding: 3.5rem 5vw 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 3rem;
  flex-wrap: wrap;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}

.footer-logo-img {
  height: 42px;
  width: auto;
  margin-bottom: 0.85rem;
  margin: auto;
  margin-bottom: 15px;
}

.footer-desc {
  color: rgba(255,255,255,0.4);
  font-size: 0.875rem;
  max-width: 32ch;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.footer-col ul { list-style: none; }

.footer-col a {
  display: block;
  color: rgba(255,255,255,0.45);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--blue); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  color: rgba(255,255,255,0.3);
  font-size: 0.8rem;
}

.footer-site {
  color: var(--blue);
  font-weight: 700;
  font-size: 0.875rem;
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.16,1,0.3,1), transform 0.6s cubic-bezier(0.16,1,0.3,1);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .models-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .why-us,
  .location {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .why-float { right: 1rem; }
}

@media (max-width: 768px) {
  nav { padding: 0 1.25rem; }
  .nav-links { display: none; }

  .hero {
    grid-template-columns: 1fr;
    padding: 90px 1.5rem 4rem;
    gap: 3rem;
  }

  .hero-stats { gap: 1.5rem; }

  .section { padding: 4rem 1.5rem; }

  .models-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }

  .footer-grid { flex-direction: column; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .models-grid,
  .process-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 1.25rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, .reveal {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
