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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.6;
  color: #1f2937;
  background: #f9fafb;
}

/* ===== CONTAINER ===== */
.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* ===== NAVBAR ===== */
header {
  background: #0d3b66;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  color: white;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.25s ease;
  cursor: pointer;
}

.btn.primary {
  background: #e76f51;
  color: white;
}

.btn.primary:hover {
  background: #d65a3c;
  transform: translateY(-1px);
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(rgba(13,59,102,0.75), rgba(13,59,102,0.75)),
              url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c') center/cover no-repeat;
  color: white;
  padding: 110px 20px;
  text-align: center;
}

.hero h2 {
  font-size: 2.6rem;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 25px;
  opacity: 0.95;
}

/* ===== FEATURES ===== */
.features {
  padding: 60px 0;
}

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

.grid div {
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  transition: 0.25s ease;
}

.grid div:hover {
  transform: translateY(-5px);
}

.grid h3 {
  margin-bottom: 10px;
  color: #0d3b66;
}

/* ===== HOW IT WORKS (UPGRADED) ===== */
.how {
  padding: 80px 20px;
  background: #f1f5f9;
  text-align: center;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 8px;
}

.section-subtitle {
  color: #6b7280;
  font-size: 1.05rem;
  margin-bottom: 50px;
}

/* Grid layout instead of flex */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  position: relative;
}

/* Optional connector line (subtle) */
.steps::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: #e5e7eb;
  z-index: 0;
}

/* Step cards */
.step {
  background: #ffffff;
  padding: 30px 22px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  transition: all 0.25s ease;
  position: relative;
  z-index: 1;
}

.step:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(0,0,0,0.10);
}

/* Icon circle */
.step-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 15px;
  background: #0d3b66;
  color: #fff;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

/* Step text */
.step h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: #0d3b66;
}

.step p {
  font-size: 0.95rem;
  color: #6b7280;
  line-height: 1.5;
}

/* CTA button under steps */
.cta-btn {
  margin-top: 40px;
}

/* ===== MOBILE ===== */
@media (max-width: 900px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps::before {
    display: none;
  }
}

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

/* ===== PRICING SECTION (UPGRADED) ===== */
.pricing {
  padding: 80px 20px;
  text-align: center;
}

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

/* Card base */
.price-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 35px 25px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  position: relative;
}

.price-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

/* Featured (middle one) */
.price-card.featured {
  border: 2px solid #e76f51;
  transform: scale(1.05);
}

.price-card.featured:hover {
  transform: scale(1.05) translateY(-8px);
}

/* Badge */
.badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #e76f51;
  color: white;
  padding: 6px 12px;
  font-size: 0.75rem;
  border-radius: 20px;
  font-weight: 600;
}

/* Text styling */
.price {
  font-size: 2.4rem;
  color: #e76f51;
  margin: 15px 0;
  font-weight: 700;
}

.package {
  color: #6b7280;
  margin-bottom: 20px;
}

.price-card ul {
  list-style: none;
  margin: 20px 0;
  padding: 0;
}

.price-card li {
  margin: 10px 0;
  color: #374151;
}

/* Responsive */
@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .price-card.featured {
    transform: scale(1);
  }
}

/* ===== CTA / BOOKING ===== */
.cta {
  background: #0d3b66;
  color: white;
  padding: 70px 20px;
  text-align: center;
}

.cta h2 {
  margin-bottom: 15px;
}

.booking-form {
  margin-top: 25px;
}

.booking-form input {
  width: 100%;
  max-width: 420px;
  padding: 12px;
  margin: 8px auto;
  display: block;
  border-radius: 6px;
  border: none;
  outline: none;
}

.booking-form input:focus {
  box-shadow: 0 0 0 2px #e76f51;
}

.booking-form button {
  margin-top: 10px;
}


.booking-form select {
  width: 100%;
  max-width: 420px;
  padding: 12px;
  margin: 8px auto;
  display: block;
  border-radius: 6px;

  border: none;
  outline: none;

  box-sizing: border-box;
  font-family: inherit;
  font-size: 16px;

  /* Remove default dropdown look */
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  background-image: url("data:image/svg+xml;utf8,<svg fill='%230d3b66' height='20' viewBox='0 0 20 20' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M5 7l5 5 5-5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;

  cursor: pointer;

  background-color: #f9f9f9;

}


.booking-form select:focus {
  box-shadow: 0 0 0 2px #e76f51;
}
/* ===== SEO SECTION ===== */
.seo-section {
  background: #f8f9fb;
  padding: 70px 20px;
}

.seo-container {
  max-width: 900px;
  margin: 0 auto;
}

.seo-section h2 {
  text-align: center;
  font-size: 28px;
  color: #0d3b66;
  margin-bottom: 15px;
}

.seo-intro {
  text-align: center;
  font-size: 17px;
  color: #444;
  margin-bottom: 20px;
}

.seo-text {
  text-align: center;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* Highlight box */
.seo-highlight {
  background: white;
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.seo-highlight h3 {
  margin-bottom: 12px;
  color: #0d3b66;
}

.seo-highlight ul {
  list-style: none;
  padding: 0;
}

.seo-highlight li {
  margin-bottom: 10px;
  padding-left: 22px;
  position: relative;
  color: #444;
}

/* Custom check icons */
.seo-highlight li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #e76f51;
  font-size: 14px;
}

/* Areas section */
.seo-areas {
  margin-bottom: 20px;
}

.seo-areas h3 {
  color: #0d3b66;
  margin-bottom: 8px;
}

.seo-areas p {
  color: #555;
}

/* Footer text */
.seo-footer {
  margin-top: 25px;
  font-size: 14px;
  color: #777;
  text-align: center;
}

@media (min-width: 768px) {
  .seo-highlight ul {
    columns: 2;
    column-gap: 40px;
  }
}


/* ===== FOOTER ===== */
footer {
  background: #1f2937;
  color: #d1d5db;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
}

/* ===== MOBILE OPTIMIZATION ===== */
@media (max-width: 768px) {
  .hero h2 {
    font-size: 2rem;
  }

  .steps {
    flex-direction: column;
  }

  .nav {
    flex-direction: column;
    gap: 10px;
  }
}
