/* ============================================================
   BARAKAH HAJJ & UMRAH TRAVELS - Main Stylesheet
   Premium Islamic Travel Agency - Colombo, Sri Lanka
   ============================================================ */

/* ---- CSS Variables ---- */
:root {
  --green: #075E4A;
  --green-dark: #054a3a;
  --green-light: #0a7a60;
  --navy: #0F172A;
  --gold: #D4AF37;
  --gold-light: #e8c84a;
  --gold-dark: #b8952e;
  --cream: #F8F4EA;
  --white: #FFFFFF;
  --muted: #64748B;
  --dark: #1E293B;
  --border: rgba(212, 175, 55, 0.2);
  --shadow: 0 4px 30px rgba(7, 94, 74, 0.12);
  --shadow-gold: 0 4px 30px rgba(212, 175, 55, 0.2);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'DM Sans', sans-serif;
}

/* ---- Global 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(--dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; padding: 0; margin: 0; }
button { cursor: pointer; border: none; background: none; }

/* ---- Typography ---- */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}
h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }
p { color: var(--muted); font-size: 1rem; }
.text-gold { color: var(--gold) !important; }
.text-green { color: var(--green) !important; }
.text-white { color: var(--white) !important; }
.bg-green { background: var(--green); }
.bg-navy { background: var(--navy); }
.bg-cream { background: var(--cream); }

/* ---- Section Utilities ---- */
.section-pad { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }
.section-title { margin-bottom: 12px; }
.section-subtitle { font-size: 0.85rem; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; display: block; }
.section-desc { color: var(--muted); max-width: 600px; }
.divider-gold {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 16px 0 24px;
}
.divider-gold.mx-auto { margin-left: auto; margin-right: auto; }

/* ---- Buttons ---- */
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  padding: 13px 30px;
  border-radius: 50px;
  border: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(212,175,55,0.35);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212,175,55,0.45);
  color: var(--navy);
}
.btn-green {
  background: linear-gradient(135deg, var(--green), var(--green-light));
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 13px 30px;
  border-radius: 50px;
  border: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(7,94,74,0.3);
}
.btn-green:hover {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(7,94,74,0.4);
  color: var(--white);
}
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 28px;
  border-radius: 50px;
  border: 2px solid var(--gold);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 28px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.6);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-2px);
}
.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 13px 28px;
  border-radius: 50px;
  border: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}
.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.45);
  color: var(--white);
}
.btn-sm { padding: 9px 20px !important; font-size: 0.82rem !important; }

/* ---- Top Bar ---- */
.top-bar {
  background: var(--navy);
  padding: 8px 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.75);
  border-bottom: 1px solid rgba(212,175,55,0.15);
}
.top-bar a { color: rgba(255,255,255,0.8); }
.top-bar a:hover { color: var(--gold); }
.top-bar .social-icons a {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: inline-flex; align-items: center; justify-content: center;
  margin-left: 5px;
  font-size: 0.75rem;
}
.top-bar .social-icons a:hover { background: var(--gold); color: var(--navy); }

/* ---- Navbar ---- */
.navbar {
  background: var(--white) !important;
  padding: 14px 0;
  box-shadow: 0 2px 20px rgba(15,23,42,0.08);
  transition: var(--transition);
}
.navbar.scrolled {
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(15,23,42,0.15);
}
.navbar-brand .brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.navbar-brand .brand-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  box-shadow: 0 4px 12px rgba(7,94,74,0.3);
}
.navbar-brand .brand-text .brand-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
  display: block;
}
.navbar-brand .brand-text .brand-tagline {
  font-size: 0.68rem;
  color: var(--gold);
  letter-spacing: 0.5px;
  display: block;
}
.navbar-nav .nav-link {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--dark) !important;
  padding: 8px 14px !important;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--green) !important;
  background: rgba(7,94,74,0.06);
}
.navbar-nav .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 50%;
  transform: translateX(-50%);
  width: 20px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.navbar-toggler { border: 2px solid var(--green); border-radius: 8px; padding: 6px 10px; }
.navbar-toggler-icon { background-image: none; }
.navbar-toggler i { color: var(--green); font-size: 1.2rem; }

