/*------ Reset -------*/
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}
body {
  font-family: Arial, Helvetica, sans-serif;
  color: #222;
  background: #fff;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}

/*------ COMMON ------*/
.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}
.section {
  padding: 20px 0;
}
/* =========================
   HEADER
========================= */

.site-header {
  position: absolute;

  top: 0;
  left: 0;

  width: 100%;

  z-index: 1000;

  padding: 0;

  background: #fff;
}

.header-inner {
  display: flex;

  align-items: center;

  justify-content: space-between;
}

/* Logo */

.logo {
  display: flex;

  flex-direction: column;

  color: #0c0267;

  font-size: 22px;

  font-weight: 800;

  line-height: 1;
}

.logo span {
  margin-top: 4px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.8;
}

/* Desktop Navigation */

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  color: #0c0267;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.main-nav a:hover {
  color: #d18f00;
}

/* Plan Trip */

.plan-trip-btn {
  padding: 11px 20px;

  border-radius: 30px;

  background: #facc15;

  color: #111 !important;

  font-weight: 700 !important;
}

.plan-trip-btn:hover {
  background: #facc15;
  color: #dc2626 !important;
}

/* Mobile Button */

.mobile-menu-btn {
  display: none;

  width: 42px;
  height: 42px;

  padding: 9px;

  border: 0;

  background: transparent;

  cursor: pointer;
}

.mobile-menu-btn span {
  display: block;

  width: 24px;
  height: 2px;

  margin: 5px auto;

  background: #0b0b0b;

  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

/* Mobile Navigation */

.mobile-nav {
  display: none;

  padding: 20px 5% 25px;

  background: rgb(240 240 240 / 97%);

  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.mobile-nav a {
  display: block;

  padding: 13px 0;

  color: #111;

  font-size: 14px;

  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-nav a:hover {
  color: #f8d734;
}

/* Mobile Plan Button */

.mobile-nav .mobile-plan-btn {
  margin-top: 15px;

  padding: 13px 20px;

  border: 0;

  border-radius: 30px;

  background: #facc15;

  text-align: center;

  font-weight: 700;
  display: none;
}

/* =========================
   MOBILE
========================= */
/* ---HeroImage--- */
.hero {
  min-height: 470px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
    url(../images/north-india-baneer-a.jpg);
  background-size: cover;
  background-position: center;
  margin-top: 87px;
  padding: 0 20px;
}
.hero-inner {
  width: min(1200px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  align-items: center;
  gap: 70px;
  padding: 80px 0;
}
.hero-content {
  width: min(1200px, 92%);
  margin: 0px auto;
  color: #fff;
}
.hero-small-title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 20px;
}
.hero h1 {
  max-width: 750px;
  font-size: clamp(45px, 6vw, 78px);
  line-height: 1.05;
  margin-bottom: 25px;
}
.hero-description {
  max-width: 600px;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 35px;
}
.hero-btn {
  border: none;
  padding: 16px 30px;
  border-radius: 30px;
  background: #facc15;
  color: #111;
  font-weight: 600;
  cursor: pointer;
}
/* =========================================
   HERO ENQUIRY FORM
========================================= */

.hero-enquiry {
  width: 390px;
  padding: 28px;

  background: rgba(255, 255, 255, 0.97);

  border: 1px solid rgba(255, 255, 255, 0.6);

  border-radius: 20px;

  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.22);

  backdrop-filter: blur(10px);
}

.hero-enquiry h2 {
  margin-bottom: 10px;
}
/* Heading */

.hero-form-heading {
  margin-bottom: 20px;
}

.hero-form-heading span {
  display: block;

  margin-bottom: 7px;

  color: #dc2626;

  font-size: 11px;

  font-weight: 800;

  letter-spacing: 2px;
}

.hero-form-heading h2 {
  margin-bottom: 7px;

  color: #172033;

  font-size: 26px;

  line-height: 1.2;
}

.hero-form-heading p {
  color: #707784;

  font-size: 13px;

  line-height: 1.6;
}

/* Form Grid */

.trip-form-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 11px;
}

.full-width {
  grid-column: 1 / -1;
}

/* Inputs */

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;

  padding: 12px 14px;

  border: 1px solid #e2e5ea;

  border-radius: 9px;

  background: #ffffff;

  color: #172033;

  font-family: inherit;

  font-size: 13px;

  outline: none;

  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

/* Placeholder */

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #9aa0aa;
}

/* Focus */

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: #090151;
  box-shadow: 0 0 0 3px rgba(81, 52, 226, 0.08);
}
/* Select */
.form-field select {
  cursor: pointer;
  color: #707784;
}
/* Textarea */
.form-field textarea {
  min-height: 80px;
  resize: vertical;
}
/* Submit */
.trip-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border: none;
  border-radius: 10px;
  background: #facc15;
  color: #000;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.trip-submit:hover {
  background: #140170;
  color: #fff;
}

.trip-submit span {
  font-size: 18px;

  line-height: 1;
}
/* ---Section Heading--- */
.section-heading {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}
.section-label {
  color: #dc2626;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 12px;
}
.section-heading h2 {
  font-size: 24px;
  margin-bottom: 15px;
}
.section-heading p {
  color: #666;
  line-height: 1.7;
}
/* =========================
   EXPLORE NORTH INDIA
========================= */

.explore-north {
  background: #f8f9fb;
}

/* Destination Tabs */

.destination-tabs {
  display: flex;

  justify-content: center;

  flex-wrap: wrap;

  gap: 10px;

  margin-bottom: 35px;
}

.destination-tab {
  border: 1px solid #e3e6ea;

  background: #fff;

  color: #444;

  padding: 10px 17px;

  border-radius: 30px;

  cursor: pointer;

  font-family: inherit;

  font-size: 12px;

  font-weight: 600;

  transition: all 0.3s ease;
}

.destination-tab:hover {
  border-color: #090151;

  color: #0c0267;
}

.destination-tab.active {
  background: #0c0267;

  border-color: #090151;

  color: #fff;
}

/* Featured Destination */

.featured-destination {
  display: grid;

  grid-template-columns: 1.1fr 0.9fr;

  min-height: 480px;
  max-height: 480px;
  overflow: hidden;

  border-radius: 20px;

  background: #fff;

  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
}

/* Image */

.featured-destination-image {
  position: relative;

  min-height: 480px;

  overflow: hidden;
}

.featured-destination-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 0.6s ease;
}

.featured-destination:hover .featured-destination-image img {
  transform: scale(1.04);
}

/* Image Badge */

.featured-image-badge {
  position: absolute;

  top: 20px;
  left: 20px;

  padding: 8px 13px;

  border-radius: 20px;

  background: rgba(0, 0, 0, 0.55);

  color: #fff;

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 0.5px;
}

/* Content */

.featured-destination-content {
  display: flex;

  flex-direction: column;

  justify-content: start;

  padding: 55px;
}

.featured-label {
  margin-bottom: 12px;

  color: #dc2626;

  font-size: 11px;

  font-weight: 700;

  letter-spacing: 2px;
}

.featured-destination-content h3 {
  margin-bottom: 18px;

  color: #0c0267;

  font-size: clamp(38px, 4vw, 54px);

  line-height: 1;
}

.featured-description {
  max-width: 470px;

  margin-bottom: 30px;

  color: #666;

  font-size: 14px;

  line-height: 1.8;
}

/* Meta */

.featured-meta {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 20px;

  margin-bottom: 30px;

  padding: 18px 0;

  border-top: 1px solid #eee;

  border-bottom: 1px solid #eee;
}

.featured-meta span {
  display: block;

  margin-bottom: 6px;

  color: #999;

  font-size: 9px;

  font-weight: 700;

  letter-spacing: 1px;
}

.featured-meta strong {
  display: block;

  color: #222;

  font-size: 12px;

  line-height: 1.5;
}

/* CTA */

.featured-btn {
  align-self: flex-start;

  padding: 13px 22px;

  border-radius: 30px;

  background: #0c0267;

  color: #fff;

  font-size: 12px;

  font-weight: 700;

  transition: all 0.3s ease;
}

