/* ============================================
   DESIGN TOKENS
   ============================================ */
:root {
  --color-bg: #F5F5F5;
  --color-bg-card: #ffffff;
  --color-bg-muted: #EFEFEF;
  --color-text: #111111;
  --color-text-muted: #6B6B6B;
  --color-text-body: #333333;
  --color-accent: #1A56DB;
  --color-accent-dark: #1240A8;
  --color-border: #E0E0E0;
  --color-dark: #111111;

  --font-display: 'Plus Jakarta Sans', 'Inter', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 999px;

  --max-width: 1180px;
}

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

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

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

h1, h2, .display-font {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}

button { font-family: inherit; cursor: pointer; border: none; }

/* ============================================
   LAYOUT
   ============================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding: 64px 32px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-muted {
  background: var(--color-bg-muted);
  border-radius: var(--radius-xl);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-weight: 600;
  border-radius: var(--radius-pill);
  transition: opacity 0.15s ease;
}
.btn:hover { opacity: 0.85; }

.btn-dark {
  background: var(--color-dark);
  color: #fff;
  padding: 10px 20px;
  font-size: 13px;
}

.btn-dark-lg {
  background: var(--color-dark);
  color: #fff;
  padding: 13px 26px;
  font-size: 14px;
}

.btn-full {
  width: 100%;
  padding: 13px;
  font-size: 14px;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 32px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 15px;
}

.navbar-links {
  display: flex;
  gap: 28px;
  font-size: 13px;
  color: var(--color-text-muted);
}
.navbar-links a:first-child { color: var(--color-text); }

/* ============================================
   HERO
   ============================================ */
.hero {
  padding-top: 36px;
  text-align: center;
}

.hero-title {
  font-size: 54px;
  font-weight: 800;
  line-height: 1.1;
  max-width: 760px;
  margin: 0 auto 18px;
}

.hero-subtitle {
  font-size: 15px;
  color: var(--color-text-muted);
  max-width: 480px;
  margin: 0 auto 28px;
  line-height: 1.7;
}

/* ============================================
   HERO BANNER
   ============================================ */
.hero-banner {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-banner-pattern {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
}

.hero-banner-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 18px;
  color: #fff;
}

.hero-banner-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.15);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 10px;
}

/* ============================================
   CARDS
   ============================================ */
.card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 26px;
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--color-bg-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--color-accent);
  font-size: 20px;
}

.card-title {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 8px;
}

.card-text {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ============================================
   GRIDS
   ============================================ */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.areas-grid {
  max-width: 720px;
  margin: 0 auto;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 24px;
}

/* ============================================
   SECTION HEADINGS
   ============================================ */
.section-title {
  font-size: 26px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
}

.section-subtitle {
  font-size: 14px;
  color: var(--color-text-muted);
  text-align: center;
  margin-bottom: 32px;
}

/* ============================================
   STAT CARDS
   ============================================ */
.stat-tag {
  background: var(--color-bg-muted);
  font-size: 11px;
  font-weight: 600;
  color: var(--color-text-muted);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 800;
  margin: 16px 0 4px;
}

.stat-label {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.step-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-weight: 700;
  font-size: 16px;
  font-family: var(--font-display);
}

.step { text-align: center; }
.step-title { font-size: 13px; font-weight: 600; margin-bottom: 4px; }
.step-text { font-size: 12px; color: var(--color-text-muted); }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial {
  background: var(--color-bg-muted);
  border-radius: 18px;
  padding: 22px;
}

.testimonial-quote {
  font-size: 13px;
  color: var(--color-text-body);
  line-height: 1.6;
  margin-bottom: 14px;
}

.testimonial-author { font-size: 12px; font-weight: 600; }

/* ============================================
   FAQ
   ============================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 620px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 16px 18px;
}

.faq-item summary {
  font-size: 14px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  cursor: pointer;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-plus { transition: transform 0.2s; }
.faq-item[open] .faq-plus { transform: rotate(45deg); }
.faq-answer { font-size: 13px; color: var(--color-text-muted); margin-top: 10px; line-height: 1.6; }

/* ============================================
   BOOKING FORM
   ============================================ */
.booking-card {
  max-width: 580px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 32px;
}

.booking-title { font-size: 22px; font-weight: 700; margin-bottom: 4px; }
.booking-subtitle { font-size: 13px; color: var(--color-text-muted); margin-bottom: 24px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.form-group { margin-bottom: 12px; }
.form-group:last-of-type { margin-bottom: 18px; }

.form-label {
  font-size: 12px;
  color: var(--color-text-muted);
  display: block;
  margin-bottom: 4px;
}

input, select, textarea {
  width: 100%;
  padding: 10px 13px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  font-family: inherit;
  font-size: 13px;
  background: #fff;
  color: var(--color-text);
}
input::placeholder, textarea::placeholder { color: #A8A39A; }
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--color-accent);
}

.form-success {
  font-size: 12px;
  color: var(--color-accent);
  margin-top: 12px;
  text-align: center;
  font-weight: 500;
  display: none;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--color-dark);
  color: #fff;
  padding: 48px 32px 28px;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-weight: 700;
  font-size: 15px;
}

.footer-text { font-size: 12px; color: rgba(255,255,255,0.55); line-height: 1.6; max-width: 260px; }
.footer-heading { font-size: 12px; color: rgba(255,255,255,0.4); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.5px; }
.footer-link { font-size: 13px; margin-bottom: 6px; color: rgba(255,255,255,0.85); }

/* ============================================
   MISC
   ============================================ */
.pill-row { display: flex; gap: 8px; flex-wrap: wrap; }

.pill {
  background: var(--color-bg-muted);
  font-size: 12px;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 12px;
  height: 300px;
}

.about-tile-primary {
  background: var(--color-bg-muted);
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  font-size: 110px;
}

.about-tile-stack { display: flex; flex-direction: column; gap: 12px; }

.about-tile-dark, .about-tile-accent {
  border-radius: 22px;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 44px;
}

.about-tile-dark { background: var(--color-dark); }
.about-tile-accent { background: var(--color-accent); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 700px) {
  .section { padding: 44px 20px; }
  .hero-title { font-size: 34px; }
  .grid-2 { grid-template-columns: 1fr; }
  .navbar-links { display: none; }
  .stats-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; height: auto; }
  .about-tile-primary { min-height: 180px; }
  .about-tile-stack { flex-direction: row; }
  .about-tile-dark, .about-tile-accent { min-height: 100px; }
  .footer-inner { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
}
