/* =============================================================================
   The Yunam Adventure – Main Stylesheet
   Stack: Bootstrap 5.3 + Custom CSS (mobile-first)
   Palette:
     Navy    : #0a2a4a
     Green   : #1e4d2b
     Orange  : #e67e22
     Beige   : #f5f0e8
     Slate   : #2c3e50
   ============================================================================= */

/* ── Root Variables ────────────────────────────────────────────────────────── */
:root {
  --navy:        #0a2a4a;
  --navy-light:  #0d3561;
  --green:       #1e4d2b;
  --green-light: #2a6b3c;
  --orange:      #e67e22;
  --orange-dark: #cf6d17;
  --beige:       #f5f0e8;
  --beige-dark:  #ece4d4;
  --slate:       #2c3e50;
  --text-dark:   #1a1a2e;
  --text-muted:  #6c757d;
  --white:       #ffffff;
  --shadow-sm:   0 2px 8px rgba(0,0,0,.08);
  --shadow-md:   0 6px 24px rgba(0,0,0,.14);
  --shadow-lg:   0 16px 48px rgba(0,0,0,.20);
  --radius:      12px;
  --radius-sm:   8px;
  --radius-lg:   20px;
  --transition:  all .3s ease;
}

/* ── Reset / Base ──────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy);
}

a { color: var(--orange); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--orange-dark); }

img { max-width: 100%; height: auto; }

/* ── Navbar ────────────────────────────────────────────────────────────────── */
#mainNav {
  background: var(--navy);
  padding: 14px 0;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  z-index: 1040;
}
#mainNav.scrolled {
  background: rgba(10,42,74,.97);
  padding: 10px 0;
  backdrop-filter: blur(10px);
}
.navbar-brand { display: flex; align-items: center; gap: .5rem; }
.logo-img { border-radius: 50%; border: 2px solid var(--orange); }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-main { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 1.1rem; color: #fff; }
.brand-sub  { font-family: 'Inter', sans-serif;   font-weight: 500; font-size: .7rem;  color: var(--orange); letter-spacing: .08em; text-transform: uppercase; }

.nav-link {
  color: rgba(255,255,255,.85) !important;
  font-weight: 500;
  font-size: .93rem;
  padding: .5rem .8rem !important;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-link:hover,
.nav-link.active { color: var(--orange) !important; background: rgba(230,126,34,.1); }

.nav-cta-btn {
  background: var(--orange) !important;
  color: #fff !important;
  padding: .5rem 1.2rem !important;
  border-radius: 25px !important;
  font-weight: 600 !important;
}
.nav-cta-btn:hover { background: var(--orange-dark) !important; transform: translateY(-1px); box-shadow: var(--shadow-sm); }

.dropdown-menu {
  background: var(--navy-light);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-sm);
  min-width: 200px;
}
.dropdown-item { color: rgba(255,255,255,.85); font-size: .9rem; padding: .55rem 1.2rem; transition: var(--transition); }
.dropdown-item:hover { background: rgba(230,126,34,.15); color: var(--orange); }

/* ── Page Hero (inner pages) ────────────────────────────────────────────────── */
.page-hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, var(--green) 100%);
  padding: 80px 0 60px;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url('../images/hero-sarchu.jpg') center/cover no-repeat;
  opacity: .18;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; font-size: clamp(2rem, 5vw, 3rem); }
.page-hero p  { color: rgba(255,255,255,.82); font-size: 1.1rem; }
.breadcrumb { background: transparent; margin-bottom: 0; padding: 0; }
.breadcrumb-item a { color: var(--orange); }
.breadcrumb-item.active { color: rgba(255,255,255,.7); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.4); }

