
/* =====================================================
   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: 48px;
    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 ====== */
.ht-hero{
  position: relative;
  min-height: 520px;
  display:flex;
  align-items:center;
  overflow:hidden;  
 /*margin-top: -72px;     /* pulls hero up */
  padding-top: 72px;

}

.ht-hero-bg{
  position:absolute;
  inset:0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  z-index: 2;
}

.ht-hero-overlay{
  position:absolute;
  inset:0;
  background: linear-gradient(90deg, rgba(0,0,0,.60) 0%, rgba(0,0,0,.35) 55%, rgba(0,0,0,.18) 100%);
}

.ht-hero-inner{
  position: relative;
  z-index:2;
  padding: 70px 0;
}

.ht-hero-title{
  color:#fff;
  font-weight: 800;
  line-height: 1.06;
  margin-bottom: 14px;
  margin-top: 14px;
  font-family: "Poppins", "Rubik", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 2.5rem;
}

.ht-accent{
  color:#ffd24a;
}

.ht-hero-sub{
  color: rgba(255,255,255,.85);
  max-width: 1060px;
  font-size: 22px;
  line-height: 1.6;
  margin-bottom: 22px;
}


/* 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-height: 40px;
    width: auto;
    opacity: 0.9;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.partners-logos img:hover {
    transform: scale(1.05);
    opacity: 1;
}

/* Mobile spacing */
@media (max-width: 768px) {
    .partners-logos div {
        margin-bottom: 20px;
    }
}

/* ===== 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;
  }
}
/* ===== WHY HAPPYTRIP SECTION ===== */
.why-happytrip{
  background: #FBFAF7; /* light cream */
  padding-bottom: 4rem;
}

/* Title */
.why-title{
  font-weight: 800;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  letter-spacing: -0.4px;
  margin-bottom: .5rem;
}

.why-subtitle{
  color: #6b7280;
  max-width: 520px;
  margin: 0 auto;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

/* Card */
.why-card{
  background: #fff;
  border-radius: 18px;
  padding: 28px 24px;
  height: 100%;
  text-align: left;
  transition: transform .25s ease, box-shadow .25s ease;
}

.why-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,.08);
}

/* Icon bubble */
.why-icon{
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #EAF5F1;  /* soft green */
  color: #1F9D8A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 14px;
}

/* Text */
.why-card h4{
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.why-card p{
  font-size: .95rem;
  color: #6b7280;
  line-height: 1.6;
}

/* ===== 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; }
}

/* ===== HAPPYTRIP CTA ===== */
.happytrip-cta{
  background: #F5F7FB; /* light page background */
  padding-bottom: 4rem;
}

/* Main box */
.cta-box{
  background: #234FA3; /* Happy Trip blue */
  border-radius: 20px;
  padding: 3.5rem 2rem;
  max-width: 960px;
  margin: 0 auto;
  color: #fff;
  box-shadow: 0 30px 70px rgba(0,0,0,.18);
}

/* Icon */
.cta-icon{
  width: 52px;
  height: 52px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-icon svg{
  width: 24px;
  height: 24px;
  fill: #fff;
}

/* Text */
.cta-box h2{
  font-weight: 800;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin-bottom: .6rem;
  color: #fff;
}

.cta-box p{
  color: rgba(255,255,255,.9);
  font-size: .95rem;
  max-width: 520px;
  margin: 0 auto 1.8rem;
}

/* Form */
.cta-form{
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.cta-form input{
  width: 280px;
  max-width: 100%;
  height: 46px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.12);
  color: #fff;
  padding: 0 14px;
  outline: none;
}

.cta-form input::placeholder{
  color: rgba(255,255,255,.75);
}

/* Button */
.cta-form button{
  height: 46px;
  border-radius: 10px;
  padding: 0 22px;
  border: 0;
  background: #FFC107; /* Happy Trip yellow */
  color: #1F2937;
  font-weight: 700;
  box-shadow: 0 12px 25px rgba(255,193,7,.35);
  cursor: pointer;
  transition: transform .15s ease, filter .15s ease;
}

.cta-form button:hover{
  transform: translateY(-1px);
  filter: brightness(.95);
}

/* Mobile */
@media (max-width: 767px){
  .cta-box{
    padding: 3rem 1.5rem;
  }
}



/* ===== 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-us-section p{
  margin: 0;
  line-height: 1.75;
  font-size: 16px;
  opacity: 0.85;
  color:#000;
  padding-bottom:30px;
}

.about-us-section h2,
.about-us-section h3,
.about-us-section h4{
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  color:#000;
}

/* Sections */
.about-story{
  padding-bottom: 40px;
}

.about-values{
  padding-bottom: 52px;
  text-align:center;
}

.about-mission{
  padding-bottom: 48px;
}

/* Story text */
.about-intro,
.about-description{
  max-width: 760px;
  margin: 0 auto 18px;
}

/* Values subtitle */
.values-subtitle{
  max-width: 720px;
  margin: 0 auto 26px;
  font-size: 14px;
  opacity: 0.75;
}

/* Grid */
.values-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

/* Cards */
.value-card{
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 14px;
  padding: 22px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.06);
  transition: all 0.2s ease;
}

.value-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.1);
}