.featured-btn:hover {
  box-shadow: 0 10px 25px rgba(37, 1, 78, 0.25);
}
/* Destination */
.destination-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
/* .destination-card{ overflow: hidden; border-radius: 18px; background: #fff; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); transition: transform 0.3s ease, box-shadow 0.3s ease;}
.destination-card:hover{ transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);}
.destination-image{height: 300px; overflow: hidden;}
.destination-image img{ width: 100%; height:100%; object-fit: cover; transition: transform 0.5s ease;}

.destination-card:hover .destination-image img{ transform: scale(1.08);}
.destination-content{padding:25px;}
 */
.destination-content h3 {
  font-size: 25px;
  margin-bottom: 10px;
}
.destination-content p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}
.destination-content a {
  color: #dc2626;
  font-weight: 700;
}

/* =========================
   DESTINATIONS
========================= */

.destination-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.destination-card {
  position: relative;

  height: 390px;

  overflow: hidden;

  border-radius: 18px;

  background: #222;
}

/* Image */

.destination-card img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 0.6s ease;
}

.destination-card:hover img {
  transform: scale(1.07);
}

/* Dark gradient */

.destination-card::after {
  content: "";

  position: absolute;

  inset: 0;

  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.82) 0%,
    rgba(0, 0, 0, 0.25) 50%,
    rgba(0, 0, 0, 0.05) 100%
  );

  pointer-events: none;
}

/* Content */

.destination-overlay {
  position: absolute;

  z-index: 2;

  left: 25px;
  right: 25px;
  bottom: 25px;

  color: #fff;
}

.destination-label {
  display: block;

  margin-bottom: 8px;

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 2px;

  color: rgba(255, 255, 255, 0.75);
}

.destination-overlay h3 {
  font-size: 28px;

  line-height: 1.15;

  margin-bottom: 8px;
}

.destination-overlay p {
  max-width: 320px;

  margin-bottom: 14px;

  color: rgba(255, 255, 255, 0.88);

  font-size: 13px;

  line-height: 1.5;
}

.destination-overlay a {
  color: #fff;

  font-size: 13px;

  font-weight: 700;
}

.destination-overlay a:hover {
  color: #dc2626;
}
/* Tour Package */
/* =========================
   TOUR PACKAGES
========================= */

.packages {
  background: #f8f8f8;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.package-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

/* .package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
} */

/* Image */

.package-image {
  height: 270px;
  position: relative;
  overflow: hidden;
}

.package-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.package-card:hover .package-image img {
  transform: scale(1.06);
}

/* Duration */

.package-duration,
.package-count {
  position: absolute;
  top: 18px;
  left: 18px;

  background: #fff;
  color: #222;

  padding: 8px 13px;

  border-radius: 20px;

  font-size: 12px;
  font-weight: 700;
}
.package-count {
  bottom: 10px;
  top: auto;
  background: rgba(255, 255, 255, 0.85);
}
/* Content */

.package-content {
  padding: 16px;
}

.package-content h3 {
  font-size: 19px;
  margin-bottom: 8px;
}

.package-route {
  color: #777;
  font-size: 14px;
  margin-bottom: 22px;
}
.package-tour {
  padding-bottom: 8px;
}
.package-info {
  margin-top: 18px;
  padding-top: 15px;
  border-top: 1px solid #eee;
}

.package-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.package-info-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: rgba(226, 52, 100, 0.08);
  color: rgb(226, 52, 100);

  font-size: 14px;
}

.package-info-label {
  display: block;

  margin-bottom: 3px;

  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;

  color: #888;
}

.package-info-item p {
  margin: 0;

  font-size: 13px;
  line-height: 1.5;

  color: #444;
}
.package-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
.pl {
  position: absolute;
  bottom: 8px;
  right: 8px;
}
.package-price {
  display: flex;
  flex-direction: column;
  background-color: #facc15;
  border-radius: 12px;
  padding: 8px 20px;
}

.package-price span {
  font-size: 11px;
  color: #0f172a;
  margin-bottom: 3px;
}

.package-price strong {
  font-size: 21px;
  color: #dc2626;
}

.package-link {
  color: #0c0267;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  text-align: center;
  display: block;
}
.package-link:hover {
  text-decoration: underline;
}

/* View All */
.packages-action {
  text-align: center;
  margin-top: 45px;
}
.view-all-btn {
  display: inline-block;
  padding: 14px 25px;
  border: 1px solid #dc2626;
  border-radius: 30px;
  color: #dc2626;
  font-weight: 700;
  transition: all 0.3s ease;
}
.view-all-btn:hover {
  background: #0c0267;
  color: #fff;
}
.package-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 8px 0 0;
  padding: 8px 0 0;
  list-style: none;
  border-top: 1px solid #eeeeee;
}

.package-actions li {
  min-width: 0;
}

.package-actions a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  width: 100%;

  min-height: 42px;

  padding: 10px 14px;

  border-radius: 9px;

  font-size: 13px;
  font-weight: 700;

  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

/* WhatsApp */

.package-whatsapp {
  background: #f0faf4;
  color: #16834a;
  border: 1px solid #d8f0e2;
}

.package-whatsapp:hover {
  background: #16834a;
  color: #ffffff;

  transform: translateY(0px);
}
.package-whatsapp i {
  font-size: 16px;
}
ul.package-actions li a.package-enquire {
  background: #f4f4ff;
  color: #0c0267;
  border: 1px solid #e0dfdf;
}
ul.package-actions li a.package-enquire:hover {
  background: #0c0267;
  color: #fff;
  transform: translateY(0px);
}
/* Enquire */
.package-enquiry {
  padding: 25px 0;
}
.package-enquiry .container {
  display: grid;
  grid-template-columns: 1fr 480px;
  align-items: center;
  gap: 70px;
}

.package-enquiry-content {
  max-width: 620px;
}

.package-enquiry .section-label {
  margin: 0 0 10px;
  color: #dc2626;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.package-enquiry-content h2 {
  margin: 0 0 16px;
  color: #0f172a;
  font-size: 38px;
  line-height: 1.15;
}

.package-enquiry-content h2 span {
  color: #dc2626;
}

.package-enquiry-content > p:not(.section-label) {
  max-width: 560px;
  margin: 0;
  color: #64748b;
  font-size: 16px;
  line-height: 1.7;
}

.package-enquiry-points {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 25px;
  margin-top: 25px;
}

.package-enquiry-points div {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #334155;
  font-size: 13px;
  font-weight: 600;
}

.package-enquiry-points span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #dc2626;
  color: #fff;
  font-size: 11px;
}

/* Form Card */

.package-enquiry-form {
  padding: 28px;
  background: #fff;
  border: 1px solid #f1dce2;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.08);
}

.enquiry-form-header {
  margin-bottom: 18px;
}

.enquiry-form-header h3 {
  margin: 0 0 5px;
  color: #0f172a;
  font-size: 21px;
}

.enquiry-form-header p {
  margin: 0;
  color: #64748b;
  font-size: 13px;
}
/* WHY TRAVEL WITH US */
.why-us {
  background: #fff;
}
.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
/* image */
.why-us-image {
  height: 540px;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}
.why-us-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
/* Experience Badge */
.experience-badge {
  position: absolute;
  bottom: 25px;
  left: 25px;
  background-color: #fff;
  padding: 18px 22px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.experience-badge strong {
  font-size: 34px;
  color: #dc2626;
  line-height: 1;
}

.experience-badge span {
  font-size: 12px;
  line-height: 1.4;
  color: #555;
  font-weight: 600;
}

/* Content */

.why-us-content {
  max-width: 560px;
}

.why-us-content h2 {
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.1;
  margin-bottom: 20px;
}

.why-us-intro {
  color: #666;
  line-height: 1.8;
  margin-bottom: 35px;
}

/* Points */

.why-us-points {
  display: grid;
  gap: 25px;
}

.why-us-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why-us-icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(226, 52, 52, 0.1);
  color: #dc2626;
  font-size: 15px;
  font-weight: 700;
}

.why-us-point h3 {
  font-size: 17px;
  margin-bottom: 5px;
}