/* ── Section Styles ─────────────────────────────────────────────────────────── */
section { padding: 80px 0; }
section.bg-beige { background: var(--beige); }
section.bg-navy  { background: var(--navy); color: #fff; }
section.bg-dark-pattern {
  background: var(--navy) url('../images/pattern-bg.png') repeat;
  color: #fff;
}

.section-tag {
  display: inline-block;
  background: rgba(230,126,34,.15);
  color: var(--orange);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
  border-left: 3px solid var(--orange);
}
.section-heading {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 1rem;
}
.section-subtext { font-size: 1.05rem; color: var(--text-muted); max-width: 640px; }

/* ── Home Hero ───────────────────────────────────────────────────────────────── */
.home-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('../images/hero-sarchu.jpg') center/cover no-repeat;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,42,74,.88) 0%,
    rgba(30,77,43,.72) 60%,
    rgba(10,42,74,.50) 100%
  );
}
.hero-content { position: relative; z-index: 2; padding: 120px 0 80px; text-align: center; }
.hero-badge {
  display: inline-block;
  background: rgba(230,126,34,.2);
  border: 1px solid var(--orange);
  color: var(--orange);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 25px;
  margin-bottom: 20px;
  backdrop-filter: blur(4px);
}
.hero-content h1 {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  color: #fff;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.hero-content h1 span { color: var(--orange); }
.hero-content p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.88);
  max-width: 100%;
  margin-bottom: 2rem;
}
.hero-stats {
  display: flex; gap: 0;
  margin: 0 auto 2.5rem;
  padding: 0;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.15);
  width: 100%;
}
.hero-stat { text-align: center; flex: 1; padding: 1rem 1.5rem; }
.hero-stat-value { font-size: 1.5rem; font-weight: 800; color: var(--orange); font-family: 'Poppins', sans-serif; line-height: 1; }
.hero-stat-label { font-size: .72rem; color: rgba(255,255,255,.7); text-transform: uppercase; letter-spacing: .08em; }
.hero-divider { width: 1px; background: rgba(255,255,255,.2); align-self: stretch; }

.btn-primary-custom {
  background: var(--orange);
  color: #fff;
  border: none;
  padding: .9rem 2.2rem;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(230,126,34,.4);
  display: inline-flex; align-items: center; gap: .5rem;
}
.btn-primary-custom:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(230,126,34,.5);
  color: #fff;
}
.btn-outline-custom {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.6);
  padding: .85rem 2rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  display: inline-flex; align-items: center; gap: .5rem;
}
.btn-outline-custom:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(230,126,34,.08);
}


/* ── Amenity Cards ───────────────────────────────────────────────────────────── */
.amenity-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,.06);
  transition: var(--transition);
  height: 100%;
}
.amenity-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--orange);
}
.amenity-icon {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: #fff;
  font-size: 1.8rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.2rem;
  box-shadow: 0 4px 16px rgba(230,126,34,.35);
  transition: var(--transition);
}
.amenity-card:hover .amenity-icon { transform: scale(1.1) rotate(5deg); }
.amenity-card h5 { font-size: 1rem; margin-bottom: .4rem; }
.amenity-card p  { font-size: .88rem; color: var(--text-muted); margin: 0; }

