/* =========================================
   CROSS ROAD VOLUNTEERING - MAIN STYLESHEET
   ========================================= */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Open+Sans:wght@400;600&display=swap');

/* --- CSS Variables --- */
:root {
  --orange:     #e85d04;
  --orange-dark:#c44b00;
  --orange-light:#ff7b29;
  --green:      #2d6a4f;
  --green-dark: #1b4332;
  --green-light:#52b788;
  --white:      #ffffff;
  --light-bg:   #f8f5f0;
  --text-dark:  #1a1a1a;
  --text-gray:  #555555;
  --border:     #e0ddd8;
  --shadow:     0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg:  0 8px 40px rgba(0,0,0,0.15);
  --radius:     10px;
  --radius-lg:  18px;
  --transition: all 0.3s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
}

h1,h2,h3,h4,h5,h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-dark);
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =========================================
   TOP BAR
   ========================================= */
.top-bar {
  background: var(--green-dark);
  color: #cce8d9;
  font-size: 13px;
  padding: 7px 0;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.top-bar a { color: #cce8d9; }
.top-bar a:hover { color: var(--white); }
.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 18px;
}
.top-bar i { margin-right: 5px; color: var(--orange-light); }

/* =========================================
   HEADER / NAVBAR
   ========================================= */
header {
  background: var(--white);
  box-shadow: 0 2px 15px rgba(0,0,0,0.10);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 2px;
}
.logo img {
    width: 100px;
    height: auto;
    display: block;
}
.logo-text h1 {
  font-size: 24px;
  color: var(--green-dark);
  font-weight: 800;
  line-height: 1.1;
}
.logo-text span {
  font-size: 12px;
  color: var(--orange);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links > li {
  position: relative;
}
.nav-links > li > a {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  padding: 8px 14px;
  border-radius: 6px;
  display: block;
  white-space: nowrap;
}
.nav-links > li > a:hover,
.nav-links > li > a.active {
  color: var(--orange);
  background: #fff3ec;
}
.nav-links > li > a i {
  font-size: 11px;
  margin-left: 3px;
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius);
  min-width: 220px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
  z-index: 999;
  border-top: 3px solid var(--orange);
}
.nav-links li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: 9px 20px;
  font-size: 14px;
  color: var(--text-dark);
  font-weight: 500;
}
.dropdown a:hover {
  background: var(--light-bg);
  color: var(--orange);
  padding-left: 26px;
}

/* Apply Now Btn */
.btn-apply {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white) !important;
  padding: 10px 22px !important;
  border-radius: 25px !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 15px rgba(232,93,4,0.35);
}
.btn-apply:hover {
  background: linear-gradient(135deg, var(--orange-dark), #a33a00) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,93,4,0.45);
  color: var(--white) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
}
.hamburger span {
  width: 26px;
  height: 3px;
  background: var(--text-dark);
  border-radius: 3px;
  transition: var(--transition);
  display: block;
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--green-dark) 0%, #2d6a4f 60%, #1b4332 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('images/volunteer-with-school-children.jpeg') center/cover no-repeat;
  opacity: 0.22;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(27,67,50,0.92) 0%, rgba(27,67,50,0.65) 60%, rgba(27,67,50,0.2) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  color: var(--white);
  padding: 80px 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,123,41,0.2);
  border: 1px solid rgba(255,123,41,0.5);
  color: var(--orange-light);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 25px;
  margin-bottom: 22px;
  letter-spacing: 0.5px;
}
.hero-content h1 {
  font-size: clamp(34px, 5vw, 58px);
  color: var(--white);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.15;
}
.hero-content h1 span { color: var(--orange-light); }
.hero-content p {
  font-size: 17px;
  color: rgba(255,255,255,0.88);
  margin-bottom: 34px;
  line-height: 1.8;
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 50px;
  flex-wrap: wrap;
}
.hero-stat {
  text-align: center;
}
.hero-stat .num {
  font-family: 'Poppins', sans-serif;
  font-size: 30px;
  font-weight: 800;
  color: var(--orange-light);
}
.hero-stat .label {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
}

/* =========================================
   BUTTONS
   ========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 30px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-decoration: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  box-shadow: 0 4px 18px rgba(232,93,4,0.4);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(232,93,4,0.5);
  color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--green-dark);
  border-color: var(--white);
}
.btn-green {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--white);
  box-shadow: 0 4px 18px rgba(45,106,79,0.4);
}
.btn-green:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(45,106,79,0.5);
  color: var(--white);
}
.btn-sm {
  padding: 9px 20px;
  font-size: 13px;
}

/* =========================================
   SECTION COMMONS
   ========================================= */