/* ---- Page Header / Breadcrumb ---- */
.page-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--green) 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(212,175,55,0.12) 0%, transparent 60%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.04) 0%, transparent 50%);
}
.page-header .geometric-bg {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M30 0L60 30L30 60L0 30z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-header h1 { color: var(--white); font-size: clamp(1.8rem, 4vw, 2.8rem); }
.breadcrumb { background: none; padding: 0; margin: 0; }
.breadcrumb-item a { color: rgba(255,255,255,0.7); font-size: 0.85rem; }
.breadcrumb-item a:hover { color: var(--gold); }
.breadcrumb-item.active { color: var(--gold); font-size: 0.85rem; }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }

/* ============================================================
   HOME PAGE HERO
   ============================================================ */
.hero-section {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1591604129939-f1efa4d9f7fa?w=1920&q=80') center/cover no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(7,94,74,0.88) 0%,
    rgba(15,23,42,0.92) 50%,
    rgba(15,23,42,0.85) 100%
  );
}
.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M40 0L80 40L40 80L0 40z M40 10L70 40L40 70L10 40z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content { position: relative; z-index: 2; padding: 120px 0 80px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,175,55,0.15);
  border: 1px solid rgba(212,175,55,0.4);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}
.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-title .highlight {
  color: var(--gold);
  display: block;
}
.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.78);
  max-width: 540px;
  margin-bottom: 36px;
  line-height: 1.8;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat .stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.hero-stat .stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* Hero Inquiry Card */
.hero-inquiry-card {
  background: rgba(255,255,255,0.97);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.3);
  border: 1px solid rgba(212,175,55,0.2);
  position: relative;
  z-index: 2;
  backdrop-filter: blur(20px);
}
.hero-inquiry-card .card-header-custom {
  background: linear-gradient(135deg, var(--green), var(--green-light));
  color: var(--white);
  padding: 14px 20px;
  border-radius: 10px;
  margin: -32px -28px 24px;
  border-radius: 16px 16px 0 0;
  text-align: center;
}
.hero-inquiry-card .card-header-custom h5 {
  color: var(--white);
  font-size: 1.1rem;
  margin: 0;
}
.hero-inquiry-card .card-header-custom p {
  color: rgba(255,255,255,0.8);
  font-size: 0.8rem;
  margin: 4px 0 0;
}
.inquiry-form .form-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}
.inquiry-form .form-control,
.inquiry-form .form-select {
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 0.88rem;
  transition: var(--transition);
  color: var(--dark);
}
.inquiry-form .form-control:focus,
.inquiry-form .form-select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(7,94,74,0.1);
  outline: none;
}

/* ============================================================
   TRUST BADGES
   ============================================================ */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 20px 0;
  box-shadow: var(--shadow);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
}
.trust-item .trust-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, rgba(7,94,74,0.1), rgba(7,94,74,0.05));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--green);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.trust-item .trust-text strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
}
.trust-item .trust-text span {
  font-size: 0.75rem;
  color: var(--muted);
}
.trust-divider {
  width: 1px;
  height: 40px;
  background: #e2e8f0;
  margin: 0 8px;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-choose-section { background: var(--cream); }
.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 24px;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--gold));
  transform: scaleX(0);
  transition: var(--transition);
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.why-card:hover::before { transform: scaleX(1); }
.why-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, rgba(7,94,74,0.1), rgba(7,94,74,0.05));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.5rem;
  color: var(--green);
  transition: var(--transition);
}
.why-card:hover .why-icon {
  background: linear-gradient(135deg, var(--green), var(--green-light));
  color: var(--white);
  transform: scale(1.1);
}
.why-card h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.why-card p { font-size: 0.87rem; color: var(--muted); margin: 0; }

/* ============================================================
   PACKAGES SECTION
   ============================================================ */
.package-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  border: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.package-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(7,94,74,0.15); }
.package-img {
  position: relative;
  overflow: hidden;
  height: 200px;
}
.package-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.package-card:hover .package-img img { transform: scale(1.08); }
.package-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 0.5px;
}
.package-badge.popular {
  background: var(--green);
  color: var(--white);
}
.package-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.package-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}
.package-meta {
  display: flex;
  gap: 14px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.package-meta span {
  font-size: 0.78rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 4px;
}
.package-meta span i { color: var(--gold); }
.package-features {
  margin-bottom: 16px;
  flex: 1;
}
.package-features li {
  font-size: 0.82rem;
  color: var(--muted);
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px dashed #f0f0f0;
}
.package-features li:last-child { border-bottom: none; }
.package-features li i { color: var(--green); font-size: 0.8rem; }
.package-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 16px;
}
.package-price .from { font-size: 0.78rem; color: var(--muted); }
.package-price .price {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--green);
}
.package-price .currency { font-size: 0.85rem; color: var(--muted); }
.package-actions { display: flex; gap: 10px; }
.package-actions .btn-green,
.package-actions .btn-whatsapp { flex: 1; justify-content: center; }