/* ── Tariff / Pricing ────────────────────────────────────────────────────────── */
.tariff-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 2px solid transparent;
  transition: var(--transition);
  height: 100%;
}
.tariff-card.featured {
  border-color: var(--orange);
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}
.tariff-card:hover { box-shadow: var(--shadow-md); border-color: var(--orange); }
.tariff-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--green) 100%);
  padding: 1.8rem 1.5rem;
  text-align: center;
  color: #fff;
  position: relative;
}
.tariff-header.featured-bg { background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%); }
.tariff-tag {
  position: absolute; top: 12px; right: 12px;
  background: var(--orange);
  color: #fff; font-size: .7rem; font-weight: 700;
  padding: 3px 10px; border-radius: 20px;
  text-transform: uppercase; letter-spacing: .08em;
}
.tariff-header.featured-bg .tariff-tag { background: #fff; color: var(--orange); }
.tariff-icon { font-size: 2.5rem; margin-bottom: .6rem; }
.tariff-name { font-size: 1.15rem; font-weight: 700; color: #fff; }
.tariff-max  { font-size: .8rem; color: rgba(255,255,255,.75); }
.tariff-body { padding: 1.8rem 1.5rem; }
.tariff-price-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: .65rem 0;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.tariff-price-row:last-of-type { border-bottom: none; }
.plan-label { font-size: .85rem; font-weight: 600; color: var(--slate); }
.plan-sub    { font-size: .72rem; color: var(--text-muted); display: block; }
.plan-price  { font-size: 1.2rem; font-weight: 800; color: var(--navy); font-family: 'Poppins', sans-serif; }
.plan-price span { font-size: .75rem; font-weight: 500; color: var(--text-muted); }
.tariff-footer { padding: 0 1.5rem 1.8rem; }

/* ── Gallery Grid ────────────────────────────────────────────────────────────── */
.gallery-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 230px; object-fit: cover;
  transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,42,74,.85) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
  display: flex; align-items: flex-end;
  padding: 1.2rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay-icon {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 48px; height: 48px;
  background: rgba(255,255,255,.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.3rem;
  backdrop-filter: blur(4px);
}
.gallery-caption { color: #fff; font-size: .85rem; font-weight: 500; }

/* ── Testimonials ────────────────────────────────────────────────────────────── */
.testimonial-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--orange);
  height: 100%;
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute; top: 10px; right: 20px;
  font-size: 5rem;
  color: rgba(230,126,34,.12);
  font-family: serif; line-height: 1;
}
.test-stars { color: #f4c542; font-size: 1rem; margin-bottom: .8rem; }
.test-text   { font-size: .95rem; color: var(--slate); font-style: italic; margin-bottom: 1.2rem; }
.test-author { display: flex; align-items: center; gap: .8rem; }
.test-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--green));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 1rem;
  flex-shrink: 0;
}
.test-name { font-weight: 700; font-size: .95rem; margin: 0; }
.test-trip  { font-size: .8rem; color: var(--text-muted); }

/* ── Why Choose Us ───────────────────────────────────────────────────────────── */
.why-card {
  display: flex; gap: 1.2rem; align-items: flex-start;
  padding: 1.5rem;
  background: rgba(255,255,255,.05);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.1);
  transition: var(--transition);
}
.why-card:hover { background: rgba(255,255,255,.1); border-color: var(--orange); }
.why-icon {
  flex-shrink: 0;
  width: 56px; height: 56px;
  background: rgba(230,126,34,.2);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange); font-size: 1.5rem;
}
.why-text h5 { color: #fff; font-size: 1rem; margin-bottom: .3rem; }
.why-text p  { color: rgba(255,255,255,.7); font-size: .88rem; margin: 0; }

/* ── Things To Do ────────────────────────────────────────────────────────────── */
.activity-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
}
.activity-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.activity-img { position: relative; overflow: hidden; }
.activity-img img { width: 100%; height: 220px; object-fit: cover; transition: transform .5s ease; }
.activity-card:hover .activity-img img { transform: scale(1.07); }
.activity-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--orange); color: #fff;
  font-size: .72rem; font-weight: 700;
  padding: 4px 10px; border-radius: 20px;
  text-transform: uppercase;
}
.activity-body { padding: 1.5rem; }
.activity-body h5 { font-size: 1.05rem; margin-bottom: .5rem; }
.activity-body p  { font-size: .88rem; color: var(--text-muted); margin: 0; }
.activity-meta { display: flex; gap: 1rem; margin-top: .8rem; flex-wrap: wrap; }
.activity-meta span { font-size: .78rem; color: var(--text-muted); display: flex; align-items: center; gap: .3rem; }
.activity-meta i { color: var(--orange); }