section { padding: 80px 0; }
.section-alt { background: var(--light-bg); }

.section-header {
  text-align: center;
  margin-bottom: 55px;
}
.section-tag {
  display: inline-block;
  background: #fff3ec;
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.section-header h2 {
  font-size: clamp(26px, 3.5vw, 40px);
  color: var(--green-dark);
  margin-bottom: 14px;
}
.section-header p {
  color: var(--text-gray);
  max-width: 580px;
  margin: 0 auto;
  font-size: 16px;
}
.divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(to right, var(--orange), var(--orange-light));
  border-radius: 4px;
  margin: 14px auto 0;
}

/* =========================================
   STATS BAR
   ========================================= */
.stats-bar {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  padding: 40px 0;
  color: var(--white);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat-item {
  padding: 20px;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.stat-item:last-child { border-right: none; }
.stat-item .num {
  font-family: 'Poppins', sans-serif;
  font-size: 38px;
  font-weight: 800;
  color: var(--orange-light);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-item .lbl {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

/* =========================================
   PROGRAMS CARDS
   ========================================= */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.program-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border);
}
.program-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.program-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: var(--transition);
}
.program-card:hover img { transform: scale(1.05); }
.program-card-img { overflow: hidden; }
.program-card-body {
  padding: 24px;
}
.program-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
  margin-bottom: 14px;
  margin-top: -44px;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 15px rgba(232,93,4,0.4);
}
.program-card-body h3 {
  font-size: 18px;
  color: var(--green-dark);
  margin-bottom: 10px;
}
.program-card-body p {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 16px;
}
.program-card-body a {
  color: var(--orange);
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.program-card-body a:hover { gap: 10px; }

/* =========================================
   DESTINATIONS GRID
   ========================================= */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.dest-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 260px;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.dest-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.dest-card:hover img { transform: scale(1.1); }
.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27,67,50,0.92) 0%, rgba(27,67,50,0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  color: var(--white);
  transition: var(--transition);
}
.dest-card:hover .dest-overlay { background: linear-gradient(to top, rgba(232,93,4,0.88) 0%, rgba(232,93,4,0.3) 60%, transparent 100%); }
.dest-overlay h3 { font-size: 18px; margin-bottom: 4px; }
.dest-overlay span { font-size: 13px; opacity: 0.85; }
.dest-region {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  backdrop-filter: blur(4px);
}

/* =========================================
   WHY CHOOSE US
   ========================================= */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.why-card {
  text-align: center;
  padding: 40px 28px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--orange-light);
}
.why-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #fff3ec, #ffe5cc);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--orange);
  margin: 0 auto 20px;
  transition: var(--transition);
}
.why-card:hover .why-icon {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
}
.why-card h3 { font-size: 17px; color: var(--green-dark); margin-bottom: 10px; }
.why-card p { font-size: 14px; color: var(--text-gray); line-height: 1.7; }

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  position: relative;
  transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.testimonial-card::before {
  content: '\201C';
  font-size: 80px;
  color: var(--orange-light);
  font-family: Georgia, serif;
  line-height: 0.8;
  position: absolute;
  top: 20px;
  left: 26px;
  opacity: 0.25;
}
.testimonial-text {
  font-style: italic;
  color: var(--text-gray);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}
.testimonial-author h4 { font-size: 15px; color: var(--green-dark); margin-bottom: 2px; }
.testimonial-author span { font-size: 13px; color: var(--orange); font-weight: 600; }
.stars { color: #f4a000; font-size: 14px; margin-bottom: 4px; }

/* =========================================
   CTA BANNER
   ========================================= */
.cta-section {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  text-align: center;
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}
.cta-section h2 {
  font-size: clamp(26px, 3.5vw, 40px);
  color: var(--white);
  margin-bottom: 14px;
}
.cta-section p {
  font-size: 17px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 30px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.cta-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.btn-white {
  background: var(--white);
  color: var(--orange-dark);
  font-weight: 700;
}
.btn-white:hover {
  background: var(--light-bg);
  transform: translateY(-3px);
  color: var(--orange-dark);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.15); color: var(--white); }

/* =========================================
   PAGE BANNER / HERO
   ========================================= */
.page-banner {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  color: var(--white);
  padding: 70px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/volunteer-teaching-school.jpeg') center/cover no-repeat;
  opacity: 0.12;
}
.page-banner-content { position: relative; z-index: 1; }
.page-banner h1 {
  font-size: clamp(30px, 4vw, 50px);
  color: var(--white);
  margin-bottom: 12px;
}
.page-banner p {
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin: 0 auto 18px;
}
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}
.breadcrumb a { color: var(--orange-light); }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* =========================================
   FEES TABLE
   ========================================= */