.why-us-point p {
  color: #777;
  font-size: 14px;
  line-height: 1.6;
}

/* Button */

.why-us-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 15px 25px;
  border-radius: 30px;
  background: #facc15;
  color: #111;
  font-size: 14px;
  font-weight: 700;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  text-align: center;
}

.why-us-btn:hover {
  box-shadow: 0 10px 25px rgba(226, 197, 52, 0.25);
}
/* =========================
   NORTH INDIA EXPERIENCES
========================= */

.experiences {
  background: #f8f8f8;
}

.experience-grid {
  display: grid;

  grid-template-columns: 1.4fr 1fr 1fr;

  grid-template-rows: 260px 260px;

  gap: 20px;
}

/* Card */

.experience-card {
  position: relative;

  overflow: hidden;

  border-radius: 20px;

  min-height: 260px;
}

.experience-card img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 0.6s ease;
}

.experience-card:hover img {
  transform: scale(1.08);
}

/* Large Card */

.experience-large {
  grid-row: span 2;
}

/* Dark gradient */

.experience-card::after {
  content: "";

  position: absolute;

  inset: 0;

  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.05));
}

/* Content */

.experience-overlay {
  position: absolute;

  z-index: 2;

  left: 25px;
  right: 25px;
  bottom: 25px;

  color: #fff;
}

.experience-overlay span {
  display: block;

  margin-bottom: 8px;

  color: #fff;

  font-size: 11px;

  font-weight: 700;

  letter-spacing: 2px;
}

.experience-overlay h3 {
  font-size: 24px;

  line-height: 1.2;

  margin-bottom: 8px;
}

.experience-overlay p {
  max-width: 400px;

  font-size: 14px;

  line-height: 1.6;

  color: rgba(255, 255, 255, 0.9);
}
/* =========================
   PLAN YOUR TRIP CTA
========================= */

.trip-cta {
  min-height: 520px;

  position: relative;

  display: flex;
  align-items: center;

  background:
    linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
    url("../images/rajasthan-tour/rajasthan.jpg");

  background-size: cover;
  background-position: center;
}

.trip-cta-content {
  max-width: 650px;

  color: #fff;
}

.trip-cta-content .section-label {
  color: #fff;

  margin-bottom: 15px;
}

.trip-cta-content h2 {
  font-size: clamp(40px, 5vw, 64px);

  line-height: 1.05;

  margin-bottom: 20px;
}

.trip-cta-content > p {
  max-width: 560px;

  color: rgba(255, 255, 255, 0.9);

  font-size: 17px;

  line-height: 1.7;

  margin-bottom: 30px;
}

/* Buttons */

.trip-cta-buttons {
  display: flex;

  align-items: center;

  gap: 15px;
}

.cta-primary,
.cta-secondary {
  display: inline-block;

  padding: 15px 26px;

  border-radius: 30px;

  font-size: 14px;

  font-weight: 700;

  transition: all 0.3s ease;
}

.cta-primary {
  background: #facc15;
  color: #000;
}

.cta-primary:hover {
  transform: translateY(-2px);

  box-shadow: 0 10px 25px rgba(226, 52, 100, 0.35);
}

.cta-secondary {
  border: 1px solid rgba(255, 255, 255, 0.7);

  color: #fff;

  background: rgba(255, 255, 255, 0.08);
}

.cta-secondary:hover {
  background: #fff;

  color: #222;
}
/* =========================================
   FAQ SECTION
========================================= */

.faq-section {
  padding: 38px 0;
  background: #f8f9fb;
  border-top: 1px solid #eeeeee;
}

/* =========================================
   FAQ HEADING
========================================= */

.faq-heading {
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
}

.faq-heading .section-label {
  display: inline-block;
  margin-bottom: 15px;
}

.faq-heading h2 {
  margin-bottom: 18px;

  color: #111827;

  font-size: clamp(34px, 5vw, 52px);

  line-height: 1.1;

  letter-spacing: -1px;
}

.faq-heading h2 span {
  color: #dc2626;
}

.faq-heading p {
  max-width: 650px;
  margin: 0 auto;

  color: #6b7280;

  font-size: 16px;

  line-height: 1.7;
}

/* =========================================
   FAQ LIST
========================================= */

.faq-list {
  max-width: 820px;

  margin: 0 auto;

  display: flex;

  flex-direction: column;

  gap: 14px;
}

/* =========================================
   FAQ ITEM
========================================= */

.faq-item {
  overflow: hidden;

  background: #ffffff;

  border: 1px solid #e8eaf0;

  border-radius: 16px;

  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.035);

  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.faq-item:hover {
  border-color: #e1e3e9;

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

/* =========================================
   QUESTION
========================================= */

.faq-question {
  width: 100%;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 20px;

  padding: 22px 24px;

  border: none;

  background: transparent;

  color: #172033;

  text-align: left;

  font-family: inherit;

  font-size: 16px;

  font-weight: 700;

  line-height: 1.5;

  cursor: pointer;
}

.faq-question:hover {
  color: #0c0267;
}

/* =========================================
   PLUS ICON
========================================= */

.faq-icon {
  flex-shrink: 0;

  display: flex;

  align-items: center;

  justify-content: center;

  width: 32px;

  height: 32px;

  border: 1px solid #e2e4e8;

  border-radius: 50%;

  background: #f8f9fb;

  color: #8a909b;

  font-size: 21px;

  font-weight: 400;

  line-height: 1;

  transition:
    transform 0.3s ease,
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease;
}

/* =========================================
   ANSWER
========================================= */

.faq-answer {
  display: grid;

  grid-template-rows: 0fr;

  transition: grid-template-rows 0.35s ease;
}

.faq-answer p {
  overflow: hidden;

  margin: 0;

  padding: 0 24px;

  color: #687080;

  font-size: 14px;

  line-height: 1.8;

  transition: padding 0.35s ease;
}

/* =========================================
   ACTIVE FAQ
========================================= */

.faq-item.active {
  border-color: #0c0267;
}

.faq-item.active .faq-question {
  color: #0c0267;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);

  background: #0c0267;

  border-color: #0c0267;

  color: #ffffff;
}

.faq-item.active .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.active .faq-answer p {
  padding: 0 24px 24px;
}

/* packageListing Page */
/* ==============================
   PACKAGE HERO
================================= */

.package-page-hero {
  min-height: 420px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  margin-top: 80px;
}

.package-page-hero-content {
  width: min(1200px, 92%);
  margin: 0 auto;
  color: #fff;
}

.package-page-hero-content p:first-child {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 15px;
}

.package-page-hero-content h1 {
  max-width: 750px;
  font-size: clamp(40px, 6vw, 68px);
  line-height: 1.05;
  margin-bottom: 20px;
}

.package-page-hero-content p {
  max-width: 650px;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 30px;
}

.package-intro-content {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}

.package-intro-content h2 {
  font-size: 36px;
  margin-bottom: 18px;
}

.package-intro-content p:last-child {
  color: #666;
  line-height: 1.8;
}
.breadcrumb {
  padding: 18px 0;
}

.breadcrumb .container {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.breadcrumb a {
  color: #666;
  transition: color 0.2s ease;
}

.breadcrumb a:hover {
  color: #dc2626;
}

.breadcrumb span {
  color: #999;
}

.breadcrumb #breadcrumbDestination {
  color: #222;
  font-weight: 600;
}
/* ==============================
   PACKAGE LISTING
================================= */

.package-listing {
  background: #fff;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* =========================================
   MOBILE
========================================= */

/* @media (max-width: 600px) {
 
} */
/* Enquiry Modal */
/* ================================
   ENQUIRY MODAL
================================ */

.enquiry-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.enquiry-modal.active {
  display: flex;
}

.enquiry-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(5px);
}

.enquiry-dialog {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 420px;
  max-height: 90vh;
  overflow-y: auto;
  background: #fff;
  border-radius: 24px;
  padding: 16px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
  animation: enquirySlideUp 0.3s ease;
}

@keyframes enquirySlideUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Close button */

.enquiry-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: #f1f5f9;
  color: #475569;
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
  transition: all 0.2s ease;
}

