/* ==========================================================
   MADOL TRAVEL - Production CSS (Optimized Formatting)
   ----------------------------------------------------------
   Optimizations applied:
   - Normalized whitespace
   - Removed trailing spaces
   - Reduced excessive blank lines
   - Preserved selectors and behavior
   NOTE:
   Manual refactoring (variables, deduplication, module split)
   should be done carefully to avoid changing site behavior.
   ========================================================== */

* {margin: 0;padding: 0;box-sizing: border-box;}
body {font-family: 'Inter', sans-serif;background-color: #ffffff;color: #1e2a3e;line-height: 1.5;scroll-behavior: smooth;}
.container {max-width: 1280px;margin: 0 auto;padding: 0 32px;}
h1, h2, h3, h4 {font-family: 'Playfair Display', serif;font-weight: 600;letter-spacing: 0;}
.section-title {font-size: 2.5rem;margin-bottom: 1rem;text-align: center;}

.section-sub {
  text-align: center;
  color: #5b6e8c;
  max-width: 680px;
  margin: 0 auto 3rem auto;
  font-size: 1.1rem;
}

.accent { color: #e67e22; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  border-radius: 40px;
  font-weight: 600;
  transition: all 0.25s ease;
  text-decoration: none;
  border: none;
  font-size: 0.95rem;
  cursor: pointer;
}

.btn-primary {
  background: #0f3b3f;
  color: white;
  box-shadow: 0 6px 14px rgba(15, 59, 63, 0.2);
}

.btn-primary:hover {
  background: #1e5a5f;
  transform: translateY(-3px);
  box-shadow: 0 12px 22px rgba(15, 59, 63, 0.25);
}

.btn-outline {
  background: transparent;
  border: 2px solid #0f3b3f;
  color: #0f3b3f;
}

.btn-outline:hover {
  background: #0f3b3f;
  color: white;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
}

/* ============================================ */
/* MODERN NAVIGATION MENU STYLES                */
/* ============================================ */

.navbar {
  padding: 16px 0;
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
}

.nav-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

/* MADOL TRAVEL LOGO STYLES */
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.02);
}

.logo-text {
  font-size: 1.8rem;
  font-weight: 800;
  font-family: 'Playfair Display', serif;
  background: linear-gradient(135deg, #0f3b3f 0%, #1c5e64 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0;
}

.logo-tagline {
  font-size: 0.7rem;
  font-weight: 600;
  color: #a34b00;
  letter-spacing: 0;
  font-family: 'Inter', sans-serif;
}

.logo-img {
  height: 50px;
  width: auto;
}

/* Navigation Links - Modern Style */
.nav-links {
  display: flex;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  color: #1e2a3e;
  padding: 8px 16px;
  border-radius: 40px;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
}

.nav-links a:hover {
  color: #e67e22;
  background: rgba(230, 126, 34, 0.08);
}

.nav-links a.active {
  color: #a34b00;
  background: rgba(230, 126, 34, 0.12);
  font-weight: 600;
}

/* Active link indicator */
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 3px;
  background: #a34b00;
  border-radius: 3px;
}

/* Hover underline effect */
.nav-links li::before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #a34b00;
  transition: width 0.3s ease;
}

.nav-links li:hover::before {
  width: 30px;
}

/* Call Expert Button - Modern */
.nav-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.call-expert-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #e67e22 0%, #f39c12 100%);
  color: white;
  padding: 10px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(230, 126, 34, 0.3);
  border: none;
  cursor: pointer;
}

.call-expert-btn i {
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.call-expert-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230, 126, 34, 0.4);
  background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
}

.call-expert-btn:hover i {
  transform: scale(1.1);
}

.call-expert-btn:active {
  transform: translateY(0);
}

.menu-icon {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #0f3b3f;
  transition: all 0.3s ease;
  background: rgba(15, 59, 63, 0.08);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
}

.menu-icon:hover {
  background: rgba(230, 126, 34, 0.12);
  color: #e67e22;
}