.fees-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
  justify-content: center;
}
.fee-tab {
  padding: 10px 24px;
  border-radius: 25px;
  border: 2px solid var(--border);
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  color: var(--text-gray);
  transition: var(--transition);
  background: var(--white);
}
.fee-tab.active, .fee-tab:hover {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.fees-table-wrap { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow); }
.fees-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
}
.fees-table th {
  background: var(--green-dark);
  color: var(--white);
  padding: 14px 18px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
}
.fees-table td {
  padding: 13px 18px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-dark);
}
.fees-table tr:nth-child(even) td { background: var(--light-bg); }
.fees-table tr:hover td { background: #fff3ec; color: var(--orange-dark); }
.fees-table td:first-child { font-weight: 600; text-align: left; color: var(--green-dark); }

/* =========================================
   FAQ ACCORDION
   ========================================= */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 14px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  overflow: hidden;
}
.faq-question {
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--green-dark);
  transition: var(--transition);
}
.faq-question:hover { background: var(--light-bg); color: var(--orange); }
.faq-question.active { background: var(--green-dark); color: var(--white); }
.faq-icon {
  width: 28px;
  height: 28px;
  background: var(--light-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 16px;
  flex-shrink: 0;
  transition: var(--transition);
}
.faq-question.active .faq-icon {
  background: rgba(255,255,255,0.2);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-answer.open { max-height: 500px; }
.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.8;
}

/* =========================================
   CONTACT PAGE
   ========================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 22px; }
.contact-info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.contact-info-card:hover { border-color: var(--orange-light); transform: translateX(5px); }
.contact-info-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
  flex-shrink: 0;
}
.contact-info-text h4 { font-size: 15px; color: var(--green-dark); margin-bottom: 4px; }
.contact-info-text p, .contact-info-text a { font-size: 14px; color: var(--text-gray); line-height: 1.6; }
.contact-info-text a:hover { color: var(--orange); }

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.contact-form h3 { font-size: 22px; color: var(--green-dark); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  font-family: 'Open Sans', sans-serif;
  color: var(--text-dark);
  background: var(--light-bg);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(232,93,4,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* =========================================
   APPLY STEPS
   ========================================= */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(to right, var(--orange), var(--green));
  z-index: 0;
}
.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  margin: 0 auto 20px;
  box-shadow: 0 6px 20px rgba(232,93,4,0.4);
  border: 4px solid var(--white);
}
.step-card h3 { font-size: 16px; color: var(--green-dark); margin-bottom: 8px; }
.step-card p { font-size: 14px; color: var(--text-gray); }

/* =========================================
   ABOUT PAGE SECTIONS
   ========================================= */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-intro img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.about-text .section-tag { text-align: left; }
.about-text h2 { font-size: clamp(24px, 3vw, 36px); color: var(--green-dark); margin-bottom: 16px; }
.about-text p { font-size: 15px; color: var(--text-gray); margin-bottom: 14px; line-height: 1.8; }
.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 20px 0;
}
.highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--green-dark);
}
.highlight-item i { color: var(--orange); }

/* =========================================
   GETTING STARTED
   ========================================= */
.getting-started-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.gs-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--orange);
  transition: var(--transition);
}
.gs-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.gs-item h3 {
  font-size: 17px;
  color: var(--green-dark);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.gs-item h3 i { color: var(--orange); font-size: 20px; }
.gs-item p { font-size: 14px; color: var(--text-gray); line-height: 1.7; }

/* =========================================
   PROGRAMS DETAIL PAGE
   ========================================= */
.programs-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.prog-detail-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
}
.prog-detail-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.prog-detail-icon-wrap {
  width: 90px;
  min-height: 100%;
  background: linear-gradient(180deg, var(--green-dark), var(--green));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: var(--white);
  flex-shrink: 0;
}
.prog-detail-body { padding: 22px; }
.prog-detail-body h3 { font-size: 17px; color: var(--green-dark); margin-bottom: 8px; }
.prog-detail-body p { font-size: 14px; color: var(--text-gray); line-height: 1.7; margin-bottom: 12px; }
.prog-detail-body ul { padding-left: 18px; }
.prog-detail-body ul li { font-size: 14px; color: var(--text-gray); margin-bottom: 5px; list-style: disc; }

/* =========================================
   FOOTER
   ========================================= */
