/* ========================================
   DESERT SAFARI OSIAN - PREMIUM REDESIGN
   Inspired by Safario / Framer Premium Style
   Fonts: Bricolage Grotesque + Inter
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400;12..96,500;12..96,600;12..96,700;12..96,800&family=Inter:wght@300;400;500;600;700&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --cream:        #fff7e5;
  --cream-dark:   #f0e4c4;
  --brown:        #4b3621;
  --brown-mid:    #5d4a37;
  --brown-light:  #8b7055;
  --orange:       #e77b2a;
  --orange-dark:  #c45e15;
  --dark:         #1a0f06;
  --text-body:    #2c1f10;
  --text-muted:   #93867a;
  --white:        #ffffff;
  --sand:         #f4e4c1;
  --gold:         #d4a843;
  --green:        #25d366;

  --shadow-sm:    0 2px 12px rgba(75,54,33,0.08);
  --shadow:       0 8px 32px rgba(75,54,33,0.12);
  --shadow-lg:    0 20px 60px rgba(75,54,33,0.18);

  --radius-sm:    8px;
  --radius:       16px;
  --radius-lg:    24px;
  --radius-pill:  100px;

  --transition:   0.35s cubic-bezier(0.4,0,0.2,1);
  --max-width:    1280px;
  --nav-height:   80px;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

html { scroll-behavior:smooth; font-size:16px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-body);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Bricolage Grotesque', sans-serif;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--dark);
}

a { text-decoration:none; color:inherit; transition:color var(--transition); cursor:pointer; }
img { max-width:100%; height:auto; display:block; }
ul { list-style:none; }

/* Prevent I-beam cursor on non-text UI elements */
.why-card, .service-card, .highlight-card, .testimonial-card,
.carry-item, .safety-card, .intro-feature, .hero-stat,
.gallery-item, .video-item, .about-stat, .section-header,
.hero-content, .hero-stats, .page-hero, .cta-section,
.footer, .footer-grid, .footer-about, .footer-links,
.footer-links ul li, .nav-logo, .inclusion-tag,
.price-tag, .duration, .stars, .quote-icon,
.hero-badge, .section-label, .experience-badge {
  cursor: default;
  user-select: none;
}

.container {
  width: 92%;
  max-width: var(--max-width);
  margin: 0 auto;
}

/* ---------- Section Helpers ---------- */
.section-padding { padding: 100px 0; }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(231,123,42,0.1);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
  font-family: 'Inter', sans-serif;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ---------- Buttons ---------- */
.btn {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.92rem;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(231,123,42,0.35);
  color: var(--white);
}

.btn-secondary {
  background: transparent;
  color: var(--brown);
  border-color: var(--cream-dark);
}
.btn-secondary:hover {
  background: var(--brown);
  color: var(--white);
  border-color: var(--brown);
  transform: translateY(-2px);
}

/* Secondary button on dark hero background */
.hero-buttons .btn-secondary {
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
  background: transparent;
}
.hero-buttons .btn-secondary:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.85);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn-whatsapp:hover {
  background: #1ebe57;
  border-color: #1ebe57;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.35);
  color: var(--white);
}

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: all var(--transition);
}

.navbar .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.navbar:not(.scrolled) { background: transparent; }

.navbar.scrolled {
  background: rgba(255,247,229,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(75,54,33,0.1);
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(231,123,42,0.4);
  overflow: hidden;
}

.nav-logo h1 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.navbar.scrolled .nav-logo h1 { color: var(--dark); }

.nav-logo h1 span {
  display: block;
  font-size: 0.68rem;
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.05em;
  font-family: 'Inter', sans-serif;
}
.navbar.scrolled .nav-logo h1 span { color: var(--text-muted); }

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: all var(--transition);
  font-family: 'Inter', sans-serif;
}
.navbar.scrolled .nav-links a { color: var(--text-body); }

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.15);
}
.navbar.scrolled .nav-links a:hover,
.navbar.scrolled .nav-links a.active {
  color: var(--orange);
  background: rgba(231,123,42,0.1);
}