/* ============================================================
   HAJ HIGHLIGHT
   ============================================================ */
.haj-highlight {
  background: linear-gradient(135deg, var(--navy) 0%, var(--green-dark) 100%);
  position: relative;
  overflow: hidden;
}
.haj-highlight::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1565619634983-2cb32f1d5a2d?w=1920&q=80') center/cover;
  opacity: 0.12;
}
.haj-highlight-content { position: relative; z-index: 2; }
.haj-highlight h2 { color: var(--white); }
.haj-feature-list li {
  color: rgba(255,255,255,0.85);
  font-size: 0.92rem;
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.haj-feature-list li:last-child { border-bottom: none; }
.haj-feature-list li i { color: var(--gold); font-size: 1rem; }
.haj-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: var(--radius);
  padding: 32px;
}
.haj-price-tag {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  border-radius: 10px;
  padding: 18px 20px;
  text-align: center;
  margin-bottom: 20px;
}
.haj-price-tag .label { font-size: 0.8rem; font-weight: 600; display: block; margin-bottom: 4px; }
.haj-price-tag .price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  display: block;
  color: var(--navy);
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 22px;
  border: 1px solid rgba(0,0,0,0.07);
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--gold));
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 16px;
  box-shadow: 0 6px 16px rgba(7,94,74,0.25);
  transition: var(--transition);
}
.service-card:hover .service-icon { transform: scale(1.1) rotate(5deg); }
.service-card h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.service-card p { font-size: 0.85rem; color: var(--muted); margin: 0; }

/* ============================================================
   BOOKING PROCESS
   ============================================================ */