.enquiry-close:hover {
  background: #0c0267;
  color: #fff;
}

/* Header */

.enquiry-header {
  padding-right: 45px;
  margin-bottom: 22px;
}

.enquiry-header span {
  display: inline-block;
  margin-bottom: 8px;
  color: #dc2626;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.enquiry-header h2 {
  margin: 0;
  color: #0f172a;
  font-size: 18px;
  line-height: 1.2;
}

.enquiry-header h2 strong {
  color: #dc2626;
}

.enquiry-header p {
  margin: 10px 0 0;
  color: #64748b;
  font-size: 12px;
  line-height: 1.2;
}

/* Selected package */

.selected-package {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 16px;
  padding: 8px 10px;
  background: #fff5f7;
  border: 1px solid #ffdce5;
  border-radius: 12px;
}

.selected-package span {
  color: #64748b;
  font-size: 12px;
}

.selected-package strong {
  color: #dc2626;
  font-size: 14px;
  text-align: right;
}

/* Form */

.enquiry-form-wrapper .trip-form {
  width: 100%;
}

.enquiry-form-wrapper .trip-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.enquiry-form-wrapper .form-field.full-width,
.enquiry-form-wrapper .form-submit.full-width {
  grid-column: 1 / -1;
}

.enquiry-form-wrapper input,
.enquiry-form-wrapper select,
.enquiry-form-wrapper textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 10px 10px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background: #fff;
  color: #0f172a;
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.enquiry-form-wrapper input:focus,
.enquiry-form-wrapper select:focus,
.enquiry-form-wrapper textarea:focus {
  border-color: #facc15;
  box-shadow: 0 0 0 3px rgba(226, 52, 100, 0.1);
}

.enquiry-form-wrapper textarea {
  resize: vertical;
  min-height: 90px;
}

.enquiry-form-wrapper .trip-submit {
  width: 100%;
  padding: 14px 20px;
  border: 0;
  border-radius: 10px;
  background: #facc15;
  color: #111;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.enquiry-form-wrapper .trip-submit:hover {
  background: #0c0267;
  color: #fff;
}
/* Footer */
/* =========================
   FOOTER
========================= */

.site-footer {
  background: #102a43;
  color: #fff;
}

/* Main Footer */

.footer-main {
  padding: 60px 0 50px;
}

.footer-grid {
  display: grid;

  grid-template-columns:
    1.5fr
    0.8fr
    0.8fr
    1.2fr;

  gap: 55px;
}

/* Brand */

.footer-brand {
  max-width: 380px;
}

.footer-logo {
  display: inline-flex;
  flex-direction: column;
  color: #fff;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}

.footer-logo span {
  color: #dc2626;
  font-size: 14px;
  letter-spacing: 3px;
  margin-top: 7px;
}

.footer-brand > p {
  margin: 25px 0;

  color: rgba(255, 255, 255, 0.72);

  font-size: 14px;

  line-height: 1.8;
}

.footer-plan-btn {
  display: inline-block;
  padding: 13px 21px;
  border-radius: 30px;
  background: #facc15;
  color: #111;
  font-size: 13px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.footer-plan-btn:hover {
  box-shadow: 0 10px 25px rgba(226, 52, 100, 0.3);
}

/* Columns */

.footer-column h3 {
  position: relative;

  margin-bottom: 25px;

  color: #fff;

  font-size: 17px;

  font-weight: 700;
}

.footer-column h3::after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  margin-top: 10px;
  background: #dc2626;
}

.footer-column ul {
  list-style: none;

  display: grid;

  gap: 13px;
}

.footer-column ul a {
  color: rgba(255, 255, 255, 0.68);

  font-size: 14px;

  transition: color 0.3s ease;
}

.footer-column ul a:hover {
  color: #fff;
}

/* Contact */

.footer-contact {
  max-width: 300px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-contact-icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(226, 52, 100, 0.12);
  color: #dc2626;
  font-size: 13px;
}

.footer-contact-item p {
  color: rgba(255, 255, 255, 0.7);

  font-size: 13px;

  line-height: 1.7;
}

.footer-contact-item a {
  color: inherit;

  transition: color 0.3s ease;
}

.footer-contact-item a:hover {
  color: #fff;
}

/* Bottom */

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);

  background: #0b2238;

  padding: 20px 0;
}

.footer-bottom-inner {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 20px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.55);

  font-size: 12px;
}

/* Social */

.footer-social {
  display: flex;

  gap: 8px;
}

