/* =============================================
   RJ HOLIDAYS – COMPLETE STYLESHEET
   Premium Travel Agency Website
   ============================================= */

/* ── Variables ── */
:root {
  --gold: #C8962A;
  --gold-light: #E0B04A;
  --gold-dark: #9A7020;
  --navy: #0D1B2A;
  --navy-mid: #1A2D42;
  --navy-light: #243650;
  --cream: #FAF7F2;
  --text: #1C2B3A;
  --text-muted: #5A6E82;
  --white: #FFFFFF;
  --green-wa: #25D366;
  --green-wa-dark: #1DA851;
  --shadow-sm: 0 2px 12px rgba(13,27,42,0.08);
  --shadow-md: 0 8px 32px rgba(13,27,42,0.14);
  --shadow-lg: 0 20px 60px rgba(13,27,42,0.20);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --transition: 0.3s ease;
  --container: 1220px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.65;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ── Container ── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Section Base ── */
.section { padding: 96px 0; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header.light .section-eyebrow { color: var(--gold-light); }
.section-header.light .section-title { color: var(--white); }
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 16px;
}
.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200,150,42,0.35);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  border: 2px solid rgba(255,255,255,0.65);
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-full { width: 100%; justify-content: center; }

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  padding: 18px 0;
}
.navbar.scrolled {
  background: var(--navy);
  box-shadow: 0 4px 24px rgba(13,27,42,0.3);
  padding: 12px 0;
}
.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  flex-shrink: 0;
}
.logo-rj { color: var(--gold); }
.logo-holidays { color: var(--white); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition);
  white-space: nowrap;
}
.nav-links a:hover { color: var(--gold-light); }
.btn-nav {
  display: inline-flex;
  align-items: center;
  background: var(--gold);
  color: var(--white);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-nav:hover { background: var(--gold-dark); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,27,42,0.82) 0%,
    rgba(13,27,42,0.55) 50%,
    rgba(13,27,42,0.35) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 140px 24px 80px;
  width: 100%;
}
.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 18px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  max-width: 700px;
}
.hero-title em {
  font-style: normal;
  color: var(--gold-light);
}
.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.78);
  margin-bottom: 36px;
  letter-spacing: 0.06em;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 52px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  gap: 8px;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.stat strong {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.stat span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.25);
  margin: 0 20px;
}
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 2px solid rgba(255,255,255,0.45);
  border-radius: 50%;
  color: var(--white);
  font-size: 0.85rem;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* =============================================
   DESTINATIONS
   ============================================= */
.destinations { background: var(--cream); }
.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.dest-card { border-radius: var(--radius-md); overflow: hidden; }
.dest-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.dest-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.dest-card:hover .dest-img-wrap img { transform: scale(1.07); }
.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13,27,42,0.08) 0%,
    rgba(13,27,42,0.25) 40%,
    rgba(13,27,42,0.78) 100%
  );
  transition: opacity var(--transition);
}
.dest-card:hover .dest-overlay { opacity: 0.9; }
.dest-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 22px;
  color: var(--white);
}
.dest-info h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 4px;
}
.dest-info p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 10px;
}
.dest-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold-light);
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.3s ease;
}
.dest-card:hover .dest-link {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   WHY US
   ============================================= */
.why-us {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.why-us::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(200,150,42,0.07);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.why-card {
  padding: 36px 28px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.04);
  transition: all var(--transition);
}
.why-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(200,150,42,0.35);
  transform: translateY(-4px);
}
.why-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  background: rgba(200,150,42,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--gold-light);
  margin-bottom: 20px;
}
.why-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}
.why-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

/* =============================================
   PACKAGES
   ============================================= */
