/* ========================
   Global Styles
======================== */
:root {
  --primary: #2563eb;
  --primary-dark: #1e40af;
  --dark: #0f172a;
  --gray: #64748b;
  --bg: #f1f5f9;
  --white: #ffffff;
  --radius: 14px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--dark);
  line-height: 1.6;
}

/* ========================
   Buttons
======================== */
.btn-primary {
  display: inline-block;
  padding: 14px 30px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.35);
  transition: all 0.3s ease;
}

.btn-primary:active {
  transform: scale(0.98);
}


/* ========================
   Hero Section
======================== */
.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at top right, #3b82f6, #1e3a8a);
  color: #fff;
  text-align: center;
  padding: 40px 20px;
}

.hero-content {
  max-width: 700px;
}

.hero h1 {
  font-size: clamp(2.3rem, 4vw, 3.2rem);
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero p {
  font-size: 1.1rem;
  opacity: 0.95;
  margin-bottom: 32px;
}

/* ========================
   Features Section
======================== */
.features {
  max-width: 1200px;
  margin: -80px auto 80px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.feature {
  background: var(--white);
  border-radius: var(--radius);
  padding: 35px 30px;
  text-align: center;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.feature:hover {
  transform: translateY(-8px);
}

.feature h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.feature p {
  color: var(--gray);
  font-size: 0.95rem;
}


/* ========================
   Mobile
======================== */
@media (max-width: 768px) {
  .features {
    margin-top: -50px;
  }
}

/* ========================
   Header
======================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-container {
  max-width: 1200px;
  margin: auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
}

.logo span {
  color: var(--primary);
}

/* ========================
   Navigation
======================== */
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  position: relative;
  text-decoration: none;
  font-weight: 500;
  color: var(--dark);
  transition: color 0.3s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.nav a:hover::after {
  width: 100%;
}

.nav a:hover {
  color: var(--primary);
}

/* Contact button style */
.nav-btn {
  padding: 8px 18px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff !important;
}

.nav-btn::after {
  display: none;
}

.nav-btn:hover {
  background: var(--primary-dark);
}

/* ========================
   Footer
======================== */
footer {
  background: #020617;
  color: #94a3b8;
  padding: 30px 15px;
  text-align: center;
  font-size: 0.9rem;
}


/* ========================
   Mobile Header
======================== */
@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    gap: 12px;
  }

  .nav {
    gap: 18px;
    flex-wrap: wrap;
    justify-content: center;
  }
}


/* ========================
   Logo Image (Improved)
======================== */
.logo img {
  height: 42px;
  width: auto;
  display: block;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

@media (min-width: 768px) {
  .logo img {
    height: 50px;
  }
}


/* ========================
   Booking Page (Final)
======================== */
.booking-section {
  background: linear-gradient(
    180deg,
    rgba(241, 245, 249, 1),
    rgba(226, 232, 240, 0.6)
  );
}

.booking-wrapper {
  max-width: 500px;
  margin: auto;
  background: #fff;
  padding: 35px;
  border-radius: 18px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
}

.booking-title {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 6px;
}

.booking-subtitle {
  text-align: center;
  color: var(--gray);
  font-size: 0.95rem;
  margin-bottom: 30px;
}

.booking-form select {
  width: 100%;
  padding: 13px 14px;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  font-size: 0.95rem;
  background: #fff;
}
.booking-form select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}


/* Form */
.booking-form .form-group {
  margin-bottom: 18px;
}

.booking-form label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 6px;
  font-weight: 500;
}

.booking-form input,
.booking-form textarea {
  width: 100%;
  padding: 13px 14px;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  font-size: 0.95rem;
  transition: border 0.3s ease;
}

.booking-form textarea {
  resize: vertical;
  min-height: 90px;
}

.booking-form input:focus,
.booking-form textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.booking-form input:focus,
.booking-form textarea:focus {
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}


/* Button */
.btn-full {
  width: 100%;
  margin-top: 10px;
}

/* Trust Note */
.booking-note {
  margin-top: 15px;
  font-size: 0.85rem;
  text-align: center;
  color: var(--gray);
}

/* Mobile */
@media (max-width: 480px) {
  .booking-wrapper {
    padding: 25px;
  }
}


/* ========================
   Thank You Page
======================== */
.thankyou-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.thankyou-card {
  background: #fff;
  padding: 40px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
}

.checkmark {
  font-size: 3rem;
  color: #22c55e;
  margin-bottom: 15px;
  animation: pop 0.5s ease;
}

@keyframes pop {
  0% { transform: scale(0.5); }
  100% { transform: scale(1); }
}


/* ========================
   Floating Buttons
======================== */
.floating-buttons {
  position: fixed;
  right: 15px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

.float-call,
.float-whatsapp {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.float-call {
  background: #2563eb;
}

.float-whatsapp {
  background: #22c55e;
}

