
/* =====================================================
   HAPPY TRIP NAVBAR (MATCH REFERENCE IMAGE)
   ===================================================== */

.pt-5 {
  padding-top: 2.5rem !important;
}
p{
    margin-top: 0;
    margin-bottom: 1rem;
    color: #000;
    font-size: 17px;
}


.ht-navbar {
    background-color: #2d5bb3;     /* reference blue */
    height: 72px;
    padding: 0;
    z-index: 1030;
}

/* container spacing */
.ht-navbar .container {
    padding-left: 20px;
    padding-right: 48px;
}

/* Brand text */
.ht-brand-text {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1;
}

/* Happy */
.ht-brand-text .brand-happy {
    color: #ffffff;
}

/* Trip */
.ht-brand-text .brand-trip {
    color: #ffc107;
    margin-left: 6px;
}

/* Center menu */
.ht-navbar .navbar-collapse {
    justify-content: center;
}

/* Menu list */
.ht-navlinks {
    gap: 28px;
}

/* Menu links */
.ht-navlinks .nav-link {
    color: #ffffff !important;
    font-size: 15px;
    font-weight: 500;
    padding: 0;
    white-space: nowrap;
}

/* Hover effect */
.ht-navlinks .nav-link:hover {
    opacity: 0.85;
}

/* Mobile toggler */
.ht-navbar .navbar-toggler {
    border: none;
}

.ht-navbar .navbar-toggler:focus {
    box-shadow: none;
}

/* Mobile menu */
@media (max-width: 991px) {
    .ht-navbar {
        height: auto;
        padding: 12px 0;
    }

    .ht-navbar .navbar-collapse {
        background-color: #2d5bb3;
        padding: 16px 0;
    }

    .ht-navlinks {
        gap: 14px;
        text-align: center;
    }
}
/* ====== HERO BASE ====== */
.ht-hero {
  background: #fbf7ef;
  padding: 120px 0;
  overflow: hidden;
  font-family: "Poppins", "Rubik", sans-serif;
}

/* ====== BADGE ====== */
.ht-badge {
  display: inline-block;
  background: #ffffff;
  color: #555;
  font-size: 14px;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
  box-shadow: 0 4px 12px rgba(0,0,0,.06);
}

/* ====== TITLE ====== */
.ht-hero-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 18px;
  color: #0f172a;
}

.ht-accent {
  color: #0905ef;
  font-style: italic;
}

/* ====== SUBTITLE ====== */
.ht-hero-sub {
  font-size: 18px;
  line-height: 1.7;
  color: #444;
  max-width: 540px;
  margin-bottom: 26px;
}