/* Hero */
.hero {
  background: linear-gradient(105deg, #fef9f0 0%, #ffffff 100%);
  padding: 80px 0 70px;
}

.hero-grid {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.hero-content { flex: 1; }
.hero-badge {
  background: #a34b00;
  display: inline-block;
  padding: 6px 16px;
  border-radius: 40px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #b45f2b;
  margin-bottom: 20px;
}

.hero-content h1 { font-size: 3.5rem; margin-bottom: 20px; color: #1f3e42; }
.hero-content p { font-size: 1.1rem; color: #4a5c6f; margin-bottom: 32px; }
.hero-stats { display: flex; gap: 32px; margin: 24px 0; }
/* .stat h3 { font-size: 1.8rem; font-family: 'Inter', sans-serif; font-weight: 800; color: #e67e22; } */
.stat-number {font-size: 1.8rem;font-family: 'Inter', sans-serif;font-weight: 800;color: #e67e22;line-height: 1.2;}
.stat span {display: block;margin-top: 4px;font-size: 0.85rem;color: #666;font-weight: 500;}
.hero-image { flex: 1; border-radius: 32px; overflow: hidden; box-shadow: 0 25px 45px -12px rgba(0,0,0,0.2); }
.hero-image img { width: 100%; display: block; transition: transform 0.4s ease; }
.hero-image:hover img { transform: scale(1.02); }
.hero-buttons { margin-top: 32px; }

/* Search Panel */
.search-panel {
  background: white;
  margin-top: -50px;
  margin-bottom: 60px;
  border-radius: 60px;
  box-shadow: 0 20px 35px -8px rgba(0,0,0,0.08);
  padding: 12px 24px;
  position: relative;
  z-index: 5;
}

.search-form {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.input-group {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f8fafc;
  padding: 8px 20px;
  border-radius: 50px;
  flex: 1;
  min-width: 160px;
}

.input-group i { color: #e67e22; font-size: 1.2rem; }
.input-group input, .input-group select {
  border: none;
  background: transparent;
  padding: 12px 0;
  font-size: 0.95rem;
  width: 100%;
  outline: none;
  font-family: 'Inter', sans-serif;
}

.search-btn {
  background: #c55a11;
  padding: 14px 32px;
  border-radius: 50px;
  color: white;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: 0.2s;
}

.search-btn:hover { background: #a84b0b; }

/* Cards */
.destinations { padding: 60px 0; }
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 20px;
}

.tour-card {
  background: white;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 12px 24px -12px rgba(0,0,0,0.08);
  border: 1px solid #edf2f7;
  transition: transform 0.3s ease;
}

.tour-card:hover { transform: translateY(-8px); box-shadow: 0 28px 36px -16px rgba(0,0,0,0.15); }

.card-img {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #e67e22;
  color: white;
  padding: 5px 12px;
  border-radius: 40px;
  font-size: 0.75rem;
  font-weight: bold;
}

.card-content { padding: 24px 20px 24px; }
.card-content h3 { font-size: 1.5rem; margin-bottom: 8px; }
.price { font-size: 1.3rem; font-weight: 800; color: #0f3b3f; margin: 12px 0; }
.price small { font-size: 0.8rem; font-weight: normal; color: #5b6e8c; }
.card-footer { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid #eef2f8; margin-top: 16px; padding-top: 16px; }
.rating{display:flex;align-items:center;gap:8px;font-size:14px;font-weight:600;}

.stars{--percent: calc(var(--rating) / 5 * 100%);display:inline-block;font-size:16px;line-height:1;letter-spacing:2px;}

.stars::before{content:"★★★★★";background:linear-gradient(90deg,#FFC107 var(--percent),#ddd var(--percent));-webkit-background-clip:text;-webkit-text-fill-color:transparent;}
.rating i { color: #e67e22; font-size: 0.85rem; }

.card-link { color: #e67e22; text-decoration: none; font-weight: 500; }
.text-center { text-align: center; }
.star {font-size: 16px;margin-right: 2px;}
.star.full {color: #e67e22;}
.star.half {color: #ffb74d;opacity: 0.5;}
.star.empty {color: #ddd;}

/* Services */
.services { background: #fefaf5; padding: 80px 0; }
.service-flex { display: flex; flex-wrap: wrap; gap: 40px; justify-content: center; }
.service-item { text-align: center; max-width: 220px; }
.service-icon {background: white;width: 80px;height: 80px;border-radius: 60px;display: flex;align-items: center;justify-content: center;margin: 0 auto 20px;box-shadow: 0 10px 20px rgba(0,0,0,0.05);}
.service-icon i { font-size: 2.2rem; color: #e67e22; }

/* Testimonials */
.testimonials { padding: 70px 0; }
.testimonial-grid {display: grid;grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));gap: 30px;}

.testi-card {background: #f9fbfd;border-radius: 28px;padding: 28px;transition: 0.2s;}

.testi-card i.fa-quote-left { color: #e67e22; opacity: 0.5; font-size: 1.5rem; margin-bottom: 16px; display: block; }
.testi-card p { font-style: italic; margin-bottom: 20px; color: #2d3e50; }

.client {display: flex;align-items: center;gap: 14px;margin-top: 16px;}

.client img {width: 48px;height: 48px;border-radius: 50%;object-fit: cover;}

/* CTA */
.cta {background: linear-gradient(135deg, #0f3b3f, #1c5e64);border-radius: 48px;margin: 30px auto 60px;padding: 64px 48px;text-align: center;color: white;}

.cta h2 { font-size: 2.2rem; margin-bottom: 16px; }
.cta .btn-primary { background: #c55a11; box-shadow: none; margin-top: 20px; }
.cta .btn-primary:hover { background: #a84b0b; }

/* Footer */
footer {background: #0c2b2f;color: #cddfe3;padding: 50px 0 30px;margin-top: 40px;}
.footer-grid {display: grid;grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));gap: 40px;}
.footer-col h3 {color: white;margin-bottom: 20px;font-size: 1.2rem;font-family: 'Playfair Display', serif;}
.footer-col p, .footer-col a {color: #bcd0d6;text-decoration: none;line-height: 1.8;transition: color 0.2s;}
.footer-col a:hover { color: #e67e22; }
.social {margin-top: 16px;display: flex;gap: 16px;}
.social i {font-size: 1.3rem;cursor: pointer;transition: color 0.2s;color: #bcd0d6;}
.social i:hover { color: #e67e22; }
.copyright {text-align: center;margin-top: 50px;padding-top: 20px;border-top: 1px solid #255c62;font-size: 0.85rem;color: #bcd0d6;}
.footer-contact{  list-style:none;  margin:0;  padding:0;}
.footer-contact li{  display:flex;  align-items:flex-start;  gap:12px;  margin-bottom:14px;}
.footer-contact li i{width:20px;min-width:20px;margin-top:4px;color:var(--primary-color);text-align:center;}
.footer-contact li a,
.footer-contact li span{  flex:1;  color:#fff;  text-decoration:none;  line-height:1.7;}
.footer-contact li a:hover{  color:var(--primary-color);}

/* ============================================ */
/* PAGE HEADER (Common for all inner pages)    */
/* ============================================ */
.page-header {background: #fef9f0;padding: 60px 0;text-align: center;}

.page-header h1 { font-size: 3rem; margin-bottom: 12px; color: #1f3e42; }
.page-header p { font-size: 1.2rem; color: #5b6e8c; }

/* ============================================ */
/* ABOUT PAGE STYLES                           */
/* ============================================ */

.about-header {
  position: relative;
  overflow: hidden;
  padding: 92px 0 86px;
  text-align: left;
  color: #ffffff;
  background:
    linear-gradient(105deg, rgba(12, 43, 47, 0.94) 0%, rgba(15, 59, 63, 0.88) 54%, rgba(230, 126, 34, 0.72) 100%),
    var(--about-hero) center/cover no-repeat;
}

.about-header .container {
  position: relative;
  z-index: 1;
}

.about-header h1 {
  max-width: 760px;
  margin: 10px 0 14px;
  color: #ffffff;
  font-size: 4.8rem;
  line-height: 0.95;
  letter-spacing: 0;
}

.about-header p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.25rem;
}

.page-kicker,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #e67e22;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.about-header .page-kicker {
  color: #ffd19d;
}

.about-story {
  padding: 88px 0;
  background: #ffffff;
}

.about-story .about-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: 64px;
}

.about-story h2,
.care-section h2,
.heritage-section h3,
.about-team h2,
.about-cta h2 {
  letter-spacing: 0;
}

.about-story h2 {
  max-width: 620px;
  margin: 12px 0 20px;
  color: #12383c;
  font-size: 3rem;
  line-height: 1.05;
}

.about-text .lead {
  color: #24364a;
  font-size: 1.08rem;
  font-weight: 600;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 32px;
}

.about-stat {
  min-height: 112px;
  padding: 18px;
  border: 1px solid rgba(230, 126, 34, 0.18);
  border-radius: 20px;
  background: linear-gradient(135deg, #fff7ed 0%, #f8fbfb 52%, #eef8f6 100%);
  box-shadow: 0 16px 28px -24px rgba(15, 59, 63, 0.32);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.about-stat:nth-child(2) {
  background: linear-gradient(135deg, #fffaf2 0%, #f3fbf9 50%, #e9f5f2 100%);
}

.about-stat:nth-child(3) {
  background: linear-gradient(135deg, #fff3e6 0%, #fbfdfb 48%, #eaf6f2 100%);
}

.about-stat:hover {
  transform: translateY(-4px);
  border-color: rgba(230, 126, 34, 0.32);
  box-shadow: 0 24px 36px -26px rgba(15, 59, 63, 0.4);
}

.about-stat strong {
  display: block;
  margin-bottom: 8px;
  color: #e67e22;
  font-size: 1.45rem;
  line-height: 1;
}

.about-stat span {
  color: #5b6e8c;
  font-size: 0.92rem;
  line-height: 1.45;
}

.about-photo {
  position: relative;
}

.about-photo::before {
  content: '';
  position: absolute;
  inset: 22px -18px -18px 22px;
  border: 2px solid rgba(230, 126, 34, 0.28);
  border-radius: 28px;
}

.about-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 520px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 28px 50px -24px rgba(12, 43, 47, 0.35);
}

.image-note {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 18px 34px rgba(12, 43, 47, 0.16);
  backdrop-filter: blur(12px);
}

.image-note i {
  display: inline-flex;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff4e9;
  color: #e67e22;
}

.image-note span {
  color: #26394a;
  font-size: 0.93rem;
  font-weight: 600;
  line-height: 1.45;
}

.care-section {
  padding: 82px 0;
  background: #f7faf9;
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 38px;
  text-align: center;
}

.care-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.care-card {
  min-height: 100%;
  padding: 30px;
  border: 1px solid #e6eeec;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 18px 34px -28px rgba(12, 43, 47, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.care-card:hover {
  transform: translateY(-5px);
  border-color: rgba(230, 126, 34, 0.36);
  box-shadow: 0 28px 42px -30px rgba(12, 43, 47, 0.35);
}

.care-icon,
.team-icon {
  display: inline-flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border-radius: 18px;
  background: #fff4e9;
  color: #e67e22;
  font-size: 1.35rem;
}

.care-card h3 {
  margin-bottom: 12px;
  color: #12383c;
  font-size: 1.35rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.care-card p {
  color: #5b6e8c;
  line-height: 1.7;
}

.heritage-section {
  padding: 86px 0;
  background: #ffffff;
}

.heritage-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 28px;
  align-items: stretch;
}

.heritage-panel,
.why-panel {
  border-radius: 28px;
  padding: 36px;
}

.heritage-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #0f3b3f;
  color: #ffffff;
}

.heritage-panel .section-kicker {
  color: #a34b00;
}

.heritage-panel h3 {
  margin: 14px 0 18px;
  color: #ffffff;
  font-size: 2.6rem;
  line-height: 1.08;
}

.heritage-panel p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.02rem;
  line-height: 1.75;
}

.why-panel {
  border: 1px solid #e8eef1;
  background: #ffffff;
  box-shadow: 0 18px 38px -30px rgba(12, 43, 47, 0.32);
}

.why-panel h3 {
  margin: 12px 0 22px;
  color: #12383c;
  font-size: 2.15rem;
  line-height: 1.15;
}

.why-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 14px 0;
  border-top: 1px solid #eef2f4;
  color: #4a5c6f;
  line-height: 1.55;
}

.why-list i {
  display: inline-flex;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #eaf6f2;
  color: #0f3b3f;
  font-size: 0.78rem;
}

.about-team {
  padding: 78px 0;
  background: #fefaf5;
}

.about-team .team-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  text-align: left;
}

.about-team .team-card {
  padding: 30px;
  border: 1px solid #f0e5d7;
  border-radius: 24px;
  box-shadow: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.about-team .team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 34px -28px rgba(12, 43, 47, 0.32);
}

.about-team .team-card h4 {
  margin-bottom: 12px;
  color: #12383c;
  font-size: 1.25rem;
  letter-spacing: 0;
}

.about-team .team-card p {
  margin: 0;
  color: #5b6e8c;
  font-weight: 400;
  line-height: 1.7;
}

.about-cta {
  position: relative;
  overflow: hidden;
  max-width: 1180px;
  margin-top: 20px;
  border-radius: 32px;
  background: linear-gradient(135deg, #0c2b2f 0%, #0f3b3f 62%, #1c5e64 100%);
}

.about-cta .section-kicker {
  color: #a34b00;
}

.about-cta p {
  max-width: 620px;
  margin: 0 auto 4px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
}

@media (max-width: 992px) {
  .about-header h1 {
    font-size: 3.6rem;
  }

  .about-story h2 {
    font-size: 2.55rem;
  }

  .heritage-panel h3 {
    font-size: 2.25rem;
  }

  .why-panel h3 {
    font-size: 1.95rem;
  }

  .about-story .about-grid,
  .heritage-grid {
    grid-template-columns: 1fr;
  }

  .care-grid,
  .about-team .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-photo img {
    min-height: 420px;
  }
}

@media (max-width: 768px) {
  .about-header {
    padding: 74px 0 68px;
    text-align: center;
  }

  .about-header h1 {
    font-size: 2.55rem;
    line-height: 1.05;
  }

  .about-header p {
    font-size: 1.05rem;
  }

  .about-story h2 {
    font-size: 2.15rem;
  }

  .heritage-panel h3,
  .why-panel h3 {
    font-size: 1.75rem;
  }

  .about-header h1,
  .about-header p {
    margin-left: auto;
    margin-right: auto;
  }

  .about-story,
  .care-section,
  .heritage-section,
  .about-team {
    padding: 64px 0;
  }

  .about-stats,
  .care-grid,
  .about-team .team-grid {
    grid-template-columns: 1fr;
  }

  .about-photo::before {
    display: none;
  }

  .about-photo img {
    min-height: 0;
    height: auto;
  }

  .image-note {
    position: static;
    margin-top: 16px;
  }

  .heritage-panel,
  .why-panel,
  .care-card,
  .about-team .team-card {
    border-radius: 22px;
    padding: 24px;
  }

  .about-cta {
    border-radius: 24px;
  }
}

/* About Team Profile Cards */
.team-members-section {
  padding: 78px 0;
  background: #ffffff;
}

.team-details-section .section-heading {
  margin-bottom: 42px;
}

.team-details-section .team-details-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  text-align: left;
}

.team-profile-card {
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid rgba(230, 126, 34, 0.18);
  border-radius: 24px;
  background: linear-gradient(135deg, #fff7ed 0%, #ffffff 52%, #eef8f6 100%);
  box-shadow: 0 18px 34px -28px rgba(15, 59, 63, 0.35);
}

.team-photo {
  position: relative;
  height: 220px;
  margin: -10px -10px 22px;
  overflow: hidden;
  border-radius: 20px;
  background: #eaf3f1;
}

.team-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.team-profile-card:hover .team-photo img {
  transform: scale(1.04);
}

.team-profile-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.team-avatar {
  display: inline-flex;
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #0f3b3f 0%, #1c5e64 100%);
  color: #ffffff;
  font-weight: 800;
}

.team-profile-card h4 {
  margin-bottom: 6px;
  color: #12383c;
  font-size: 1.22rem;
}

.team-profile-card .team-profile-top p {
  margin: 0;
  color: #e67e22;
  font-weight: 700;
}

.team-details {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}

.team-details span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid #e7f0ee;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: #486171;
  font-size: 0.9rem;
  font-weight: 600;
}

.team-details i {
  color: #e67e22;
  width: 18px;
  text-align: center;
}

.team-profile-card .team-bio {
  flex: 1;
  margin: 0;
  color: #5b6e8c;
  font-weight: 400;
  line-height: 1.72;
}

.team-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  margin-top: 18px;
  color: #0f3b3f;
  font-weight: 800;
  text-decoration: none;
}

.team-contact-link i {
  color: #e67e22;
  transition: transform 0.2s ease;
}

.team-contact-link:hover {
  color: #e67e22;
}

.team-contact-link:hover i {
  transform: translateX(3px);
}

@media (max-width: 768px) {
  .team-details-section .team-details-grid {
    grid-template-columns: 1fr;
  }

  .team-profile-card {
    padding: 24px;
    border-radius: 20px;
  }

  .team-photo {
    height: 210px;
  }
}

@media (max-width: 480px) {
  .about-stat {
    min-height: auto;
  }

  .image-note {
    align-items: flex-start;
  }
}

/* Screenshot-style Our Team Cards */
.team-members-section .section-heading {
  margin-bottom: 34px;
}

.team-members-section .team-details-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.team-member-card {
  display: block;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(15, 59, 63, 0.08);
}

.team-member-card .team-photo {
  height: 260px;
  margin: 0;
  border-radius: 0;
  background: #eef2f4;
}

.team-member-card .team-photo img {
  object-fit: cover;
  object-position: center top;
}

.team-member-card .team-social {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: -20px;
}

.team-member-card .team-social a {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ffffff;
  color: #7bb80f;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(15, 59, 63, 0.1);
  transition: color 0.2s ease, transform 0.2s ease;
}

.team-member-card .team-social a:hover {
  color: #0f3b3f;
  transform: translateY(-3px);
}

.team-member-content {
  min-height: 136px;
  padding: 22px 20px 28px;
  text-align: center;
}

.team-member-content h4 {
  margin: 0 0 6px;
  color: #12383c;
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
}

.team-member-content p {
  margin: 0 0 10px;
  color: #6a7787;
  font-size: 0.94rem;
  font-weight: 500;
}

.team-member-content span {
  display: block;
  color: #718095;
  font-size: 0.86rem;
  line-height: 1.5;
}

@media (max-width: 1100px) {
  .team-members-section .team-details-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .team-members-section .team-details-grid {
    grid-template-columns: 1fr;
  }

  .team-member-card .team-photo {
    height: 300px;
  }
}

.team-member-card .team-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
}

.team-member-card .team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

@media (max-width: 640px) {
  .team-member-card .team-photo {
    height: auto;
  }
}

.about-intro { padding: 60px 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.about-text h2 { font-size: 2rem; margin-bottom: 20px; color: #1f3e42; }
.about-text p { margin-bottom: 20px; color: #4a5c6f; line-height: 1.7; }

.mission-box {
  background: #fef9f0;
  padding: 28px;
  border-radius: 28px;
  margin-top: 24px;
}

.mission-box i { font-size: 2rem; color: #e67e22; margin-bottom: 12px; display: inline-block; }
.mission-box h3 { margin-bottom: 12px; }

.about-image img { width: 100%; border-radius: 32px; box-shadow: 0 20px 30px -10px rgba(0,0,0,0.1); }

.team { padding: 60px 0; background: #fefaf5; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  text-align: center;
  margin: 40px 0;
}

.team-card {
  background: white;
  padding: 28px;
  border-radius: 28px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.team-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 16px;
}

.team-card h4 { margin-bottom: 6px; }
.team-card p { color: #e67e22; font-weight: 600; margin-bottom: 8px; }
.team-card span { font-size: 0.85rem; color: #5b6e8c; }

/* ============================================ */
/* CONTACT PAGE STYLES                         */
/* ============================================ */
.contact-section { padding: 60px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info h2 { font-size: 2rem; margin-bottom: 20px; color: #1f3e42; }
.contact-info > p { margin-bottom: 32px; color: #4a5c6f; }

.info-item {
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
}

.info-item i {
  font-size: 1.4rem;
  color: #e67e22;
  width: 32px;
  margin-top: 4px;
}

.info-item strong { display: block; margin-bottom: 4px; color: #1f3e42; }

.contact-form form {
  background: #f9fbfd;
  padding: 32px;
  border-radius: 28px;
  border: 1px solid #eef2f8;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 0px;
}

.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: border 0.2s;
}

.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  border-color: #e67e22;
}

.form-note {
  font-size: 0.8rem;
  color: #5b6e8c;
  margin-top: 16px;
  text-align: center;
}

/* ============================================ */
/* INSURANCE PAGE STYLES                       */
/* ============================================ */
.insurance-hero {
  background: linear-gradient(135deg, #0f3b3f 0%, #1c5e64 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.insurance-hero h1 { font-size: 3rem; margin-bottom: 20px; }
.insurance-hero p { font-size: 1.2rem; max-width: 700px; margin: 0 auto; opacity: 0.9; }

.why-insurance { padding: 70px 0; background: #ffffff; }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.benefit-card {
  background: #f9fbfd;
  border-radius: 28px;
  padding: 32px;
  text-align: center;
  transition: transform 0.3s;
  border: 1px solid #eef2f8;
}

.benefit-card:hover { transform: translateY(-5px); }
.benefit-icon {
  width: 70px;
  height: 70px;
  background: #fef9f0;
  border-radius: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.benefit-icon i { font-size: 2rem; color: #e67e22; }
.benefit-card h3 { margin-bottom: 12px; color: #1f3e42; }
.benefit-card p { color: #5b6e8c; line-height: 1.6; }

.coverage-plans { background: #fefaf5; padding: 70px 0; }
.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.plan-card {
  background: white;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s;
  position: relative;
}
.plan-card:hover { transform: translateY(-8px); }
.plan-popular {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #e67e22;
  color: white;
  padding: 5px 12px;
  border-radius: 40px;
  font-size: 0.7rem;
  font-weight: bold;
}
.plan-header { background: #0f3b3f; color: white; padding: 28px; text-align: center; }
.plan-header h3 { font-size: 1.8rem; margin-bottom: 10px; }
.plan-price { font-size: 2.5rem; font-weight: 800; }
.plan-price small { font-size: 0.9rem; font-weight: normal; opacity: 0.8; }
.plan-features { padding: 28px; list-style: none; }
.plan-features li { margin-bottom: 14px; display: flex; align-items: center; gap: 12px; color: #4a5c6f; }
.plan-features i.fa-check { color: #2ecc71; width: 20px; }
.plan-features i.fa-times { color: #e74c3c; width: 20px; }
.plan-btn { display: block; margin: 0 28px 28px; text-align: center; padding: 12px; border-radius: 40px; text-decoration: none; font-weight: 600; transition: 0.2s; }
.plan-btn-primary { background: #e67e22; color: white; }
.plan-btn-primary:hover { background: #cf711f; }
.plan-btn-outline { border: 2px solid #0f3b3f; color: #0f3b3f; }
.plan-btn-outline:hover { background: #0f3b3f; color: white; }

.coverage-details { padding: 70px 0; background: white; }
.coverage-table { width: 100%; border-collapse: collapse; background: white; border-radius: 28px; overflow: hidden; box-shadow: 0 5px 20px rgba(0,0,0,0.05); }
.coverage-table th { background: #0f3b3f; color: white; padding: 16px 20px; text-align: left; font-weight: 600; }
.coverage-table td { padding: 14px 20px; border-bottom: 1px solid #eef2f8; color: #4a5c6f; }
.coverage-table tr:last-child td { border-bottom: none; }
.coverage-table .check { color: #2ecc71; font-weight: bold; }
.coverage-table .amount { font-weight: 700; color: #1f3e42; }

.claim-process { background: #f9fbfd; padding: 70px 0; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: center;
}
.step-number {
  width: 50px;
  height: 50px;
  background: #e67e22;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 20px;
}
.step h4 { margin-bottom: 10px; color: #1f3e42; }
.step p { color: #5b6e8c; font-size: 0.9rem; }

.exclusions-box {
  background: #fff5f0;
  border-radius: 28px;
  padding: 32px;
  margin-top: 40px;
  border-left: 4px solid #e74c3c;
}
.exclusions-box h3 { color: #e74c3c; margin-bottom: 16px; }
.exclusions-box ul { margin-left: 20px; color: #5b6e8c; }
.exclusions-box li { margin-bottom: 8px; }

.quote-form-section { padding: 70px 0; background: #fefaf5; }
.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.quote-text h2 { font-size: 2rem; margin-bottom: 20px; color: #1f3e42; }
.quote-text p { color: #5b6e8c; margin-bottom: 20px; line-height: 1.7; }
.quote-feature { display: flex; align-items: center; gap: 12px; margin-bottom: 15px; }
.quote-feature i { color: #e67e22; font-size: 1.2rem; width: 25px; }
.insurance-form { background: white; padding: 32px; border-radius: 28px; box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 500; color: #1f3e42; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: #e67e22; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ============================================ */
/* BLOG PAGE & BLOG DETAILS STYLES             */
/* ============================================ */
.blog-grid-section { padding: 60px 0; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.blog-card {
  background: white;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}

.blog-card:hover { transform: translateY(-5px); }

.blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.blog-card > h3, .blog-card > p, .blog-meta, .read-more {
  padding: 0 20px;
}

.blog-card h3 { margin: 12px 0 8px; font-size: 1.3rem; }
.blog-card p { color: #5b6e8c; margin-bottom: 16px; }

.blog-meta {
  font-size: 0.75rem;
  color: #e67e22;
  margin-top: 16px;
  font-weight: 500;
}

.read-more {
  display: inline-block;
  color: #0f3b3f;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 24px;
  transition: color 0.2s;
}

.read-more:hover { color: #e67e22; }

/* Blog Details Page */
.blog-hero {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.pexels.com/photos/2402825/pexels-photo-2402825.jpeg?auto=compress&cs=tinysrgb&w=1200');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 100px 0;
  text-align: center;
}

.blog-hero h1 { font-size: 3rem; max-width: 800px; margin: 0 auto 20px; }
.blog-meta-large { font-size: 1rem; opacity: 0.9; }

.blog-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 20px;
}

.blog-content h2 { margin: 40px 0 20px; color: #1f3e42; }
.blog-content h3 { margin: 30px 0 15px; color: #1f3e42; }
.blog-content p { margin-bottom: 20px; line-height: 1.7; color: #4a5c6f; }
.blog-content img {
  width: 100%;
  border-radius: 24px;
  margin: 30px 0;
}

.blog-content .tip-box {
  background: #fef9f0;
  padding: 24px;
  border-radius: 24px;
  margin: 30px 0;
  border-left: 4px solid #e67e22;
}

.share-buttons {
  display: flex;
  gap: 16px;
  margin: 40px 0;
  padding-top: 30px;
  border-top: 1px solid #eef2f8;
}

.share-btn {
  padding: 10px 20px;
  border-radius: 40px;
  background: #f0f2f5;
  text-decoration: none;
  color: #1f3e42;
  font-size: 0.9rem;
}

.related-posts {
  background: #f9fbfd;
  padding: 60px 0;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.related-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.related-card img { width: 100%; height: 160px; object-fit: cover; }
.related-card h4 { padding: 16px 16px 8px; font-size: 1.1rem; }
.related-card a { padding: 0 16px 16px; display: inline-block; color: #e67e22; text-decoration: none; }

/* ============================================ */
/* TOURS PAGE & TOUR DETAILS STYLES            */
/* ============================================ */
.tour-filters { padding: 30px 0 0; }
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}

.filter-btn {
  padding: 10px 24px;
  border-radius: 40px;
  border: 1px solid #e2e8f0;
  background: white;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn:hover, .filter-btn.active {
  background: #0f3b3f;
  color: white;
  border-color: #0f3b3f;
}

/* Tour Details Page */
.tour-hero {
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('https://images.pexels.com/photos/2372720/pexels-photo-2372720.jpeg?auto=compress&cs=tinysrgb&w=1200');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 100px 0;
  text-align: center;
}

.tour-hero h1 { font-size: 3.5rem; margin-bottom: 16px; }
.tour-hero .price-large { font-size: 2rem; font-weight: 800; margin-top: 20px; }
.tour-hero .price-large small { font-size: 1rem; font-weight: normal; }

.tour-details-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  padding: 60px 0;
}

.info-highlights {
  background: #fef9f0;
  padding: 24px;
  border-radius: 28px;
  margin-bottom: 30px;
}

.highlights-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 16px;
}

.highlights-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  width: calc(50% - 10px);
}

.highlights-list i { color: #e67e22; width: 24px; }

.itinerary-item {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eef2f8;
}

.day-badge {
  background: #0f3b3f;
  color: white;
  padding: 8px 16px;
  border-radius: 40px;
  font-weight: bold;
  min-width: 80px;
  text-align: center;
}

.inclusion-box {
  background: #f9fbfd;
  border-radius: 28px;
  padding: 28px;
  margin-bottom: 30px;
  border: 1px solid #eef2f8;
}

.inclusion-box h3 { margin-bottom: 20px; }
.inclusion-box ul { list-style: none; }
.inclusion-box li { margin-bottom: 12px; display: flex; align-items: center; gap: 12px; }
.inclusion-box i.fa-check { color: #2ecc71; }
.inclusion-box i.fa-times { color: #e74c3c; }

.booking-sidebar {
  position: sticky;
  top: 100px;
}

.booking-card {
  background: white;
  border: 1px solid #eef2f8;
  border-radius: 28px;
  padding: 28px;
  margin-bottom: 28px;
  box-shadow: 0 12px 24px -12px rgba(0,0,0,0.08);
}

.date-selector {
  margin: 12px 0;
  padding: 12px;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  width: 100%;
}

/* ============================================ */
/* FAQ PAGE STYLES                             */
/* ============================================ */
.faq-section {
  padding: 60px 0;
  background: #ffffff;
}

.faq-categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 50px;
}

.faq-cat-btn {
  padding: 10px 24px;
  border-radius: 40px;
  border: 1px solid #e2e8f0;
  background: white;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.faq-cat-btn:hover, .faq-cat-btn.active {
  background: #0f3b3f;
  color: white;
  border-color: #0f3b3f;
}

.faq-group {
  max-width: 800px;
  margin: 0 auto 40px;
}

.faq-group h2 {
  font-size: 1.8rem;
  margin-bottom: 24px;
  color: #1f3e42;
  border-left: 4px solid #e67e22;
  padding-left: 20px;
}

.faq-item {
  background: #f9fbfd;
  border-radius: 20px;
  margin-bottom: 16px;
  overflow: hidden;
  border: 1px solid #eef2f8;
  transition: all 0.2s;
}

.faq-question {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.05rem;
  color: #1f3e42;
}

.faq-question i {
  color: #e67e22;
  transition: transform 0.3s;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #5b6e8c;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  padding: 0 24px 20px 24px;
  max-height: 300px;
}

.contact-support {
  background: #fef9f0;
  border-radius: 28px;
  padding: 40px;
  text-align: center;
  margin-top: 50px;
}

.contact-support h3 {
  margin-bottom: 12px;
}

.contact-support .btn {
  margin-top: 20px;
}

/* ============================================ */
/* PRIVACY POLICY PAGE STYLES                  */
/* ============================================ */
.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px;
}

.legal-content h1 { font-size: 2.5rem; margin-bottom: 20px; }
.legal-content h2 { margin: 40px 0 20px; color: #1f3e42; font-size: 1.5rem; }
.legal-content h3 { margin: 30px 0 15px; color: #1f3e42; }
.legal-content p { margin-bottom: 16px; line-height: 1.7; color: #4a5c6f; }
.legal-content ul { margin: 16px 0 16px 30px; color: #4a5c6f; }
.legal-content li { margin-bottom: 8px; }

.last-updated {
  color: #5b6e8c;
  font-style: italic;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eef2f8;
}

.contact-privacy {
  background: #fef9f0;
  padding: 30px;
  border-radius: 28px;
  margin-top: 40px;
}

/* ============================================ */
/* SCROLL TO TOP BUTTON (SCROLL ARROW)         */
/* ============================================ */

.scroll-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e67e22 0%, #f39c12 100%);
  color: white;
  border: none;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 15px rgba(230, 126, 34, 0.4);
  transition: all 0.3s ease;
  opacity: 0;
  transform: scale(0.8);
}

.scroll-top-btn.show {
  display: flex;
  opacity: 1;
  transform: scale(1);
  animation: bounceIn 0.3s ease;
}

.scroll-top-btn:hover {
  transform: translateY(-5px);
  background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
  box-shadow: 0 6px 20px rgba(230, 126, 34, 0.5);
}

.scroll-top-btn:active {
  transform: translateY(0);
}

.scroll-top-btn i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.scroll-top-btn:hover i {
  transform: translateY(-3px);
}

/* Bounce animation for scroll button */
@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Pulse animation for attention (optional) */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(230, 126, 34, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(230, 126, 34, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(230, 126, 34, 0);
  }
}

.scroll-top-btn.pulse {
  animation: pulse 1.5s infinite;
}

/* Scroll Progress Indicator (Optional - around the button) */
.scroll-progress {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: transparent;
  z-index: 998;
  pointer-events: none;
}

.scroll-progress svg {
  width: 60px;
  height: 60px;
  transform: rotate(-90deg);
}

.scroll-progress circle {
  fill: none;
  stroke: #e67e22;
  stroke-width: 3;
  stroke-dasharray: 180;
  stroke-dashoffset: 180;
  transition: stroke-dashoffset 0.3s ease;
}

/* ============================================ */
/* MODERN CONTACT FORM STYLES                  */
/* ============================================ */

.contact-form-modern {
  background: #ffffff;
  padding: 40px;
  border-radius: 28px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  border: 1px solid #eef2f8;
  transition: all 0.3s ease;
}

.contact-form-modern:hover {
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.08);
}

/* Input Wrapper with Icons */
.input-wrapper {
  position: relative;
  width: 100%;
}

.input-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #e67e22;
  font-size: 1rem;
  z-index: 1;
  transition: all 0.3s ease;
}

.textarea-icon {
  top: 22px;
  transform: none;
}

.input-wrapper input,
.input-wrapper select,
.textarea-wrapper textarea {
  width: 100%;
  padding: 14px 18px 14px 48px;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  background: #ffffff;
  transition: all 0.3s ease;
  outline: none;
  color: #1e2a3e;
}

.textarea-wrapper {
  position: relative;
  width: 100%;
  margin-bottom: 20px;
}

.textarea-wrapper textarea {
  padding: 14px 18px 14px 48px;
  resize: vertical;
  min-height: 120px;
}

.input-wrapper select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23e67e22' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  cursor: pointer;
}

/* Input Focus Effects */
.input-wrapper input:focus,
.input-wrapper select:focus,
.textarea-wrapper textarea:focus {
  border-color: #e67e22;
  box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.1);
}

.input-wrapper input:focus + .input-icon,
.input-wrapper select:focus ~ .input-icon,
.textarea-wrapper textarea:focus ~ .input-icon {
  color: #e67e22;
  transform: translateY(-50%) scale(1.05);
}

.textarea-wrapper textarea:focus ~ .input-icon {
  transform: scale(1.05);
}

/* Submit Button Wrapper - CENTERED */
.form-button-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 36px;
  background: linear-gradient(135deg, #e67e22 0%, #f39c12 100%);
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(230, 126, 34, 0.3);
}

.submit-btn i {
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230, 126, 34, 0.4);
  background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
}

.submit-btn:hover i {
  transform: translateX(3px);
}

.submit-btn:active {
  transform: translateY(0);
}

/* Form Note */
.form-note {
  text-align: center;
  font-size: 0.85rem;
  color: #5b6e8c;
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.form-note i {
  color: #e67e22;
  font-size: 0.9rem;
}

/* Animation for form elements on focus */
@keyframes inputGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(230, 126, 34, 0.2);
  }
  100% {
    box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.1);
  }
}

.input-wrapper input:focus,
.input-wrapper select:focus,
.textarea-wrapper textarea:focus {
  animation: inputGlow 0.3s ease;
}

/* ============================================ */
/* RESPONSIVE STYLES (Consolidated)            */
/* ============================================ */

/* Tablet and up - Desktop navigation */
@media (min-width: 769px) {
  .menu-icon {
    display: none !important;
  }

  .logo {
    position: static;
    transform: none;
    white-space: normal;
  }

  .nav-links {
    display: flex !important;
    position: static;
    flex-direction: row;
    box-shadow: none;
    padding: 0;
    margin-top: 0;
    width: auto;
  }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
  /* Mobile Navigation Layout */
  .nav-flex {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .menu-icon {
    display: flex !important;
    order: 1;
    z-index: 1001;
  }

  .logo {
    order: 2;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    white-space: nowrap;
  }

  .logo-text {
    font-size: 1.3rem;
  }

  .logo-tagline {
    font-size: 0.55rem;
    letter-spacing: 0;
  }

  .nav-buttons {
    order: 3;
    margin-left: auto;
  }

  .call-expert-btn span {
    display: none;
  }

  .call-expert-btn {
    padding: 10px 14px;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    background: white;
    padding: 20px;
    margin-top: 16px;
    gap: 12px;
    text-align: center;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 999;
    order: 4;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links a {
    display: block;
    padding: 12px 20px;
    font-size: 1rem;
  }

  .nav-links a.active::after,
  .nav-links li::before {
    display: none;
  }

  /* General Mobile Styles */
  .hero-content h1 { font-size: 2.5rem; }
  .hero-grid, .about-grid, .contact-grid, .quote-grid, .tour-details-grid {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .form-row, .form-row-2 { grid-template-columns: 1fr; }
  .container { padding: 0 24px; }

  .search-panel { border-radius: 32px; padding: 20px; }
  .search-form { flex-direction: column; }
  .input-group { width: 100%; }

  .cta { padding: 40px 24px; }
  .section-title { font-size: 2rem; }

  .filter-bar, .faq-categories { gap: 8px; }
  .filter-btn, .faq-cat-btn { padding: 6px 16px; font-size: 0.85rem; }

  .tour-hero h1 { font-size: 2rem; }
  .blog-hero h1 { font-size: 1.8rem; }
  .page-header h1 { font-size: 2rem; }
  .insurance-hero h1 { font-size: 2rem; }

  .highlights-list li { width: 100%; }
  .faq-question { font-size: 0.95rem; padding: 16px 20px; }
  .faq-group h2 { font-size: 1.4rem; }

  .coverage-table { display: block; overflow-x: auto; }
  .plan-header h3 { font-size: 1.4rem; }

  .contact-form-modern { padding: 24px; }
  .submit-btn { width: 100%; justify-content: center; }

  .scroll-top-btn { bottom: 20px; right: 20px; width: 45px; height: 45px; }
  .scroll-top-btn i { font-size: 1rem; }
  .scroll-progress { bottom: 15px; right: 15px; width: 55px; height: 55px; }
  .scroll-progress svg { width: 55px; height: 55px; }
}

/* Small Mobile (max-width: 576px) */
@media (max-width: 576px) {
  .hero-stats { flex-direction: column; gap: 16px; text-align: center; }
  .hero-buttons .btn { display: block; width: 100%; margin: 10px 0 !important; text-align: center; justify-content: center; }
  .stat h3 { font-size: 1.5rem; }
  .logo-text { font-size: 1.1rem; }
  .logo-tagline { font-size: 0.5rem; letter-spacing: 0; }
  .menu-icon { width: 40px; height: 40px; font-size: 1.5rem; }
  .call-expert-btn { padding: 8px 12px; }
  .call-expert-btn i { font-size: 0.9rem; }

  .benefit-card, .plan-card, .testi-card { padding: 20px; }
  .plan-price { font-size: 1.8rem; }

  .scroll-top-btn { bottom: 15px; right: 15px; width: 40px; height: 40px; }
  .scroll-top-btn i { font-size: 0.9rem; }
}

/* ============================================ */
/* MADOL FRONTEND IMPROVEMENT LAYER             */
/* ============================================ */

h1, h2, h3, h4,
.logo-text,
.logo-tagline {
  letter-spacing: 0;
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 38px;
  text-align: center;
}

.page-kicker,
.section-kicker,
.tour-card-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #a34b00;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.page-header.listing-header,
.contact-header,
.blog-list-header,
.faq-header {
  padding: 82px 0;
  color: #ffffff;
  background: linear-gradient(135deg, #0c2b2f 0%, #0f3b3f 62%, #1c5e64 100%);
}

.page-header.listing-header h1,
.contact-header h1,
.blog-list-header h1,
.faq-header h1 {
  color: #ffffff;
  font-size: 4rem;
  line-height: 1;
}

.page-header.listing-header p,
.contact-header p,
.blog-list-header p,
.faq-header p {
  max-width: 680px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.78);
}

.page-header .page-kicker,
.tour-hero .page-kicker,
.insurance-hero .page-kicker,
.blog-hero .page-kicker {
  color: #ffd19d;
}

/* Home */
.home-hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 96px;
  background: linear-gradient(105deg, #fff7ed 0%, #ffffff 46%, #eff8f6 100%);
}

.home-hero .hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  align-items: center;
  gap: 64px;
  flex-wrap: nowrap;
}

.home-hero .hero-content h1 {
  max-width: 720px;
  color: #12383c;
  font-size: 4.3rem;
  line-height: 1;
}

.home-hero .hero-content p {
  max-width: 650px;
  color: #4a5c6f;
  font-size: 1.12rem;
  line-height: 1.8;
}

.home-hero .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff0df;
  color: #a34b00;
}

.home-hero .hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 620px;
}

.home-hero .stat {
  min-height: 108px;
  padding: 18px;
  border: 1px solid rgba(230, 126, 34, 0.18);
  border-radius: 20px;
  background: linear-gradient(135deg, #fff7ed 0%, #ffffff 52%, #eef8f6 100%);
  box-shadow: 0 16px 28px -24px rgba(15, 59, 63, 0.32);
}

.home-hero .stat h3 {
  margin-bottom: 8px;
}

.home-hero-image {
  position: relative;
  border-radius: 28px;
}

.home-hero-image img {
  min-height: 520px;
  object-fit: cover;
  border-radius: 28px;
}

.hero-image-card {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 34px rgba(12, 43, 47, 0.16);
}

.hero-image-card i {
  display: inline-flex;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff4e9;
  color: #e67e22;
}

.hero-image-card span {
  color: #26394a;
  font-weight: 600;
  line-height: 1.45;
}

.home-search-panel {
  margin-top: -46px;
  border: 1px solid rgba(230, 126, 34, 0.18);
  border-radius: 28px;
  background: linear-gradient(135deg, #ffffff 0%, #fffaf5 55%, #edf8f5 100%);
  box-shadow: 0 26px 44px -30px rgba(12, 43, 47, 0.44);
}

.home-search-panel .input-group {
  border: 1px solid #e9eef1;
  background: rgba(255, 255, 255, 0.76);
}

.home-care-band {
  padding: 38px 0 82px;
  background: #ffffff;
}

.home-care-band .care-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

/* Gradient Cards */
.care-card,
.service-item,
.testi-card,
.benefit-card,
.plan-card,
.blog-card,
.improved-tour-card {
  border: 1px solid rgba(230, 126, 34, 0.16);
  background: linear-gradient(135deg, #fff7ed 0%, #ffffff 52%, #eef8f6 100%);
  box-shadow: 0 18px 34px -28px rgba(15, 59, 63, 0.35);
}

.care-card,
.improved-tour-card,
.blog-card,
.testi-card,
.benefit-card,
.plan-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.care-card:hover,
.improved-tour-card:hover,
.blog-card:hover,
.testi-card:hover,
.benefit-card:hover,
.plan-card:hover {
  transform: translateY(-5px);
  border-color: rgba(230, 126, 34, 0.34);
  box-shadow: 0 28px 44px -30px rgba(15, 59, 63, 0.46);
}

.care-card {
  min-height: 100%;
  padding: 30px;
  border-radius: 24px;
}

.care-icon,
.team-icon {
  display: inline-flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border-radius: 18px;
  background: #fff4e9;
  color: #e67e22;
  font-size: 1.35rem;
}

.care-card h3 {
  margin-bottom: 12px;
  color: #12383c;
  font-size: 1.35rem;
  line-height: 1.2;
}

.care-card p {
  color: #5b6e8c;
  line-height: 1.7;
}

/* Tours */
.improved-tour-filters {
  padding: 28px 0 0;
  background: #ffffff;
}

.improved-destinations,
.featured-tours {
  padding: 78px 0;
  background: #ffffff;
}

.improved-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.improved-tour-card {
  border-radius: 24px;
  overflow: hidden;
}

.improved-tour-card .card-img {
  height: 240px;
}

.improved-tour-card .card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 43, 47, 0) 45%, rgba(12, 43, 47, 0.34) 100%);
}

.improved-tour-card .card-badge {
  z-index: 1;
  background: linear-gradient(135deg, #e67e22 0%, #f39c12 100%);
}

.improved-tour-card .card-content {
  padding: 24px;
}

.tour-card-kicker {
  margin-bottom: 8px;
  font-size: 0.72rem;
}

.improved-tour-card h3 {
  color: #12383c;
  font-size: 1.55rem;
  line-height: 1.18;
}

.improved-tour-card p {
  margin-top: 10px;
  color: #5b6e8c;
  line-height: 1.65;
}

.tour-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 4px;
}

.tour-card-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border-radius: 999px;
  background: #f4faf8;
  color: #486171;
  font-size: 0.82rem;
  font-weight: 600;
}

.tour-card-meta i,
.improved-tour-card .rating i {
  color: #e67e22;
}

.improved-tour-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.featured-actions {
  margin-top: 40px;
}

/* Tour Details */
.improved-tour-hero {
  padding: 118px 0;
  text-align: left;
  background-size: cover;
  background-position: center;
}

.improved-tour-hero h1 {
  max-width: 820px;
  color: #ffffff;
  font-size: 4.2rem;
  line-height: 1;
}

.improved-tour-hero p {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.18rem;
  line-height: 1.7;
}

.improved-tour-hero .price-large {
  color: #ffd19d;
}

.improved-tour-details-grid {
  align-items: start;
}

.info-highlights {
  border: 1px solid rgba(230, 126, 34, 0.16);
  background: linear-gradient(135deg, #fff7ed 0%, #ffffff 58%, #eef8f6 100%);
}

.info-highlights h3 i {
  color: #e67e22;
}

.itinerary-heading {
  margin: 10px 0 24px;
}

.itinerary-heading h2 {
  margin-top: 8px;
  color: #12383c;
  font-size: 2.2rem;
}

.itinerary-item {
  position: relative;
  padding: 18px 0 24px;
}

.day-badge {
  background: linear-gradient(135deg, #0f3b3f, #1c5e64);
}

.improved-booking-card {
  border-color: rgba(230, 126, 34, 0.18);
  background: linear-gradient(135deg, #ffffff 0%, #fffaf5 55%, #eef8f6 100%);
  box-shadow: 0 24px 44px -30px rgba(12, 43, 47, 0.48);
}

.improved-booking-card h3 {
  margin: 8px 0 10px;
  color: #12383c;
}

.improved-booking-card .btn {
  width: 100%;
  justify-content: center;
  margin: 12px 0;
}

.booking-total {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid #e6eef0;
  border-bottom: 1px solid #e6eef0;
  color: #5b6e8c;
}

.booking-total strong {
  color: #0f3b3f;
}

.booking-call {
  display: block;
  color: #0f3b3f;
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}

.tour-note-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 26px;
}

.tour-note-card,
.itinerary-request-card,
.request-step {
  border: 1px solid rgba(230, 126, 34, 0.16);
  border-radius: 24px;
  background: linear-gradient(135deg, #fff7ed 0%, #ffffff 52%, #eef8f6 100%);
  box-shadow: 0 18px 34px -28px rgba(15, 59, 63, 0.35);
}

.tour-overview {text-align: justify;}

.tour-overview ul {
    list-style: none;
    padding-left: 0;
}

.tour-overview ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
}

.tour-overview ul li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #28a745;
    position: absolute;
    left: 0;
    top: 2px;
}

.tour-note-card {
  padding: 26px;
}

.tour-note-card > i {
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 16px;
  background: #fff4e9;
  color: #e67e22;
  font-size: 1.25rem;
}

.tour-note-card h3 {
  margin-bottom: 10px;
  color: #12383c;
  font-size: 1.3rem;
}

.tour-note-card p {
  color: #5b6e8c;
  line-height: 1.7;
}

.itinerary-request-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: flex-start;
  margin: 0 0 26px;
  padding: 30px;
}

.request-icon {
  display: inline-flex;
  width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #0f3b3f;
  color: #ffffff;
  font-size: 1.35rem;
}

.itinerary-request-card h2 {
  margin: 8px 0 12px;
  color: #12383c;
  font-size: 2rem;
  line-height: 1.15;
}

.itinerary-request-card p {
  color: #5b6e8c;
  line-height: 1.75;
}

.request-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.request-step {
  padding: 24px;
}

.request-step strong {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 50%;
  background: #e67e22;
  color: #ffffff;
  font-size: 1.1rem;
}

.request-step h4 {
  margin-bottom: 8px;
  color: #12383c;
  font-size: 1.1rem;
}

.request-step p {
  color: #5b6e8c;
  font-size: 0.94rem;
  line-height: 1.6;
}

.request-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 16px 0;
  padding: 14px;
  border-radius: 18px;
  background: #fff7ed;
  color: #5b6e8c;
  font-size: 0.9rem;
  line-height: 1.5;
}

.request-note i {
  color: #e67e22;
  margin-top: 2px;
}

.request-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 16px 0 4px;
}

.improved-booking-card .request-actions .btn {
  margin: 0;
  padding: 12px 14px;
}

.btn-whatsapp {
  justify-content: center;
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(37, 211, 102, 0.18);
}

.btn-whatsapp:hover {
  background: #1eb85a;
  color: #ffffff;
}

.btn-email {
  justify-content: center;
  background: #ffffff;
  color: #0f3b3f;
  border: 1px solid #dfe8ea;
}

.btn-email:hover {
  background: #0f3b3f;
  color: #ffffff;
}

/* Services and Testimonials */
.improved-services {
  background: #f7faf9;
}

.improved-services .service-flex {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.improved-services .service-item {
  max-width: none;
  padding: 28px 22px;
  border-radius: 24px;
}

.improved-services .service-icon {box-shadow: none;}
.service-item .service-heading {font-family: 'Playfair Display', serif;font-weight: 700;letter-spacing: 0;}

.improved-testimonials { background: #ffffff;}

.improved-testimonials .testi-card {border-radius: 24px;}

.client-avatar {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #0f3b3f;
  color: #ffffff;
  font-weight: 800;
}

.improved-cta {
  border-radius: 32px;
  background: linear-gradient(135deg, #0c2b2f 0%, #0f3b3f 62%, #1c5e64 100%);
}

.improved-cta .section-kicker {
  color: #a34b00;
}

.improved-cta p,
.cta p {
  max-width: 640px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
}

/* Contact */
.improved-contact-section {
  background: #ffffff;
}

.improved-contact-section .contact-info h2 {
  margin-top: 10px;
  font-size: 2.55rem;
  line-height: 1.08;
}

.contact-info-card {
  margin-top: 28px;
  padding: 26px;
  border: 1px solid rgba(230, 126, 34, 0.16);
  border-radius: 24px;
  background: linear-gradient(135deg, #fff7ed 0%, #ffffff 52%, #eef8f6 100%);
}

.contact-info-card .info-item:last-child {
  margin-bottom: 0;
}

.contact-form-modern {
  background: linear-gradient(135deg, #ffffff 0%, #fffaf5 58%, #eef8f6 100%);
}

.form-note{
    display:flex;
    align-items:center;
    gap:8px;
    margin-top:15px;
    font-size:14px;
}

.form-note.success{
    color:#198754;
}

.form-note.error{
    color:#dc3545;
}

.is-invalid{
    border:1px solid #dc3545 !important;
    box-shadow:0 0 0 3px rgba(220,53,69,.08);
}

.invalid-feedback{
    display:flex;
    align-items:flex-start;
    gap:6px;
    color:#dc3545;
    font-size:13px;
    margin:6px 0 12px;
    line-height:1.4;
}

.invalid-feedback i{
    margin-top:2px;
    font-size:12px;
}

/* Blog */
.improved-blog-grid-section {
  padding: 78px 0;
}

.improved-blog-grid-section .blog-card {
  border-radius: 24px;
}

.improved-blog-grid-section .blog-card img {
  height: 240px;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.improved-blog-hero {
  background-size: cover;
  background-position: center;
}

.improved-blog-hero h1 {
  color: #ffffff;
}

.improved-blog-content {
  font-size: 1.02rem;
}

/* Blog Details Redesign */
.blog-detail-hero {
  position: relative;
  overflow: hidden;
  padding: 110px 0 96px;
  color: #ffffff;
  background:
    linear-gradient(105deg, rgba(12, 43, 47, 0.92) 0%, rgba(15, 59, 63, 0.78) 58%, rgba(230, 126, 34, 0.58) 100%),
    var(--blog-hero-image) center/cover no-repeat;
}

.blog-detail-hero-inner {
  max-width: 980px;
}

.blog-detail-hero h1 {
  max-width: 860px;
  margin: 12px 0 18px;
  color: #ffffff;
  font-size: 4.1rem;
  line-height: 1;
}

.blog-detail-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.15rem;
  line-height: 1.75;
}

.blog-detail-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
}

.blog-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.blog-author span {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #e67e22;
  color: #ffffff;
  font-weight: 800;
}

.blog-author strong,
.blog-author small {
  display: block;
}

.blog-author strong {
  color: inherit;
}

.blog-author small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
}

.blog-meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 700;
}

.blog-detail-section {
  padding: 78px 0;
  background: #ffffff;
}

.blog-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 44px;
  align-items: start;
}

.blog-article {
  min-width: 0;
}

.blog-details{
    color:#444;
    font-size:16px;
    line-height:1.9;
}

.blog-details h2,
.blog-details h3{
    color:#222;
    font-weight:700;
    margin:35px 0 15px;
}

.blog-details p{
    margin-bottom:18px;
    text-align:justify;
}

.blog-details ul,
.blog-details ol{
    list-style:none;
    padding-left:0;
    margin:20px 0;
}

.blog-details ul li{
    position:relative;
    padding-left:28px;
    margin-bottom:12px;
    line-height:1.8;
}

.blog-details ul li::before{
    content:"✔";
    position:absolute;
    left:0;
    top:2px;
    color:#0d9b4d;
    font-weight:bold;
}

.blog-details ol{
    counter-reset:item;
}

.blog-details ol li{
    list-style:none;
    position:relative;
    padding-left:38px;
    margin-bottom:14px;
}

.blog-details ol li::before{
    counter-increment:item;
    content:counter(item);
    position:absolute;
    left:0;
    top:2px;
    width:24px;
    height:24px;
    border-radius:50%;
    background:#f49054;
    color:#fff;
    text-align:center;
    line-height:24px;
    font-size:13px;
    font-weight:600;
}

.article-lead {
  padding: 28px;
  border-left: 4px solid #e67e22;
  border-radius: 0 24px 24px 0;
  background: #fff7ed;
}

.article-lead p {
  margin: 0;
  color: #24364a;
  font-size: 1.18rem;
  font-weight: 600;
  line-height: 1.8;
}

.article-image {
  margin: 34px 0;
  overflow: hidden;
  border-radius: 26px;
  box-shadow: 0 24px 44px -30px rgba(12, 43, 47, 0.4);
}

.article-image img {
  width: 100%;
  height: 420px;
  display: block;
  object-fit: cover;
}

.blog-article h2 {
  margin: 38px 0 16px;
  color: #12383c;
  font-size: 2.1rem;
  line-height: 1.15;
}

.blog-article p {
  color: #4a5c6f;
  font-size: 1.02rem;
  line-height: 1.82;
  margin-bottom: 18px;
}

.takeaway-box,
.article-tip,
.article-callout,
.sidebar-card {
  border: 1px solid rgba(230, 126, 34, 0.16);
  border-radius: 24px;
  background: linear-gradient(135deg, #fff7ed 0%, #ffffff 52%, #eef8f6 100%);
  box-shadow: 0 18px 34px -28px rgba(15, 59, 63, 0.35);
}

.takeaway-box {
  padding: 30px;
  margin-bottom: 34px;
}

.takeaway-box h2 {
  margin: 8px 0 20px;
}

.takeaway-box ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.takeaway-box li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #4a5c6f;
  line-height: 1.6;
}

.takeaway-box i {
  color: #0f3b3f;
  margin-top: 4px;
}

.article-tip {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 22px;
  margin: 30px 0;
}

.article-tip > i {
  display: inline-flex;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #e67e22;
  color: #ffffff;
}

.article-tip p {
  margin: 0;
}

.article-callout {
  padding: 30px;
  margin: 38px 0 8px;
  text-align: center;
}

.article-callout h3 {
  color: #12383c;
  font-size: 1.7rem;
  margin-bottom: 10px;
}

.article-actions {
  flex-wrap: wrap;
}

.article-actions .share-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.blog-sidebar {
  position: sticky;
  top: 105px;
  display: grid;
  gap: 22px;
}

.sidebar-card {
  padding: 24px;
}

.sidebar-card h3 {
  margin-bottom: 16px;
  color: #12383c;
  font-size: 1.25rem;
}

.sidebar-card p {
  color: #5b6e8c;
  line-height: 1.7;
}

.blog-author.large span {
  width: 56px;
  height: 56px;
}

.blog-author.large small,
.blog-sidebar .blog-author small {
  color: #5b6e8c;
}

.topic-list {
  display: grid;
  gap: 10px;
}

.topic-list a {
  padding: 11px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  color: #0f3b3f;
  font-weight: 700;
  text-decoration: none;
}

.topic-list a:hover {
  color: #e67e22;
}

.enquiry-card {
  text-align: center;
}

.enquiry-card > i {
  display: inline-flex;
  width: 60px;
  height: 60px;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border-radius: 50%;
  background: #0f3b3f;
  color: #ffffff;
  font-size: 1.4rem;
}

.improved-related-posts {
  background: #f7faf9;
}

.improved-related-posts .related-card {
  border: 1px solid rgba(230, 126, 34, 0.16);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 18px 34px -30px rgba(15, 59, 63, 0.35);
}

.improved-related-posts .related-card img {
  height: 190px;
}

.improved-related-posts .related-card a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* FAQ */
.improved-faq-section {
  background: #ffffff;
}

.improved-faq-section .faq-item {
  border-color: rgba(230, 126, 34, 0.16);
  background: linear-gradient(135deg, #ffffff 0%, #fffaf5 58%, #eef8f6 100%);
}

.contact-support {
  border: 1px solid rgba(230, 126, 34, 0.18);
  background: linear-gradient(135deg, #fff7ed 0%, #ffffff 52%, #eef8f6 100%);
}

.contact-support > i {
  display: inline-flex;
  width: 68px;
  height: 68px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 50%;
  background: #fff4e9;
  color: #e67e22;
  font-size: 1.8rem;
}

/* Insurance */
.improved-insurance-hero {
  padding: 98px 0;
  background: linear-gradient(135deg, #0c2b2f 0%, #0f3b3f 62%, #1c5e64 100%);
}

.improved-insurance-hero h1 {
  color: #ffffff;
  font-size: 4rem;
  line-height: 1;
}

.improved-insurance-hero p {
  color: rgba(255, 255, 255, 0.82);
}

.improved-why-insurance,
.improved-coverage-plans {
  padding: 78px 0;
}

.improved-coverage-plans .plan-price {
  font-size: 1.8rem;
}

.insurance-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  font-family: inherit;
  resize: vertical;
}

.insurance-form .btn {
  width: 100%;
  justify-content: center;
}

@media (max-width: 1100px) {
  .improved-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .improved-services .service-flex {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 992px) {
  .home-hero .hero-grid {
    grid-template-columns: 1fr;
  }

  .home-hero .hero-content h1,
  .improved-tour-hero h1,
  .blog-detail-hero h1,
  .page-header.listing-header h1,
  .contact-header h1,
  .blog-list-header h1,
  .faq-header h1,
  .improved-insurance-hero h1 {
    font-size: 3.2rem;
  }

  .home-care-band .care-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .home-hero {
    padding: 66px 0 78px;
  }

  .home-hero .hero-content h1,
  .improved-tour-hero h1,
  .blog-detail-hero h1,
  .page-header.listing-header h1,
  .contact-header h1,
  .blog-list-header h1,
  .faq-header h1,
  .improved-insurance-hero h1 {
    font-size: 2.35rem;
    line-height: 1.08;
  }

  .home-hero .hero-stats,
  .improved-card-grid,
  .improved-services .service-flex {
    grid-template-columns: 1fr;
  }

  .home-hero-image img {
    min-height: 0;
  }

  .hero-image-card {
    position: static;
    margin-top: 16px;
  }

  .page-header.listing-header,
  .contact-header,
  .blog-list-header,
  .faq-header,
  .blog-detail-hero,
  .improved-insurance-hero,
  .improved-tour-hero {
    padding: 68px 0;
    text-align: center;
  }

  .improved-tour-card .card-img,
  .improved-blog-grid-section .blog-card img {
    height: 220px;
  }

  .tour-note-grid,
  .request-flow,
  .request-actions {
    grid-template-columns: 1fr;
  }

  .itinerary-request-card {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .itinerary-request-card h2 {
    font-size: 1.65rem;
  }

  .blog-detail-section {
    padding: 58px 0;
  }

  .blog-detail-layout {
    grid-template-columns: 1fr;
  }

  .blog-sidebar {
    position: static;
  }

  .article-image img {
    height: 260px;
  }

  .contact-info-card,
  .care-card,
  .improved-services .service-item,
  .testi-card,
  .benefit-card,
  .plan-card,
  .blog-card {
    border-radius: 20px;
  }
}