/* ── Safety Guide ────────────────────────────────────────────────────────────── */
.safety-block {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--orange);
}
.safety-block.danger  { border-top-color: #dc3545; }
.safety-block.warning { border-top-color: #ffc107; }
.safety-block.success { border-top-color: #198754; }
.safety-block.info    { border-top-color: #0dcaf0; }
.safety-block h4 { font-size: 1.1rem; margin-bottom: 1rem; }
.safety-list { list-style: none; padding: 0; margin: 0; }
.safety-list li {
  display: flex; gap: .8rem; align-items: flex-start;
  padding: .55rem 0; border-bottom: 1px solid rgba(0,0,0,.06);
  font-size: .92rem;
}
.safety-list li:last-child { border-bottom: none; }
.safety-list li i { flex-shrink: 0; margin-top: .15rem; font-size: 1rem; }

/* ── FAQ ─────────────────────────────────────────────────────────────────────── */
.faq-item .accordion-button {
  background: #fff;
  color: var(--navy);
  font-weight: 600;
  font-size: .97rem;
}
.faq-item .accordion-button:not(.collapsed) {
  background: var(--navy);
  color: #fff;
  box-shadow: none;
}
.faq-item .accordion-button::after { filter: none; }
.faq-item .accordion-button:not(.collapsed)::after { filter: invert(1); }
.faq-item .accordion-body { font-size: .93rem; color: var(--slate); line-height: 1.7; }

/* ── Contact Form ────────────────────────────────────────────────────────────── */
.contact-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}
.contact-info-item {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--beige-dark);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon {
  width: 50px; height: 50px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--navy), var(--green));
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.3rem;
}
.contact-info-label { font-size: .78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .08em; }
.contact-info-value { font-size: .95rem; color: var(--slate); font-weight: 500; }
.wa-btn {
  display: inline-flex; align-items: center; gap: .5rem;
  background: #25D366; color: #fff;
  padding: .7rem 1.5rem; border-radius: 25px;
  font-weight: 600; font-size: .9rem;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(37,211,102,.35);
}
.wa-btn:hover { background: #1ebe5d; color: #fff; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,.5); }

/* ── Map ─────────────────────────────────────────────────────────────────────── */
.map-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 3px solid var(--orange);
}
.map-wrapper iframe { width: 100%; height: 420px; border: none; display: block; }

/* ── Route Steps ─────────────────────────────────────────────────────────────── */
.route-step {
  display: flex; gap: 1.2rem; align-items: flex-start;
  position: relative;
}
.route-step::after {
  content: '';
  position: absolute; left: 18px; top: 45px;
  width: 2px; height: calc(100% - 25px);
  background: var(--beige-dark);
}
.route-step:last-child::after { display: none; }
.route-num {
  width: 38px; height: 38px; flex-shrink: 0;
  background: var(--navy); color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .9rem;
  position: relative; z-index: 1;
  border: 3px solid var(--beige);
}
.route-info { padding-bottom: 1.5rem; }
.route-info h6 { font-size: 1rem; margin-bottom: .2rem; color: var(--navy); }
.route-info p  { font-size: .88rem; color: var(--text-muted); margin: 0; }
.route-meta { display: flex; gap: 1rem; margin-top: .4rem; flex-wrap: wrap; }
.route-meta span { font-size: .78rem; color: var(--text-muted); display: flex; align-items: center; gap: .3rem; }
.route-meta i { color: var(--orange); }

/* ── Stats Counter ───────────────────────────────────────────────────────────── */
.stats-section { background: var(--navy); }
.stat-item { text-align: center; padding: 2rem 1rem; }
.stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  margin-bottom: .3rem;
}
.stat-label { color: rgba(255,255,255,.75); font-size: .9rem; text-transform: uppercase; letter-spacing: .1em; }

/* ── Floating WhatsApp ───────────────────────────────────────────────────────── */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 9999;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.9rem;
  box-shadow: 0 6px 24px rgba(37,211,102,.55);
  transition: var(--transition);
  animation: pulse-wa 2s infinite;
}
.whatsapp-float:hover {
  background: #1ebe5d; color: #fff;
  transform: scale(1.12);
  animation: none;
}
.wa-tooltip {
  position: absolute; right: 70px;
  background: var(--slate); color: #fff;
  font-size: .78rem; font-weight: 600;
  padding: 5px 12px; border-radius: 20px;
  white-space: nowrap; opacity: 0; pointer-events: none;
  transition: var(--transition);
}
.whatsapp-float:hover .wa-tooltip { opacity: 1; }
@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,.55); }
  50%       { box-shadow: 0 6px 36px rgba(37,211,102,.85); }
}