.footer-social a {
  width: 32px;
  height: 32px;

  display: flex;

  align-items: center;
  justify-content: center;

  border: 1px solid rgba(255, 255, 255, 0.15);

  border-radius: 50%;

  color: rgba(255, 255, 255, 0.75);

  font-size: 13px;

  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #dc2626;

  border-color: #dc2626;

  color: #fff;
}
/* responsive */
@media (max-width: 1000px) {
  .hero-inner {
    grid-template-columns: 1fr 350px;

    gap: 35px;
  }

  .hero-enquiry {
    width: 100%;
  }
  .footer-grid {
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 40px;
  }

  .footer-brand {
    grid-column: span 3;
    max-width: 650px;
  }

  .footer-contact {
    max-width: 100%;
  }
}
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-btn {
    display: block;
  }
  .mobile-nav {
    display: block;

    max-height: 0;

    overflow: hidden;

    padding-top: 0;
    padding-bottom: 0;

    opacity: 0;

    transition:
      max-height 0.35s ease,
      opacity 0.25s ease,
      padding 0.35s ease;
  }

  .mobile-nav.open {
    max-height: 500px;

    padding-top: 0px;
    padding-bottom: 0px;

    opacity: 1;
  }

  /* Hamburger → X */

  .mobile-menu-btn.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .mobile-menu-btn.open span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-btn.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .destination-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .destination-card {
    height: 360px;
  }
  .package-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-us-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: center;
  }
  .why-us-image {
    height: 480px;
  }

  .why-us-content {
    max-width: 100%;
  }
  .why-us-intro {
    margin-bottom: 20px;
  }
  .why-us-points {
    gap: 20px;
  }
  .experience-grid {
    grid-template-columns: 1fr 1fr;

    grid-template-rows: 300px 240px 240px;
  }

  .experience-large {
    grid-column: span 2;
    grid-row: span 1;
  }
  /* Tab Distination */
  .destination-tabs {
    justify-content: flex-start;

    flex-wrap: nowrap;

    overflow-x: auto;

    padding-bottom: 8px;

    scrollbar-width: none;
  }

  .destination-tabs::-webkit-scrollbar {
    display: none;
  }

  .destination-tab {
    flex-shrink: 0;
  }
  .featured-destination {
    grid-template-columns: 1fr 1fr;
  }
  .featured-destination-content {
    padding: 35px;
  }
  /* Listing Package page */
  .package-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 20px 16px;
    margin-top: 58px;
  }

  .site-header {
    padding: 8px 0;
    border-bottom: 1px solid #0c0267;
  }
  .hero-inner {
    grid-template-columns: 1fr;

    gap: 40px;

    padding: 100px 0 50px;
  }

  .hero-content {
    text-align: center;
    padding: 0 0 16px;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-enquiry {
    width: 100%;

    max-width: 500px;

    margin: 0 auto;

    padding: 22px;
  }
  .package-enquiry {
    padding: 20px 0;
  }

  .package-enquiry .container {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .package-enquiry-content h2 {
    font-size: 30px;
  }

  .package-enquiry-content > p:not(.section-label) {
    font-size: 14px;
  }

  .package-enquiry-points {
    flex-direction: column;
    gap: 12px;
  }

  .package-enquiry-form {
    padding: 22px 18px;
  }
  .package-page-hero {
    margin-top: 58px;
    min-height: 390px;
  }
  .footer-main {
    padding: 30px 0 30px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 35px;
  }

  .footer-brand {
    grid-column: span 2;
    max-width: 100%;
  }
}
@media (max-width: 600px) {
  .hero {
    min-height: auto;
    display: block;
  }
  .hero h1 {
    font-size: 38px;
  }
  .hero-description {
    line-height: 1.4;
    margin-bottom: 26px;
  }
  .destination-grid {
    grid-template-columns: 1fr;
  }
  .destination-card {
    height: 380px;
  }
  .section {
    padding: 30px 0;
  }
  .section-heading {
    margin-bottom: 30px;
  }
  .section-heading h2 {
    font-size: 34px;
  }
  .package-grid {
    grid-template-columns: 1fr;
  }
  .package-image {
    height: 250px;
  }
  .why-us-image {
    height: 420px;
    border-radius: 18px;
  }
  .experience-badge {
    bottom: 15px;
    left: 15px;
  }
  .why-us-content h2 {
    font-size: 36px;
  }
  .experience-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .experience-large {
    grid-column: span 1;
  }
  .experience-card {
    height: 280px;
  }
  .trip-cta {
    min-height: 500px;
  }
  .trip-cta-content h2 {
    font-size: 42px;
  }
  .trip-cta-content > p {
    font-size: 15px;
  }
  .trip-cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  .cta-primary,
  .cta-secondary {
    text-align: center;
  }
  /* Expolore Tab design */
  .destination-tabs {
    justify-content: flex-start;
    gap: 8px;
    margin-bottom: 5px;
  }
  .destination-tab {
    padding: 9px 14px;
    font-size: 11px;
  }
  .featured-destination {
    grid-template-columns: 1fr;
    min-height: auto;
    border-radius: 16px;
    max-height: none;
  }
  .featured-destination-image {
    height: 300px;
    min-height: 300px;
  }
  .featured-destination-content {
    padding: 30px 25px;
  }
  .featured-destination-content h3 {
    font-size: 40px;
  }
  .featured-description {
    font-size: 13px;
    margin-bottom: 25px;
  }
  .featured-meta {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .featured-btn {
    width: 100%;
    text-align: center;
  }
  /* Package Listing Page */
  .package-hero {
    min-height: 500px;
  }

  .package-grid {
    grid-template-columns: 1fr;
  }
  .package-actions {
    gap: 8px;
  }
  .package-actions a {
    min-height: 40px;
    padding: 9px 8px;
    font-size: 12px;
  }
  .faq-section {
    padding: 30px 0;
  }

  .faq-heading {
    margin-bottom: 30px;
  }

  .faq-heading h2 {
    font-size: 34px;

    letter-spacing: -0.5px;
  }

  .faq-heading p {
    font-size: 14px;
  }

  .faq-list {
    gap: 10px;
  }

  .faq-question {
    padding: 18px;

    gap: 15px;

    font-size: 14px;
  }

  .faq-icon {
    width: 29px;
    height: 29px;

    font-size: 19px;
  }

  .faq-answer p {
    padding-left: 18px;
    padding-right: 18px;

    font-size: 13px;

    line-height: 1.7;
  }

  .faq-item.active .faq-answer p {
    padding-left: 18px;
    padding-right: 18px;
    padding-bottom: 18px;
  }
  .enquiry-modal {
    padding: 12px;
  }

  .enquiry-dialog {
    padding: 16px;
    border-radius: 18px;
    max-height: 94vh;
  }

  .enquiry-header h2 {
    font-size: 23px;
  }

  .enquiry-header p {
    font-size: 13px;
  }

  .enquiry-form-wrapper .trip-form-grid {
    grid-template-columns: 1fr;
  }

  .enquiry-form-wrapper .form-field.full-width,
  .enquiry-form-wrapper .form-submit.full-width {
    grid-column: auto;
  }

  .selected-package {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .selected-package strong {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .enquiry-header h2 {
    font-size: 17px;
  }
  .trip-form-grid {
    grid-template-columns: 1fr;
  }

  .full-width {
    grid-column: auto;
  }

  .hero-enquiry {
    padding: 20px;

    border-radius: 16px;
  }

  .hero-form-heading h2 {
    font-size: 23px;
  }
}

/* About Content */

/* =========================================================
   ABOUT US PAGE
========================================================= */

.about-page {
  background: #ffffff;
}

/* =========================
   COMMON
========================= */

.about-page .container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.about-page .section-space {
  padding: 30px 0;
}

.about-page .section-label {
  display: inline-block;
  margin-bottom: 12px;
  color: #dc2626;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.about-page h2 {
  margin: 0 0 20px;
  color: #172033;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.15;
}

.about-page p {
  color: #64748b;
  font-size: 16px;
  line-height: 1.8;
}

/* =========================
   HERO
========================= */

.about-hero {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: center;

  background-image: url("../images/about-us.jpg");

  background-size: cover;
  background-position: center;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(15, 23, 42, 0.82),
    rgba(15, 23, 42, 0.42),
    rgba(15, 23, 42, 0.15)
  );
}

.about-hero-content {
  position: relative;
  z-index: 1;
  color: #ffffff;
}

.about-hero .section-label {
  color: #ffffff;
  opacity: 0.9;
  padding-top: 30px;
}

.about-hero h1 {
  max-width: 700px;
  margin: 0 0 20px;
  color: #ffffff;
  font-size: clamp(42px, 6vw, 68px);
  line-height: 1.05;
  font-weight: 800;
}

.about-hero p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  line-height: 1.7;
}

/* =========================
   WHO WE ARE
========================= */

.about-intro-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 45px;
  align-items: center;
}

.about-intro-image {
  position: relative;
}

.about-intro-image img {
  width: 100%;
  height: 530px;
  display: block;
  object-fit: cover;
  border-radius: 18px;
}

.about-experience-badge {
  position: absolute;
  right: -25px;
  bottom: 30px;

  width: 145px;
  height: 145px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  background: #dc2626;
  color: #ffffff;

  border: 7px solid #ffffff;
  border-radius: 50%;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.about-experience-badge strong {
  font-size: 30px;
  line-height: 1;
}

.about-experience-badge span {
  margin-top: 7px;
  font-size: 13px;
  font-weight: 600;
}

.about-intro-content p {
  margin: 0 0 16px;
}

.about-intro-content strong {
  color: #273449;
}

/* =========================
   SERVICES
========================= */

.about-services {
  background: #f8fafc;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 30px;
  text-align: center;
}

.section-heading p {
  margin: 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.service-card {
  padding: 30px 25px;

  background: #ffffff;
  border: 1px solid #e8edf3;
  border-radius: 14px;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);

  border-color: rgba(226, 52, 100, 0.25);

  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.service-icon {
  width: 45px;
  height: 45px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 20px;

  background: rgba(226, 52, 100, 0.08);
  color: #dc2626;

  border-radius: 10px;

  font-size: 13px;
  font-weight: 800;
}

.service-card h3 {
  margin: 0 0 10px;

  color: #172033;
  font-size: 19px;
}

.service-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
}

/* =========================
   EXPERIENCE
========================= */

.about-experience {
  background: #ffffff;
}

.about-experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-experience-content p {
  margin: 0 0 18px;
}

.experience-points {
  display: grid;
  gap: 18px;
}

.experience-point {
  display: flex;
  gap: 18px;

  padding: 23px;

  background: #f8fafc;
  border-radius: 12px;
}

.experience-point > span {
  flex: 0 0 35px;

  width: 35px;
  height: 35px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(226, 52, 100, 0.1);
  color: #dc2626;

  border-radius: 50%;

  font-weight: 800;
}

.experience-point h3 {
  margin: 0 0 5px;
  color: #172033;
  font-size: 17px;
}

.experience-point p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

/* =========================
   DESTINATIONS
========================= */

.about-destinations {
  background: #f8fafc;
}
dc2626 .destination-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.destination-tags span {
  padding: 12px 20px;

  background: #ffffff;
  border: 1px solid #e5eaf0;
  border-radius: 50px;

  color: #334155;
  font-size: 14px;
  font-weight: 600;

  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.destination-tags span:hover {
  background: #dc2626;
  color: #ffffff;
  border-color: #dc2626;
  transform: translateY(-2px);
}

/* =========================
   CTA
========================= */

.about-cta {
  padding: 40px 0;

  background: linear-gradient(135deg, #dc2626, rgb(190 35 80));

  color: #ffffff;
}

.about-cta-content {
  max-width: 760px;
  margin: auto;
  text-align: center;
}

.about-cta .section-label {
  color: rgba(255, 255, 255, 0.8);
}

.about-cta h2 {
  margin-bottom: 15px;
  color: #ffffff;
}

.about-cta p {
  max-width: 600px;
  margin: 0 auto 30px;
  color: rgba(255, 255, 255, 0.9);
}

.about-cta-button {
  display: inline-flex;
  align-items: center;

  padding: 14px 25px;

  background: #ffffff;
  color: #dc2626;

  border-radius: 8px;

  font-size: 15px;
  font-weight: 700;
  text-decoration: none;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.about-cta-button:hover {
  transform: translateY(-2px);

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1000px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-intro-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-intro-image {
    max-width: 700px;
  }

  .about-experience-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

@media (max-width: 600px) {
  .about-experience-grid {
    gap: 30px;
  }
  .about-page .container {
    width: min(100% - 30px, 1180px);
  }

  .about-page .section-space {
    padding: 30px 0;
  }

  .about-hero {
    min-height: 390px;
  }

  .about-hero h1 {
    font-size: 40px;
  }

  .about-hero p {
    font-size: 16px;
  }

  .about-intro-image img {
    height: 380px;
  }

  .about-experience-badge {
    right: 15px;
    bottom: 20px;

    width: 110px;
    height: 110px;
  }

  .about-experience-badge strong {
    font-size: 24px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 25px 22px;
  }

  .destination-tags {
    justify-content: flex-start;
  }

  .destination-tags span {
    padding: 10px 15px;
    line-height: 46px;
  }

  .about-cta {
    padding: 65px 0;
  }
}

/* Contact US */
/* =========================================================
   CONTACT PAGE
========================================================= */

.contact-page {
  background: #ffffff;
}

.contact-page .container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.contact-page .section-space {
  padding: 40px 0;
}

/* =========================
   HERO
========================= */

.contact-hero {
  position: relative;

  min-height: 380px;

  display: flex;
  align-items: center;

  background-image: url("../images/contact-us-banner.jpg");

  background-size: cover;
  background-position: center;
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    90deg,
    rgba(15, 23, 42, 0.82),
    rgba(15, 23, 42, 0.4),
    rgba(15, 23, 42, 0.15)
  );
}

.contact-hero-content {
  position: relative;
  z-index: 1;

  color: #ffffff;
}

.contact-hero .section-label {
  color: #ffffff;
}

.contact-hero h1 {
  margin: 0 0 18px;

  color: #ffffff;

  font-size: clamp(42px, 6vw, 64px);
  line-height: 1.05;
}

.contact-hero p {
  max-width: 650px;

  margin: 0;

  color: rgba(255, 255, 255, 0.9);

  font-size: 18px;
  line-height: 1.7;
}

/* =========================
   CONTACT INFO
========================= */

.contact-info-section {
  position: relative;
  margin-top: -55px;
  z-index: 5;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.contact-info-card {
  min-height: 185px;

  display: flex;
  align-items: flex-start;
  gap: 20px;

  padding: 30px 25px;

  background: #ffffff;

  border: 1px solid #e8edf3;
  border-radius: 14px;

  box-shadow: 0 15px 45px rgba(15, 23, 42, 0.09);
}

.contact-icon {
  flex: 0 0 50px;

  width: 50px;
  height: 50px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(226, 52, 100, 0.09);

  color: #dc2626;

  border-radius: 12px;

  font-size: 20px;
}

.contact-card-label {
  display: block;

  margin-bottom: 6px;

  color: #dc2626;

  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.3px;
}

.contact-info-card h3 {
  margin: 0 0 10px;

  color: #172033;

  font-size: 20px;
}

.contact-info-card p {
  margin: 0;

  color: #64748b;

  font-size: 14px;
  line-height: 1.8;
}

.contact-info-card a {
  display: block;

  color: #64748b;

  text-decoration: none;

  transition: color 0.2s ease;
}

.contact-info-card a:hover {
  color: #dc2626;
}

/* =========================
   MAP + FORM
========================= */

.contact-main {
  background: #ffffff;
}

.contact-main-grid {
  display: grid;

  grid-template-columns: 1.45fr 0.75fr;

  gap: 50px;

  align-items: start;
}

.contact-section-heading {
  margin-bottom: 28px;
}

.contact-section-heading .section-label,
.contact-form-header .section-label {
  display: inline-block;

  margin-bottom: 10px;

  color: #dc2626;

  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
}

.contact-section-heading h2,
.contact-form-header h2 {
  margin: 0 0 12px;

  color: #172033;

  font-size: 32px;
  line-height: 1.2;
}

.contact-section-heading p,
.contact-form-header p {
  margin: 0;

  color: #64748b;

  font-size: 15px;
  line-height: 1.7;
}

/* MAP */

.contact-map {
  overflow: hidden;

  background: #f1f5f9;

  border: 1px solid #e5eaf0;
  border-radius: 16px;

  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.06);
}

.contact-map iframe {
  display: block;

  width: 100%;

  border: 0;
}

/* =========================
   FORM
========================= */

.contact-form-wrapper {
  position: sticky;
  top: 30px;
}

.contact-form-box {
  margin-top: 25px;

  padding: 28px;

  background: #f8fafc;

  border: 1px solid #e6ebf1;
  border-radius: 16px;
}

/*
   Your existing form_awda()
   will generate the actual form here.
*/

.contact-form-box form {
  width: 100%;
}

.contact-form-box input,
.contact-form-box select,
.contact-form-box textarea {
  width: 100%;

  box-sizing: border-box;

  padding: 13px 14px;

  background: #ffffff;

  border: 1px solid #dbe2ea;
  border-radius: 7px;

  color: #334155;

  font-size: 14px;

  outline: none;

  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.contact-form-box input:focus,
.contact-form-box select:focus,
.contact-form-box textarea:focus {
  border-color: #dc2626;

  box-shadow: 0 0 0 3px rgba(226, 52, 100, 0.08);
}

.contact-form-box textarea {
  min-height: 100px;

  resize: vertical;
}

.contact-form-box button,
.contact-form-box input[type="submit"] {
  width: 100%;

  padding: 14px 20px;

  background: #dc2626;

  border: 0;
  border-radius: 7px;

  color: #ffffff;

  font-size: 14px;
  font-weight: 700;

  cursor: pointer;

  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.contact-form-box button:hover,
.contact-form-box input[type="submit"]:hover {
  transform: translateY(-2px);

  opacity: 0.92;
}

/* =========================
   OFFICE SECTION
========================= */

.contact-office {
  padding: 30px 0;

  background: #f8fafc;
}

.contact-office-content {
  max-width: 850px;

  margin: 0 auto;

  text-align: center;
}

.contact-office-content h2 {
  margin: 0 0 18px;

  color: #172033;

  font-size: 38px;
  line-height: 1.2;
}

.contact-office-content p {
  max-width: 720px;

  margin: 0 auto;

  color: #64748b;

  font-size: 16px;
  line-height: 1.8;
}

.contact-office-details {
  display: flex;

  justify-content: center;

  flex-wrap: wrap;

  gap: 15px;

  margin-top: 28px;
}

.contact-office-details span {
  display: inline-flex;

  align-items: center;

  gap: 8px;

  padding: 10px 16px;

  background: #ffffff;

  border: 1px solid #e5eaf0;

  border-radius: 50px;

  color: #475569;

  font-size: 13px;
  font-weight: 600;
}

.contact-office-details i {
  color: #dc2626;
}

/* =========================
   CTA
========================= */

.contact-cta {
  padding: 30px 0;

  background: linear-gradient(135deg, #dc2626, rgb(190 35 80));
}

.contact-cta-content {
  max-width: 760px;

  margin: 0 auto;

  text-align: center;
}

.contact-cta h2 {
  margin: 0 0 15px;

  color: #ffffff;

  font-size: 38px;
}

.contact-cta p {
  max-width: 650px;

  margin: 0 auto 28px;

  color: rgba(255, 255, 255, 0.9);

  font-size: 16px;
  line-height: 1.7;
}

.contact-cta-button {
  display: inline-flex;

  align-items: center;

  padding: 14px 25px;

  background: #ffffff;

  color: #dc2626;

  border-radius: 7px;

  font-size: 14px;
  font-weight: 700;

  text-decoration: none;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.contact-cta-button:hover {
  transform: translateY(-2px);

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1000px) {
  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .contact-main-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-wrapper {
    position: static;
  }
}

@media (max-width: 600px) {
  .contact-page .container {
    width: calc(100% - 30px);
  }

  .contact-hero {
    min-height: 350px;
  }

  .contact-hero h1 {
    font-size: 42px;
  }

  .contact-hero p {
    font-size: 16px;
  }

  .contact-info-section {
    margin-top: -30px;
  }

  .contact-info-card {
    min-height: auto;
  }

  .contact-page .section-space {
    padding: 30px 0;
  }

  .contact-section-heading h2,
  .contact-form-header h2 {
    font-size: 28px;
  }

  .contact-office-content h2,
  .contact-cta h2 {
    font-size: 30px;
  }

  .contact-map iframe {
    height: 350px;
  }

  .contact-form-box {
    padding: 20px;
  }
}

/* Privacy Policy Page */

/* =========================================
   PRIVACY POLICY
========================================= */

.privacy-hero {
  position: relative;
  min-height: 330px;
  display: flex;
  align-items: center;
  background: url("../images/privacy-policy.jpg") center center / cover
    no-repeat;
  color: #fff;
  margin-top: 87px;
}

.privacy-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.3));
}

.privacy-hero .container {
  position: relative;
  z-index: 2;
}

.privacy-hero-content {
  max-width: 700px;
  padding: 70px 0;
}

.privacy-hero-content span {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #dc2626;
}

.privacy-hero-content h1 {
  margin: 0 0 16px;
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.05;
  font-weight: 700;
}

.privacy-hero-content p {
  max-width: 650px;
  margin: 0;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}

/* =========================================
   CONTENT AREA
========================================= */

.privacy-section {
  padding: 40px 0;
  background: #f8fafc;
}

.privacy-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 40px;
  align-items: start;
}

/* =========================================
   MAIN CONTENT
========================================= */

.privacy-content {
  background: #fff;
  border-radius: 18px;
  padding: 45px;
  box-shadow: 0 8px 35px rgba(15, 23, 42, 0.06);
}

.privacy-intro {
  padding-bottom: 35px;
  margin-bottom: 15px;
  border-bottom: 1px solid #e5e7eb;
}

.section-label {
  display: inline-block;
  margin-bottom: 12px;
  color: #dc2626;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.privacy-intro h2 {
  margin: 0 0 18px;
  font-size: 34px;
  line-height: 1.2;
  color: #172033;
}

.privacy-intro p {
  margin: 0 0 12px;
  color: #64748b;
  font-size: 16px;
  line-height: 1.8;
}

/* =========================================
   POLICY BLOCK
========================================= */

.privacy-block {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 20px;
  padding: 35px 0;
  border-bottom: 1px solid #e5e7eb;
}

.privacy-block:last-child {
  border-bottom: 0;
}

.privacy-number {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(226, 52, 100, 0.08);
  color: #dc2626;
  font-size: 13px;
  font-weight: 800;
}

.privacy-block h3 {
  margin: 0 0 14px;
  color: #172033;
  font-size: 22px;
  line-height: 1.3;
}

.privacy-block p {
  margin: 0 0 13px;
  color: #64748b;
  font-size: 15px;
  line-height: 1.8;
}

.privacy-block p:last-child {
  margin-bottom: 0;
}

/* =========================================
   LIST
========================================= */

.privacy-list {
  margin: 10px 0 18px;
  padding: 0;
  list-style: none;
}

.privacy-list li {
  position: relative;
  margin-bottom: 9px;
  padding-left: 25px;
  color: #64748b;
  font-size: 15px;
  line-height: 1.7;
}

.privacy-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #dc2626;
  font-weight: 800;
}

/* =========================================
   NOTE
========================================= */

.privacy-note {
  margin-top: 20px;
  padding: 17px 20px;
  border-left: 3px solid #dc2626;
  border-radius: 6px;
  background: #fdf2f5;
  color: #64748b;
  font-size: 14px;
  line-height: 1.7;
}

.privacy-note strong {
  color: #172033;
}

/* =========================================
   CONTACT
========================================= */

.privacy-contact {
  background: #fff;
}

.privacy-email {
  display: inline-flex;
  align-items: center;
  margin-top: 5px;
  color: #dc2626;
  font-weight: 700;
  text-decoration: none;
}

.privacy-email:hover {
  text-decoration: underline;
}

.privacy-updated {
  margin-top: 20px !important;
  font-size: 13px !important;
}

/* =========================================
   SIDEBAR
========================================= */

.privacy-sidebar {
  position: sticky;
  top: 70px;
}

.privacy-sidebar-card {
  margin-bottom: 22px;
  padding: 30px;
  border-radius: 16px;
  background: #172033;
  color: #fff;
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.1);
}

.privacy-sidebar-card h3 {
  margin: 0 0 14px;
  font-size: 25px;
  line-height: 1.25;
}

.privacy-sidebar-card p {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.7;
}

.privacy-sidebar-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 17px;
  border-radius: 8px;
  background: #dc2626;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.25s ease;
}

.privacy-sidebar-btn:hover {
  transform: translateY(-2px);
  color: #fff;
}

.privacy-help {
  background: #fff;
  border: 1px solid #e5e7eb;
  color: #172033;
}

.privacy-help p {
  color: #64748b;
  margin-bottom: 8px;
}

.privacy-help a {
  color: #dc2626;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.privacy-sidebar-icon {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 17px;
  border-radius: 50%;
  background: rgba(226, 52, 100, 0.09);
  color: #dc2626;
}

.privacy-help h4 {
  margin: 0 0 8px;
  font-size: 19px;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {
  .privacy-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .privacy-sidebar {
    position: static;
  }

  .privacy-sidebar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .privacy-sidebar-card {
    margin-bottom: 0;
  }
}

@media (max-width: 767px) {
  .privacy-hero {
    min-height: 270px;
  }

  .privacy-hero-content {
    padding: 55px 0;
  }

  .privacy-hero-content h1 {
    font-size: 40px;
  }

  .privacy-hero-content p {
    font-size: 15px;
  }

  .privacy-section {
    padding: 30px 0;
  }

  .privacy-content {
    padding: 25px 20px;
    border-radius: 12px;
  }

  .privacy-intro h2 {
    font-size: 28px;
  }

  .privacy-block {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 28px 0;
  }

  .privacy-number {
    width: 36px;
    height: 36px;
  }

  .privacy-block h3 {
    font-size: 20px;
  }

  .privacy-sidebar {
    grid-template-columns: 1fr;
  }
}

/* Terms & Conditions  */
/* =========================================
   TERMS & CONDITIONS PAGE
========================================= */

.legal-hero {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  background: url("../images/terms-conditions.jpg") center / cover no-repeat;
  color: #fff;
}

.legal-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.35));
}

