/* ============================================================
   PMK Tours & Travel — Main Stylesheet
   planmykenyantour.com
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange:       #E07B39;
  --orange-dark:  #c4621d;
  --orange-light: #fdf0e8;
  --green:        #1a3a2a;
  --green-mid:    #2d5a3d;
  --green-light:  #e8f2ec;
  --cream:        #FDF8F2;
  --gold:         #c9a84c;
  --gold-light:   #faf3e0;
  --text:         #1a1a1a;
  --text-muted:   #666;
  --border:       #e5ddd4;
  --white:        #ffffff;
  --shadow-sm:    0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:    0 6px 24px rgba(0,0,0,0.12);
  --shadow-lg:    0 16px 48px rgba(0,0,0,0.16);
  --radius:       6px;
  --radius-lg:    10px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── UTILITY ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 48px 0; }
.text-center { text-align: center; }
.text-orange { color: var(--orange); }
.text-green { color: var(--green); }
.bg-cream { background: var(--cream); }
.bg-green { background: var(--green); }

.label {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--orange); margin-bottom: 10px;
}
.section-title {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800; color: var(--green); line-height: 1.15; margin-bottom: 14px;
}
.section-sub {
  font-size: 16px; color: var(--text-muted); max-width: 600px; line-height: 1.7;
}
.section-sub.center { margin: 0 auto; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: var(--radius);
  font-size: 14px; font-weight: 700; letter-spacing: 0.5px;
  text-transform: uppercase; cursor: pointer;
  transition: all 0.2s ease; border: 2px solid transparent;
}
.btn-orange { background: var(--orange); color: var(--white); }
.btn-orange:hover { background: var(--orange-dark); color: var(--white); transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.btn-green { background: var(--green); color: var(--white); }
.btn-green:hover { background: var(--green-mid); color: var(--white); transform: translateY(-1px); }
.btn-outline-white { border-color: var(--white); color: var(--white); }
.btn-outline-white:hover { background: var(--white); color: var(--green); }
.btn-outline-green { border-color: var(--green); color: var(--green); }
.btn-outline-green:hover { background: var(--green); color: var(--white); }
.btn-lg { padding: 16px 36px; font-size: 15px; }
.btn-sm { padding: 9px 18px; font-size: 12px; }

/* ── HEADER ── */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; gap: 24px;
}
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo img { height: 44px; width: 44px; border-radius: 50%; object-fit: cover; }
.logo-name { font-size: 16px; font-weight: 800; color: var(--green); line-height: 1.15; }
.logo-name small { display: block; font-size: 10px; font-weight: 500; color: var(--text-muted); letter-spacing: 0.5px; }
.main-nav { display: flex; align-items: center; gap: 24px; }
.main-nav a {
  font-size: 13px; font-weight: 600; color: var(--text);
  letter-spacing: 0.4px; text-transform: uppercase;
  padding: 4px 0; border-bottom: 2px solid transparent;
  transition: all 0.2s;
}
.main-nav a:hover, .main-nav a.active { color: var(--orange); border-bottom-color: var(--orange); }
.header-cta { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.header-phone { font-size: 13px; font-weight: 700; color: var(--green); white-space: nowrap; }
.header-phone span { font-size: 11px; display: block; font-weight: 400; color: var(--text-muted); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; }

/* Mobile nav */
.mobile-nav {
  display: none; position: fixed; top: 68px; left: 0; right: 0; bottom: 0;
  background: var(--white); z-index: 999; overflow-y: auto;
  padding: 24px;
}
.mobile-nav.open { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav a {
  font-size: 16px; font-weight: 600; padding: 14px 0;
  border-bottom: 1px solid var(--border); color: var(--text);
}
.mobile-nav .btn { margin-top: 16px; justify-content: center; }

/* ── HERO ── */
.hero {
  position: relative; height: 100vh; min-height: 620px;
  background: center/cover no-repeat;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(10,28,18,0.85) 40%, rgba(10,28,18,0.4) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 400px;
  gap: 56px; align-items: center;
  width: 100%; padding: 0;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,0.18); border: 1px solid rgba(201,168,76,0.6);
  color: var(--gold); font-size: 12px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 7px 16px; border-radius: 30px; margin-bottom: 20px;
}
.hero-title {
  font-size: clamp(36px, 5vw, 58px); font-weight: 900;
  color: var(--white); line-height: 1.08; margin-bottom: 18px;
}
.hero-title em { color: var(--gold); font-style: normal; }
.hero-desc {
  font-size: 17px; color: rgba(255,255,255,0.85); line-height: 1.7;
  margin-bottom: 32px; max-width: 500px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-stats { display: flex; gap: 28px; }
.hero-stat { border-left: 2px solid var(--gold); padding-left: 14px; }
.hero-stat strong { display: block; font-size: 28px; font-weight: 900; color: var(--white); line-height: 1; }
.hero-stat span { font-size: 11px; color: rgba(255,255,255,0.65); text-transform: uppercase; letter-spacing: 0.5px; margin-top: 3px; display: block; }

/* Hero Lead Form */
.hero-form-box {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 30px 28px; box-shadow: var(--shadow-lg);
}
.hero-form-box h3 { font-size: 19px; font-weight: 800; color: var(--green); margin-bottom: 4px; }
.hero-form-box p { font-size: 13px; color: var(--text-muted); margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* ── FORMS ── */
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block; font-size: 11px; font-weight: 700;
  letter-spacing: 0.8px; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid var(--border); border-radius: var(--radius);
  font-size: 14px; color: var(--text); background: var(--white);
  transition: border-color 0.2s; font-family: inherit;
  appearance: none; -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--orange); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px; }
.btn-submit {
  width: 100%; background: var(--orange); color: var(--white);
  border: none; padding: 14px; border-radius: var(--radius);
  font-size: 15px; font-weight: 800; cursor: pointer;
  text-transform: uppercase; letter-spacing: 0.5px;
  transition: background 0.2s; font-family: inherit; margin-top: 4px;
}
.btn-submit:hover { background: var(--orange-dark); }
.form-note { text-align: center; font-size: 11px; color: var(--text-muted); margin-top: 10px; }

/* ── TRUST BAR ── */
.trust-bar { background: var(--green); padding: 16px 0; }
.trust-items {
  display: flex; align-items: center; justify-content: center;
  gap: 40px; flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 10px; color: var(--white); }
.trust-icon { font-size: 22px; flex-shrink: 0; }
.trust-text strong { display: block; font-size: 14px; font-weight: 700; }
.trust-text span { font-size: 11px; color: rgba(255,255,255,0.65); }
.trust-sep { width: 1px; height: 30px; background: rgba(255,255,255,0.15); }

/* ── PACKAGE CARDS ── */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}
.pkg-card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--border); overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex; flex-direction: column;
}
.pkg-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pkg-card-img { position: relative; height: 210px; overflow: hidden; }
.pkg-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s; }
.pkg-card:hover .pkg-card-img img { transform: scale(1.07); }
.pkg-badge {
  position: absolute; top: 12px; left: 12px;
  padding: 4px 12px; border-radius: 20px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase;
}
.pkg-badge-orange { background: var(--orange); color: var(--white); }
.pkg-badge-green { background: var(--green); color: var(--white); }
.pkg-badge-gold { background: var(--gold); color: var(--white); }
.pkg-card-body { padding: 20px 20px 0; flex: 1; }
.pkg-card-meta { display: flex; gap: 16px; margin-bottom: 10px; flex-wrap: wrap; }
.pkg-card-meta span { font-size: 12px; color: var(--text-muted); font-weight: 600; }
.pkg-card-meta .ico { margin-right: 4px; }
.pkg-card-title { font-size: 17px; font-weight: 700; color: var(--green); margin-bottom: 8px; line-height: 1.3; }
.pkg-card-dest { font-size: 12px; color: var(--text-muted); line-height: 1.6; margin-bottom: 12px; }
.pkg-card-stars { display: flex; align-items: center; gap: 6px; margin-bottom: 4px; }
.stars { color: #f4a800; font-size: 13px; }
.stars-count { font-size: 12px; color: var(--text-muted); }
.pkg-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; margin-top: auto;
  border-top: 1px solid var(--border);
}
.pkg-price-from { font-size: 10px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; }
.pkg-price-amount { font-size: 24px; font-weight: 900; color: var(--orange); line-height: 1; }
.pkg-price-pp { font-size: 11px; color: var(--text-muted); }