/* ====== BUTTONS ====== */
.ht-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.ht-hero-actions .btn {
  padding: 12px 22px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

/* Primary button */
.ht-hero-actions .btn-primary {
  background: #1403d0;
  border: 1px solid #1804f5;
  color: #ffffff;
}

.ht-hero-actions .btn-primary:hover {
  background: #0d5e57;
  border-color: #0d5e57;
}

/* Outline button */
.ht-hero-actions .btn-outline-secondary {
  border: 1px solid #ccc;
  color: #333;
  background: transparent;
}

.ht-hero-actions .btn-outline-secondary:hover {
  background: #f2f2f2;
}

/* ====== IMAGE CARD ====== */
.ht-hero-image {
  max-width: 520px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 28px 60px rgba(0,0,0,.18);
}

.ht-hero-image img {
  width: 100%;
  display: block;
}
/* ====== STATS CONTAINER ====== */
.ht-hero-stats {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* Each stat */
.ht-stat-item {
  position: relative;
  padding-right: 40px;
}

/* ✅ Vertical separator line (THIS IS WHAT YOU MISSED) */
.ht-stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background: rgba(0, 0, 0, 0.15); /* darker so it shows */
}

/* Text styles */
.ht-stat-item strong {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: #0f172a;
}

.ht-stat-item span {
  font-size: 13px;
  color: #666;
}


/* ====== ANIMATIONS ====== */
.ht-animate {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.ht-animate.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.ht-delay-1 { transition-delay: .15s; }
.ht-delay-2 { transition-delay: .30s; }
.ht-delay-3 { transition-delay: .45s; }
.ht-delay-4 { transition-delay: .60s; }

/* ====== RESPONSIVE ====== */

/* Tablet */
@media (max-width: 991px) {
  .ht-hero {
    padding: 80px 0;
    text-align: center;
  }

  .ht-hero-title {
    font-size: 2.3rem;
  }

  .ht-hero-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .ht-hero-actions {
    justify-content: center;
  }

  .ht-hero-stats {
    justify-content: center;
  }

  .ht-hero-stats div {
    text-align: center;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .ht-hero-title {
    font-size: 1.9rem;
  }

  .ht-hero-actions .btn {
    width: 100%;
  }

  .ht-hero-image {
    max-width: 100%;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .ht-animate {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
/* Flight link */
.flight-link {
    margin-top: 12px;
    font-size: 14px;
}

.flight-link a {
    color: #fbb415;
    font-weight: 500;
    text-decoration: none;
}

.partners-section {
    background-color: #f4f7fb;
    padding: 60px 0;
}

.partners-title {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 40px;
}

.partners-logos img {
    max-width: 100%;     /* ✅ prevents overflow */
    height: 40px;        /* ✅ consistent height */
    object-fit: contain; /* ✅ preserve ratio */

    gap: 20px;
}

.partners-logos img:hover {
    transform: scale(1.05);
    opacity: 1;
}

/* Mobile spacing */
@media (max-width: 768px) {
    .partners-logos div {
        margin-bottom: 20px;
    }
}

/* ===== SECTION BASE ===== */
.ht-services {
  background: #eef1f4;
  padding: 100px 0;
}

/* Top header */
.ht-services-top {
  margin-bottom: 40px;
}

.ht-section-label {
  font-size: 12px;
  letter-spacing: 1.5px;
  color: #3b82f6;
  font-weight: 600;
}

.ht-section-title {
  font-size: 32px;
  font-weight: 600;
  color: #0f172a;
  margin-top: 10px;
  max-width: 520px;
}

/* Right link */
.ht-all-link {
  font-size: 14px;
  color: #0f172a;
  text-decoration: none;
  margin-top: 10px;
}

.ht-all-link:hover {
  text-decoration: underline;
}

/* ===== GRID ===== */
.ht-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid #dcdfe4;
  border-radius: 14px;
  overflow: hidden;
}

/* ===== CARD ===== */
.ht-service-card {
  background: #f7f8fa;
  padding: 28px;
  min-height: 160px;
  border-right: 1px solid #dcdfe4;
  border-bottom: 1px solid #dcdfe4;
  transition: all 0.25s ease;
}

/* Remove extra borders */
.ht-service-card:nth-child(3n) {
  border-right: none;
}

.ht-service-card:nth-last-child(-n+3) {
  border-bottom: none;
}

/* Hover effect */
.ht-service-card:hover {
  background: #ffffff;
}

/* ===== ICON ===== */
.ht-service-icon {
  margin-bottom: 12px;
}

.ht-service-icon i {
  font-size: 20px;
  color: #2563eb;
}

/* ===== TEXT ===== */
.ht-service-card h4 {
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 8px;
}

.ht-service-card p {
  font-size: 13px;
  color: #555;
  line-height: 1.5;
}
/* ===== HOTEL DESTINATIONS SECTION ===== */
.hotel-section{
  background: linear-gradient(180deg,#ffffff 0%,#f8fafc 100%);
  padding-bottom: 4rem;
}

/* Heading */
.hotel-title{
  font-weight: 800;
  letter-spacing: -0.4px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: .6rem;
}

.hotel-subtitle{
  color: #6b7280;
  max-width: 520px;
  margin: 0 auto;
  font-size: 1rem;
  padding-bottom: 1.8rem;
}

/* Card wrapper */
.hotel-card{
  background: #fff;
  border-radius: 16px;
  padding: 10px;
  box-shadow: 0 18px 40px rgba(0,0,0,.12);
  transition: transform .25s ease, box-shadow .25s ease;
}

.hotel-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(0,0,0,.18);
}

/* Trip iframe styling */
.hotel-card iframe{
  width: 100%;
  height: 250px;
  border: 0;
  border-radius: 12px;
  overflow: hidden;
}

/* Mobile optimization */
@media (max-width: 767px){
  .hotel-card iframe{
    height: 380px;
  }
}

/* SECTION */
.why-thailand-section {
    background-color: #eef3f7;
    padding: 100px 20px;
}

/* GRID LAYOUT */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* IMAGE */
.why-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
}

/* CONTENT */
.why-content {
    max-width: 520px;
}

/* LABEL */
.section-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #3b5bcc;
}

/* TITLE */
.why-content h2 {
    font-size: 34px;
    font-weight: 600;
    color: #1c2b39;
    margin: 12px 0;
}

/* DESCRIPTION */
.description {
    font-size: 15px;
    color: #5f6f81;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* LIST */
.why-list {
    list-style: none;
    padding: 0;
}

.why-list li {
    font-size: 14px;
    margin-bottom: 14px;
    color: #1c2b39;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

/* CHECK ICON */
.why-list i {
    color: #3b5bcc;
    margin-top: 3px;
}

/* ===== TOP TRAVEL DEALS ===== */
.travel-deals-section{
  background: #234FA3; /* deep blue */
  padding: 4rem 0;
  color: #fff;
}

/* Header */
.deals-header{
  max-width: 520px;
  margin-bottom: 2.5rem;
}

.deals-header h2{
  font-weight: 600;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: .6rem;
  color: #f0efef;
}

.deals-header p{
  color: #f0efef;
  font-size: .95rem;
}

/* Deal card */
.deal-card{
  background:#0D6EFD;
  border-radius: 14px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background .25s ease, transform .25s ease;
  color: #fdfdfe;
}

.deal-card:hover{
  background: #234FA3;
  transform: translateY(-2px);
  color: #FFFEFE;
}

/* Left side */
.deal-left{
  display: flex;
  align-items: center;
  gap: 12px;
}

.deal-icon{
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background:#F1F5F9 ;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.deal-text{
  font-weight: 600;
  font-size: .95rem;
  color: #000;
}

/* CTA */
.deal-action{
  color: #0D6EFD; /* Happy Trip yellow */
  font-weight: 700;
  font-size: .9rem;
  text-decoration: none;
  white-space: nowrap;
}

.deal-action:hover{
  text-decoration: underline;
}

/* Mobile */
@media (max-width: 767px){
  .deal-card{
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

/* ===== FEATURED DESTINATIONS ===== */
.featured-destinations{
  background: #fff;
  padding-bottom: 4rem;
}

/* Section title */
.section-title{
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  letter-spacing: -0.4px;
}

/* Card wrapper */
.destination-card{
  position: relative;
  display: block;
  height: 260px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,.18);
  transition: transform .35s ease, box-shadow .35s ease;
}

.destination-card img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

/* Dark gradient overlay */
.destination-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,.65) 0%,
    rgba(0,0,0,.35) 40%,
    rgba(0,0,0,.10) 70%
  );
}

/* Destination text */
.destination-title{
  position: absolute;
  left: 18px;
  bottom: 18px;
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  z-index: 2;
  text-shadow: 0 2px 10px rgba(0,0,0,.6);
}

/* Hover effects */
.destination-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 30px 65px rgba(0,0,0,.25);
}

.destination-card:hover img{
  transform: scale(1.08);
}

/* Responsive height */
@media (max-width: 767px){
  .destination-card{
    height: 220px;
  }
}


/* ===== BLOG OVERVIEW ===== */
.blog-overview{
  background: #F6F8FB;
  padding: 4.5rem 0;
}

/* Header */
.blog-overview-head{
  max-width: 780px;
  margin-bottom: 2.5rem;
}

.blog-overview-head h2{
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 1rem;
  color: #0f172a;
}

.blog-overview-list{
  padding-left: 1.1rem;
  color: #64748b;
  font-size: .95rem;
  line-height: 1.75;
}

/* Grid */
.blog-cards{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 22px;
}

/* Card */
.blog-card{
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  border: 1px solid #E7ECF3;
  transition: transform .2s ease, box-shadow .2s ease;
}

.blog-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 22px 45px rgba(15,23,42,.08);
}

/* Image */
.blog-image{
  position: relative;
  height: 180px;
}

.blog-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Category pill */
.blog-pill{
  position: absolute;
  left: 12px;
  bottom: 12px;
  background: #EAF1FF;
  color: #0D6EFD;
  font-size: .7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
}

/* Content */
.blog-content{
  padding: 16px 16px 20px;
}

.blog-content h4{
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px;
  line-height: 1.35;
}

.blog-content p{
  font-size: 1rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
  font-family: "Poppins", "Rubik", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

/* Responsive */
@media (max-width: 991px){
  .blog-cards{ grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 575px){
  .blog-cards{ grid-template-columns: 1fr; }
}

/* CTA SECTION */
.happytrip-cta {
    background: #234FA3;
    padding: 90px 20px;
}

/* FLEX LAYOUT */
.cta-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

/* TEXT */
.cta-text {
    max-width: 600px;
}

.cta-label {
    font-size: 12px;
    letter-spacing: 2px;
    color: #ffc107;
    font-weight: 600;
}

.cta-text h2 {
    font-size: 38px;
    font-weight: 600;
    color: #2b06e4;
    margin: 12px 0;
}

.cta-text p {
    font-size: 15px;
    color: #dbe4ff;
    line-height: 1.7;
}

/* BUTTON AREA */
.cta-actions {
    display: flex;
    gap: 15px;
}

/* PRIMARY BUTTON */
.cta-primary {
    background: #ffc107;
    color: #1c2b39;
    padding: 12px 26px;
    border-radius: 30px;
    font-weight: 500;
    transition: 0.3s;
}
.cta-primary:hover {
    background: #ffb300;
    color: #1c2b39;
}

/* OUTLINE BUTTON */
.cta-outline {
    border: 1px solid rgba(233, 172, 6, 0.6);
    color: #3305ed;
    padding: 12px 26px;
    border-radius: 30px;
    transition: 0.3s;
}

.cta-outline:hover {
    background: rgba(255,255,255,0.1);
    color: #ffffff;
}

@media (max-width: 768px) {
    .cta-box {
        flex-direction: column;
        text-align: center;
    }

    .cta-text h2 {
        font-size: 28px;
    }

    .cta-actions {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* ===== HOTEL PAGE HERO ===== */
.hotel-hero{
  background: #234FA3; /* HappyTrip blue */
  padding: 7rem 0 6rem;
}

/* Content */
.hotel-hero-content{
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

/* Title */
.hotel-hero-title{
  color: #FFC107; /* HappyTrip yellow */
  font-weight: 800;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.15;
  margin-bottom: 1.2rem;
}

/* Subtitle */
.hotel-hero-subtitle{
  color: rgba(255,255,255,.92);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto 2.4rem;
}

/* Button */
.hotel-hero-btn{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFC107;
  color: #1F2937;
  padding: 15px 28px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 16px 36px rgba(255,193,7,.35);
  transition: transform .15s ease, box-shadow .15s ease;
}

.hotel-hero-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(255,193,7,.45);
}

/* Mobile spacing */
@media (max-width: 767px){
  .hotel-hero{
    padding: 6rem 0 5rem;
  }
}


/* ===== HOTEL TRUST SECTION ===== */
.hotel-trust-section{
  background: #F6F8FB; /* soft off-white */
  padding: 4.5rem 0;
}

/* Header */
.trust-header{
  max-width: 760px;
  margin-bottom: 3rem;
}

.trust-header h2{
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: .6rem;
}

.trust-header p{
  color: #6b7280;
  font-size: .95rem;
  max-width: 640px;
}

/* Feature pills */
.trust-features{
  display: flex;
  gap: 12px;
  margin-top: 1.2rem;
  flex-wrap: wrap;
}

.trust-features span{
  background: #EEF2F7;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: .85rem;
  color: #1f2937;
  font-weight: 500;
}

/* Popular searches */
.popular-searches h3{
  font-weight: 700;
  margin-bottom: 1rem;
}

/* Search items */
.search-item{
  display: block;
  background: #F9FBFF;
  border: 1px solid #E5EAF2;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: .9rem;
  color: #1f2937;
  text-decoration: none;
  transition: background .2s ease, transform .15s ease;
}

.search-item:hover{
  background: #EEF4FF;
  transform: translateX(4px);
}

/* Mobile */
@media (max-width: 767px){
  .trust-header{
    text-align: left;
  }
}


/* ===== FLIGHTS INFO SECTION ===== */
.flights-info-section{
  background: #F6F8FB; /* soft off-white */
  padding: 4.5rem 0;
}

/* Headings */
.flights-info-section h2{
  font-weight: 800;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  margin-bottom: .6rem;
}

.section-subtitle{
  color: #6b7280;
  font-size: .95rem;
  margin-bottom: 1.8rem;
}

/* Compare features */
.compare-features{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-bottom: 4rem;
}

.feature-card{
  background: #EEF3F7;
  border-radius: 14px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  font-weight: 500;
  color: #1f2937;
}

.feature-icon{
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #E3EBFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

/* Tips section */
.flight-tips h2{
  margin-bottom: 1.2rem;
}

/* Tip cards */
.tip-card{
  background: #F9FBFF;
  border: 1px solid #E5EAF2;
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .9rem;
  font-weight: 500;
  color: #1f2937;
}

.tip-number{
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #E8F0FF;
  color: #0D6EFD; /* HappyTrip blue */
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .85rem;
}


/* ===== BOOKING CTA ===== */
.guide-booking-cta{
  background: #F6F8FB;
  padding: 3rem 0 5rem;
}

.booking-box{
  max-width: 880px;
  margin: 0 auto;
  background: #F5F0E4;
  border-radius: 18px;
  padding: 3rem 2rem;
  text-align: center;
}

.booking-box h3{
  font-weight: 800;
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  margin-bottom: .5rem;
  color: #0f172a;
}

.booking-box p{
  color: #64748b;
  font-size: .95rem;
  margin-bottom: 1.8rem;
}

.booking-actions{
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.booking-actions .btn{
  padding: 12px 22px;
  font-weight: 700;
  border-radius: 10px;
}
/* ===== CURRENT TRAVEL DEALS ===== */
.current-deals{
  background: #F6F8FB;
  padding: 4.5rem 0;
}

.current-deals-header{
  max-width: 700px;
  margin-bottom: 2rem;
  color: #000;
}

.current-deals-header h2{
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: .4rem;
  color: #000;
}

.current-deals-note{
  font-size: .9rem;
  color: #000;
}

/* GRID */
.deals-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

/* CARD */
.deal-card{
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  border: 1px solid #E7ECF3;
  border-radius: 14px;
  padding: 16px 18px;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.deal-card:hover{
  transform: translateY(-3px);
  border-color: #D9E3F2;
  box-shadow: 0 18px 40px rgba(15,23,42,.08);
}

/* LEFT */
.deal-left{
  display: flex;
  align-items: center;
  gap: 14px;
}

.deal-left small{
  display: block;
  font-size: .7rem;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
}

.deal-left strong{
  font-size: .95rem;
  font-weight: 700;
  color: #0f172a;
}

/* ICONS */
.deal-icon{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.deal-icon.flights{ background:#FFF4E5; }
.deal-icon.hotels{ background:#EAF1FF; }
.deal-icon.resorts{ background:#ECFDF3; }
.deal-icon.city{ background:#F1F5F9; }

/* CTA */
.deal-view{
  font-weight: 700;
  font-size: .85rem;
  color: #0D6EFD;
  white-space: nowrap;
}

/* MOBILE */
@media (max-width: 767px){
  .deals-grid{
    grid-template-columns: 1fr;
  }
}
/* =========================
   About Us Section
   ========================= */

.about-us-section{
  background: #f6f8fb;
  padding: 80px 0;
}

.about-us-section .container{
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 18px;
}

.text-center{
  text-align: center;
}

.about-section {
    background-color: #e9edf2;
    padding: 80px 0;
}

.about-section .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #2f5bd3;
    display: inline-block;
    margin-bottom: 20px;
}

.about-title {
    font-family: "Georgia", serif;
    font-size: 42px;
    line-height: 1.3;
    color: #1f2a44;
    margin-bottom: 20px;
}

.about-desc {
    font-size: 15px;
    color: #6b7280;
    max-width: 500px;
    line-height: 1.6;
}
@media (max-width: 768px) {
    .about-title {
        font-size: 28px;
    }
}

.story-mission {
    background-color: #eef2f5;
    padding: 80px 0;
}

.story-mission .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.content-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

/* IMAGE */
.image-area {
    flex: 1;
}

.image-area img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
}

/* TEXT */
.text-area {
    flex: 1;
}

.section-title {
    font-family: "Georgia", serif;
    font-size: 24px;
    margin-bottom: 15px;
    color: #1f2a44;
}

.text-area p {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* spacing */
.mt-40 {
    margin-top: 40px;
}

/* QUOTE BOX */
.mission-quote {
    margin-top: 20px;
    padding-left: 15px;
    border-left: 3px solid #2f5bd3;
    color: #6b7280;
    font-style: italic;
}

@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
    }

    .text-area {
        text-align: left;
    }
}
.values-section {
    background-color: #eef2f5;
    padding: 80px 0;
    text-align: center;
}

.section-heading {
    font-family: "Georgia", serif;
    font-size: 28px;
    color: #1f2a44;
    margin-bottom: 40px;
}

/* Card container */
.values-card {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid #dcdfe4;
    border-radius: 12px;
    overflow: hidden;
    background: #f7f8fa;
}

/* Each item */
.value-item {
    padding: 25px;
    text-align: left;
    border-right: 1px solid #dcdfe4;
    border-bottom: 1px solid #dcdfe4;
}

/* Remove extra borders */
.value-item:nth-child(3n) {
    border-right: none;
}

.value-item:nth-last-child(-n+3) {
    border-bottom: none;
}

.value-item h4 {
    font-size: 16px;
    color: #1f2a44;
    margin-bottom: 10px;
}

.value-item p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .values-card {
        grid-template-columns: repeat(2, 1fr);
    }

    .value-item:nth-child(2n) {
        border-right: none;
    }
}

@media (max-width: 576px) {
    .values-card {
        grid-template-columns: 1fr;
    }

    .value-item {
        border-right: none !important;
    }
}
.value-item {
    transition: all 0.3s ease;
}

.value-item:hover {
    background-color: #ffffff;
    transform: translateY(-3px);
}
.legal-section {
    background-color: #eef2f5;
    padding: 80px 0;
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
}

/* wrapper */
.legal-wrapper {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

/* cards */
.legal-card {
    flex: 1;
    padding: 30px;
    border-radius: 20px;
    position: relative;
}

/* LEFT CARD (BLUE) */
.disclaimer {
    background-color: #2f5bd3;
    color: #ffffff;
}

.disclaimer p {
    color: rgba(255,255,255,0.85);
}

/* RIGHT CARD */
.affiliate {
    background-color: #f7f8fa;
    color: #1f2a44;
    border: 1px solid #e2e5ea;
}

.affiliate p {
    color: #6b7280;
}

/* icon */
.icon {
    width: 40px;
    height: 40px;
    background: fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 15px;
    font-size: 18px;
}

/* title */
.legal-card h3 {
    font-family: "Georgia", serif;
    font-size: 22px;
    margin-bottom: 15px;
}

/* text */
.legal-card p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 12px;
}


/* policy text */
.policy {
    margin-top: 20px;
    font-size: 12px;
    letter-spacing: 1.5px;
    color: #0d6efd;
}
@media (max-width: 768px) {
    .legal-wrapper {
        flex-direction: column;
    }
}
.legal-card:hover {
    transform: translateY(-5px);
    transition: 0.3s ease;
}


@media (max-width: 640px){
  .about-us-section{
    padding: 56px 0;
  }

  .values-grid{
    grid-template-columns: 1fr;
  }
}
.estimate-hero {
    background: #eef2f7;
    padding: 120px 0;
}

/* Layout */
.hero-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 60px;
}

/* TEXT */
.hero-text {
    max-width: 580px;
}

.sub-title {
    font-size: 11px;
    letter-spacing: 2px;
    color: #3b82f6;
    text-transform: uppercase;
    font-weight: 600;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 500;
    color: #1e293b;
    margin: 18px 0;
    line-height: 1.2;
    font-family: "Georgia", serif; /* elegant style */
}

.hero-text p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.7;
    max-width: 520px;
}

/* IMAGE */
.hero-image {
    display: flex;
    justify-content: flex-end;
}

.hero-image img {
    width: 100%;
    max-width: 460px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    object-fit: cover;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
    }

    .hero-image {
        justify-content: center;
    }

    .hero-text h1 {
        font-size: 34px;
    }
}
.contact-section {
    background: #eef2f7;
    padding: 100px 0;
}

/* Layout */
.contact-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

/* FORM */
.contact-form {
    background: transparent;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #475569;
    display: block;
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid #d1d5db;
    background: #f8fafc;
    font-size: 14px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
}

/* BUTTON */
.btn-primary {
    margin-top: 10px;
    background: #2563eb;
    color: white;
    padding: 14px 26px;
    border: none;
    border-radius: 30px;
    font-size: 14px;
    cursor: pointer;
}

.form-note {
    font-size: 12px;
    color: #64748b;
    margin-top: 15px;
}

/* RIGHT SIDE */
.contact-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* CONTACT CARD */
.contact-card {
    background: #f1f5f9;
    padding: 25px;
    border-radius: 16px;
    border: 1px solid #d1d5db;
}

.contact-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.contact-card p {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 15px;
}

.contact-item {
    background: #fff;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #d1d5db;
    margin-bottom: 10px;
    font-size: 14px;
}

/* PARTNER BOX */
.partner-box {
    background: #273fa9;
    color: #fff;
    padding: 25px;
    border-radius: 16px;
}

.partner-box h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.partner-box p {
    font-size: 14px;
    margin-bottom: 15px;
    color: #dbeafe;
}

.btn-yellow {
    display: inline-block;
    background: #fbbf24;
    color: #000;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
}

/* MOBILE */
@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

/* ===== Guide Layout ===== */
.guide-content{
  padding: 70px 0;
  background: #ffffff;
}

/* Sidebar */
.guide-sidebar{
  border-right: 1px solid #eee;
}

.sidebar-title{
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}

.sidebar-posts{
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-posts li{
  margin-bottom: 14px;
}

.sidebar-posts a{
  color: #0d6efd;
  font-size: 14px;
  text-decoration: none;
}

.sidebar-posts a:hover{
  text-decoration: underline;
}

/* Main content */
.guide-main{
  padding-left: 20px;
}

.guide-back-link{
  display: inline-block;
  font-size: 13px;
  margin-bottom: 10px;
  color: #666;
  text-decoration: none;
}

.guide-back-link:hover{
  text-decoration: underline;
}

/* Title */
.guide-title{
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

/* Featured image */
.guide-hero-image{
  margin-bottom: 25px;
}

.guide-hero-image img{
  width: 100%;
  border-radius: 6px;
  display: block;
}

/* Article text */
.guide-article p{
  font-size: 16px;
  line-height: 1.75;
  color: #333;
  margin-bottom: 18px;
}

.guide-article strong{
  font-weight: 700;
}

.medical-tourism-section {
  background-color: #f6f8fc;
  padding: 70px 20px;
}

.medical-container {
  max-width: 900px;
  margin: 0 auto;
}

.medical-container h2 {
  font-size: 32px;
  font-weight: 700;
  color: #1f3c88;
  margin-bottom: 25px;
}

.medical-container p {
  font-size: 16px;
  line-height: 1.8;
  color: #5f6f8f;
  margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .medical-container h2 {
    font-size: 26px;
  }

  .medical-container p {
    font-size: 15px;
  }
}

/* FOOTER */
.ht-footer {
    background: #7582b240;
    padding: 80px 20px 40px;
    color: #1c2b39;
}

/* LOGO */
.footer-logo {
    font-size: 18px;
    font-weight: 600;
}

.brand-happy {
    color: #1c2b39;
}

/* DESCRIPTION */
.footer-desc {
    font-size: 14px;
    color: #5f6f81;
    margin-top: 10px;
    line-height: 1.7;
    max-width: 420px;
}

/* CONTACT */
.footer-contact {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.footer-contact li {
    font-size: 14px;
    margin-bottom: 10px;
    color: #5f6f81;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: #3b5bcc;
}

/* TITLES */
.footer-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

/* LINKS */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 14px;
    color: #5f6f81;
    text-decoration: none;
}

.footer-links a:hover {
    color: #3b5bcc;
}

/* BOTTOM */
.footer-bottom {
    border-top: 1px solid #d9e1e8;
    margin-top: 50px;
    padding-top: 20px;
    font-size: 13px;
    color: #7a8a9a;
}

.visitor-box h6 {
    font-size: 13px;
    margin-bottom: 8px;
}

.visitor-box p {
    margin: 2px 0;
}

.hero-services {
    background: #f1f5f9;
    padding: 100px 0;
}

/* Two column layout */
.hero-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

/* Left Content */
.hero-content {
    max-width: 600px;
}

/* Label */
.hero-label {
    font-size: 12px;
    letter-spacing: 2px;
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 15px;
    display: inline-block;
}

/* Heading */
.hero-services h1 {
    font-size: 56px;
    line-height: 1.2;
    color: #0f172a;
    margin-bottom: 20px;
}

/* Description */
.hero-description {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.7;
}

/* Buttons */
.hero-actions {
    margin-top: 30px;
    display: flex;
    gap: 15px;
}

.btn-primary {
    background: #2563eb;
    color: #fff;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
}

.btn-secondary {
    border: 1px solid #2563eb;
    color: #2563eb;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
}

/* Image section */
.hero-image img {
    width: 400px;
    border-radius: 16px;
    object-fit: cover;
}
@media (max-width: 992px) {
    .hero-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .hero-image img {
        width: 100%;
    }

    .hero-services h1 {
        font-size: 36px;
    }
}
.services-highlight {
    padding: 80px 0;
    background: #ffffff;
}

/* Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
}

/* Card */
.service-card {
    padding: 30px;
    border-right: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

/* Remove extra borders */
.service-card:nth-child(2n) {
    border-right: none;
}

.service-card:nth-last-child(-n+2) {
    border-bottom: none;
}

/* Top Row */
.card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

/* Icon */
.card-top i {
    font-size: 18px;
    color: #2563eb;
}

/* Badge */
.badge {
    font-size: 12px;
    color: #475569;
    background: #f1f5f9;
    padding: 5px 10px;
    border-radius: 999px;
}

/* Title */
.service-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #0f172a;
}

/* Text */
.service-card p {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 15px;
    line-height: 1.6;
}

/* CTA */
.link {
    font-size: 14px;
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}

.link:hover {
    text-decoration: underline;
}
.hero-how {
    background: #f1f5f9; /* same soft background */
    padding: 90px 0;
}

/* content width */
.hero-content {
    max-width: 700px;
}

/* label */
.hero-label {
    font-size: 12px;
    letter-spacing: 2px;
    color: #2563eb;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 14px;
}

/* heading */
.hero-how h1 {
    font-size: 52px;
    line-height: 1.2;
    color: #0f172a;
    margin-bottom: 18px;
}

/* description */
.hero-description {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.7;
}
.hero-content {
    animation: fadeUp 0.8s ease;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@media (max-width: 768px) {
    .hero-how h1 {
        font-size: 32px;
    }

    .hero-description {
        font-size: 14px;
    }
}.timeline-section {
    padding: 80px 0;
    background: #f9fafb;
}

/* Timeline container */
.timeline {
    position: relative;
    max-width: 750px;
    margin: auto;
}

/* Vertical line (centered correctly) */
.timeline::before {
    content: "";
    position: absolute;
    top: 0;
    left: 18px; /* FIXED position */
    width: 2px;
    height: 100%;
    background: #d1d5db;
}

/* Each item */
.timeline-item {
    position: relative;
    padding-left: 60px; /* IMPORTANT spacing */
    margin-bottom: 50px;
}

/* Marker circle */
.timeline-marker {
    position: absolute;
    left: 0;
    top: 0;

    width: 36px;
    height: 36px;

    border-radius: 50%;
    background: #f1f5f9;
    border: 2px solid #2563eb;

    color: #2563eb;
    font-size: 12px;
    font-weight: 600;

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 2; /* ensure above line */
}

/* Content */
.timeline-content {
    padding-top: 2px;
}

/* Title */
.timeline-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 6px;
}

/* Text */
.timeline-content p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}

/* Hover effect */
.timeline-item:hover .timeline-marker {
    background: #2563eb;
    color: #fff;
}

.cta-section {
    padding: 60px 0;
    background: #ffffff;
}

/* Main Box */
.cta-box {
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 30px 40px;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

/* Text */
.cta-text h3 {
    font-size: 20px;
    color: #0f172a;
    margin-bottom: 5px;
}

.cta-text p {
    font-size: 14px;
    color: #6b7280;
}

/* Button */
.cta-btn {
    background: #2563eb;
    color: #ffffff;
    padding: 12px 22px;
    border-radius: 999px;
    font-size: 14px;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: #1d4ed8;
}
.cta-btn {
    position: relative;
}

.cta-btn:hover {
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .cta-box {
        flex-direction: column;
        align-items: flex-start;
        padding: 25px;
    }

    .cta-action {
        width: 100%;
    }

    .cta-btn {
        width: 100%;
        text-align: center;
    }
}
.cta-box {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
}
.referral-section {
    background: #e2e8f0;
    padding: 60px 20px;
}

/* Wrapper */
.referral-wrapper {
    display: flex;
    flex-direction: column;
    gap: 25px;
    text-align: center;
}

/* Label */
.label {
    font-size: 12px;
    letter-spacing: 2px;
    color: #2563eb;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 10px;
}

/* Title */
.title {
    font-size: 28px;
    color: #0f172a;
    margin-bottom: 15px;
}

/* Description */
.description {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}

/* Image */
.referral-image img {
   width: 500px;
    border-radius: 16px;
    object-fit: cover;
    padding-top:40px;
}

@media (min-width: 992px) {
    .referral-wrapper {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        text-align: left;
    }

    .referral-content {
        max-width: 550px;
    }

    .title {
        font-size: 48px;
    }

    .referral-image img {
        width: 480px;
    }
}

.partner-section {
    background-color: #f3f6f9;
    padding: 80px 20px;
}

.partner-section .container {
    max-width: 1100px;
    margin: 0 auto;
}

.partner-section .row {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

/* Columns */
.col-left, .col-right {
    flex: 1;
    min-width: 300px;
}

/* Titles */
.section-title {
    font-size: 32px;
    font-weight: 600;
    color: #1c2b39;
    margin-bottom: 15px;
}

.section-desc {
    color: #5f6f81;
    font-size: 16px;
    margin-bottom: 30px;
    max-width: 500px;
}

/* Grid boxes */
.grid-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border: 1px solid #d9e1e8;
    border-radius: 10px;
    overflow: hidden;
}

.box {
    padding: 20px;
    border: 1px solid #e3e9ef;
    background: #fff;
}

.box h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.box p {
    font-size: 14px;
    color: #5f6f81;
}

/* Right list */
.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    font-size: 15px;
    margin-bottom: 15px;
    padding-left: 28px;
    position: relative;
    color: #1c2b39;
}

/* Check icon */
.benefits-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #3b82f6;
    font-weight: bold;
}
@media (max-width: 768px) {
    .partner-section .row {
        flex-direction: column;
    }
}
.apply-section {
    background-color: #eef3f7;
    padding: 80px 20px;
    text-align: center;
}

.apply-section .container {
    max-width: 900px;
    margin: 0 auto;
}

/* Titles */
.apply-title {
    font-size: 32px;
    font-weight: 600;
    color: #1c2b39;
    margin-bottom: 10px;
}

.apply-subtitle {
    font-size: 16px;
    color: #5f6f81;
    margin-bottom: 40px;
}

/* Form Layout */
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    text-align: left;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #667085;
}

.form-group input,
.form-group textarea {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #d9e1e8;
    font-size: 14px;
}

/* Full width inputs */
.full-width {
    grid-column: span 2;
}

/* Button */
.submit-btn {
    margin-top: 30px;
    padding: 12px 30px;
    border: none;
    background-color: #3b5bcc;
    color: #fff;
    font-size: 14px;
    border-radius: 25px;
    cursor: pointer;
    transition: 0.3s;
}

.submit-btn:hover {
    background-color: #2f4bb5;
}
@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .full-width {
        grid-column: span 1;
    }
}
/* SECTION */
.how-it-works-section {
    background-color: #eef3f7;
    padding: 100px 20px;
}

/* CONTAINER WIDTH */
.how-it-works-section .container {
    max-width: 1100px;
    margin: 0 auto;
}

/* HEADER */
.section-header {
    margin-bottom: 50px;
}

.section-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #3b5bcc;
}

.section-header h2 {
    font-size: 34px;
    font-weight: 600;
    color: #1c2b39;
    margin-top: 10px;
}

/* GRID WRAPPER */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid #d9e1e8;
    border-radius: 14px;
    overflow: hidden;
    background: #ffffff;
}

/* EACH STEP */
.step-box {
    padding: 30px;
    border-right: 1px solid #e3e9ef;
    border-bottom: 1px solid #e3e9ef;
    transition: 0.3s;
}

/* REMOVE EXTRA BORDERS */
.step-box:nth-child(3n) {
    border-right: none;
}

.step-box:nth-last-child(-n + 3) {
    border-bottom: none;
}

/* NUMBER */
.step-number {
    font-size: 12px;
    font-weight: 600;
    color: #f59e0b;
    display: block;
    margin-bottom: 12px;
}

/* TITLE */
.step-box h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1c2b39;
    margin-bottom: 10px;
}

/* TEXT */
.step-box p {
    font-size: 14px;
    color: #5f6f81;
    line-height: 1.6;
}

/* HOVER EFFECT */
.step-box:hover {
    background-color: #f9fbfd;
}
@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }
}
/* SECTION */
.why-happytrip {
    background-color: #f5f7fa;
    padding: 100px 20px;
}