.value-card h4{
  font-size: 18px;
  margin-bottom: 10px;
}

.value-card p{
  font-size: 14px;
  opacity: 0.8;
}

/* Icons */
.card-icon{
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  background:#c18401;
  border: 1px solid rgba(245, 180, 0, 0.35);
}

.card-icon i{
  font-size: 18px;
  color: #fff;
}

/* Mission */
.about-mission p{
  max-width: 720px;
  margin: 0 auto 18px;
}

.mission-quote{
  max-width: 720px;
  margin: 0 auto;
  padding: 16px 18px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.12);
  background: rgba(0,0,0,0.03);
  font-style: italic;
  font-size: 15px;
}

/* Affiliate Disclosure */
.about-disclosure p{
  max-width: 860px;
  margin: 0 auto;
  font-size: 14px;
  opacity: 0.75;
  color:#000;
}

/* Responsive */
@media (max-width: 1024px){
  .values-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px){
  .about-us-section{
    padding: 56px 0;
  }

  .values-grid{
    grid-template-columns: 1fr;
  }
}

.contact-section {
    padding: 80px 0;
    background-color: var(--bg-light);
    font-family: "Poppins", "Rubik", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 1rem;
}
.contact-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}
.contact-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 24px;
}
.contact-form label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 6px;
    display: block;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 14px;
    color: var(--text-dark);
    background-color: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #9ca3af;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}
.char-counter {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 6px;
    text-align: right;
}
.contact-form button {
    margin-top: 16px;
    width: 100%;
    background-color: var(--primary);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.contact-form button:hover {
    background-color: #1d4ed8;
}

.contact-form button:active {
    transform: translateY(1px);
}
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Card */
.info-card {
    display: flex;
    gap: 16px;
    padding: 18px 20px;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    background: #ffffff;
    align-items: flex-start;
    margin-bottom: 15px;
}

/* Icon box */
.info-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.info-icon.email {
    background: #e0ecff;
    color: #2563eb;
}

.info-icon.location {
    background: #fff3d6;
    color: #d97706;
}

/* Text */
.info-content h6 {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 4px;
    color: #111827;
}

.info-content a {
    font-size: 14px;
    color: #2563eb;
    font-weight: 500;
    text-decoration: none;
}

.info-content strong {
    display: block;
    font-size: 14px;
    margin-bottom: 2px;
}

.info-content p {
    font-size: 13px;
    color: #6b7280;
    margin: 0;
}

/* Follow section */
.info-card.follow {
    flex-direction: column;
}

.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.social-icons a {
    width: 36px;
    height: 36px;
    background: #f3f4f6;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0D6EFD;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.social-icons a:hover {
    background: #2563eb;
    color: #ffffff;
}

/* ===== 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;
  }
}

.mt-why{
  background:#f3dfb8;
  padding:70px 18px;
}
.mt-why__container{ max-width:1080px; margin:0 auto; }
.mt-why__header{ text-align:center; margin-bottom:40px; }
.mt-why__header h2{ font-size:34px; color:#1f3c88; font-weight:700; margin:0 0 10px; }
.mt-why__header p{ margin:0 auto; max-width:640px; color:#6c7a96; font-size:14.5px; line-height:1.6; }

.mt-why__grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }

.mt-card{
  background:#fff; border:1px solid rgba(31,60,136,.10);
  border-radius:14px; padding:22px 20px 20px;
  box-shadow:0 10px 24px rgba(17,24,39,.06);
  transition:.2s ease; min-height:190px;
}
.mt-card:hover{ transform:translateY(-4px); box-shadow:0 14px 34px rgba(17,24,39,.10); }
.mt-card__icon{
  width:40px; height:40px; border-radius:10px;
  display:grid; place-items:center;
  background:#eef3ff; color:#2b59c3; margin-bottom:14px;
}
.mt-card__icon svg{ width:20px; height:20px; }
.mt-card h3{ margin:0 0 10px; font-size:16px; color:#1f3c88; font-weight:700; }
.mt-card p{ margin:0; color:#6c7a96; font-size:13.5px; line-height:1.65; 
    
}

@media (max-width:1024px){ .mt-why__grid{ 
    grid-template-columns:repeat(2,1fr);
} 
    
}
@media (max-width:560px){ 
    .mt-why__grid{
        grid-template-columns:1fr; 
        
    } 
    .mt-why__header h2{ 
        font-size:26px; 
        
    } 
    
}
/* ================================
   TOP MEDICAL TOURISM DESTINATIONS
   ================================ */

.mt-destinations {
  background-color: #f6f8fc;
  padding: 70px 0;
}

.mt-destinations__container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

/* Header */
.mt-destinations__header {
  text-align: center;
  margin-bottom: 36px;
}
.mt-destination-card__title h3 {
  margin: 0;
  font-size: 15.5px;
  font-weight: 700;
  color: #1f3c88;        /* HappyTrip blue */
  line-height: 1.3;
}

.mt-destination-card__title span {
  display: block;
  margin-top: 3px;
  font-size: 12px;
  font-weight: 400;
  color: #8a97ad;        /* soft secondary text */
}

.mt-destinations__header h2 {
  font-size: 34px;
  font-weight: 700;
  color: #1f3c88;
  margin: 0 0 10px;
}

.mt-destinations__header p {
  max-width: 720px;
  margin: 0 auto;
  font-size: 14.5px;
  line-height: 1.6;
  color: #6c7a96;
}

/* Grid */
.mt-destinations__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

/* Card */
.mt-destination-card {
  
  border: 1px solid rgba(31, 60, 136, 0.12);
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mt-destination-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.12);
}
.mt-destination-card p{
    color:#000;
    font-size:14px;
}
/* Top Row */
.mt-destination-card__top {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
}