/* ── DESTINATIONS GRID ── */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.dest-card {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden; cursor: pointer;
}
.dest-card.dest-tall { grid-row: span 2; }
.dest-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; display: block; }
.dest-card { height: 200px; }
.dest-card.dest-tall { height: auto; min-height: 420px; }
.dest-card:hover img { transform: scale(1.06); }
.dest-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,28,18,0.72) 0%, transparent 55%);
  pointer-events: none;
}
.dest-info {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 1;
  padding: 14px 18px; color: var(--white);
}
.dest-info h4 { font-size: 16px; font-weight: 700; margin-bottom: 2px; }
.dest-info span { font-size: 12px; color: rgba(255,255,255,0.78); }

/* ── WHY US ── */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.why-card { text-align: center; padding: 32px 20px; }
.why-icon {
  width: 68px; height: 68px; border-radius: 50%;
  background: var(--green); color: var(--white);
  font-size: 28px; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.why-card h4 { font-size: 16px; font-weight: 700; color: var(--green); margin-bottom: 10px; }
.why-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* ── TESTIMONIALS ── */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-lg); padding: 28px;
}
.testi-stars { color: #f4a800; font-size: 16px; margin-bottom: 14px; }
.testi-quote { font-size: 15px; color: rgba(255,255,255,0.9); font-style: italic; line-height: 1.7; margin-bottom: 20px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 14px; background: var(--gold); color: var(--green);
}
.testi-name { font-size: 14px; font-weight: 700; color: var(--white); }
.testi-meta { font-size: 12px; color: rgba(255,255,255,0.55); }
.testi-via { font-size: 11px; color: var(--gold); font-weight: 700; letter-spacing: 0.5px; margin-top: 2px; }

/* ── CTA STRIP ── */
.cta-strip { background: var(--orange); padding: 56px 0; }
.cta-strip-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.cta-strip h2 { font-size: clamp(22px, 3vw, 30px); font-weight: 900; color: var(--white); margin-bottom: 8px; }
.cta-strip p { font-size: 16px; color: rgba(255,255,255,0.85); }

/* ── PARTNERS ── */
.partners-bar { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--cream); padding: 28px 0; }
.partners-inner { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.partners-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); }
.partner-logo { height: 28px; opacity: 0.55; filter: grayscale(1); transition: all 0.25s; object-fit: contain; }
.partner-logo:hover { opacity: 1; filter: none; }