/* HEADER */
.section-header {
    margin-bottom: 50px;
}

.why-title {
    font-size: 30px;
    font-weight: 700;
    color: #1c2b39;
}

.why-subtitle {
    font-size: 15px;
    color: #6b7c93;
    margin-top: 8px;
}

/* CARD */
.why-card {
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 14px;
    text-align: left;
    height: 100%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

/* HOVER EFFECT */
.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* ICON BOX */
.why-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #e8f0ff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.why-icon i {
    font-size: 18px;
    color: #3b5bcc;
}

/* TITLE */
.why-card h4 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1c2b39;
}

/* TEXT */
.why-card p {
    font-size: 14px;
    color: #5f6f81;
    line-height: 1.6;
}
@media (max-width: 768px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}



/* SECTION */
.how-intro-section {
    background-color: #eef3f7;
    padding: 100px 20px 60px;
}

/* CONTAINER */
.how-intro-section .container {
    max-width: 900px;
}

/* LABEL */
.section-label {
    font-size: 12px;
    letter-spacing: 2px;
    color: #3b5bcc;
    font-weight: 600;
}

/* TITLE */
.intro-title {
    font-size: 44px;
    font-weight: 600;
    color: #1c2b39;
    margin-top: 15px;
    line-height: 1.25;
}