.legal-hero .container {
  position: relative;
  z-index: 2;
}

.legal-hero-content {
  max-width: 760px;
  padding: 70px 0;
}

.legal-hero-content span {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.legal-hero-content h1 {
  margin: 0 0 15px;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.1;
  font-weight: 800;
}

.legal-hero-content p {
  max-width: 650px;
  margin: 0;
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.88);
}

/* PAGE */

.legal-page {
  padding: 30px 0;
  background: #f7f8fa;
}

.legal-page .container {
  max-width: 1100px;
}

/* INTRO */

.legal-intro {
  max-width: 850px;
  margin: 0 auto 30px;
  text-align: center;
}

.section-label {
  display: inline-block;
  margin-bottom: 10px;
  color: #dc2626;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.legal-intro h2 {
  margin: 0 0 20px;
  color: #17202a;
  font-size: 34px;
  line-height: 1.25;
}

.legal-intro p {
  margin: 0 0 12px;
  color: #657080;
  font-size: 16px;
  line-height: 1.8;
}

/* SECTION */

.legal-section {
  margin-bottom: 40px;
}

.legal-section-heading {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 30px;
}

.legal-number {
  flex: 0 0 50px;
  width: 50px;
  height: 50px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 14px;

  background: rgba(226, 52, 100, 0.1);
  color: #dc2626;

  font-size: 14px;
  font-weight: 800;
}