.nav-links .btn-primary {
  color: var(--white) !important;
  background: var(--orange);
  padding: 10px 22px;
}
.nav-links .btn-primary:hover {
  background: var(--orange-dark);
  color: var(--white) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  padding: 10px 12px;
  border-radius: 10px;
  margin-right: 4px;
  transition: background var(--transition), border-color var(--transition);
}
.hamburger:hover {
  background: rgba(255,255,255,0.18);
}
.navbar.scrolled .hamburger {
  background: rgba(75,54,33,0.07);
  border-color: rgba(75,54,33,0.15);
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.navbar.scrolled .hamburger span { background: var(--dark); }

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(26,15,6,0.5);
  z-index: 999;
}
.nav-overlay.active { display: block; }

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26,15,6,0.5) 0%,
    rgba(26,15,6,0.38) 40%,
    rgba(26,15,6,0.72) 100%
  );
  z-index: 1;
}


.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 820px;
  padding: 0 24px;
  padding-top: var(--nav-height);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.22);
  color: var(--white);
  padding: 8px 22px;
  border-radius: var(--radius-pill);
  font-size: 0.83rem;
  font-weight: 500;
  margin-bottom: 28px;
  letter-spacing: 0.04em;
  font-family: 'Inter', sans-serif;
}

.hero-content h2 {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero-content h2 .highlight {
  color: var(--orange);
  display: block;
}

.hero-content > p {
  font-size: 1.12rem;
  color: rgba(255,255,255,0.78);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.72;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 56px;
}

.hero-stats {
  display: inline-flex;
  align-items: center;
  gap: 40px;
  padding: 22px 40px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-lg);
  flex-wrap: wrap;
  justify-content: center;
}

.hero-stat h3 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  margin: 0;
  letter-spacing: -0.02em;
}

.hero-stat p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  margin: 4px 0 0;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
}


/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  position: relative;
  height: 50vh;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.page-hero-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}

.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(26,15,6,0.45) 0%, rgba(26,15,6,0.72) 100%);
  z-index: 1;
}

.page-hero h2 {
  position: relative; z-index: 2;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}

.page-hero p {
  position: relative; z-index: 2;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  max-width: 480px;
  padding: 0 20px;
}

/* ---------- Intro Section ---------- */
.intro { background: var(--white); }

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.intro-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}

.intro-image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.experience-badge {
  position: absolute;
  bottom: 28px;
  right: -24px;
  background: var(--orange);
  color: var(--white);
  padding: 22px 28px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.experience-badge h3 {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--white);
  margin: 0;
  line-height: 1;
}

.experience-badge p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.85);
  margin-top: 4px;
  font-weight: 500;
}

.intro-content h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  margin-bottom: 20px;
}

.intro-content > p {
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.78;
}

.intro-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 28px 0 36px;
}

.intro-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  border: 1px solid var(--cream-dark);
}

.intro-feature .icon { display: flex; color: var(--orange); flex-shrink: 0; }

.intro-feature span {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--brown);
}

/* ---------- Why Choose Us ---------- */
.why-us { background: var(--cream); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 24px;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  border: 1px solid rgba(75,54,33,0.06);
  transition: all var(--transition);
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.why-card .icon { margin-bottom: 20px; display: flex; color: var(--orange); }
.why-card h3 { font-size: 1.1rem; margin-bottom: 12px; }
.why-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }

/* ---------- Services ---------- */
.services { background: var(--white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(75,54,33,0.08);
  transition: all var(--transition);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.card-image { position: relative; overflow: hidden; }
.card-image img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.4,0,0.2,1);
}
.service-card:hover .card-image img { transform: scale(1.06); }

.price-tag {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--orange);
  color: var(--white);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.card-body { padding: 28px; }
.card-body h3 { font-size: 1.3rem; margin-bottom: 8px; }
.duration { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 12px; font-weight: 500; }
.card-body > p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 16px; }