/* Simple Font Awesome icon */
.mt-destination-card__pin {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #fff3db;
  color: #f0a43a;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 34px;
  border: 1px solid rgba(240, 164, 58, 0.3);
  font-size: 14px;
}

/* ================================
   RESPONSIVE
   ================================ */

@media (max-width: 1024px) {
  .mt-destinations__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .mt-destinations {
    padding: 52px 0;
  }

  .mt-destinations__header h2 {
    font-size: 26px;
  }

  .mt-destinations__grid {
    grid-template-columns: 1fr;
  }
}
/* ================================
   MEDICAL DISCLAIMER
   ================================ */

.mt-disclaimer {
  padding: 60px 0;
  background: #f6f8fc;
}

.mt-disclaimer__box {
  max-width: 780px;
  margin: 0 auto;
  background: #f6d78f;              /* soft yellow */
  border-radius: 14px;
  padding: 26px 28px;
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.08);
}

/* Header */
.mt-disclaimer__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.mt-disclaimer__header i {
  color: #f0a43a;                   /* icon color */
  font-size: 16px;
}

.mt-disclaimer__header h3 {
  margin: 0;
  font-size: 15.5px;
  font-weight: 700;
  color: #1f3c88;                   /* HappyTrip blue */
}

/* Text */
.mt-disclaimer__box p {
  margin: 0 0 10px;
  font-size: 13.5px;
  line-height: 1.7;
  color: #5f6f8f;
}

.mt-disclaimer__box p:last-child {
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 560px) {
  .mt-disclaimer__box {
    padding: 22px 20px;
  }
}
.visitor-box h6 {
    font-size: 13px;
    margin-bottom: 8px;
}

.visitor-box p {
    margin: 2px 0;
}

/* Divider */
.footer-divider {
    border-color: rgba(255,255,255,0.2);
    margin: 30px 0 15px;
}

/* Bottom text */
.footer-bottom {
    font-size: 13px;
    color: #e0e0e0;
}

.footer {
    background-color: #254f9c;
    color: #ffffff;
    padding: 60px 0 25px;
    font-size: 14px;
}

.footer-logo {
    font-size: 26px;
    font-weight: 700;
}

.footer-logo span {
    color: #fbb415;
}

.footer-text {
    margin-top: 15px;
    color: #e0e0e0;
    line-height: 1.6;
}

