/* =======================================================
   RESET & BASE
======================================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background: #f8fafc;
  color: #111827;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 10px;
  object-fit: cover;
}

/* =======================================================
   NAVBAR
======================================================= */
.main-navbar {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.2rem;
  gap: 1rem;
}

.brand-logo { height: 54px; }

.nav-links {
  display: flex;
  gap: 1rem;
}

.nav-link {
  font-weight: 500;
  color: #374151;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  transition: 0.3s;
}

.nav-link:hover,
.nav-link.active {
  background: #eff6ff;
  color: #2563eb;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.nav-login-btn {
  background: #2563eb;
  color: #fff;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 4px 10px rgba(37,99,235,0.25);
}

.nav-login-btn:hover { 
  background: #1e40af; 
  box-shadow: 0 6px 14px rgba(30,64,175,0.3);
}

.hamburger {
  display: none;
  font-size: 1.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
}

/* =======================================================
   MOBILE MENU
======================================================= */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.3);
  display: flex;
  pointer-events: none;
  z-index: 1200;
}

.mobile-menu-inner {
  background: #fff;
  width: 280px;
  max-width: 85%;
  height: 100%;
  transform: translateX(-120%);
  transition: transform .3s ease;
  padding: 1rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  pointer-events: auto;
}

.mobile-menu[aria-hidden="false"] .mobile-menu-inner {
  transform: translateX(0);
}

.mobile-close {
  background: none;
  border: none;
  font-size: 1.2rem;
  float: right;
  cursor: pointer;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  padding-top: 1rem;
}

.mobile-link {
  padding: .6rem;
  border-radius: 8px;
  color: #111;
  transition: 0.3s;
}

.mobile-link:hover { background: #f3f4f6; }

.mobile-actions { margin-top: 1rem; }

/* =======================================================
   HERO
======================================================= */
.hero-modern {
  position: relative;
  height: 75vh;
  min-height: 380px;
  background: url("https://images.hdqwalls.com/wallpapers/nature-beach-wallpaper.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 72px;
}

.hero-overlay {
  background: rgba(0,0,0,0.35);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 2rem;
  border-radius: 10px;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
}

.hero-content h1 span { color: #38bdf8; }

.hero-content p {
  margin: 1rem 0 1.5rem;
  font-size: 1.15rem;
  opacity: 0.95;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.btn-hero {
  background: #2563eb;
  color: #fff;
  padding: 0.8rem 1.8rem;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s;
  box-shadow: 0 4px 12px rgba(37,99,235,0.3);
}

.btn-hero:hover { 
  background: #1e40af;
  box-shadow: 0 6px 16px rgba(30,64,175,0.35);
}

.btn-hero.secondary {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}

/* =======================================================
   SECTIONS & HEADINGS
======================================================= */
.section-head {
  text-align: center;
  margin-bottom: 2rem;
}

.section-head h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #111827;
}

.muted {
  color: #6b7280;
  font-size: 1rem;
}

/* =======================================================
   DESTINATIONS
======================================================= */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
  gap: 1.5rem;
  margin: 2.5rem auto;
}

.destination-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: transform .3s, box-shadow .3s;
}

.destination-card:hover { 
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.media img { height: 200px; }

.deal-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: linear-gradient(45deg,#ff5f2e,#ff6600);
  color: #fff;
  font-weight: 600;
  font-size: .85rem;
  padding: 6px 12px;
  border-radius: 8px;
}

.card-body h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* =======================================================
   SPECIAL OFFERS
======================================================= */
.special-offers {
  background: #f0f9ff;
  padding: 2.5rem 0;
}

.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.carousel-controls {
  display: flex;
  gap: .5rem;
}

.control {
  background: #fff;
  border: 1px solid #e5e7eb;
  padding: .5rem;
  border-radius: 8px;
  cursor: pointer;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.offer-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  overflow: hidden;
}

.offer-card img { height: 150px; object-fit: cover; }

.offer-body { padding: 1rem; }

.price-sec {
  display: flex;
  gap: .6rem;
  margin: .6rem 0;
  align-items: center;
}

.price-sec .old {
  text-decoration: line-through;
  color: #9ca3af;
}

.price-sec .price {
  color: #ff6600;
  font-weight: 700;
}

.btn-primary {
  background: #2563eb;
  color: #fff;
  border: none;
  padding: .6rem 1rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: .3s;
}

.btn-primary:hover { background: #1e40af; }

.btn-outline {
  background: transparent;
  border: 1px solid #d1d5db;
  padding: .6rem 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.btn-outline:hover { background: #f3f4f6; }

/* =======================================================
   WHY CHOOSE US
======================================================= */
.why-choose-us { padding: 3rem 0; }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 1.25rem;
}

.benefit-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.2rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.benefit-card img { height: 60px; margin-bottom: 0.8rem; }

/* =======================================================
   TESTIMONIALS
======================================================= */
.testimonials {
  background: #f9fafb;
  padding: 3rem 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
  gap: 1rem;
}

.testimonial-card {
  background: #fff;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.testimonial-card .t-head {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-bottom: .6rem;
}

.testimonial-card .t-head img {
  width: 50px; height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

/* =======================================================
   CONTACT
======================================================= */
.contact-us {
  background: linear-gradient(135deg,#2563eb,#1e3a8a);
  color: #fff;
  padding: 3rem 0;
}

.contact-container {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.contact-form {
  background: #fff;
  color: #111;
  padding: 1.5rem;
  border-radius: 12px;
  margin-top: 1.5rem;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.form-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.9rem;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  background: #f9fafb;
}

.contact-btn {
  background: #ff6600;
  color: #fff;
  border: none;
  padding: 0.9rem 1.5rem;
  border-radius: 30px;
  font-weight: 700;
  cursor: pointer;
  transition: .3s;
}

.contact-btn:hover { background: #e05500; }

/* =======================================================
   FOOTER - PROFESSIONAL & CLEAR
======================================================= */
.footer {
  background: #111827;
  color: #d1d5db;
  padding: 4rem 1rem 2rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  border-bottom: 1px solid #374151;
  padding-bottom: 2rem;
}

.foot-logo { height: 50px; margin-bottom: 1rem; }

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}

.footer-links h4 {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links ul { list-style: none; padding: 0; margin: 0; }

.footer-links ul li { margin: 0.5rem 0; }

.footer-links ul li a {
  color: #d1d5db;
  font-weight: 400;
  transition: color 0.3s;
}

.footer-links ul li a:hover { color: #60a5fa; }

.footer-social {
  display: flex;
  gap: 0.8rem;
  margin-top: 1rem;
}

.footer-social a {
  display: inline-flex;
  width: 40px;
  height: 40px;
  background: #1e293b;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  transition: all 0.3s;
}

.footer-social a:hover {
  background: #2563eb;
  transform: translateY(-2px);
}

.copyright {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.9rem;
  color: #9ca3af;
  padding-top: 1rem;
}

/* =======================================================
   RESPONSIVE
======================================================= */
@media (max-width: 900px) {
  .hero-modern { height: 56vh; }
}

@media (max-width: 720px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
  .hero-modern { min-height: 50vh; }
  .destinations-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; gap: 2rem; }
  .footer-social { justify-content: center; }
}