/* ── PACKAGE DETAIL ── */
.pkg-hero {
  height: 420px; background: center/cover no-repeat; position: relative;
  display: flex; align-items: flex-end;
}
.pkg-hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,28,18,0.85) 0%, rgba(10,28,18,0.2) 60%); }
.pkg-hero-content { position: relative; z-index: 1; padding: 40px 0; color: var(--white); width: 100%; }
.pkg-hero-content h1 { font-size: clamp(24px, 4vw, 40px); font-weight: 900; margin-bottom: 12px; line-height: 1.15; }
.pkg-meta-bar { display: flex; gap: 24px; flex-wrap: wrap; }
.pkg-meta-item { display: flex; align-items: center; gap: 6px; font-size: 14px; color: rgba(255,255,255,0.85); font-weight: 600; }

.pkg-detail-layout { display: grid; grid-template-columns: 1fr 360px; gap: 40px; align-items: start; }
.pkg-detail-main { }
.pkg-detail-sidebar { position: sticky; top: 88px; }

.pkg-price-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-md);
}
.pkg-price-card .price-main { font-size: 38px; font-weight: 900; color: var(--orange); line-height: 1; }
.pkg-price-card .price-from { font-size: 12px; color: var(--text-muted); text-transform: uppercase; font-weight: 600; }
.pkg-price-card .price-per { font-size: 13px; color: var(--text-muted); margin-bottom: 20px; }
.pkg-includes-list { list-style: none; margin-bottom: 20px; }
.pkg-includes-list li { font-size: 13px; color: var(--text-muted); padding: 5px 0; padding-left: 20px; position: relative; border-bottom: 1px solid var(--border); }
.pkg-includes-list li:last-child { border: none; }
.pkg-includes-list li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700; }

.pkg-section { margin-bottom: 40px; }
.pkg-section h2 { font-size: 22px; font-weight: 800; color: var(--green); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--green-light); }
.pkg-section p { font-size: 15px; color: var(--text-muted); line-height: 1.8; margin-bottom: 14px; }

.itinerary-day { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; }
.itinerary-day-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px; cursor: pointer; background: var(--cream);
  transition: background 0.2s;
}
.itinerary-day-header:hover { background: var(--green-light); }
.itinerary-day-header h4 { font-size: 15px; font-weight: 700; color: var(--green); }
.itinerary-day-header .day-num { font-size: 12px; font-weight: 700; color: var(--orange); background: var(--orange-light); padding: 3px 10px; border-radius: 20px; flex-shrink: 0; }
.itinerary-day-body { padding: 16px 18px; font-size: 14px; color: var(--text-muted); line-height: 1.75; display: none; }
.itinerary-day.open .itinerary-day-body { display: block; }

