/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  line-height: 1.6;
  color: #333;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  flex-direction: column;
  font-weight: bold;
}

.logo span:first-child {
  font-size: 1.3rem;
  color: #2563eb;
  /* blue */
}

.logo span:last-child {
  font-size: 1.3rem;
  margin-left: 4px;
  color: #f97316;
  /* orange */
}

.tagline {
  font-size: 0.75rem;
  font-weight: 500;
  color: #666;
}

nav {
  display: flex;
  gap: 20px;
}

nav a {
  font-size: 0.95rem;
  padding: 8px 12px;
  border-radius: 6px;
  transition: 0.3s;
  color: #444;
  font-weight: 500;
}

nav a:hover {
  background: #f3f4f6;
  color: #2563eb;
}

nav a.active {
  color: #2563eb;
  position: relative;
}

nav a.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: #2563eb;
  border-radius: 4px;
}

.btn-call {
  display: flex;
  align-items: center;
  background: #2563eb;
  color: #fff;
  padding: 8px 14px;
  border-radius: 8px;
  font-weight: 500;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  transition: background 0.3s;
}

.btn-call:hover {
  background: #1d4ed8;
}

.menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-btn svg {
  width: 28px;
  height: 28px;
  stroke: #2563eb;
}

/* Hero Section */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  line-height: 1.6;
  color: #333;
}

/* Hero Section */
.hero {
  background: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1350&q=80') center/cover no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 20px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 25px;
}

.btn-primary {
  display: inline-block;
  background: #f97316;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: bold;
  color: #fff;
  transition: 0.3s;
  margin-right: 15px;
}

.btn-primary:hover {
  background: #ea580c;
}

.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #2563eb;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: bold;
  color: #fff;
  transition: 0.3s;
}

.btn-call:hover {
  background: #1d4ed8;
}

.btn-call span {
  font-size: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .btn-primary,
  .btn-call {
    display: block;
    margin: 10px auto;
  }
}

.promo-section {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #2563eb, #f97316);
  color: white;
  position: relative;
  overflow: hidden;
}

.promo-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent);
  transform: rotate(25deg);
  animation: shine 6s linear infinite;
}

@keyframes shine {
  0% {
    transform: translateX(-100%) rotate(25deg);
  }

  100% {
    transform: translateX(100%) rotate(25deg);
  }
}

.promo-section h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.promo-section p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.highlight-blue {
  color: #bfdbfe;
  font-weight: bold;
}

.highlight-green {
  color: #bbf7d0;
  font-weight: bold;
}

.call-box {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: white;
  color: #2563eb;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.call-box:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.call-box svg {
  width: 22px;
  height: 22px;
  stroke: #2563eb;
}

@media (max-width:768px) {
  .promo-section h2 {
    font-size: 2rem;
  }

  .promo-section p {
    font-size: 1rem;
  }
}

/* Footer */
footer {
  background: #111827;
  color: #d1d5db;
  text-align: center;
  padding: 40px 20px;
  margin-top: 40px;
}

footer p {
  margin-top: 10px;
  font-size: 0.9rem;
}