/* DESCRIPTION */
.intro-description {
    font-size: 16px;
    color: #5f6f81;
    margin-top: 20px;
    max-width: 600px;
    line-height: 1.7;
}
@media (max-width: 768px) {
    .intro-title {
        font-size: 28px;
    }
  }
  
.how-timeline-section {
    background-color: #eef3f7;
    padding: 5px 20px 60px;
}

/* CONTAINER */
.timeline {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 20px;          /* ✅ exact alignment point */
    top: 10px;
    bottom: 10px;
    width: 2px;
    background: #3b5bcc;
}
.timeline-item {
    position: relative;
    padding-left: 70px;  /* ✅ makes room for circle + gap */
    margin-bottom: 45px;
}


.timeline-number {
    position: absolute;     /* ✅ IMPORTANT */
    left: 0;                /* ✅ anchor from left */
    transform: translateX(2px); /* ✅ fine alignment */

    width: 40px;
    height: 40px;

    border-radius: 50%;
    border: 2px solid #3b5bcc;
    background: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 12px;
    font-weight: 600;
    color: #3b5bcc;

    z-index: 2;
}

/* TEXT */
.timeline-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1c2b39;
    margin-bottom: 6px;
}

.timeline-content p {
    font-size: 14px;
    color: #5f6f81;
    line-height: 1.6;
    max-width: 520px;
}