.packages { background: var(--white); }
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.pkg-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--white);
  transition: all 0.35s ease;
  border: 1px solid #EEE;
}
.pkg-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
.pkg-img-wrap {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.pkg-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.pkg-card:hover .pkg-img-wrap img { transform: scale(1.06); }
.pkg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13,27,42,0.05) 0%,
    rgba(13,27,42,0.55) 100%
  );
}
.pkg-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}
.pkg-badge.popular { background: #E53935; }
.pkg-badge.adventure { background: #2E7D32; }
.pkg-badge.weekend { background: #1565C0; }
.pkg-rating {
  position: absolute;
  top: 14px; right: 14px;
  background: rgba(13,27,42,0.75);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}
.pkg-rating i { color: #FFD700; font-size: 0.7rem; }
.pkg-body {
  padding: 20px 22px 22px;
}
.pkg-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 12px;
}
.pkg-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.pkg-meta i { color: var(--gold); }
.pkg-body h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.pkg-body p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 18px;
}
.pkg-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.pkg-price {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.pkg-price span {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 3px;
}
.pkg-price strong, .pkg-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
}
.pkg-price em {
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 400;
  color: var(--text-muted);
}
.btn-pkg {
  display: inline-flex;
  align-items: center;
  background: var(--gold);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
  white-space: nowrap;
}
.btn-pkg:hover { background: var(--gold-dark); }

/* =============================================
   ABOUT US
   ============================================= */
.about { background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.about-img-badge {
  position: absolute;
  bottom: 24px; right: 24px;
  background: var(--gold);
  color: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-md);
}
.about-img-badge strong {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
.about-img-badge span {
  font-size: 0.78rem;
  font-weight: 500;
  opacity: 0.9;
}
.about-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.8vw, 2.3rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 20px;
}
.about-content p {
  font-size: 0.96rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}
.about-list {
  margin: 24px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 500;
}
.about-list i { color: var(--gold); font-size: 1rem; }

/* =============================================
   REVIEWS
   ============================================= */
.reviews { background: var(--white); }
.reviews-aggregate {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}
.agg-stars { color: #FFD700; font-size: 1.2rem; letter-spacing: 3px; }
.agg-score {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
}
.agg-count {
  font-size: 0.88rem;
  color: var(--text-muted);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 40px;
}
.review-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 26px;
  border: 1px solid #EAE6DF;
  transition: all var(--transition);
}
.review-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.reviewer-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.reviewer-avatar.p { background: #6A0DAD; }
.reviewer-avatar.r { background: #C62828; }
.reviewer-avatar.s { background: #0277BD; }
.reviewer-avatar.v { background: #2E7D32; }
.reviewer-avatar.n { background: #E65100; }
.reviewer-info { flex: 1; min-width: 0; }
.reviewer-info strong {
  display: block;
  font-size: 0.92rem;
  color: var(--navy);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.reviewer-info span {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.review-stars { color: #FFD700; font-size: 0.78rem; flex-shrink: 0; }
.review-card > p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.review-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px solid #DDD8D0;
}
.google-logo { height: 18px; }
.review-footer > span {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.reviews-cta { text-align: center; }
.btn-reviews {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 2px solid #E0E0E0;
  color: var(--text);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.btn-reviews:hover {
  background: var(--cream);
  border-color: var(--gold);
  color: var(--gold-dark);
}
.btn-reviews img { height: 18px; }

/* =============================================
   FIND US / MAP
   ============================================= */
.find-us { background: var(--cream); }
.findus-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: start;
}
.map-wrap {
  width: 100%;
  height: 420px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.findus-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-icon {
  width: 46px; height: 46px;
  border-radius: var(--radius-sm);
  background: var(--gold);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-item strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.contact-item p,
.contact-item a {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.contact-item a:hover { color: var(--gold); }
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-wa);
  color: var(--white);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
  margin-top: 4px;
}
.whatsapp-btn:hover { background: var(--green-wa-dark); }

/* =============================================
   CONTACT FORM
   ============================================= */
.contact { background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-form-wrap {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid #EAE6DF;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid #DDD8D0;
  border-radius: var(--radius-sm);
  background: var(--white);
  font-size: 0.92rem;
  color: var(--text);
  transition: border-color var(--transition);
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,150,42,0.12);
}
.form-group select { appearance: none; cursor: pointer; }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
}
.form-note a { color: var(--gold); font-weight: 600; }
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: sticky;
  top: 90px;
}
.sidebar-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid #EAE6DF;
}
.sidebar-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 18px;
}
.quick-contact-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  transition: all var(--transition);
  border: 1.5px solid transparent;
}
.quick-contact-btn:last-child { margin-bottom: 0; }
.quick-contact-btn i {
  font-size: 1.3rem;
  flex-shrink: 0;
}
.quick-contact-btn div { min-width: 0; }
.quick-contact-btn span {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}
.quick-contact-btn strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.quick-contact-btn.phone {
  background: rgba(13,27,42,0.05);
  color: var(--navy);
  border-color: rgba(13,27,42,0.1);
}
.quick-contact-btn.phone:hover { background: var(--navy); color: var(--white); }
.quick-contact-btn.whatsapp {
  background: rgba(37,211,102,0.1);
  color: #1A7A3F;
  border-color: rgba(37,211,102,0.25);
}
.quick-contact-btn.whatsapp:hover { background: var(--green-wa); color: var(--white); }
.quick-contact-btn.email {
  background: rgba(200,150,42,0.08);
  color: var(--gold-dark);
  border-color: rgba(200,150,42,0.2);
}
.quick-contact-btn.email:hover { background: var(--gold); color: var(--white); }
.sidebar-card.trust ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sidebar-card.trust li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text);
}
.sidebar-card.trust i { color: var(--gold); }

/* =============================================
   FOOTER
   ============================================= */
.footer { background: var(--navy); color: rgba(255,255,255,0.75); }
.footer-top { padding: 72px 0 48px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 40px;
}
.footer-brand .footer-logo {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 14px;
}
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.75;
  margin-bottom: 22px;
  color: rgba(255,255,255,0.6);
}
.social-links {
  display: flex;
  gap: 10px;
}
.social-links a {
  width: 38px; height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: all var(--transition);
}
.social-links a:hover {
  background: var(--gold);
  color: var(--white);
}
.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--white);
  margin-bottom: 18px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--gold-light); }
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  margin-bottom: 12px;
}
.footer-contact li:last-child { margin-bottom: 0; }
.footer-contact i {
  color: var(--gold);
  margin-top: 3px;
  flex-shrink: 0;
  width: 14px;
  text-align: center;
}
.footer-contact a { color: rgba(255,255,255,0.6); }
.footer-contact a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}
.footer-bottom i { color: #E53935; }
.footer-legal a {
  color: rgba(255,255,255,0.5);
  font-size: 0.82rem;
  transition: color var(--transition);
}
.footer-legal a:hover { color: var(--gold-light); }

/* =============================================
   FLOATING WHATSAPP
   ============================================= */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: var(--green-wa);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  color: var(--white);
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  transition: all var(--transition);
  text-decoration: none;
}
.whatsapp-float:hover {
  background: var(--green-wa-dark);
  transform: scale(1.1);
}
.wa-tooltip {
  position: absolute;
  right: 70px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  box-shadow: var(--shadow-sm);
}
.wa-tooltip::after {
  content: '';
  position: absolute;
  top: 50%; right: -6px;
  transform: translateY(-50%);
  border-left: 6px solid var(--navy);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}