.booking-process { background: var(--cream); }
.process-timeline { position: relative; }
.process-timeline::before {
  content: '';
  position: absolute;
  top: 40px; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--gold));
  z-index: 0;
}
.process-step { text-align: center; position: relative; z-index: 1; }
.step-icon {
  width: 80px; height: 80px;
  background: var(--white);
  border: 3px solid var(--green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.4rem;
  color: var(--green);
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(7,94,74,0.15);
  position: relative;
}
.step-icon:hover {
  background: var(--green);
  color: var(--white);
  transform: scale(1.1);
}
.step-number {
  position: absolute;
  top: -8px; right: -8px;
  width: 24px; height: 24px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.process-step h6 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}
.process-step p { font-size: 0.8rem; color: var(--muted); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--navy); }
.testimonial-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
  height: 100%;
}
.testimonial-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(212,175,55,0.3);
  transform: translateY(-5px);
}
.testimonial-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 14px; }
.testimonial-text {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
}
.testimonial-text::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 4rem;
  color: rgba(212,175,55,0.2);
  position: absolute;
  top: -20px; left: -10px;
  line-height: 1;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: var(--white);
  font-weight: 700;
  flex-shrink: 0;
}
.author-info .name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
  display: block;
}
.author-info .location {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item img {
  width: 100%; height: 100%;
  min-height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,94,74,0.85) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
  display: flex; align-items: flex-end;
  padding: 16px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
}
.gallery-filter .btn-filter {
  background: var(--white);
  border: 1.5px solid #e2e8f0;
  color: var(--muted);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: var(--transition);
  cursor: pointer;
}
.gallery-filter .btn-filter.active,
.gallery-filter .btn-filter:hover {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-section { background: var(--cream); }
.accordion-item {
  border: 1px solid rgba(0,0,0,0.08) !important;
  border-radius: var(--radius-sm) !important;
  margin-bottom: 12px;
  overflow: hidden;
}
.accordion-button {
  font-weight: 600;
  font-size: 0.93rem;
  color: var(--dark) !important;
  background: var(--white) !important;
  padding: 18px 20px !important;
  border-radius: var(--radius-sm) !important;
  box-shadow: none !important;
}
.accordion-button:not(.collapsed) {
  color: var(--green) !important;
  background: rgba(7,94,74,0.04) !important;
}
.accordion-button::after { filter: none; }
.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23075E4A'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.accordion-body { font-size: 0.88rem; color: var(--muted); padding: 16px 20px !important; line-height: 1.8; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--green) 0%, var(--navy) 100%);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 0L100 50L50 100L0 50z' fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 80px 80px;
}
.cta-section h2,
.cta-section p { position: relative; z-index: 1; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-intro img {
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(7,94,74,0.1);
  border: 1px solid rgba(7,94,74,0.2);
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.value-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  border-left: 4px solid var(--gold);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  transition: var(--transition);
  height: 100%;
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.value-card h5 { color: var(--dark); font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.value-card p { font-size: 0.85rem; color: var(--muted); margin: 0; }
.counter-card {
  text-align: center;
  padding: 30px 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-top: 4px solid var(--gold);
}
.counter-card .counter-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--green);
  display: block;
  line-height: 1;
}
.counter-card .counter-label {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 8px;
  display: block;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: var(--transition);
  text-align: center;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.team-img {
  height: 220px;
  background: linear-gradient(135deg, var(--green), var(--navy));
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
  color: rgba(255,255,255,0.3);
}
.team-body { padding: 20px; }
.team-body .name { font-size: 1rem; font-weight: 700; color: var(--dark); }
.team-body .role { font-size: 0.82rem; color: var(--gold); font-weight: 600; margin-top: 4px; }
.team-body p { font-size: 0.83rem; color: var(--muted); margin-top: 10px; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  border-bottom: 3px solid var(--green);
  transition: var(--transition);
  height: 100%;
  text-align: center;
}
.contact-info-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.contact-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--white);
  margin: 0 auto 16px;
}
.contact-info-card h5 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--dark); }
.contact-info-card p,
.contact-info-card a { font-size: 0.88rem; color: var(--muted); }
.contact-info-card a:hover { color: var(--green); }
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.06);
}
.contact-form-wrap .form-control,
.contact-form-wrap .form-select,
.contact-form-wrap textarea {
  border: 1.5px solid #e2e8f0;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.9rem;
  transition: var(--transition);
  color: var(--dark);
}
.contact-form-wrap .form-control:focus,
.contact-form-wrap .form-select:focus,
.contact-form-wrap textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(7,94,74,0.08);
  outline: none;
}
.map-placeholder {
  background: linear-gradient(135deg, #e8f5f1, #d4e9e2);
  border-radius: var(--radius);
  height: 280px;
  display: flex; align-items: center; justify-content: center;
  border: 2px dashed rgba(7,94,74,0.2);
}
.map-placeholder .map-inner { text-align: center; color: var(--green); }
.map-placeholder i { font-size: 3rem; margin-bottom: 12px; }

/* ============================================================
   PACKAGE DETAILS PAGE
   ============================================================ */
.pkg-detail-hero {
  background: linear-gradient(135deg, var(--navy), var(--green));
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.pkg-detail-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1564769662533-4f00a87b4056?w=1920&q=80') center/cover;
  opacity: 0.1;
}
.pkg-detail-hero .container { position: relative; z-index: 1; }
.pkg-overview-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(212,175,55,0.2);
  position: sticky;
  top: 90px;
}
.pkg-price-box {
  background: linear-gradient(135deg, var(--green), var(--green-light));
  color: var(--white);
  border-radius: var(--radius-sm);
  padding: 20px;
  text-align: center;
  margin-bottom: 20px;
}
.pkg-price-box .from { font-size: 0.82rem; opacity: 0.8; }
.pkg-price-box .price {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  display: block;
  line-height: 1;
  margin-top: 4px;
}
.itinerary-item {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}
.itinerary-day {
  width: 50px; height: 50px;
  background: linear-gradient(135deg, var(--green), var(--gold));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
  line-height: 1;
  text-align: center;
}
.itinerary-content {
  padding-top: 4px;
  border-bottom: 1px dashed #e2e8f0;
  padding-bottom: 16px;
  flex: 1;
}
.itinerary-content h6 { font-size: 0.93rem; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.itinerary-content p { font-size: 0.85rem; color: var(--muted); margin: 0; }

/* ============================================================
   TERMS & PRIVACY
   ============================================================ */
.legal-content h3 { font-size: 1.2rem; color: var(--dark); margin: 28px 0 12px; }
.legal-content p { font-size: 0.92rem; color: var(--muted); line-height: 1.9; margin-bottom: 14px; }
.legal-content ul li { font-size: 0.9rem; color: var(--muted); padding: 5px 0; padding-left: 20px; position: relative; }
.legal-content ul li::before { content: '•'; color: var(--green); position: absolute; left: 0; font-weight: 700; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy);
  padding: 70px 0 0;
  color: rgba(255,255,255,0.7);
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--gold), var(--green));
}
.footer h5 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.footer h5::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 30px; height: 2px;
  background: var(--gold);
}
.footer-brand p { font-size: 0.87rem; line-height: 1.8; color: rgba(255,255,255,0.6); margin: 12px 0 20px; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.87rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links a::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-links a:hover::before { opacity: 1; }
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.87rem;
  color: rgba(255,255,255,0.65);
}
.footer-contact li i { color: var(--gold); font-size: 1rem; margin-top: 2px; flex-shrink: 0; }
.footer-newsletter .form-control {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  border-radius: 50px;
  padding: 10px 16px;
  font-size: 0.85rem;
}
.footer-newsletter .form-control::placeholder { color: rgba(255,255,255,0.4); }
.footer-newsletter .form-control:focus { outline: none; border-color: var(--gold); }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: inline-flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  margin-right: 6px;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--gold); color: var(--navy); transform: translateY(-3px); }
.footer-bottom {
  background: rgba(0,0,0,0.2);
  padding: 18px 0;
  margin-top: 50px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.4); margin: 0; }