@media (max-width: 768px) {
    .timeline::before {
        left: 18px;
    }

    .timeline-item {
        gap: 15px;
    }

    .timeline-number {
        width: 34px;
        height: 34px;
        font-size: 12px;
    }
}
.timeline-item:hover {
    transform: translateY(-2px);
    transition: 0.3s;
}
.timeline-item {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.6s ease forwards;
}
/* SECTION BACKGROUND */
.mini-cta-section {
    background-color: #eef3f7;
    padding: 60px 20px;
}

/* CTA BOX */
.mini-cta-box {
    max-width: 900px;
    margin: 0 auto;
    background: #f8fbff;
    border: 1px solid #d9e1e8;
    border-radius: 16px;
    padding: 25px 30px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* TEXT */
.mini-cta-text h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1c2b39;
    margin-bottom: 5px;
}

.mini-cta-text p {
    font-size: 14px;
    color: #6b7c93;
    margin: 0;
}

/* BUTTON */
.mini-cta-btn {
    background: #3b5bcc;
    color: #ffffff;
    padding: 10px 22px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s;
}

.mini-cta-btn:hover {
    background: #2f4bb5;
    color: #ffffff;
}
@media (max-width: 768px) {
    .mini-cta-box {
        flex-direction: column;
        text-align: center;
    }

    .mini-cta-action {
        margin-top: 10px;
    }
}

