* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

.nav-header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.container {
  width: 90%;
  margin: auto;
  padding: 14px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 26px;
  font-weight: bold;
  color: #333;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-menu li a {
  text-decoration: none;
  color: #333;
  font-size: 18px;
  transition: 0.3s;
}

.nav-menu li a:hover {
  color: #007bff;
}

/* MOBILE MENU BUTTON */
.menu-icon {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.menu-icon span {
  width: 30px;
  height: 3px;
  background: #333;
  transition: 0.3s;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    padding-top: 80px;
    gap: 20px;
    text-align: left;
    padding-left: 30px;
    transition: 0.4s ease-in-out;
  }

  .nav-menu.active {
    right: 0;
  }

  .menu-icon {
    display: flex;
  }
}


/* HERO SECTION */
.hero-section {
  width: 100%;
  height: 70vh;
  background: url('https://wallpapercave.com/wp/wp1846068.jpg') center/cover no-repeat;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Overlay */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.55);  /* Dark transparent overlay */
}

/* Content */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 20px;
}

.hero-content h1 {
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 25px;
}

.hero-btn {
  padding: 12px 30px;
  background: #0257b3;
  color: #fff;
  font-size: 18px;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.3s;
}

.hero-btn:hover {
  background: black;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .hero-section {
    height: 50vh;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .hero-btn {
    font-size: 16px;
    padding: 10px 22px;
  }
}


.review-process {
  padding: 80px 0;
  background: #f8f9fa;
  font-family: Arial, sans-serif;
}

.container-review {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #222;
}

.section-subtitle {
  font-size: 18px;
  color: #555;
  margin-bottom: 40px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* Cards */
.review-card {
  background:#0011ff30;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.icon-box {
  font-size: 40px;
  margin-bottom: 15px;
}

.review-card h3 {
  font-size: 22px;
  color: #111;
  margin-bottom: 12px;
}

.review-card p {
  font-size: 16px;
  color: #555;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .review-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .review-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 28px;
  }
}


.airline-reviews {
  padding: 80px 0;
  background: #f5f7fa;
  font-family: Arial, sans-serif;
}

.reviews-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.reviews-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #222;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

/* CARD DESIGN */
.review-card {
  background:#0011ff30;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.07);
  transition: 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.review-card img {
  width: 150px;
  height: 100px;
  object-fit: contain;
  padding: 0px;
}

.review-card h3 {
  font-size: 22px;
  margin: 15px;
  color: #111;
}

.stars {
  font-size: 18px;
  color: #ff9800;
  margin: 0 15px;
}

.review-card p {
  font-size: 15px;
  color: #555;
  margin: 10px 15px 20px 15px;
}

.read-btn {
  display: inline-block;
  margin: 0 15px 20px 15px;
  padding: 10px 20px;
  background: #007bff;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  transition: 0.3s;
}

.read-btn:hover {
  background: #005dc1;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .reviews-title {
    font-size: 28px;
  }
}


/* MAIN FOOTER */
.main-footer {
  background: #005dc1;
  color: #d9d9d9;
  padding: 60px 0 0 0;
  font-family: Arial, sans-serif;
}

.footer-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

/* Footer box */
.footer-box h3 {
  font-size: 20px;
  margin-bottom: 18px;
  color: #fff;
}

.footer-box p {
  line-height: 1.6;
  font-size: 15px;
}

.footer-box ul {
  list-style: none;
  padding: 0;
}

.footer-box ul li {
  margin-bottom: 10px;
}

.footer-box ul li a {
  color: #d9d9d9;
  text-decoration: none;
  transition: 0.3s;
}

.footer-box ul li a:hover {
  color: #00aaff;
}

/* Contact specific style */
.contact-list li {
  font-size: 15px;
  margin-bottom: 10px;
}

/* COPYRIGHT BAR */
.footer-bottom {
  margin-top: 40px;
  background: #0257b3;
  text-align: center;
  padding: 15px 0;
}

.footer-bottom p {
  margin: 0;
  font-size: 14px;
  color: #ccc;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer-box {
    text-align: left;
  }
}

/*reviews css*/

/* HERO SECTION */
.heroX-section {
  position: relative;
  height: 50vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-family: Arial, sans-serif;
}

/* OVERLAY */
.heroX-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #005dc1;
  backdrop-filter: blur(1px);
}

/* CONTENT */
.heroX-content {
  position: relative;
  text-align: center;
  z-index: 2;
  padding: 0 20px;
}

.heroX-content h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
}

.heroX-content p {
  font-size: 18px;
  margin-bottom: 25px;
}

.heroX-btn {
  display: inline-block;
  background: #00aaff;
  color: #fff;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 16px;
  transition: 0.3s ease;
}