/* Mobile */
@media (max-width: 768px) {
  nav {
    display: none;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }

  nav.active {
    display: flex;
    background: #fff;
    padding: 10px;
    border-radius: 8px;
    position: absolute;
    top: 70px;
    right: 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  }

  .btn-call {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .hero h1 {
    font-size: 2rem;
  }
}

/* Section background */
.deals-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #ffe5ec, #fff0e6);
  font-family: Arial, sans-serif;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Heading */
.heading {
  text-align: center;
  margin-bottom: 40px;
}

.heading .badge {
  display: inline-block;
  background: #ffe0eb;
  color: #d60036;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: bold;
}

.heading h2 {
  font-size: 32px;
  font-weight: 800;
  margin: 15px 0 10px;
  color: #222;
}

.heading p {
  font-size: 18px;
  color: #555;
}

/* Grid Layout */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

/* Deal Card */
.deal-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.deal-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Discount badge */
.discount {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #d60036;
  color: #fff;
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 20px;
  font-weight: bold;
}

/* Titles */
.deal-card h3 {
  font-size: 20px;
  margin: 10px 0;
  font-weight: bold;
  color: #222;
}

.deal-card p {
  font-size: 14px;
  color: #666;
}

/* Price */
.price {
  display: flex;
  gap: 10px;
  align-items: baseline;
  margin: 15px 0 5px;
}

.price .new {
  font-size: 22px;
  font-weight: bold;
  color: #16a34a;
}

.price .old {
  font-size: 16px;
  text-decoration: line-through;
  color: #999;
}

.save {
  font-size: 14px;
  color: #d60036;
  font-weight: 600;
}

/* CTA Button */
.cta {
  display: block;
  text-align: center;
  background: linear-gradient(90deg, #2563eb, #7c3aed);
  color: #fff;
  padding: 12px;
  border-radius: 8px;
  font-weight: bold;
  margin-top: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta:hover {
  background: linear-gradient(90deg, #7c3aed, #2563eb);
  color: whitesmoke;
}

/* Card color variations */
.deal-card.pink .discount {
  background: #e11d48;
}

.deal-card.orange .discount {
  background: #ea580c;
}

.deal-card.teal .discount {
  background: #0d9488;
}

.deal-card.purple .discount {
  background: #7c3aed;
}

/* CTA Section */
.cta-section {
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(135deg, #e0f7ff, #fff0f5);
}

/* Card Styling */
.cta-card {
  background: #ffffff;
  max-width: 500px;
  margin: 0 auto;
  padding: 30px 25px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.cta-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

/* Heading */
.cta-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: #222;
  margin-bottom: 15px;
}

/* Description */
.cta-card p {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
}

/* Button */
.cta-btn {
  display: inline-block;
  background: linear-gradient(90deg, #2563eb, #7c3aed);
  color: #fff;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: linear-gradient(90deg, #7c3aed, #2563eb);
  transform: translateY(-2px);
  color: white;
}

/* Note */
.cta-note {
  font-size: 12px;
  color: #888;
  margin-top: 10px;
}

/* Section Styles */
.why-choose {
  background: #f9faff;
  padding: 60px 20px;
  font-family: Arial, sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: #222;
  margin-bottom: 15px;
}

.section-header p {
  font-size: 16px;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.feature-card {
  background: #fff;
  padding: 25px 20px;
  border-radius: 12px;
  text-align: center;
  border: 2px solid #e0e0e0;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: #4f46e5;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Icon */
.feature-icon {
  font-size: 36px;
  background: #f0f4ff;
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  margin: 0 auto 15px;
}

/* Feature Title & Description */
.feature-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #222;
}

.feature-card p {
  font-size: 14px;
  color: #555;
  margin-bottom: 10px;
}

/* Feature Note */
.feature-note {
  display: inline-block;
  background: #eef2ff;
  color: #4f46e5;
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
}

/* CTA Box */
.cta-box {
  margin-top: 50px;
  text-align: center;
  background: linear-gradient(90deg, #d0e7ff, #d0ffd8);
  color: whitesmoke;
  padding: 30px 25px;
  border-radius: 12px;
}

.cta-box h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #222;
}

.cta-box p {
  font-size: 16px;
  color: #444;
  margin-bottom: 20px;
}

.cta-btn {
  display: inline-block;
  background: linear-gradient(90deg, #4f46e5, #10b981);
  color: #fff;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(90deg, #10b981, #4f46e5);
  color: #fff;
}

/* Section */
.popular-destinations {
  background: #f0f4ff;
  padding: 80px 20px;
  font-family: 'Poppins', sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 15px;
}

.section-header p {
  font-size: 18px;
  color: #475569;
  max-width: 700px;
  margin: 0 auto;
}

/* Grid */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

/* Card */
.destination-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.destination-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 40px rgba(0, 0, 0, 0.1);
}

/* Card Image */
.card-image {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.destination-card:hover .card-image img {
  transform: scale(1.1);
}

/* Rating Badge */
.rating {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #fff;
  color: #facc15;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  font-size: 14px;
}

/* Card Content */
.card-content {
  padding: 20px;
  text-align: center;
}

.card-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 10px;
}

.card-content p {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 12px;
}

.location {
  font-size: 13px;
  color: #94a3b8;
  margin-bottom: 10px;
}

.price {
  font-size: 16px;
  font-weight: 700;
  color: #10b981;
  margin-bottom: 15px;
}

/* CTA Button */
.cta-btn {
  display: inline-block;
  background: linear-gradient(90deg, #4f46e5, #10b981);
  color: #fff;
  padding: 10px 18px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(90deg, #10b981, #4f46e5);
}

/* CTA Box */
.cta-box {
  margin-top: 60px;
  background: linear-gradient(135deg, #d0e7ff, #d0ffd8);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.05);
}

.trusted-stats {
  padding: 80px 20px;
  background: #f0f4ff;
  font-family: 'Poppins', sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.stats-box {
  background: linear-gradient(135deg, #1e3a8a, #2563eb);
  border-radius: 20px;
  padding: 40px 30px;
  color: #fff;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.stats-header h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

.stats-header p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 30px;
}

/* Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  text-align: center;
}

/* Cards */
.stat-card {
  padding: 20px 10px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.2);
}

.stat-number {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 14px;
  opacity: 0.85;
}

/* Responsive */
@media (min-width: 640px) {
  .stat-number {
    font-size: 32px;
  }

  .stat-label {
    font-size: 15px;
  }
}

@media (min-width: 1024px) {
  .stat-number {
    font-size: 36px;
  }

  .stat-label {
    font-size: 16px;
  }
}

.ready-join {
  max-width: 600px;
  margin: 2rem auto;
  padding: 1.5rem;
  border: 2px solid #fcd34d;
  /* yellow border */
  border-radius: 12px;
  background-color: #fff9eb;
  /* light yellow background */
  text-align: center;
  font-family: Arial, sans-serif;
}

.ready-join h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #111827;
  /* dark text */
}

.ready-join p {
  font-size: 1rem;
  color: #4b5563;
  /* gray text */
  margin-bottom: 1rem;
}

.call-btn {
  display: inline-block;
  font-size: 1.25rem;
  font-weight: bold;
  color: #16a34a;
  /* green */
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  border: 2px solid #16a34a;
  transition: background-color 0.3s, color 0.3s;
}

.call-btn:hover {
  background-color: #16a34a;
  color: #ffffff;
}

.note {
  font-size: 0.85rem;
  color: #6b7280;
  /* gray */
  margin-top: 0.5rem;
}

/* Footer Container */
footer {
  background: #0b3d91;
  /* Primary color */
  color: #fff;
  font-family: 'Arial', sans-serif;
  position: relative;
  overflow: hidden;
}

/* Top Curve */
footer .top-curve {
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 50px;
  background: #fff;
  border-radius: 50% / 100%;
}

.contact-hero {
  background: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  color: white;
  padding: 100px 0;
  text-align: center;
  position: relative;
}

.contact-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.contact-hero .container {
  position: relative;
  z-index: 2;
}

.contact-form {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.contact-form .form-control:focus {
  box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

.btn-primary {
  background: #0d6efd;
  border: none;
  transition: all 0.3s;
}

.btn-primary:hover {
  background: #0056b3;
}

.contact-info h5 {
  color: #0d6efd;
}

.map-responsive {
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  height: 0;
}

.map-responsive iframe {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
  border: 0;
}