.inclusions { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.inclusion-tag {
  background: var(--cream);
  color: var(--brown);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.76rem;
  font-weight: 600;
}

.card-footer { display: flex; gap: 10px; flex-wrap: wrap; }
.card-footer .btn { flex:1; justify-content:center; padding: 12px 16px; font-size: 0.86rem; }

/* ---------- Highlights ---------- */
.highlights { background: var(--cream); }

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

.highlight-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid rgba(75,54,33,0.06);
  transition: all var(--transition);
}
.highlight-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(231,123,42,0.3);
}
.highlight-card .icon { margin-bottom: 20px; display: flex; color: var(--orange); }
.highlight-card h3 { font-size: 1.1rem; margin-bottom: 12px; }
.highlight-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }

/* ---------- Gallery ---------- */
.gallery { background: var(--white); }

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--cream-dark);
  background: transparent;
  color: var(--text-muted);
  font-size: 0.86rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 14px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.4,0,0.2,1);
}
.gallery-item:hover img { transform: scale(1.08); }

.gallery-item .overlay {
  position: absolute; inset: 0;
  background: rgba(26,15,6,0.48);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .overlay { opacity: 1; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(26,15,6,0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.lightbox.active { opacity: 1; pointer-events: all; }

.lightbox-content { max-width: 90vw; max-height: 85vh; }
.lightbox-content img {
  max-width: 100%; max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox-close {
  position: absolute; top: 20px; right: 24px;
  font-size: 2rem;
  color: var(--white);
  cursor: pointer;
  opacity: 0.7;
  transition: opacity var(--transition);
  line-height: 1;
}
.lightbox-close:hover { opacity: 1; }

.lightbox-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  font-size: 2rem;
  color: var(--white);
  cursor: pointer;
  opacity: 0.6;
  padding: 20px;
  transition: opacity var(--transition);
}
.lightbox-nav:hover { opacity: 1; }
.lightbox-prev { left: 12px; }
.lightbox-next { right: 12px; }

/* ---------- Testimonials ---------- */
.testimonials { background: var(--cream); }

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

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid rgba(75,54,33,0.06);
  transition: all var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.quote-icon {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 5rem;
  font-weight: 800;
  color: var(--orange);
  opacity: 0.2;
  line-height: 0.75;
  margin-bottom: 16px;
  display: block;
}

.testimonial-card > p {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.78;
  margin-bottom: 20px;
  font-style: italic;
}

.stars { color: var(--gold); font-size: 0.88rem; letter-spacing: 2px; margin-bottom: 20px; }

.testimonial-author { display: flex; align-items: center; gap: 14px; }

.avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.82rem;
  flex-shrink: 0;
  font-family: 'Inter', sans-serif;
}

.testimonial-author .info h4 { font-size: 0.92rem; font-weight: 700; margin-bottom: 3px; }
.testimonial-author .info span { font-size: 0.78rem; color: var(--text-muted); }

/* ---------- What to Carry ---------- */
.carry-section { background: var(--white); }

.carry-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
}

.carry-item {
  text-align: center;
  padding: 28px 20px;
  border-radius: var(--radius);
  border: 1px solid rgba(75,54,33,0.06);
  background: var(--cream);
  transition: all var(--transition);
}
.carry-item:hover {
  background: var(--white);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.carry-item .icon { margin-bottom: 12px; display: flex; justify-content: center; color: var(--orange); }
.carry-item h4 { font-size: 0.92rem; font-weight: 700; margin-bottom: 8px; }
.carry-item p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.55; }

/* ---------- Safety ---------- */
.safety { background: var(--cream); }

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

.safety-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  border: 1px solid rgba(75,54,33,0.06);
  transition: all var(--transition);
}
.safety-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.safety-card .icon { margin-bottom: 16px; display: flex; justify-content: center; color: var(--orange); }
.safety-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.safety-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }

/* ---------- FAQ ---------- */
.faq { background: var(--white); }

