/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", Arial, sans-serif;
}

body {
  background: #f5f7fa;
  color: #333;
}

a {
  text-decoration: none;
}
.popular-deals container{
    
    display:grid
}

/* ================= CONTAINER ================= */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;}
 

/* ================= HEADER ================= */
.header {
  background: #0a2540;
  position: sticky;
  top: 0;
  z-index: 999;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  color: #fff;
  font-size: 22px;
  font-weight: 600;
}

/* NAV */
.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links a {
  color: #fff;
  font-size: 15px;
  padding: 8px 14px;
  border-radius: 6px;
  transition: 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(255, 255, 255, 0.15);
}

/* MOBILE MENU */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: #fff;
  margin: 4px 0;
}

/* ================= HERO ================= */
.hero {
  height: 90vh;
  background: linear-gradient(rgba(10,37,64,.6), rgba(10,37,64,.6)),
              url("../images/travel.png") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.section-title{
    text-align: center;
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 25px;
}

.hero-btn {
  background: #ffb703;
  color: #0a2540;
  padding: 14px 34px;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s;
}

.hero-btn:hover {
  background: #ffd166;
}

/* ================= FEATURES ================= */
.features {
  padding: 80px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card {
  background: #fff;
  padding: 35px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  transition: .3s;
}

.feature-card:hover {
  transform: translateY(-8px);
}

/* ================= DEALS HERO ================= */
.deals-hero {
    height: 70vh;
  background: linear-gradient(rgba(10,37,64,.65), rgba(10,37,64,.65)),
              url("../images/deals.png") center/cover no-repeat;
  padding: 100px 20px;
  text-align: center;
  color: #fff;
}

.deals-hero h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

/* ================= FILTER ================= */
.deal-filter {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 40px auto 60px;
  flex-wrap: wrap;
}

.deal-filter select {
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid #ccc;
  background: #fff;
}

/* ================= DEALS GRID ================= */
.deals-grid {
    padding: 25px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 3fr));
  gap: 30px;
  padding-bottom: 80px;
}

/* ================= DEAL CARD ================= */
.deal-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0,0,0,.1);
  transition: .3s;
}

.deal-card:hover {
  transform: translateY(-8px);
}