.legal-section-heading h2 {
  margin: 0;
  color: #17202a;
  font-size: 30px;
  line-height: 1.25;
}

/* CARDS */

.legal-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.legal-card {
  padding: 30px;
  background: #fff;
  border: 1px solid #e8ebef;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(20, 30, 40, 0.05);
}

.legal-icon {
  width: 48px;
  height: 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 20px;

  border-radius: 12px;
  background: rgba(226, 52, 100, 0.1);
  color: #dc2626;

  font-size: 19px;
}

.legal-card h3 {
  margin: 0 0 12px;
  color: #17202a;
  font-size: 20px;
}

.legal-card p {
  margin: 0;
  color: #68727f;
  font-size: 14px;
  line-height: 1.8;
}

/* NOTE */

.legal-note {
  margin-top: 25px;
  padding: 22px 25px;
  border-left: 4px solid #dc2626;
  background: #fff;
  border-radius: 0 12px 12px 0;
}

.legal-note strong {
  color: #17202a;
}

.legal-note p {
  margin: 7px 0 0;
  color: #68727f;
  line-height: 1.8;
}

/* PAYMENT */

.payment-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-bottom: 25px;
}

.payment-methods div {
  display: flex;
  align-items: center;
  gap: 14px;

  padding: 18px 20px;

  background: #fff;
  border: 1px solid #e8ebef;
  border-radius: 12px;

  color: #343c46;
  font-weight: 600;
}