.whatsapp-float:hover .wa-tooltip { opacity: 1; }

/* =============================================
   BACK TO TOP
   ============================================= */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 28px;
  z-index: 998;
  width: 42px;
  height: 42px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transform: translateY(12px);
  transition: all var(--transition);
  pointer-events: none;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover { background: var(--gold); }

/* =============================================
   FORM SUCCESS STATE
   ============================================= */
.form-success {
  text-align: center;
  padding: 32px;
}
.form-success i {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 16px;
}
.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.form-success p {
  color: var(--text-muted);
}

/* =============================================
   RESPONSIVE – TABLET
   ============================================= */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .pkg-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 900px) {
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img-wrap { max-height: 420px; }
  .findus-grid { grid-template-columns: 1fr; }
  .map-wrap { height: 320px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-sidebar { position: static; }
}

@media (max-width: 768px) {
  :root { --container: 100%; }
  .section { padding: 64px 0; }
  .section-header { margin-bottom: 36px; }

  /* Navbar */
  .hamburger { display: flex; }
  .btn-nav { display: none; }
  .nav-links {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--navy);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    transform: translateX(-100%);
    transition: transform 0.35s ease;
    z-index: 999;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a {
    font-size: 1.2rem;
    color: var(--white);
  }
  .nav-container { flex-wrap: nowrap; }

  /* Hero */
  .hero-title { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-stats { gap: 6px; }
  .stat-divider { margin: 0 14px; }

  /* Destinations */
  .dest-grid { grid-template-columns: 1fr 1fr; }

  /* Why Us */
  .why-grid { grid-template-columns: 1fr 1fr; gap: 16px; }

  /* Packages */
  .pkg-grid { grid-template-columns: 1fr; }

  /* Contact */
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom .container { flex-direction: column; text-align: center; }

  /* WhatsApp */
  .wa-tooltip { display: none; }
}

@media (max-width: 480px) {
  .dest-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 12px; }
  .stat-divider { display: none; }
  .pkg-footer { flex-direction: column; align-items: flex-start; }
  .btn-pkg { width: 100%; justify-content: center; }
  .reviews-aggregate { flex-direction: column; }
  .footer-contact li { flex-direction: row; }
  .whatsapp-float { bottom: 20px; right: 20px; width: 52px; height: 52px; font-size: 1.5rem; }
  .back-to-top { right: 20px; bottom: 84px; }
}

/* =============================================
   ACCESSIBILITY & REDUCED MOTION
   ============================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; 
}
@media (max-width: 768px) {
  .hero-secondary {
    min-height: 100vh;
  }

  .hero-secondary .hero-content {
    padding: 120px 24px 80px;
  }

  .gallery {
    padding-top: 80px;
  }
}

/* =============================================
   RESPONSIVE – MOBILE MENU
   ============================================= */

/* Tablet */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    background: var(--navy);
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 80px;
    gap: 0;
    transition: left var(--transition);
    z-index: 999;
  }

  .nav-links.open {
    left: 0;
  }

  .nav-links a {
    display: block;
    padding: 16px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
  }

  .hamburger {
    display: flex;
  }

  .btn-nav {
    display: none;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .nav-container {
    gap: 16px;
  }

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

  .hero-content {
    padding: 100px 24px 60px;
  }

  .hero-title {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
  }

  .dest-grid,
  .why-grid,
  .pkg-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .about-grid,
  .contact-grid,
  .findus-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}
