/* ============================================
   The Immigration World - Global Stylesheet
   Colors: Dark Green #1e6b31 | Orange #f47a1f
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@400;600;700&display=swap');

/* ── CSS Variables ── */
:root {
  --green:       #1e6b31;
  --green-dark:  #144d22;
  --green-light: #2d8a45;
  --green-pale:  #e8f5eb;
  --orange:      #f47a1f;
  --orange-dark: #d4650e;
  --orange-light:#ffa04d;
  --orange-pale: #fff3e8;
  --white:       #ffffff;
  --off-white:   #f9fafb;
  --gray-100:    #f3f4f6;
  --gray-200:    #e5e7eb;
  --gray-400:    #9ca3af;
  --gray-600:    #4b5563;
  --gray-800:    #1f2937;
  --dark:        #0d1b10;
  --shadow-sm:   0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:   0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg:   0 8px 40px rgba(0,0,0,0.16);
  --shadow-grn:  0 8px 30px rgba(30,107,49,0.25);
  --shadow-org:  0 8px 30px rgba(244,122,31,0.30);
  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   20px;
  --radius-xl:   30px;
  --transition:  all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  color: var(--gray-800);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ── Top Bar ── */
.top-bar {
  background: var(--green-dark);
  color: rgba(255,255,255,0.9);
  font-size: 0.78rem;
  padding: 7px 0;
  border-bottom: 2px solid var(--orange);
}
.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px;
}
.top-bar-left {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.top-bar-left .badge {
  background: var(--orange);
  color: white;
  padding: 2px 10px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.5px;
  margin-right: 4px;
}
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.top-bar-right a {
  color: rgba(255,255,255,0.88);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 5px;
}
.top-bar-right a:hover { color: var(--orange); }
.top-bar-right a i { color: var(--orange); font-size: 0.8rem; }

/* ── Navbar ── */
.navbar {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}
.navbar.scrolled {
  box-shadow: 0 4px 25px rgba(30,107,49,0.15);
  border-bottom: 2px solid var(--orange);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
}
.navbar-brand img {
  height: 62px;
  width: auto;
  transition: var(--transition);
}
.navbar-brand img:hover { transform: scale(1.03); }
.navbar-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.navbar-nav .nav-link {
  color: var(--gray-800);
  font-weight: 600;
  font-size: 0.93rem;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
  letter-spacing: 0.2px;
}
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  width: 0;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transition: width 0.3s ease;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--green);
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { width: calc(100% - 28px); }
.btn-consult {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: white !important;
  padding: 10px 22px !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  box-shadow: var(--shadow-org);
  transition: var(--transition) !important;
}
.btn-consult::after { display: none !important; }
.btn-consult:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 35px rgba(244,122,31,0.45) !important;
  color: white !important;
}

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border: none;
  background: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--green);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ── Container ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ── Section Titles ── */
.section-label {
  display: inline-block;
  background: var(--orange-pale);
  color: var(--orange);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
  border: 1.5px solid rgba(244,122,31,0.25);
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-title span { color: var(--orange); }
.section-desc {
  color: var(--gray-600);
  font-size: 1.05rem;
  max-width: 600px;
  line-height: 1.7;
}
.section-header { text-align: center; margin-bottom: 50px; }
.section-header .section-desc { margin: 0 auto; }
.divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(to right, var(--green), var(--orange));
  border-radius: 4px;
  margin: 16px auto;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  letter-spacing: 0.3px;
}
.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: white;
  box-shadow: var(--shadow-org);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(244,122,31,0.45);
  color: white;
}
.btn-secondary {
  background: transparent;
  color: white;
  border: 2.5px solid rgba(255,255,255,0.7);
  backdrop-filter: blur(6px);
}
.btn-secondary:hover {
  background: white;
  color: var(--green);
  border-color: white;
  transform: translateY(-3px);
}
.btn-green {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: white;
  box-shadow: var(--shadow-grn);
}
.btn-green:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(30,107,49,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--green);
  border: 2.5px solid var(--green);
}
.btn-outline:hover {
  background: var(--green);
  color: white;
  transform: translateY(-3px);
}
.btn-sm { padding: 9px 20px; font-size: 0.85rem; }