.heroX-btn:hover {
  background: #0085cc;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  .heroX-section {
    height: 60vh;
  }

  .heroX-content h1 {
    font-size: 32px;
  }

  .heroX-content p {
    font-size: 16px;
  }
}


/* ---------- GLOBAL PAGE STYLING ---------- */
.delta-review-page {
    font-family: "Poppins", Arial, sans-serif;
    line-height: 1.8;
    padding: 30px 20px;
    max-width: 1100px;
    margin: auto;
    color: #333;
}

/* Heading Styles */
.delta-review-page h1 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 25px;
    color: #003e8a;
    font-weight: 700;
}

.delta-review-page h2 {
    font-size: 28px;
    margin: 35px 0 15px 0;
    color: #004fa3;
}

.delta-review-page h3 {
    font-size: 22px;
    margin: 20px 0 10px 0;
    color: #0057b4;
}

/* Paragraphs */
.delta-review-page p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #444;
}

/* ---------- IMAGE ---------- */
.delta-review-page img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}


/* ---------- PROS & CONS SECTION ---------- */
.review-flexboxX {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 25px;
}

/* Pros Card */
.review-prosX {
    flex: 1;
    min-width: 300px;
    background: #e9f9ee;
    padding: 25px;
    border-radius: 12px;
    border-left: 6px solid #1ca64c;
    box-shadow: 0 5px 14px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
}

.review-prosX:hover {
    transform: translateY(-5px);
}

/* Cons Card */
.review-consX {
    flex: 1;
    min-width: 300px;
    background: #ffecec;
    padding: 25px;
    border-radius: 12px;
    border-left: 6px solid #d92626;
    box-shadow: 0 5px 14px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
}

.review-consX:hover {
    transform: translateY(-5px);
}

/* List Items */
.delta-review-page ul {
    padding-left: 20px;
}

.delta-review-page li {
    margin-bottom: 10px;
    font-size: 16px;
}


/* ---------- MOBILE RESPONSIVE ---------- */
@media (max-width: 768px) {

    .delta-review-page {
        padding: 15px;
    }

    .delta-review-page h1 {
        font-size: 32px;
    }

    .delta-review-page h2 {
        font-size: 24px;
    }

    .delta-review-page img {
        border-radius: 10px;
    }

    .review-prosX, .review-consX {
        padding: 20px;
    }
}




.review-process {
  padding: 70px 20px;
  background: #f8fafc;
  font-family: Arial, sans-serif;
}

.container-review {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.section-title {
  font-size: 32px;
  margin-bottom: 10px;
}

.section-subtitle {
  color: #555;
  max-width: 750px;
  margin: 0 auto 50px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.review-card {
  background:#0257b324;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.review-card:hover {
  transform: translateY(-8px);
}

.icon-box {
  width: 60px;
  height: 60px;
  background: #2563eb;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
}

.review-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.review-card p {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
}
.hero-v2 {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 20px;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  overflow: hidden;
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
}

/* animated background blur */
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(59,130,246,0.25), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(14,165,233,0.25), transparent 40%);
  filter: blur(30px);
  z-index: 1;
}

/* content wrapper */
.hero-wrapper {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: auto;
  text-align: center;
  animation: fadeUp 1.2s ease;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 14px;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.hero-wrapper h1 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-wrapper h1 span {
  color: #38bdf8;
}

.hero-wrapper p {
  max-width: 680px;
  margin: 0 auto 35px;
  font-size: 18px;
  color: #cbd5f5;
  line-height: 1.7;
}

/* buttons */
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: #38bdf8;
  color: #020617;
  padding: 14px 34px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #0ea5e9;
  transform: translateY(-3px);
}

.btn-outline {
  border: 2px solid rgba(255,255,255,0.35);
  color: #fff;
  padding: 14px 34px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-3px);
}

/* animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* mobile optimization */
@media (max-width: 768px) {
  .hero-wrapper p {
    font-size: 16px;
  }
}

.review-hero {
  position: relative;
  padding: 110px 20px 90px;
  background: linear-gradient(180deg, #020617, #020617 60%, #020617f0);
  color: #fff;
  overflow: hidden;
  font-family: 'Inter', system-ui, sans-serif;
}

/* ambient glow */
.review-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 300px at 15% 25%, rgba(34,211,238,.15), transparent),
    radial-gradient(600px 300px at 85% 75%, rgba(99,102,241,.18), transparent);
  filter: blur(40px);
  z-index: 1;
}

.review-hero-wrap {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin: auto;
  text-align: center;
}

/* label */
.review-label {
  display: inline-block;
  background: rgba(255,255,255,0.08);
  padding: 7px 18px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: .6px;
  margin-bottom: 18px;
  text-transform: uppercase;
}