.highlight-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.highlight-item { display: flex; align-items: flex-start; gap: 10px; padding: 12px; background: var(--green-light); border-radius: var(--radius); }
.highlight-item .hi-icon { font-size: 20px; flex-shrink: 0; }
.highlight-item p { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

.incl-excl { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.incl-box h3 { font-size: 15px; font-weight: 700; margin-bottom: 12px; }
.incl-box ul li { font-size: 13px; color: var(--text-muted); padding: 5px 0; padding-left: 20px; position: relative; }
.incl-box ul li::before { position: absolute; left: 0; font-weight: 700; }
.incl-box.included ul li::before { content: '✓'; color: #2d7d44; }
.incl-box.excluded ul li::before { content: '✗'; color: #c0392b; }

/* ── ABOUT PAGE ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img { border-radius: var(--radius-lg); overflow: hidden; height: 480px; }
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.team-card { text-align: center; }
.team-card img { width: 100%; height: 200px; object-fit: cover; border-radius: var(--radius-lg); margin-bottom: 14px; }
.team-card h4 { font-size: 16px; font-weight: 700; color: var(--green); margin-bottom: 4px; }
.team-card span { font-size: 13px; color: var(--text-muted); }

/* ── CONTACT PAGE ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-info-item { display: flex; gap: 16px; margin-bottom: 28px; }
.contact-icon { width: 48px; height: 48px; border-radius: 50%; background: var(--green-light); display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.contact-info-item h4 { font-size: 15px; font-weight: 700; color: var(--green); margin-bottom: 4px; }
.contact-info-item p, .contact-info-item a { font-size: 14px; color: var(--text-muted); }
.contact-info-item a:hover { color: var(--orange); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  height: 300px; background: center/cover no-repeat; position: relative;
  display: flex; align-items: center;
}
.page-hero::before { content: ''; position: absolute; inset: 0; background: rgba(10,28,18,0.72); }
.page-hero-content { position: relative; z-index: 1; color: var(--white); }
.page-hero-content h1 { font-size: clamp(28px, 4vw, 44px); font-weight: 900; margin-bottom: 8px; }
.page-hero-content p { font-size: 16px; color: rgba(255,255,255,0.8); }
.breadcrumb { display: flex; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.65); margin-bottom: 14px; }
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* ── FILTER BAR ── */
.filter-bar { background: var(--cream); border-radius: var(--radius-lg); padding: 20px 24px; margin-bottom: 40px; display: flex; gap: 16px; flex-wrap: wrap; align-items: flex-end; }
.filter-bar .form-group { margin-bottom: 0; flex: 1; min-width: 140px; }

/* ── FOOTER ── */
.site-footer { background: var(--green); color: var(--white); padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .footer-logo-name { font-size: 18px; font-weight: 800; margin-bottom: 14px; display: block; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.75; margin-bottom: 20px; }
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--white); transition: background 0.2s; font-weight: 700;
}
.social-link:hover { background: var(--orange); }
.footer-col h5 { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.4); }
.footer-bottom a { color: rgba(255,255,255,0.4); }
.footer-bottom a:hover { color: var(--white); }

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  background: #25D366; color: var(--white);
  width: 58px; height: 58px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,0.5); color: var(--white); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-form-box { display: none; }
  .pkg-detail-layout { grid-template-columns: 1fr; }
  .pkg-detail-sidebar { position: static; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .main-nav, .header-phone { display: none; }
  .hamburger { display: flex; }
  .hero { height: auto; min-height: 100svh; padding: 80px 0 48px; }
  .hero-title { font-size: 34px; }
  .section-pad { padding: 56px 0; }
  .packages-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .dest-grid { grid-template-columns: 1fr 1fr; }
  .dest-card.dest-tall { grid-row: auto; height: 200px; min-height: unset; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .incl-excl { grid-template-columns: 1fr; }
  .cta-strip-inner { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-stats { gap: 18px; }
  .form-row { grid-template-columns: 1fr; }
  .highlight-grid { grid-template-columns: 1fr; }
  .pkg-meta-bar { gap: 14px; }
  .partners-inner { gap: 24px; }
  .trust-items { gap: 20px; }
  .trust-sep { display: none; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .dest-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
}