/* ── Back to Top ─────────────────────────────────────────────────────────────── */
.back-to-top {
  position: fixed; bottom: 28px; left: 28px; z-index: 9998;
  width: 44px; height: 44px;
  background: var(--navy); color: #fff;
  border: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  opacity: 0; pointer-events: none;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { background: var(--orange); transform: translateY(-3px); }

/* ── Footer ──────────────────────────────────────────────────────────────────── */
.site-footer { background: var(--navy); }
.footer-top { padding: 70px 0 40px; }
.footer-brand { display: flex; align-items: center; gap: .6rem; }
.footer-brand .brand-main { color: #fff; }
.footer-about { color: rgba(255,255,255,.7); font-size: .92rem; line-height: 1.7; }
.footer-badges { display: flex; gap: .5rem; flex-wrap: wrap; }
.badge-pill {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.8);
  font-size: .75rem;
  padding: 4px 12px; border-radius: 20px;
  display: inline-flex; align-items: center; gap: .3rem;
}
.footer-heading {
  color: #fff; font-size: .95rem;
  text-transform: uppercase; letter-spacing: .1em;
  margin-bottom: 1.2rem;
  padding-bottom: .7rem;
  border-bottom: 2px solid var(--orange);
  display: inline-block;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .6rem; }
.footer-links a {
  color: rgba(255,255,255,.7); font-size: .9rem;
  display: flex; align-items: center; gap: .4rem;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--orange); padding-left: 4px; }
.footer-links a i { font-size: .75rem; color: var(--orange); }
.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li { display: flex; gap: 1rem; margin-bottom: 1.1rem; }
.footer-contact i { color: var(--orange); font-size: 1.1rem; flex-shrink: 0; margin-top: .15rem; }
.footer-contact div { font-size: .88rem; color: rgba(255,255,255,.7); line-height: 1.6; }
.footer-contact a { color: rgba(255,255,255,.75); }
.footer-contact a:hover { color: var(--orange); }
.footer-social { display: flex; gap: .6rem; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.1); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.8); font-size: 1rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--orange); color: #fff; }
.footer-bottom {
  background: rgba(0,0,0,.25);
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: .85rem;
  color: rgba(255,255,255,.6);
}
.footer-bottom a { color: rgba(255,255,255,.6); }
.footer-bottom a:hover { color: var(--orange); }
.footer-bottom p { color: rgba(255,255,255,.6); }

/* ── Alerts ──────────────────────────────────────────────────────────────────── */
.alert { border-radius: var(--radius-sm); font-size: .92rem; }

/* ── Forms ───────────────────────────────────────────────────────────────────── */
.form-control, .form-select {
  border-radius: var(--radius-sm);
  border: 1.5px solid #dee2e6;
  padding: .7rem 1rem;
  font-size: .93rem;
  transition: var(--transition);
}
.form-control:focus, .form-select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 .2rem rgba(230,126,34,.18);
}
.form-label { font-weight: 600; font-size: .88rem; color: var(--slate); margin-bottom: .35rem; }
.btn-submit {
  background: var(--orange);
  color: #fff; border: none;
  padding: .85rem 2.5rem; border-radius: 30px;
  font-weight: 700; font-size: 1rem;
  transition: var(--transition);
  cursor: pointer;
}
.btn-submit:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: var(--shadow-sm); color: #fff; }
.btn-submit:disabled { opacity: .7; cursor: not-allowed; }

/* ── Utility Classes ─────────────────────────────────────────────────────────── */
.text-orange { color: var(--orange) !important; }
.text-navy   { color: var(--navy)   !important; }
.text-green  { color: var(--green)  !important; }
.bg-orange   { background: var(--orange) !important; }
.bg-beige    { background: var(--beige)  !important; }
.fw-800      { font-weight: 800 !important; }
.fw-900      { font-weight: 900 !important; }