.payment-methods i {
  color: #dc2626;
  font-size: 20px;
}

/* SECURITY */

.security-alert {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  padding: 25px;

  background: #fff;
  border: 1px solid #f0d9df;
  border-radius: 15px;
}

.security-icon {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 12px;
  background: rgba(226, 52, 100, 0.1);
  color: #dc2626;
}

.security-alert h3 {
  margin: 0 0 8px;
  color: #17202a;
}

.security-alert p {
  margin: 0 0 8px;
  color: #68727f;
  font-size: 14px;
  line-height: 1.7;
}

.security-alert a {
  color: #dc2626;
  font-weight: 600;
}

/* LIST */

.legal-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.legal-list li {
  position: relative;
  margin-bottom: 13px;
  padding-left: 27px;

  color: #5f6975;
  font-size: 15px;
  line-height: 1.8;
}

.legal-list li::before {
  content: "✓";

  position: absolute;
  left: 0;
  top: 2px;

  color: #dc2626;
  font-weight: 800;
}

.numbered-list {
  counter-reset: terms;
}

.numbered-list li {
  padding-left: 35px;
  counter-increment: terms;
}

.numbered-list li::before {
  content: counter(terms);
  width: 22px;
  height: 22px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: rgba(226, 52, 100, 0.1);

  font-size: 11px;
}

/* CANCELLATION */

.cancellation-table {
  overflow: hidden;

  background: #fff;
  border: 1px solid #e5e8ec;
  border-radius: 15px;
}

.cancellation-row {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 20px;

  padding: 17px 22px;

  border-bottom: 1px solid #edf0f2;
}

.cancellation-row:last-child {
  border-bottom: 0;
}

.cancellation-row span {
  color: #59636e;
}

.cancellation-row strong {
  color: #17202a;
}

.cancellation-head {
  background: #17202a;
  color: #fff;
  font-weight: 700;
}

.cancellation-head span {
  color: #fff;
}

/* DOCUMENTS */

.document-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.document-card {
  padding: 25px;
  background: #fff;
  border: 1px solid #e7eaed;
  border-radius: 14px;
}

.document-card i {
  margin-bottom: 15px;
  color: #dc2626;
  font-size: 27px;
}

.document-card h3 {
  margin: 0 0 8px;
  color: #17202a;
  font-size: 17px;
}

.document-card p {
  margin: 0;
  color: #68727f;
  font-size: 13px;
  line-height: 1.7;
}

/* TIMINGS */

.timing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.timing-card {
  padding: 30px;
  background: #fff;
  border-radius: 15px;
  border: 1px solid #e7eaed;
}

.timing-card span {
  display: block;
  margin-bottom: 8px;

  color: #dc2626;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.timing-card strong {
  display: block;
  margin-bottom: 12px;

  color: #17202a;
  font-size: 24px;
}

.timing-card p {
  margin: 0;
  color: #68727f;
  line-height: 1.7;
}

/* HELICOPTER */

.helicopter-box {
  display: flex;
  gap: 25px;

  padding: 30px;

  background: #fff;
  border-radius: 16px;
  border: 1px solid #e7eaed;
}

.helicopter-icon {
  flex: 0 0 55px;
  width: 55px;
  height: 55px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 14px;
  background: rgba(226, 52, 100, 0.1);
  color: #dc2626;

  font-size: 22px;
}

.helicopter-box p {
  margin: 0 0 12px;
  color: #68727f;
  line-height: 1.8;
}

.helicopter-box p:last-child {
  margin-bottom: 0;
}

.sub-heading {
  margin: 30px 0 15px;
  color: #17202a;
}

/* JURISDICTION */

.jurisdiction-box {
  display: flex;
  align-items: center;
  gap: 20px;

  padding: 30px;

  background: #fff;
  border-radius: 15px;
  border: 1px solid #e7eaed;
}

.jurisdiction-box i {
  color: #dc2626;
  font-size: 30px;
}

.jurisdiction-box p {
  margin: 0;
  color: #68727f;
  line-height: 1.8;
}

/* SPECIAL */

.special-condition {
  padding: 28px 30px;
  background: #fff;
  border-radius: 15px;
  border: 1px solid #e7eaed;
}

.special-condition p {
  margin: 0 0 12px;
  color: #68727f;
  line-height: 1.8;
}

.special-condition p:last-child {
  margin-bottom: 0;
}

/* ACCEPTANCE */

.terms-acceptance {
  display: flex;
  gap: 25px;
  padding: 35px;

  background: #17202a;
  border-radius: 18px;
  color: #fff;
}

.terms-acceptance > i {
  color: #dc2626;
  font-size: 32px;
}

.terms-acceptance h2 {
  margin: 0 0 15px;
  font-size: 25px;
}

.terms-acceptance p {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
}

.terms-acceptance p:last-child {
  margin-bottom: 0;
}
.mandatory-id-intro {
  max-width: 900px;
  margin: 0 auto 35px;
  padding: 20px 24px;
  background: #fff7f9;
  border: 1px solid rgba(226, 52, 100, 0.15);
  border-left: 4px solid #dc2626;
  border-radius: 8px;

  font-size: 16px;
  line-height: 1.75;
  color: #475569;
}

.mandatory-id-intro::before {
  content: "Important";
  display: block;
  margin-bottom: 5px;

  font-size: 14px;
  font-weight: 700;
  color: #dc2626;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 900px) {
  .legal-card-grid {
    grid-template-columns: 1fr 1fr;
  }

  .document-grid {
    grid-template-columns: 1fr 1fr;
  }

  .payment-methods {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 650px) {
  .legal-page {
    padding: 30px 0;
  }

  .legal-hero {
    min-height: 300px;
  }

  .legal-hero-content {
    padding: 55px 0;
  }
  .legal-hero-content span {
    padding-top: 30px;
  }
  .legal-card-grid,
  .document-grid,
  .timing-grid {
    grid-template-columns: 1fr;
  }

  .legal-section-heading h2 {
    font-size: 24px;
  }

  .legal-number {
    flex-basis: 42px;
    width: 42px;
    height: 42px;
  }

  .cancellation-row {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .cancellation-head {
    display: none;
  }

  .security-alert,
  .helicopter-box,
  .terms-acceptance {
    flex-direction: column;
  }

  .terms-acceptance {
    padding: 25px;
  }
}