.deal-card img {
  
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.deal-info {
  padding: 22px;
}

.deal-info h3 {
  font-size: 20px;
  margin-bottom: 8px;

  color: #0a2540;
}

.deal-info p {
  font-size: 14px;
  color: #555;
}
.deal-content  h3{
     padding: 10px;
}
.deal-content p{
    font-size: 15px;
    padding: 10px;
    color: orange;
}
.deal-content span{
    display: block;
  margin: 12px 0 16px;
  font-size: 18px;
  font-weight: 600;
  padding: 10px;
  color: #21b52e;
}

.deal-info span {
  display: block;
  margin: 12px 0 16px;
  font-size: 18px;
  font-weight: 600;

  color: #ff6b35;
}

.deal-info button {
  padding: 10px 22px;
  border-radius: 25px;
  border: none;
  background: linear-gradient(135deg, #00c2ff, #0077ff);
  color: #fff;
  cursor: pointer;
}


.hero-content-1 img{
    width: 100%;
}

/* ================= CTA ================= */
.cta {
  background: linear-gradient(135deg, #0a2540, #133b5c);
  padding: 70px 20px;
  text-align: center;
  color: #fff;
}

.cta h2 {
  font-size: 34px;
}

.cta-btn {
  background: #ffb703;
  color: #0a2540;
  padding: 14px 36px;
  border-radius: 30px;
  font-weight: 600;
}

/* ================= FOOTER ================= */
.footer {
  background: #081c33;
  color: #ccc;
  text-align: center;
  padding: 20px;
}
.packages-hero {
  background: linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.55)),
              url("../images/package.png") center/cover no-repeat;
  padding: 100px 20px;
  text-align: center;
  color: #fff;
}

.packages-hero h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.packages-hero p {
  font-size: 17px;
  opacity: 0.95;
}

/* ================= PACKAGE CONTAINER ================= */
.package-container {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
}

/* ================= FILTER ================= */
.package-filter {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.package-filter select {
  padding: 12px 18px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 14px;
  min-width: 200px;
}

/* ================= GRID ================= */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* ================= CARD ================= */
.package-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
  transition: 0.3s;
  width: 100%;
}

.package-card:hover {
  transform: translateY(-8px);
}

.package-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

/* ================= CARD INFO ================= */
.package-info {
  padding: 22px;
}

.package-info h3 {
  font-size: 20px;
  margin-bottom: 6px;
  color: #0a2540;
}

.package-meta {
  font-size: 13px;
  color: #777;
  margin-bottom: 10px;
}

.package-info p {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
}

.package-price {
  font-size: 20px;
  font-weight: 600;
  color: #ff6b35;
  margin-bottom: 15px;
}

.package-info button {
  padding: 10px 20px;
  border-radius: 25px;
  border: none;
  background: #0a2540;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s;
}

.package-info button:hover {
  background: #133b5c;
}

/* ================= CTA ================= */
.cta {
  background: linear-gradient(135deg, #0a2540, #133b5c);
  padding: 70px 20px;
  text-align: center;
  color: #fff;
}

.cta h2 {
  font-size: 34px;
  margin-bottom: 10px;
}

.cta p {
  font-size: 16px;
  margin-bottom: 25px;
}

.cta a {
  background: #ffb703;
  color: #0a2540;
  padding: 14px 36px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}

/* ================= FOOTER ================= */
.footer {
  background: #081c33;
  color: #ccc;
  text-align: center;
  padding: 20px;
  font-size: 14px;
}
.contact-hero {
  background: linear-gradient(rgba(10,37,64,.6), rgba(10,37,64,.6)),
              url("../images/contact.png") center/cover no-repeat;
  padding: 100px 20px;
  text-align: center;
  color: #fff;
}

.contact-hero h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

/* CONTACT SECTION */
.contact-section {
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

/* INFO */
.contact-info h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.contact-info p {
  margin-bottom: 20px;
  color: #555;
}

.contact-info ul {
  list-style: none;
}

.contact-info li {
  margin-bottom: 12px;
}

/* FORM */
.contact-form {
  background: #fff;
  padding: 35px;
  border-radius: 18px;
  box-shadow: 0 15px 35px rgba(0,0,0,.1);
}

.contact-form h2 {
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 18px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.contact-form button {
  width: 100%;
  padding: 14px;
  background: #ffb703;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
}

.contact-form button:hover {
  background: #ffd166;
}

.error {
  color: #e63946;
  font-size: 12px;
}

.success-msg {
  color: #2a9d8f;
  text-align: center;
  margin-top: 10px;
}

/* FOOTER */
.footer {
  background: #081c33;
  color: #ccc;
  text-align: center;
  padding: 18px;
  font-size: 14px;
}
/* ================= FOOTER ================= */
.site-footer {
  background: #081c33;
  color: #ccc;
  padding: 60px 20px 20px;
  font-size: 14px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* Brand */
.footer-logo {
  color: #fff;
  font-size: 22px;
  margin-bottom: 10px;
}

/* Columns */
.footer-col h4 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 12px;
}

.footer-col p {
  line-height: 1.6;
  font-size: 14px;
}

/* Links */
.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #ffb703;
  padding-left: 4px;
}

/* Bottom */
.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 40px;
  padding-top: 15px;
  font-size: 13px;
  color: #aaa;
}
/* ================= OTHER SERVICES ================= */
.other-services {
  padding: 60px 8%;
  background: #fff;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #000;
}

/* Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* Card */
.service-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 14px;
  padding: 28px 22px 32px;
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  transform: translateY(-5px);
}

/* Icon */
.service-icon {
  margin-bottom: 18px;
}

.service-icon img {
  width: 48px;
  height: auto;
}

/* Text */
.service-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
  color: #222;
}

.service-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  flex-grow: 1;
}

/* Link */
.service-link {
  margin-top: 18px;
  font-size: 16px;
  font-weight: 600;
  color: #ff0000;
  text-decoration: none;
}

.service-link:hover {
  text-decoration: underline;
}

/* ================= RESPONSIVE ================= */

/* Laptop */
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Tablet */
@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 520px) {
  .section-title {
    font-size: 26px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 576px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-col ul li a:hover {
    padding-left: 0;
  }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-hero h1 {
    font-size: 34px;
  }
}
/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .packages-hero h1 {
    font-size: 34px;
  }
}

@media (max-width: 600px) {
  .packages-grid {
    grid-template-columns: 1fr;
  }

  .packages-hero {
    padding: 70px 20px;
  }

  .packages-hero h1 {
    font-size: 28px;
  }

  .package-filter select {
    width: 100%;
  }
}
/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #0a2540;
    flex-direction: column;
    display: none;
    padding: 20px 0;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

  .features {
    grid-template-columns: 1fr;
  }

  .deal-card img {
    height: 190px;
  }
}

@media (max-width: 480px) {
  .deal-info button {
    width: 100%;
  }
}