footer {
  background: var(--green-dark);
  color: rgba(255,255,255,0.85);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo-text h1 { color: var(--white); font-size: 20px; }
.footer-brand .logo-text span { color: var(--orange-light); }
.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin: 16px 0 20px;
}
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 16px;
  transition: var(--transition);
}
.social-link:hover { background: var(--orange); transform: translateY(-3px); }

.footer-col h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 3px;
  background: var(--orange);
  border-radius: 3px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-col ul li a:hover { color: var(--orange-light); padding-left: 6px; }
.footer-col ul li a i { font-size: 12px; color: var(--orange); }

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  align-items: flex-start;
}
.footer-contact-item i {
  color: var(--orange-light);
  margin-top: 3px;
  font-size: 15px;
  flex-shrink: 0;
}
.footer-contact-item p, .footer-contact-item a {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}
.footer-contact-item a:hover { color: var(--orange-light); }

.footer-bottom {
  padding: 18px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}
.footer-bottom a { color: var(--orange-light); }
.footer-bottom a:hover { color: var(--white); }

/* =========================================
   SCROLL TO TOP BUTTON
   ========================================= */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(232,93,4,0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  border: none;
}
.scroll-top.show { opacity: 1; visibility: visible; }
.scroll-top:hover { transform: translateY(-4px); }

/* =========================================
   WHATSAPP FLOAT - separated from scroll btn
   ========================================= */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 88px;
  width: 54px;
  height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 26px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  z-index: 999;
  transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1) translateY(-3px); }

/* =========================================
   UTILITIES
   ========================================= */
.text-center { text-align: center; }
.text-orange { color: var(--orange); }
.text-green { color: var(--green-dark); }
.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }

/* =========================================
   RESPONSIVE
   ========================================= */

/* Tablet */
@media (max-width: 1024px) {
  .programs-grid { grid-template-columns: repeat(2, 1fr); }
  .destinations-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-intro { grid-template-columns: 1fr; }
  .about-intro img { height: 320px; }
  .contact-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
}

/* Mobile */
@media (max-width: 768px) {
  section { padding: 55px 0; }

  /* Header */
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 24px 30px;
    overflow-y: auto;
    z-index: 9999;
    gap: 4px;
  }
  .nav-links.open { display: flex; }
  .nav-links > li > a { font-size: 16px; padding: 12px 16px; width: 100%; border-radius: 8px; }
  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-left: 3px solid var(--orange);
    border-radius: 0;
    margin-left: 16px;
    padding: 6px 0;
    display: none;
  }
  .nav-links li.open-sub .dropdown { display: block; }
  .close-nav {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-dark);
  }

  /* Hero */
  .hero { min-height: 70vh; }
  .hero-content { padding: 60px 0; }
  .hero-stats { gap: 20px; }
  .hero-stat .num { font-size: 24px; }

  /* Grids */
  .programs-grid { grid-template-columns: 1fr; }
  .destinations-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .steps-grid { grid-template-columns: 1fr; }
  .programs-detail-grid { grid-template-columns: 1fr; }
  .getting-started-list { grid-template-columns: 1fr; }
  .about-highlights { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  /* Top bar */
  .top-bar-right { display: none; }

  /* Contact form */
  .contact-form { padding: 24px 18px; }

  /* Stat item */
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); }
  .stat-item:last-child { border-bottom: none; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .destinations-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 14px; }
  .cta-btns { flex-direction: column; align-items: center; }
  .stats-grid { grid-template-columns: 1fr; }
}


/* =========================================
   GLASSMORPHISM & TRENDING EFFECTS
   ========================================= */

/* Glass cards on program cards */
.program-card {
  background: rgba(255,255,255,0.85) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.4) !important;
}

/* Glass effect on why-cards */
.why-card {
  background: rgba(255,255,255,0.88) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.35) !important;
}

/* Glass testimonial cards */
.testimonial-card {
  background: rgba(255,255,255,0.88) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.35) !important;
}

/* Glassmorphism hero badge */
.hero-badge {
  background: rgba(255,255,255,0.12) !important;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.25) !important;
}

/* Glassmorphism header on scroll */
header {
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(255,255,255,0.92) !important;
}

/* Glow effect on primary buttons */
.btn-primary {
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 200%;
  height: 200%;
  background: linear-gradient(120deg, rgba(255,255,255,0) 30%, rgba(255,255,255,0.25) 50%, rgba(255,255,255,0) 70%);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}
.btn-primary:hover::after { left: 100%; }

/* Shimmer effect on section tags */
.section-tag {
  position: relative;
  overflow: hidden;
}
.section-tag::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
  animation: shimmer 2.5s infinite;
}
@keyframes shimmer {
  0%   { left: -100%; }
  100% { left: 200%; }
}

