/* =========================================================
   ROOT VARIABLES
========================================================= */

:root {
  --primary: #0f172a;
  --secondary: #1e293b;
  --slate: #334155;
  --light: #f8fafc;
  --border: #e2e8f0;
  --accent: #0ea5e9;
  --white: #ffffff;
}

/* =========================================================
   RESET
========================================================= */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--white);
  color: var(--slate);
  line-height: 1.6;
}

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

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

/* =========================================================
   CONTAINER
========================================================= */

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =========================================================
   BUTTONS
========================================================= */

.btn {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border: 1px solid var(--primary);
}

.btn-primary:hover {
  background: #0b1220;
}

.btn-secondary {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--slate);
}

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* =========================================================
   HEADER + NAVIGATION
========================================================= */

header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

/* LOGO */
.logo {
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--primary);
}

.logo span {
  color: var(--accent);
}

/* NAV (DESKTOP) */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  font-weight: 500;
  color: var(--slate);
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--primary);
}

/* keep buttons aligned */
.nav-menu .btn {
  white-space: nowrap;
}

/* =========================================================
   HAMBURGER BUTTON
========================================================= */

.nav-toggle {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--slate);
}

/* =========================================================
   MOBILE NAVIGATION (IMPORTANT FIX)
========================================================= */

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    gap: 12px;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu a {
    width: 100%;
    padding: 10px 0;
  }
}

/* =========================================================
   HERO SECTION
========================================================= */

.hero {
  padding: 80px 0;
  text-align: center;
}

.hero-subtitle {
  margin-top: 12px;
  color: var(--slate);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta-group {
  margin-top: 20px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =========================================================
   HERO IMAGE (RESPONSIVE + CENTERED)
========================================================= */

.hero-image-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  padding: 0 10px;
}

.hero-image {
  width: 100%;
  max-width: 950px;
  height: auto;
  display: block;
  border-radius: 12px;
  object-fit: cover;
}

/* =========================================================
   SECTIONS
========================================================= */

section {
  padding: 60px 0;
}

/* SECTION TITLE */
.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h2 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 10px;
}

/* =========================================================
   GRID (SERVICES + FAQ)
========================================================= */

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* CARD */
.service-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  background: var(--white);
}

/* =========================================================
   BOOKING / FORM
========================================================= */

.booking-section {
  background: var(--light);
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

@media (max-width: 768px) {
  .booking-grid {
    grid-template-columns: 1fr;
  }
}

.form-group {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 8px;
}

/* =========================================================
   FOOTER
========================================================= */

footer {
  background: var(--primary);
  color: var(--white);
  padding: 60px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-bottom {
  margin-top: 30px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  font-size: 0.9rem;
}

/* =========================================================
   FOOTER (CLEAN STRUCTURE)
========================================================= */

.footer {
  background: var(--primary);
  color: #fff;
  padding: 60px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.footer-logo {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.footer-title {
  font-size: 1rem;
  margin-bottom: 10px;
  color: #cbd5e1;
}

.footer-text {
  font-size: 0.9rem;
  color: #cbd5e1;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  color: #cbd5e1;
  transition: 0.2s;
}

.footer-links a:hover {
  color: #ffffff;
}

/* Bottom section */
.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-legal {
  font-size: 0.85rem;
  margin-bottom: 10px;
}

.footer-network {
  font-size: 0.8rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.5;
  color: #94a3b8;
}

.footer-network a {
  color: #cbd5e1;
  text-decoration: underline;
}

/* =========================================================
   UTILITY
========================================================= */

.text-center {
  text-align: center;
}