/* heading */
.review-hero-wrap h1 {
  font-size: clamp(34px, 5vw, 60px);
  font-weight: 750;
  line-height: 1.1;
  margin-bottom: 20px;
}

.review-hero-wrap h1 span {
  color: #22d3ee;
}

/* description */
.review-hero-wrap p {
  max-width: 760px;
  margin: 0 auto 45px;
  font-size: 18px;
  line-height: 1.7;
  color: #c7d2fe;
}

/* stats */
.review-stats {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.review-stats div {
  text-align: center;
}

.review-stats strong {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: #f8fafc;
}

.review-stats span {
  font-size: 14px;
  color: #94a3b8;
}

/* animation */
.review-hero-wrap {
  animation: slideFade 1.1s ease;
}

@keyframes slideFade {
  from {
    opacity: 0;
    transform: translateY(35px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* mobile */
@media (max-width: 768px) {
  .review-stats {
    gap: 30px;
  }

  .review-hero-wrap p {
    font-size: 16px;
  }
}

.trip-review-wrap {
  max-width: 1100px;
  margin: auto;
  padding: 80px 20px;
  font-family: Inter, system-ui, sans-serif;
  color: #0f172a;
  line-height: 1.7;
}

/* header */
.trip-review-header {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
}

.review-tag {
  display: inline-block;
  background: #e0f2fe;
  color: #0369a1;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  margin-bottom: 14px;
}

.trip-review-header h1 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.15;
  margin-bottom: 16px;
}

.trip-review-header p {
  font-size: 18px;
  color: #475569;
}

.trip-review-image img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,.12);
}

/* intro */
.trip-review-intro {
  max-width: 820px;
  margin-bottom: 60px;
}

/* pros cons */
.trip-review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 30px;
  margin-bottom: 70px;
}

.trip-card {
  padding: 30px;
  border-radius: 16px;
  background: #f8fafc;
}

.trip-card h3 {
  margin-bottom: 14px;
}

.trip-card ul {
  padding-left: 18px;
}

.trip-card li {
  margin-bottom: 8px;
}

.trip-card.pros {
  border-left: 6px solid #22c55e;
}

.trip-card.cons {
  border-left: 6px solid #ef4444;
}

/* details */
.trip-review-details h2 {
  margin-bottom: 30px;
  font-size: 30px;
}

.trip-review-details article {
  margin-bottom: 28px;
}

.trip-review-details h4 {
  font-size: 18px;
  margin-bottom: 6px;
}

/* verdict */
.trip-review-verdict {
  margin-top: 70px;
  padding: 40px;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #fff;
  border-radius: 18px;
}

.trip-review-verdict h2 {
  margin-bottom: 14px;
}

/* mobile */
@media (max-width: 900px) {
  .trip-review-header {
    grid-template-columns: 1fr;
  }
}

.about-The Wander Lust World {
  padding: 60px 20px;
  background: #f7f9fc;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #1c1c1c;
}

.about-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.about-intro p {
  font-size: 1.1rem;
  line-height: 1.8;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.about-block h2 {
  font-size: 1.8rem;
  color: #0073e6;
  margin-bottom: 15px;
  position: relative;
}

.about-block h2::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: #ff6b6b;
  margin-top: 5px;
  border-radius: 2px;
}

.about-block p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 15px;
}

.about-block ul {
  list-style: none;
  padding-left: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
}

.about-block ul li {
  position: relative;
  padding-left: 25px;
  line-height: 1.6;
}

.about-block ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #ff6b6b;
}

.highlight {
  color: #0073e6;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .about-block ul {
    grid-template-columns: 1fr;
  }
}


.contact-The Wander Lust World {
  padding: 60px 20px;
  background: #ffffff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #1c1c1c;
}

.contact-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.contact-header h2 {
  font-size: 1.8rem;
  color: #0073e6;
  margin-bottom: 10px;
  position: relative;
}

.contact-header h2::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: #ff6b6b;
  margin-top: 5px;
  border-radius: 2px;
}

.contact-header p {
  font-size: 1rem;
  line-height: 1.7;
}

.contact-form-wrap {
  background: #f7f9fc;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-form .form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}

.contact-form label {
  margin-bottom: 5px;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
  resize: vertical;
}

.contact-btn {
  padding: 15px 25px;
  background: #0073e6;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-btn:hover {
  background: #005bb5;
}

.contact-info p {
  font-size: 1rem;
  line-height: 1.6;
}

.contact-info strong {
  color: #0073e6;
}

@media screen and (max-width: 768px) {
  .contact-container {
    padding: 20px;
  }
}