/* Floating animation on hero stats */
.hero-stat {
  animation: floatUp 3s ease-in-out infinite;
}
.hero-stat:nth-child(2) { animation-delay: 0.3s; }
.hero-stat:nth-child(3) { animation-delay: 0.6s; }
.hero-stat:nth-child(4) { animation-delay: 0.9s; }
@keyframes floatUp {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

/* Gradient border on program cards hover */
.program-card:hover {
  border-color: transparent !important;
  background: linear-gradient(white,white) padding-box,
              linear-gradient(135deg, var(--orange), var(--green)) border-box !important;
  border: 2px solid transparent !important;
}

/* Trending: smooth image zoom on dest cards */
.dest-card img {
  transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94) !important;
}
.dest-card:hover img { transform: scale(1.12) !important; }

/* Stats bar number glow */
.stat-item .num, .hero-stat .num {
  text-shadow: 0 0 20px rgba(255,123,41,0.5);
}

/* Glass contact form */
.contact-form {
  background: rgba(255,255,255,0.92) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

/* Gradient text on logo */
.logo-text h1 {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Page banner glass overlay */
.page-banner {
  position: relative;
}
.page-banner-content {
  position: relative;
  z-index: 2;
}

/* Trending: card tilt effect */
.why-card, .program-card, .testimonial-card {
  transform-style: preserve-3d;
}

/* Apply Now button - normal style */
.btn-apply {
  box-shadow: 0 4px 15px rgba(232,93,4,0.35);
}

/* WhatsApp pulse animation */
.whatsapp-float {
  animation: waPulse 2s ease-in-out infinite;
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
  50%       { box-shadow: 0 4px 30px rgba(37,211,102,0.85); }
}

/* =========================================
   PRELOADER
   ========================================= */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--green-dark);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
#preloader.hide {
  opacity: 0;
  visibility: hidden;
}
.preloader-logo {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 30px;
  letter-spacing: 2px;
}
.preloader-logo span { color: var(--orange-light); }
.preloader-bar {
  width: 200px;
  height: 4px;
  background: rgba(255,255,255,0.2);
  border-radius: 4px;
  overflow: hidden;
}
.preloader-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  border-radius: 4px;
  animation: loadBar 1.8s ease forwards;
}
@keyframes loadBar {
  0%   { width: 0%; }
  100% { width: 100%; }
}

/* =========================================
   SCROLL REVEAL ANIMATIONS
   ========================================= */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delays for grid items */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* =========================================
   CUSTOM CURSOR
   ========================================= */
.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease;
}
.cursor-ring {
  width: 36px;
  height: 36px;
  border: 2px solid rgba(232,93,4,0.5);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 99997;
  transform: translate(-50%, -50%);
  transition: all 0.15s ease;
}
body:hover .cursor-dot,
body:hover .cursor-ring { opacity: 1; }

/* =========================================
   HERO FULL SCREEN UPGRADE
   ========================================= */
.hero {
  min-height: 100vh !important;
}
.hero-content h1 {
  font-size: clamp(38px, 5.5vw, 64px) !important;
  letter-spacing: -1px;
}

/* =========================================
   SECTION DIVIDER WAVE
   ========================================= */
.wave-divider {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-bottom: -2px;
}
.wave-divider svg {
  display: block;
  width: 100%;
  height: 60px;
}

/* =========================================
   IMPROVED CARDS - 3D TILT
   ========================================= */
.program-card,
.why-card,
.dest-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}
.program-card:hover,
.why-card:hover {
  transform: translateY(-10px) rotate3d(1, 1, 0, 1deg) !important;
}

/* =========================================
   GRADIENT SECTION BACKGROUNDS
   ========================================= */
.section-alt {
  background: linear-gradient(135deg, #f8f5f0 0%, #f0ece4 100%) !important;
  position: relative;
}

/* =========================================
   ACTIVE NAV UNDERLINE EFFECT
   ========================================= */
.nav-links > li > a:not(.btn-apply) {
  position: relative;
}
.nav-links > li > a:not(.btn-apply)::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  right: 50%;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transition: left 0.3s ease, right 0.3s ease;
}
.nav-links > li > a:not(.btn-apply):hover::after,
.nav-links > li > a.active::after {
  left: 14px;
  right: 14px;
}

/* =========================================
   FOOTER BRAND LOGO STYLE
   ========================================= */
.footer-brand .logo-text h1 {
  background: linear-gradient(135deg, #fff, #cce8d9) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}