.footer-title {
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-size: 13px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* Visitor Counter */
.visitor-box {
    background: #ffffff;
    color: #333;
    padding: 12px 15px;
    border-radius: 4px;
    font-size: 12px;
    width: fit-content;
}

/* =====================================
   WHY THAILAND LEADS ASIA – NEW SECTION
===================================== */
.medical-why-thailand {
    background-color: #f9fafb;
    padding: 90px 0;
    border-top: 4px solid #1e4fa3;
}

.medical-why-thailand .container {
    max-width: 1100px;
    margin: auto;
    padding: 0 24px;
}

.medical-why-thailand .section-tag {
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #f59e0b;
    margin-bottom: 12px;
}

.medical-why-thailand h2 {
    font-size: 34px;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 24px;
}

.medical-why-thailand p {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.9;
    margin-bottom: 18px;
    max-width: 900px;
}

.medical-why-thailand strong {
    color: #1e3a8a;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .medical-why-thailand h2 {
        font-size: 28px;
    }

    .medical-why-thailand p {
        font-size: 14px;
    }
}
/* ======================================
   WHY PATIENTS CHOOSE THAILAND
====================================== */
.medical-why-patients {
    background-color: #f7e6c3;
    padding: 90px 0;
}

.medical-why-patients .container {
    max-width: 1200px;
    margin: auto;
    padding: 0 24px;
    text-align: center;
}

.medical-why-patients h2 {
    font-size: 34px;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 8px;
}

.medical-why-patients .subtitle {
    font-size: 15px;
    color: #6b7280;
    margin-bottom: 50px;
}

/* Cards */
.patient-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.patient-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 32px 26px;
    text-align: left;
    box-shadow: 0 14px 35px rgba(0,0,0,0.08);
}

.patient-card .icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: #eef2ff;
    color: #1e3a8a;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.patient-card h3 {
    font-size: 17px;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 10px;
}

.patient-card p {
    font-size: 14px;
    line-height: 1.7;
    color: #6b7280;
}

/* Responsive */
@media (max-width: 992px) {
    .patient-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .patient-cards {
        grid-template-columns: 1fr;
    }
}
/* ======================================
   TOP HOSPITALS IN THAILAND
====================================== */
.medical-top-hospitals {
    background-color: #f9fafb;
    padding: 90px 0;
}

.medical-top-hospitals .container {
    max-width: 1200px;
    margin: auto;
    padding: 0 24px;
    text-align: center;
}

.medical-top-hospitals h2 {
    font-size: 34px;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 8px;
}

.medical-top-hospitals .subtitle {
    font-size: 15px;
    color: #6b7280;
    margin-bottom: 50px;
}

/* Grid */
.hospital-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

/* Card */
.hospital-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 28px;
    text-align: left;
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.hospital-header {
    display: flex;
    gap: 14px;
    margin-bottom: 14px;
}

.hospital-header .icon {
    width: 42px;
    height: 42px;
    background: #fff3cd;
    color: #f59e0b;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hospital-header h3 {
    font-size: 17px;
    font-weight: 600;
    color: #1e3a8a;
}

.hospital-header span {
    font-size: 13px;
    color: #6b7280;
}

/* Description */
.hospital-card .description {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.7;
    margin: 14px 0;
}

/* Tags */
.tags {
    margin-bottom: 18px;
}

.tags span {
    display: inline-block;
    background: #eef2ff;
    color: #1e3a8a;
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    margin: 4px 6px 0 0;
}

/* Button */
.btn-primary {
    display: inline-block;
    width: 100%;
    background: #fbbf24;
    color: #1e3a8a;
    text-align: center;
    padding: 12px 18px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
}

.btn-primary:hover {
    background: #facc15;
}

/* Responsive */
@media (max-width: 992px) {
    .hospital-grid {
        grid-template-columns: 1fr;
    }
}
/* =========================================
   PLAN YOUR THAILAND MEDICAL TRIP (MATCHED)
========================================= */
.medical-plan-ref {
    background: #234fa3; /* exact deep blue */
    padding: 80px 0;
    color: #ffffff;
}

.plan-wrapper {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

/* Heading */
.medical-plan-ref h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

/* Subtitle */
.plan-subtitle {
    font-size: 13px;
    color: #cfe0ff;
    margin-bottom: 28px;
    line-height: 1.6;
}

/* Checklist */
.plan-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
}

.plan-list li {
    background: rgba(255,255,255,0.08);
    border-radius: 8px;
    padding: 12px 16px 12px 42px;
    font-size: 13px;
    text-align: left;
    margin-bottom: 10px;
    position: relative;
}

/* Small yellow check */
.plan-list li::before {
    content: "✓";
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background: #fbbf24;
    color: #1e3a8a;
    font-size: 11px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Buttons */
.plan-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.plan-buttons a {
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
}

/* Primary */
.plan-buttons a:first-child {
    background: #fbbf24;
    color: #1e3a8a;
}

/* Secondary */
.plan-buttons a:last-child {
    background: #2c5fc4;
    color: #ffffff;
}

/* Mobile */
@media (max-width: 600px) {
    .plan-buttons {
        flex-direction: column;
    }

    .plan-buttons a {
        width: 100%;
    }
}