/* ── Hero Section ── */
.hero {
  min-height: 88vh;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 40%, #2d8a45 70%, #1a4f26 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 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='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.25;
  animation: orbFloat 6s ease-in-out infinite alternate;
}
.hero-orb-1 {
  width: 500px; height: 500px;
  background: var(--orange);
  top: -100px; right: -100px;
}
.hero-orb-2 {
  width: 300px; height: 300px;
  background: var(--green-light);
  bottom: -50px; left: 200px;
  animation-delay: -3s;
}
@keyframes orbFloat {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(20px, -20px) scale(1.08); }
}
.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
  padding: 80px 0;
}
.hero-text { animation: slideInLeft 0.8s ease forwards; }
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border: 1.5px solid rgba(255,255,255,0.25);
  color: white;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}
.hero-badge i { color: var(--orange); }
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  color: white;
  line-height: 1.15;
  margin-bottom: 22px;
}
.hero-title span { color: var(--orange); }
.hero-desc {
  color: rgba(255,255,255,0.85);
  font-size: 1.08rem;
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 40px;
}
.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.9);
  font-size: 0.85rem;
  font-weight: 500;
}
.trust-item i { color: var(--orange); font-size: 1.1rem; }
.hero-card-wrap { animation: slideInRight 0.8s 0.2s ease both; }
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
.hero-visual {
  position: relative;
}
.hero-main-card {
  position: relative;
  z-index: 5;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  border: 1.5px solid rgba(255,255,255,0.3);
}
.hero-card-title {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--green-dark);
  margin-bottom: 4px;
}
.hero-card-sub {
  color: var(--gray-600);
  font-size: 0.85rem;
  margin-bottom: 22px;
}
.hero-form-group {
  margin-bottom: 14px;
}
.hero-form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.hero-form-group input,
.hero-form-group select {
  width: 100%;
  padding: 11px 14px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: 'Outfit', sans-serif;
  font-size: 0.92rem;
  color: var(--gray-800);
  transition: var(--transition);
  outline: none;
}
.hero-form-group input:focus,
.hero-form-group select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(30,107,49,0.1);
}
.hero-form-btn {
  width: 100%;
  padding: 13px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: white;
  border: none;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 8px;
}
.hero-form-btn:hover {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  transform: translateY(-2px);
  box-shadow: var(--shadow-org);
}
.floating-stat {
  position: absolute;
  background: white;
  border-radius: var(--radius-md);
  padding: 12px 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: floatUp 3s ease-in-out infinite alternate;
}
.floating-stat-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.floating-stat-icon.green { background: var(--green-pale); color: var(--green); }
.floating-stat-icon.orange { background: var(--orange-pale); color: var(--orange); }
.floating-stat-val {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--green-dark);
  line-height: 1;
}
.floating-stat-lbl { font-size: 0.72rem; color: var(--gray-600); font-weight: 500; }
.stat-top-left { top: -52px; left: -25px; animation-delay: 0s; z-index: 10; }
.stat-bottom-right { bottom: -15px; right: -20px; animation-delay: -1.5s; z-index: 10; }
@keyframes floatUp {
  from { transform: translateY(0px); }
  to   { transform: translateY(-10px); }
}

/* ── Stats Banner ── */
.stats-section {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  padding: 50px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat-card {
  color: white;
  padding: 20px;
  border-right: 1.5px solid rgba(255,255,255,0.25);
}
.stat-card:last-child { border-right: none; }
.stat-number {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
  font-family: 'Playfair Display', serif;
}
.stat-label {
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.9;
  letter-spacing: 0.3px;
}

/* ── Services Section ── */
.services-section { padding: 90px 0; background: var(--off-white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.service-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 1.5px solid transparent;
  cursor: pointer;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--green), var(--orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(30,107,49,0.1);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon-wrap {
  width: 68px;
  height: 68px;
  background: var(--green-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: var(--transition);
  font-size: 1.8rem;
}
.service-card:hover .service-icon-wrap {
  background: linear-gradient(135deg, var(--green), var(--green-light));
}
.service-card:hover .service-icon-wrap i { color: white; }
.service-icon-wrap i { color: var(--green); transition: var(--transition); }
.service-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 10px;
}
.service-card-desc {
  color: var(--gray-600);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 18px;
}
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}
.service-tag {
  background: var(--green-pale);
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 50px;
  border: 1px solid rgba(30,107,49,0.15);
}
.service-link {
  color: var(--orange);
  font-weight: 700;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.service-link:hover { gap: 10px; color: var(--orange-dark); }

/* ── Why Choose Us ── */
.why-section { padding: 90px 0; background: white; }
.why-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.why-image-wrap { position: relative; }
.why-main-img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 450px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.why-badge-card {
  position: absolute;
  bottom: 30px;
  left: -30px;
  background: white;
  border-radius: var(--radius-md);
  padding: 18px 22px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
  border-left: 4px solid var(--orange);
}
.why-badge-icon {
  width: 50px;
  height: 50px;
  background: var(--orange-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--orange);
}
.why-badge-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--green-dark);
  line-height: 1;
}
.why-badge-text { font-size: 0.8rem; color: var(--gray-600); font-weight: 500; }
.why-features { display: flex; flex-direction: column; gap: 22px; margin-top: 30px; }
.why-feature {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px;
  border-radius: var(--radius-md);
  transition: var(--transition);
  border: 1.5px solid transparent;
}
.why-feature:hover {
  background: var(--off-white);
  border-color: var(--gray-200);
  transform: translateX(6px);
}
.why-feature-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: var(--green-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--green);
}
.why-feature-title { font-weight: 700; color: var(--green-dark); margin-bottom: 5px; }
.why-feature-desc { color: var(--gray-600); font-size: 0.88rem; line-height: 1.6; }