.footer-bottom a { color: var(--gold); }
.footer-bottom a:hover { color: var(--gold-light); }

/* ============================================================
   FLOATING BUTTONS
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 90px;
  right: 24px;
  z-index: 999;
  width: 56px; height: 56px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  box-shadow: 0 6px 25px rgba(37,211,102,0.5);
  transition: var(--transition);
  animation: pulse-wa 2s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.12);
  color: var(--white);
  box-shadow: 0 10px 35px rgba(37,211,102,0.6);
}
.whatsapp-tooltip {
  position: absolute;
  right: 66px;
  background: var(--white);
  color: var(--dark);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 8px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }
@keyframes pulse-wa {
  0%,100% { box-shadow: 0 6px 25px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 6px 35px rgba(37,211,102,0.7), 0 0 0 10px rgba(37,211,102,0.1); }
}
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 46px; height: 46px;
  background: var(--green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  box-shadow: 0 4px 16px rgba(7,94,74,0.4);
  transition: var(--transition);
  opacity: 0; pointer-events: none;
}
.back-to-top.show { opacity: 1; pointer-events: all; }
.back-to-top:hover { background: var(--gold); color: var(--navy); transform: translateY(-3px); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   SERVICES PAGE DETAILED
   ============================================================ */
.service-detail-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid rgba(0,0,0,0.07);
  transition: var(--transition);
  height: 100%;
}
.service-detail-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.service-feature-list li {
  font-size: 0.85rem;
  color: var(--muted);
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid #f5f5f5;
}
.service-feature-list li:last-child { border-bottom: none; }
.service-feature-list li i { color: var(--green); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991.98px) {
  .process-timeline::before { display: none; }
  .hero-content { padding: 100px 0 60px; }
  .hero-inquiry-card { margin-top: 30px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.tall { grid-row: span 1; }
  .section-pad { padding: 70px 0; }
  .top-bar .d-none-mobile { display: none !important; }
}
@media (max-width: 767.98px) {
  .hero-title { font-size: 2rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item { padding: 6px 8px; }
  .trust-divider { display: none; }
  .footer { padding: 50px 0 0; }
  .section-pad { padding: 55px 0; }
  .hero-stats { gap: 20px; }
  .hero-stat .stat-num { font-size: 1.6rem; }
  .process-step { margin-bottom: 30px; }
}
@media (max-width: 575.98px) {
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .hero-btns .btn-gold,
  .hero-btns .btn-outline-white { width: 100%; justify-content: center; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .contact-form-wrap { padding: 24px 18px; }
  h2 { font-size: 1.7rem; }
  .pkg-overview-card { position: static; }
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: var(--green); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ---- Selection ---- */
::selection { background: var(--gold); color: var(--navy); }

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.gallery-filter-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.gallery-filter-btn {
  border: 2px solid var(--green);
  background: transparent;
  color: var(--green);
  padding: 8px 22px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}
.gallery-filter-btn:hover,
.gallery-filter-btn.active {
  background: var(--green);
  color: #fff;
}
.gallery-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  cursor: pointer;
}
.gallery-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-card:hover img { transform: scale(1.07); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,94,74,0.85) 0%, rgba(15,23,42,0.3) 100%);
  opacity: 0;
  transition: opacity 0.35s;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.gallery-card:hover .gallery-overlay { opacity: 1; }
.gallery-overlay-content { color: #fff; }
.gallery-overlay-content i {
  font-size: 1.5rem;
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
}
.gallery-overlay-content h6 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 2px;
}
.gallery-overlay-content span { font-size: 0.78rem; opacity: 0.85; }
.gallery-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ============================================================
   FAQ PAGE
   ============================================================ */
.faq-tab-btn {
  border: 2px solid var(--green);
  background: transparent;
  color: var(--green);
  padding: 9px 20px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
}
.faq-tab-btn:hover,
.faq-tab-btn.active {
  background: var(--green);
  color: #fff;
}
.faq-category-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.faq-category-header i {
  font-size: 1.6rem;
  color: var(--gold);
}
.faq-category-header h3 {
  font-size: 1.5rem;
  color: var(--navy);
  margin: 0;
  font-family: var(--font-display);
}
.faq-accordion-item {
  border: 1px solid rgba(7,94,74,0.12);
  border-radius: 12px !important;
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-accordion-item .accordion-button {
  background: #fff;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.97rem;
  padding: 18px 20px;
  box-shadow: none;
}
.faq-accordion-item .accordion-button:not(.collapsed) {
  background: var(--green);
  color: #fff;
}
.faq-accordion-item .accordion-button::after {
  filter: none;
}
.faq-accordion-item .accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1);
}
.faq-accordion-item .accordion-body {
  font-size: 0.93rem;
  line-height: 1.75;
  color: var(--text-muted);
  padding: 16px 20px 20px;
  background: #fafffe;
}
.faq-contact-cta {
  background: linear-gradient(135deg, #f0fdf8, #f8f4ea);
  border: 1px solid rgba(7,94,74,0.15);
  border-radius: 16px;
  padding: 30px;
}
.faq-contact-cta h4 {
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.faq-contact-cta p { color: var(--text-muted); font-size: 0.93rem; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-info-card {
  background: #fff;
  border: 1px solid rgba(7,94,74,0.1);
  border-radius: 16px;
  padding: 32px 24px;
  transition: all 0.3s;
  height: 100%;
}
.contact-info-card:hover {
  box-shadow: 0 8px 30px rgba(7,94,74,0.12);
  transform: translateY(-4px);
}
.contact-info-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--green), #0a8a6a);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.4rem;
  color: #fff;
}
.contact-info-icon.whatsapp { background: linear-gradient(135deg, #25D366, #128C7E); }
.contact-info-icon.email { background: linear-gradient(135deg, #D4AF37, #b8962e); }
.contact-info-icon.address { background: linear-gradient(135deg, #e74c3c, #c0392b); }
.contact-info-card h5 {
  color: var(--navy);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 6px;
}
.contact-info-card p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 8px;
}
.contact-info-link {
  color: var(--green);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  word-break: break-all;
}
.contact-info-link:hover { color: var(--gold); }

.contact-form-wrap {
  background: #fff;
  border: 1px solid rgba(7,94,74,0.1);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.06);
}
.input-group-icon {
  position: relative;
}
.input-group-icon i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--green);
  font-size: 1rem;
  z-index: 1;
}
.contact-input {
  padding-left: 40px !important;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  font-size: 0.92rem;
  color: var(--text-dark);
  transition: border-color 0.3s;
}
.contact-input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(7,94,74,0.08);
}
.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.map-placeholder {
  background: linear-gradient(135deg, #e8f5f0, #f0fdf8);
  border: 2px dashed rgba(7,94,74,0.2);
  border-radius: 16px;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-inner {
  text-align: center;
  padding: 30px;
}
.map-inner i {
  font-size: 2.5rem;
  color: var(--green);
  margin-bottom: 10px;
  display: block;
}
.map-inner h5 { color: var(--navy); font-weight: 700; }
.map-inner p { color: var(--text-muted); font-size: 0.9rem; }

.office-hours-card {
  background: #fff;
  border: 1px solid rgba(7,94,74,0.1);
  border-radius: 16px;
  padding: 24px;
}
.office-hours-card h5 {
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 16px;
}
.office-hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.office-hours-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #f1f5f9;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.office-hours-list li:last-child { border: none; }
.office-hours-list .hours {
  color: var(--green);
  font-weight: 600;
}
.office-hours-list .note {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  padding-top: 10px;
  border: none;
}

.whatsapp-cta-box {
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 16px;
  padding: 24px;
  color: #fff;
}
.wa-icon-lg {
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.whatsapp-cta-box h6 {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 4px;
}
.whatsapp-cta-box p {
  font-size: 0.83rem;
  opacity: 0.9;
  margin-bottom: 12px;
  line-height: 1.5;
}

.social-section {
  background: var(--cream);
  padding: 60px 0;
}
.social-follow-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s;
  border: 2px solid transparent;
}
.social-follow-btn i { font-size: 1.1rem; }
.social-follow-btn.facebook { background: #1877F2; color: #fff; }
.social-follow-btn.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: #fff; }
.social-follow-btn.youtube { background: #FF0000; color: #fff; }
.social-follow-btn.tiktok { background: #000; color: #fff; }
.social-follow-btn:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,0.2); }

/* ============================================================
   LEGAL PAGES (Terms & Privacy)
   ============================================================ */
.legal-doc { max-width: 100%; }
.legal-notice {
  background: linear-gradient(135deg, #f0fdf8, #fef9e7);
  border: 1px solid rgba(212,175,55,0.3);
  border-left: 4px solid var(--gold);
  border-radius: 10px;
  padding: 16px 20px;
  margin-bottom: 40px;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.legal-section {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #f1f5f9;
}
.legal-section:last-of-type { border: none; }
.legal-section h3 {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--navy);
  margin-bottom: 16px;
}
.legal-num {
  background: var(--green);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: var(--font-body);
  flex-shrink: 0;
}
.legal-section p {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 0.95rem;
  margin-bottom: 12px;
}
.legal-list {
  padding-left: 20px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
}
.legal-list li { margin-bottom: 8px; }
.legal-contact-box {
  background: linear-gradient(135deg, #f0fdf8, #f8f4ea);
  border: 1px solid rgba(7,94,74,0.15);
  border-radius: 16px;
  padding: 30px;
  margin-top: 20px;
}
.legal-contact-box h5 {
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 8px;
}
.legal-contact-box p { color: var(--text-muted); font-size: 0.9rem; margin: 0; }

/* Cancellation table */
.cancellation-table {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
}
.cancel-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 18px;
  font-size: 0.9rem;
  border-bottom: 1px solid #f1f5f9;
}
.cancel-row:last-child { border: none; }
.cancel-row.header {
  background: var(--green);
  color: #fff;
  font-weight: 700;
}
.cancel-row:not(.header):nth-child(even) { background: #f8fafc; }

/* Info & Rights grids (Privacy page) */
.info-collect-grid,
.rights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 16px;
}
.info-collect-item,
.rights-item {
  background: #fff;
  border: 1px solid rgba(7,94,74,0.1);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.info-collect-item i,
.rights-item i {
  font-size: 1.3rem;
  color: var(--green);
  flex-shrink: 0;
  margin-top: 2px;
}
.info-collect-item strong,
.rights-item strong {
  display: block;
  color: var(--navy);
  font-size: 0.9rem;
  margin-bottom: 4px;
}
.info-collect-item p,
.rights-item p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

/* Responsive for legal grids */
@media (max-width: 575.98px) {
  .info-collect-grid,
  .rights-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px 16px; }
  .faq-tabs .row { flex-wrap: wrap; }
  .cancel-row { flex-direction: column; gap: 4px; }
  .cancel-row span:last-child { font-weight: 600; color: var(--green); }
  .cancel-row.header span:last-child { color: #fff; }
}