.faq-grid {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  border: 1px solid rgba(75,54,33,0.1);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
  background: var(--cream);
}
.faq-item.active {
  border-color: var(--orange);
  background: var(--white);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  gap: 16px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--dark);
  font-family: 'Inter', sans-serif;
}

.faq-question .toggle {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--orange);
  line-height: 1;
  transition: transform var(--transition);
  flex-shrink: 0;
}
.faq-item.active .faq-question .toggle { transform: rotate(45deg); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1); }
.faq-answer p { padding: 0 24px 20px; font-size: 0.9rem; color: var(--text-muted); line-height: 1.78; }

/* ---------- CTA Section ---------- */
.cta-section {
  background: var(--brown);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%; left: -10%;
  width: 60%; height: 200%;
  background: radial-gradient(circle, rgba(231,123,42,0.18), transparent 70%);
  pointer-events: none;
}

.cta-section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.68);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.68;
}

.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.cta-section .btn-primary {
  background: var(--white) !important;
  color: var(--orange) !important;
  border-color: var(--white) !important;
}
.cta-section .btn-primary:hover {
  background: var(--cream) !important;
  border-color: var(--cream) !important;
}

/* ---------- About Story ---------- */
.about-story { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.about-content h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 20px; }
.about-content > p { color: var(--text-muted); margin-bottom: 16px; line-height: 1.78; }

.about-stats {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
  margin-top: 40px;
  padding: 32px;
  background: var(--cream);
  border-radius: var(--radius-lg);
}

.about-stat { text-align: center; }
.about-stat h3 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--orange);
  margin: 0;
  line-height: 1;
}
.about-stat p { font-size: 0.78rem; color: var(--text-muted); margin-top: 6px; font-weight: 500; }

/* ---------- Service Detail ---------- */
.service-detail { padding: 80px 0; background: var(--white); }

.service-detail-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid rgba(75,54,33,0.08);
}

.service-detail-card:nth-child(even) .service-detail-image { order: 2; }
.service-detail-card:nth-child(even) .service-detail-content { order: 1; }
.service-detail-card:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.service-detail-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.service-detail-content h3 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 16px; }

.service-detail-content .meta {
  display: flex; gap: 20px; flex-wrap: wrap; margin-bottom: 20px;
}
.service-detail-content .meta span {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.86rem; color: var(--text-muted); font-weight: 500;
}

.service-detail-content > p { color: var(--text-muted); margin-bottom: 16px; line-height: 1.78; }

.inclusion-list {
  margin: 24px 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.inclusion-list li {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.88rem; color: var(--text-body);
}
.inclusion-list .check { color: var(--orange); font-weight: 700; font-size: 1rem; }

/* ---------- Video Section ---------- */
.video-section { margin-top: 80px; }

.video-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}
.video-item video {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--dark);
}

/* ---------- Contact Section ---------- */
.contact-section { background: var(--cream); }

.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 860px;
  margin: 0 auto;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 32px;
  text-align: center;
  border: 1px solid rgba(75,54,33,0.08);
  border-top-width: 4px;
  position: relative;
  overflow: hidden;
}

.contact-card--green { border-top-color: var(--green); }
.contact-card--orange { border-top-color: var(--orange); }

.contact-card h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.contact-card__icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px;
  color: var(--white);
}
.contact-card__icon--green  { background: linear-gradient(135deg, #25d366, #1ebe57); }
.contact-card__icon--orange { background: linear-gradient(135deg, var(--orange), var(--orange-dark)); }

.contact-phone {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 12px 0;
  letter-spacing: 0.3px;
}
.contact-phone a { color: var(--orange); }

.contact-card__desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}

.contact-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 24px;
}