/* ── CTA Banner ──────────────────────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url('../images/pattern-dots.png');
  opacity: .08;
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.5rem); }
.cta-section p  { color: rgba(255,255,255,.88); font-size: 1.05rem; }
.btn-cta-white {
  background: #fff; color: var(--orange);
  padding: .9rem 2.2rem; border-radius: 30px;
  font-weight: 700; font-size: 1rem;
  transition: var(--transition);
  display: inline-flex; align-items: center; gap: .5rem;
  box-shadow: var(--shadow-sm);
}
.btn-cta-white:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); color: var(--orange-dark); }
.btn-cta-outline-white {
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,.7);
  padding: .85rem 2rem; border-radius: 30px;
  font-weight: 600; font-size: 1rem;
  transition: var(--transition);
  display: inline-flex; align-items: center; gap: .5rem;
}
.btn-cta-outline-white:hover { border-color: #fff; background: rgba(255,255,255,.1); color: #fff; }

/* ── Altitude Info Bar ───────────────────────────────────────────────────────── */
.altitude-bar {
  background: linear-gradient(90deg, var(--navy) 0%, var(--green) 100%);
  padding: 28px 0;
}
.altitude-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 0;
}
.altitude-stat {
  flex: 1;
  text-align: center;
  padding: 8px 16px;
  min-width: 140px;
}
.altitude-stat-val {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--orange);
  font-family: 'Poppins', sans-serif;
  line-height: 1.2;
  margin-bottom: 4px;
}
.altitude-stat-lbl {
  color: rgba(255,255,255,.75);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.altitude-sep {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,.2);
  flex-shrink: 0;
}
@media (max-width: 575px) {
  .altitude-sep { display: none; }
  .altitude-stat { min-width: 45%; padding: 10px 8px; }
}

/* ── Masonry Gallery ─────────────────────────────────────────────────────────── */
.gallery-masonry { column-count: 3; column-gap: 1rem; }
.gallery-masonry .gallery-item { break-inside: avoid; margin-bottom: 1rem; }
.gallery-masonry .gallery-item img { height: auto !important; }
@media (max-width: 991px) { .gallery-masonry { column-count: 2; } }
@media (max-width: 575px) { .gallery-masonry { column-count: 1; } }

/* ── Lightbox ────────────────────────────────────────────────────────────────── */
.lightbox-overlay {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(0,0,0,.93);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .3s ease;
}
.lightbox-overlay.active { opacity: 1; pointer-events: auto; }
.lightbox-img { max-width: 90vw; max-height: 88vh; border-radius: var(--radius-sm); object-fit: contain; }
.lightbox-close {
  position: absolute; top: 20px; right: 24px;
  color: #fff; font-size: 2rem; cursor: pointer;
  background: none; border: none; line-height: 1;
  transition: var(--transition);
}
.lightbox-close:hover { color: var(--orange); }
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.15); color: #fff;
  border: none; width: 50px; height: 50px; border-radius: 50%;
  font-size: 1.4rem; cursor: pointer; transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(4px);
}
.lightbox-nav:hover { background: var(--orange); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-caption { position: absolute; bottom: 20px; color: rgba(255,255,255,.85); font-size: .9rem; text-align: center; width: 100%; }

/* ── About Page ──────────────────────────────────────────────────────────────── */
.about-img-wrap { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.about-img-wrap img { width: 100%; height: 480px; object-fit: cover; }
.about-exp-badge {
  position: absolute; bottom: 24px; left: 24px;
  background: var(--orange);
  color: #fff; text-align: center;
  padding: 1rem 1.3rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.about-exp-badge .num { font-size: 2.2rem; font-weight: 900; line-height: 1; }
.about-exp-badge .lbl { font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; }

/* ── AOS Animate On Scroll ───────────────────────────────────────────────────── */
.aos-pending {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease;
}

/* ── Page-Specific Spacing ───────────────────────────────────────────────────── */
.content-section { padding: 70px 0; }

/* ── Responsive Adjustments ──────────────────────────────────────────────────── */
@media (max-width: 991px) {
  section { padding: 60px 0; }
  .hero-content { padding: 100px 0 60px; }
  .tariff-card.featured { transform: none; }
}
@media (max-width: 767px) {
  section { padding: 50px 0; }
  .hero-stat { padding: .7rem .8rem; }
  .hero-stat-value { font-size: 1.2rem; }
  .hero-divider { display: none; }
  .contact-card { padding: 1.5rem; }
  .gallery-masonry .gallery-item img { height: 200px !important; }
}
@media (max-width: 575px) {
  .whatsapp-float { bottom: 18px; right: 18px; width: 52px; height: 52px; }
  .back-to-top   { bottom: 18px; left: 18px; }
}