/* HERO SECTION */
.faq-hero {
  background: #eef3f8;
  padding: 100px 20px 40px;
}

.faq-container {
  max-width: 1050px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.faq-left {
  flex: 1;
}

.faq-label {
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #4a6cf7;
  font-size: 14px;
  margin-bottom: 15px;
}

.faq-title {
  font-size: 42px;
  line-height: 1.3;
  margin-bottom: 20px;
}

.faq-desc {
  font-size: 18px;
  color: #555;
}

/* IMAGE */
.faq-right-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

/* SECOND SECTION */
.faq-accordion-section {
  background: #eef3f8;
  padding: 40px 20px 80px;
}

.faq-accordion-container {
  max-width: 1050px;
  margin: auto;
}

/* FAQ */
.faq-item {
  border-bottom: 1px solid #d1d5db;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 0;
  text-align: left;
  font-size: 16px;
  cursor: pointer;

  display: flex;
  justify-content: space-between;
  align-items: center; /* ✅ THIS FIXES VERTICAL ALIGNMENT */
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s ease;
  color: #555;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 15px;
}
.icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon svg {
  transition: transform 0.3s ease;
}

/* Rotate when active */
.faq-item.active .icon svg {
  transform: rotate(180deg);
}
.faq-question span {
  margin-left: 15px;
}
.faq-item.active .icon {
  transform: rotate(180deg);
}
@media (max-width: 768px) {
  .faq-container {
    flex-direction: column;
    text-align: center;
  }

  .faq-right-image {
    order: -1;
    margin-bottom: 30px;
  }
}

.services-section {
  background: #eef3f8;
  padding: 110px 20px;
}

.services-container {
  max-width: 1040px;
  margin: auto;
}

/* HEADER */
.services-header {
  margin-bottom: 40px;
}

.services-label {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2px;
  color: #4a6cf7;
  margin-bottom: 10px;
}

.services-title {
  font-size: 36px;
  margin-bottom: 10px;
  font-weight: 500;
}

.services-desc {
  color: #555;
  max-width: 500px;
  line-height: 1.6;
}

/* CARD BOX */
.services-card {
  background: #f9fafb;
  border-radius: 16px;
  padding: 40px;

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* ITEMS */
.service-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-icon {
  font-size: 22px;
  color: #4a6cf7;
}

.service-item h3 {
  font-size: 16px;
  font-weight: 600;
}

.service-item p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

.success-message {
    background: #dcfce7;
    color: #166534;
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    transition: opacity 0.5s ease;
}