/* ── Destinations Section ── */
.destinations-section { padding: 90px 0; background: var(--off-white); }
.dest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 18px;
}
.dest-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 24px 18px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}
.dest-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30,107,49,0.07), rgba(244,122,31,0.07));
  opacity: 0;
  transition: var(--transition);
}
.dest-card:hover {
  transform: translateY(-6px);
  border-color: var(--green);
  box-shadow: var(--shadow-grn);
}
.dest-card:hover::after { opacity: 1; }
.dest-flag { font-size: 2.8rem; margin-bottom: 12px; display: block; }
.dest-name { font-weight: 700; color: var(--green-dark); font-size: 0.95rem; margin-bottom: 5px; }
.dest-type { color: var(--orange); font-size: 0.75rem; font-weight: 600; }

/* ── Testimonials ── */
.testimonials-section { padding: 90px 0; background: var(--dark); position: relative; overflow: hidden; }
.testimonials-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30,107,49,0.15), rgba(244,122,31,0.05));
}
.testimonials-section .section-title { color: white; }
.testimonials-section .section-desc { color: rgba(255,255,255,0.7); }
.testimonials-section .section-label {
  background: rgba(244,122,31,0.15);
  border-color: rgba(244,122,31,0.3);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}
.testi-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}
.testi-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.09);
  border-color: rgba(244,122,31,0.3);
}
.testi-stars { color: #fbbf24; margin-bottom: 16px; font-size: 1rem; letter-spacing: 2px; }
.testi-msg {
  color: rgba(255,255,255,0.85);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 22px;
  font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--orange));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.95rem;
}
.testi-name { font-weight: 700; color: white; font-size: 0.95rem; }
.testi-country { color: var(--orange); font-size: 0.8rem; font-weight: 600; }

/* ── CTA Section ── */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(244,122,31,0.15);
  border-radius: 50%;
  right: -100px;
  top: -100px;
  filter: blur(80px);
}
.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: white;
  font-weight: 700;
  margin-bottom: 16px;
}
.cta-desc {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  margin-bottom: 36px;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}
.cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.cta-phone-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.9);
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: 24px;
  justify-content: center;
}
.cta-phone-link i { color: var(--orange); }

/* ── Footer ── */
footer {
  background: #061a0a;
  color: rgba(255,255,255,0.75);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer-brand img { height: 55px; width: auto; margin-bottom: 18px; }
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 22px;
  color: rgba(255,255,255,0.65);
}
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: var(--transition);
  border: 1.5px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7);
}
.social-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: white;
  transform: translateY(-3px);
}
.footer-col-title {
  font-size: 1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-col-title::after {
  content: '';
  flex: 1;
  height: 1.5px;
  background: linear-gradient(to right, var(--orange), transparent);
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links a::before {
  content: '›';
  color: var(--orange);
  font-weight: 700;
}
.footer-links a:hover { color: var(--orange); padding-left: 6px; }
.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.87rem;
  align-items: flex-start;
}
.footer-contact-item i {
  color: var(--orange);
  font-size: 1rem;
  margin-top: 2px;
  min-width: 16px;
}
.footer-contact-item a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}
.footer-bottom span { color: var(--orange); }

/* ── About Page ── */
.page-hero {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 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='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: white;
  font-weight: 700;
  position: relative;
  z-index: 1;
  margin-bottom: 12px;
}
.page-hero-title span { color: var(--orange); }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  position: relative;
  z-index: 1;
}
.breadcrumb a { color: var(--orange); }
.breadcrumb i { font-size: 0.7rem; }