.contact-badge {
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
}
.contact-badge--green { background: #e6f9ee; color: #1a7a40; }

.contact-card__btns {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.availability-table {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 6px 18px;
  text-align: left;
  margin-bottom: 20px;
}

.availability-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px dashed var(--cream-dark);
  font-size: 0.88rem;
}
.availability-row:last-child { border-bottom: none; }
.availability-row span { color: var(--text-muted); }
.availability-row strong { font-weight: 700; color: var(--brown); }
.text-green  { color: var(--green) !important; }
.text-orange { color: var(--orange) !important; }

.contact-card__note {
  font-size: 0.83rem;
  color: var(--text-muted);
}

/* Map */
.contact-map {
  max-width: 860px;
  margin: 32px auto 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.contact-map__header {
  background: var(--brown);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-map__info {
  display: flex;
  align-items: center;
  gap: 12px;
}
.contact-map__info > span { font-size: 1.5rem; }
.contact-map__info h4 { color: var(--white); margin: 0; font-size: 1rem; }
.contact-map__info p  { color: rgba(255,255,255,0.65); margin: 3px 0 0; font-size: 0.82rem; }

.map-directions-btn {
  background: var(--orange);
  color: var(--white);
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.84rem;
  font-weight: 600;
  white-space: nowrap;
  transition: background var(--transition);
  cursor: pointer;
}
.map-directions-btn:hover { background: var(--orange-dark); color: var(--white); }

/* Contact responsive */
@media (max-width: 640px) {
  .contact-cards { grid-template-columns: 1fr; }
  .contact-card  { padding: 32px 20px; }
  .contact-phone { font-size: 1.3rem; }
  .contact-card__btns .btn { flex: 1; justify-content: center; }
  .contact-map__header { flex-direction: column; align-items: flex-start; }
  .map-directions-btn  { width: 100%; text-align: center; }
}

/* ---------- Footer ---------- */
.footer {
  background: var(--brown);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-about h3 { font-size: 1.2rem; color: var(--white); margin-bottom: 16px; }
.footer-about p { font-size: 0.86rem; line-height: 1.75; color: rgba(255,255,255,0.55); margin-bottom: 24px; }

.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
  transition: all var(--transition);
}
.social-links a:hover { background: var(--orange); color: var(--white); }

.footer-links h4 {
  font-size: 0.9rem;
  color: var(--white);
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links ul li a,
.footer-links ul li {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-links ul li a { cursor: pointer; }
.footer-links ul li a:hover { color: var(--orange); }

.footer-bottom {
  text-align: center;
  padding: 24px 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

/* ---------- Floating Buttons ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 84px; right: 24px;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 10px;
}

.tooltip {
  background: var(--dark);
  color: var(--white);
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: all var(--transition);
  pointer-events: none;
  font-family: 'Inter', sans-serif;
}
.whatsapp-float:hover .tooltip { opacity: 1; transform: translateX(0); }

.wa-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all var(--transition);
}
.wa-btn:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,0.5); }

.call-float {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 100;
}
.call-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--orange);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.4rem;
  box-shadow: 0 4px 20px rgba(231,123,42,0.4);
  transition: all var(--transition);
}
.call-btn:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(231,123,42,0.5); }

/* ---------- Scroll Animations ---------- */
.fade-in,
.fade-in-left,
.fade-in-right {
  opacity: 0;
  transition: opacity 0.75s cubic-bezier(0.4,0,0.2,1), transform 0.75s cubic-bezier(0.4,0,0.2,1);
}
.fade-in         { transform: translateY(32px); }
.fade-in-left    { transform: translateX(-40px); }
.fade-in-right   { transform: translateX(40px); }

.fade-in.visible,
.fade-in-left.visible,
.fade-in-right.visible {
  opacity: 1;
  transform: translate(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .why-grid    { grid-template-columns: repeat(2,1fr); }
  .carry-grid  { grid-template-columns: repeat(4,1fr); }
}

@media (max-width: 900px) {
  .section-padding { padding: 72px 0; }

  .intro-grid,
  .about-grid { grid-template-columns: 1fr; gap: 44px; }

  .experience-badge { right: 20px; }

  .services-grid   { grid-template-columns: repeat(2,1fr); }
  .highlights-grid { grid-template-columns: repeat(2,1fr); }
  .safety-grid     { grid-template-columns: repeat(2,1fr); }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }

  .service-detail-card { grid-template-columns: 1fr; gap: 36px; }
  .service-detail-card:nth-child(even) .service-detail-image,
  .service-detail-card:nth-child(even) .service-detail-content { order: unset; }

  .testimonial-grid { grid-template-columns: repeat(2,1fr); }
  .video-grid       { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  :root { --nav-height: 64px; }

  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 280px; height: 100vh;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 28px 40px;
    gap: 4px;
    z-index: 1000;
    transition: right var(--transition);
    box-shadow: -8px 0 40px rgba(26,15,6,0.15);
  }
  .nav-links.open { right: 0; }

  .nav-links a {
    color: var(--text-body) !important;
    width: 100%;
    padding: 12px 16px;
    font-size: 1rem;
  }
  .nav-links a:hover,
  .nav-links a.active {
    color: var(--orange) !important;
    background: rgba(231,123,42,0.08);
  }

  .hamburger { display: flex; }

  /* Fix navbar container padding on mobile so hamburger has proper spacing */
  .navbar .container {
    width: 100%;
    padding: 0 20px 0 20px;
  }

  .hamburger {
    margin-right: 20px;
  }

  /* On mobile, always show a top bar so hamburger looks grounded */
  .navbar:not(.scrolled) {
    background: linear-gradient(to bottom, rgba(26,15,6,0.55) 0%, transparent 100%);
  }

  .gallery-grid    { grid-template-columns: repeat(2,1fr); }
  .why-grid        { grid-template-columns: 1fr 1fr; }
  .carry-grid      { grid-template-columns: repeat(2,1fr); }

  .hero-stats { gap: 24px; padding: 18px 28px; }
  .hero-stat h3 { font-size: 1.55rem; }
  .hero-content h2 { font-size: 2.2rem; }
  .hero-content > p { font-size: 1rem; }
  .hero-buttons { margin-bottom: 36px; }

  .services-grid   { grid-template-columns: 1fr; }
  .highlights-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .safety-grid     { grid-template-columns: 1fr; }

  .about-stats { grid-template-columns: repeat(3,1fr); padding: 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .inclusion-list  { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  /* Hero mobile overhaul */
  .hero-content {
    padding: 0 20px;
    padding-top: var(--nav-height);
  }
  .hero-badge {
    font-size: 0.72rem;
    padding: 6px 14px;
    margin-bottom: 18px;
  }
  .hero-content h2 {
    font-size: 1.9rem;
    line-height: 1.1;
    margin-bottom: 14px;
  }
  .hero-content > p {
    font-size: 0.95rem;
    margin-bottom: 24px;
    line-height: 1.6;
  }
  .hero-buttons {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 28px;
  }
  .hero-buttons .btn {
    padding: 12px 20px;
    font-size: 0.85rem;
  }
  .hero-buttons .btn-secondary {
    display: none;
  }
  .hero-stats {
    gap: 0;
    padding: 14px 0;
    width: 100%;
    border-radius: var(--radius);
  }
  .hero-stat {
    flex: 1;
    border-right: 1px solid rgba(255,255,255,0.15);
    padding: 0 12px;
  }
  .hero-stat:last-child { border-right: none; }
  .hero-stat h3 { font-size: 1.4rem; }
  .hero-stat p  { font-size: 0.65rem; letter-spacing: 0.03em; }

  .gallery-grid    { grid-template-columns: 1fr 1fr; gap: 10px; }
  .carry-grid      { grid-template-columns: repeat(2,1fr); }
  .why-grid        { grid-template-columns: 1fr; }
  .about-stats     { grid-template-columns: repeat(3,1fr); }
  .video-grid      { grid-template-columns: 1fr; }
  .cta-buttons     { flex-direction: column; align-items: center; }
  .whatsapp-float  { bottom: 88px; right: 16px; }
  .call-float      { bottom: 24px; right: 16px; }
}