/* ── Contact Page ── */
.contact-section { padding: 90px 0; background: var(--off-white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: start;
}
.contact-info-card {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  color: white;
}
.contact-info-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.contact-info-desc {
  font-size: 0.9rem;
  opacity: 0.85;
  margin-bottom: 32px;
  line-height: 1.65;
}
.contact-detail {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.contact-detail-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  background: rgba(255,255,255,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--orange);
}
.contact-detail-label {
  font-size: 0.75rem;
  opacity: 0.75;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.contact-detail-val {
  font-weight: 600;
  font-size: 0.92rem;
  line-height: 1.5;
}
.contact-detail-val a { color: white; }
.contact-detail-val a:hover { color: var(--orange); }

.form-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 38px;
  box-shadow: var(--shadow-md);
}
.form-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 8px;
}
.form-card-sub { color: var(--gray-600); font-size: 0.9rem; margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--gray-600);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: 'Outfit', sans-serif;
  font-size: 0.93rem;
  color: var(--gray-800);
  transition: var(--transition);
  outline: none;
  background: var(--off-white);
}
.form-control:focus {
  border-color: var(--green);
  background: white;
  box-shadow: 0 0 0 4px rgba(30,107,49,0.08);
}
textarea.form-control { resize: vertical; min-height: 120px; }
.form-submit {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: white;
  border: none;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.form-submit:hover {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  transform: translateY(-2px);
  box-shadow: var(--shadow-org);
}
.alert-success {
  background: var(--green-pale);
  color: var(--green);
  border: 1.5px solid rgba(30,107,49,0.2);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  margin-bottom: 20px;
  font-weight: 600;
  display: none;
  align-items: center;
  gap: 10px;
}
.alert-error {
  background: #fef2f2;
  color: #dc2626;
  border: 1.5px solid rgba(220,38,38,0.2);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  margin-bottom: 20px;
  font-weight: 600;
  display: none;
  align-items: center;
  gap: 10px;
}

/* ── Map ── */
.map-section { height: 400px; }
.map-section iframe { width: 100%; height: 100%; border: none; display: block; }

/* ── Admin ── */
.admin-login-wrap {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--green-dark), var(--dark));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.admin-login-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 44px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}
.admin-login-logo { text-align: center; margin-bottom: 30px; }
.admin-login-logo img { height: 55px; }
.admin-login-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green-dark);
  text-align: center;
  margin-bottom: 6px;
}
.admin-login-sub {
  text-align: center;
  color: var(--gray-600);
  font-size: 0.88rem;
  margin-bottom: 28px;
}

/* ── Scroll Top ── */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: var(--orange);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-org);
  transition: var(--transition);
  opacity: 0;
  transform: translateY(20px);
  z-index: 999;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--orange-dark); transform: translateY(-3px); }

/* ── WhatsApp Float ── */
.whatsapp-float {
  position: fixed;
  bottom: 90px;
  right: 28px;
  width: 54px;
  height: 54px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 6px 25px rgba(37,211,102,0.4);
  transition: var(--transition);
  z-index: 999;
  animation: waPulse 2s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.15); color: white; }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 6px 25px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 6px 40px rgba(37,211,102,0.7); }
}

/* ── Loader ── */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}
.loader-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(255,255,255,0.2);
  border-top-color: var(--orange);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.page-loader.fade-out { opacity: 0; pointer-events: none; }

/* ── 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; }

/* ── Responsive ── */
@media (max-width: 992px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-card { border-right: none; border-bottom: 1.5px solid rgba(255,255,255,0.25); }
  .stat-card:nth-child(even) { border-right: none; }
  .hero-content { grid-template-columns: 1fr; }
  .hero-card-wrap { display: none; }
  .why-content { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .navbar-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 270px;
    height: 100vh;
    background: white;
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 24px 30px;
    gap: 4px;
    box-shadow: var(--shadow-lg);
    transition: left 0.35s ease;
    z-index: 999;
    overflow-y: auto;
  }
  .navbar-nav.open { left: 0; }
  .navbar-nav .nav-link { width: 100%; padding: 12px 16px; font-size: 1rem; }
  .hamburger { display: flex; z-index: 1000; }
  .top-bar-left { font-size: 0.72rem; }
  .top-bar-right { font-size: 0.72rem; gap: 10px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .dest-grid { grid-template-columns: repeat(3, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .hero-content { padding: 60px 0; }
}
@media (max-width: 480px) {
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
}
