/* ===== CSS RESET & VARIABLES ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #084af3;
  --primary-dark: #0639c4;
  --primary-light: #3a6ff5;
  --primary-glow: rgba(8, 74, 243, 0.15);
  --white: #ffffff;
  --off-white: #f7f8fc;
  --light-gray: #eef1f8;
  --gray: #6b7280;
  --dark-gray: #1f2937;
  --black: #111827;
  --success: #10b981;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.12);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
}

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

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--dark-gray);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

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

ul {
  list-style: none;
}

/* ===== UTILITY ===== */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  text-align: center;
  margin-bottom: 48px;
}

.section-title h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
}

.section-title p {
  color: var(--gray);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 16px auto 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 34px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
}

.btn i {
  font-size: 1.15rem;
  transition: transform var(--transition);
}

.btn:hover i {
  transform: translateX(3px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(8, 74, 243, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(8, 74, 243, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(8, 74, 243, 0.3);
}

.btn-white {
  background: var(--white);
  color: var(--primary);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all var(--transition);
  border-bottom: 1px solid transparent;
}

.header.scrolled {
  box-shadow: var(--shadow-md);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.logo img {
  width: 122px;
  height: 60px;
  object-fit: contain;
}

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

.nav-links a {
  padding: 8px 16px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--dark-gray);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width var(--transition);
  border-radius: 1px;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 60%;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a.active {
  color: var(--primary);
  font-weight: 600;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--dark-gray);
  border-radius: 2px;
  transition: all var(--transition);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(8, 74, 243, 0.85), rgba(8, 74, 243, 0.6)),
              url('../Images/Hero Section.jpg') center/cover no-repeat;
  color: var(--white);
  text-align: center;
  padding: 120px 20px 80px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(to top, var(--white), transparent);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  animation: heroFadeIn 1s ease forwards;
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-content h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -1px;
}

.hero-content .tagline {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 300;
  margin-bottom: 20px;
  opacity: 0.9;
  font-style: italic;
}

.hero-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  opacity: 0.9;
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== PAGE HERO (Inner pages) ===== */
.page-hero {
  position: relative;
  padding: 160px 20px 80px;
  text-align: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: linear-gradient(to top, var(--white), transparent);
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--white);
  margin-bottom: 12px;
}

.page-hero p {
  font-size: 1.1rem;
  opacity: 0.85;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== ABOUT SECTION (Home) ===== */
.about-section {
  padding: 80px 0;
}

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

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-image:hover img {
  transform: scale(1.03);
}

.about-text h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 20px;
}

.about-text p {
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 24px;
}

/* ===== WHY CHOOSE US ===== */
.why-section {
  padding: 80px 0;
  background: var(--off-white);
}

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

.why-card {
  background: var(--white);
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: all var(--transition);
  border: 1px solid transparent;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-glow);
}

.why-card .icon {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  font-size: 1.5rem;
  color: var(--white);
  box-shadow: 0 6px 20px rgba(8, 74, 243, 0.25);
  transition: transform var(--transition), box-shadow var(--transition);
}

.why-card:hover .icon {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 28px rgba(8, 74, 243, 0.35);
}

.why-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.why-card p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.testimonials-section .section-title h2 {
  color: var(--white);
}

.testimonials-section .section-title h2::after {
  background: var(--white);
}

.testimonials-section .section-title p {
  color: rgba(255, 255, 255, 0.8);
}

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

.testimonial-card {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: all var(--transition);
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-4px);
}

.testimonial-card .quote {
  font-size: 2.2rem;
  line-height: 1;
  margin-bottom: 12px;
  opacity: 0.7;
  color: rgba(255,255,255,0.9);
}

.testimonial-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
  opacity: 0.9;
  font-style: italic;
}

.testimonial-card .author {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  opacity: 1;
}

/* ===== CONTACT/QUERY FORM SECTION ===== */
.query-section {
  padding: 80px 0;
  background: var(--off-white);
}

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

.query-info h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 16px;
}

.query-info p {
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 24px;
}

.query-form {
  background: var(--white);
  padding: 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--dark-gray);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.95rem;
  border: 2px solid var(--light-gray);
  border-radius: var(--radius-sm);
  background: var(--off-white);
  color: var(--dark-gray);
  transition: all var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 4px var(--primary-glow);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-submit {
  width: 100%;
  padding: 16px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.form-submit:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(8, 74, 243, 0.4);
}

.form-submit i {
  font-size: 1.15rem;
}

/* ===== CONTENT PAGE ===== */
.content-page {
  padding: 60px 0 80px;
}

.content-wrapper {
  max-width: 820px;
  margin: 0 auto;
}

.content-wrapper h2 {
  font-size: clamp(1.3rem, 3vw, 1.75rem);
  margin: 40px 0 16px;
  color: var(--primary);
}

.content-wrapper h3 {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  margin: 28px 0 12px;
  color: var(--dark-gray);
}

.content-wrapper p {
  color: var(--gray);
  line-height: 1.85;
  margin-bottom: 16px;
}

.content-wrapper ul,
.content-wrapper ol {
  margin: 12px 0 20px 24px;
  color: var(--gray);
  line-height: 2;
}

.content-wrapper ul li {
  list-style: disc;
}

.content-wrapper ol li {
  list-style: decimal;
}

.content-wrapper a {
  color: var(--primary);
}

.content-wrapper a:hover {
  text-decoration: underline;
}

.content-hero-image {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin: 0 0 40px;
  box-shadow: var(--shadow-lg);
}

/* ===== FAQ SECTION ===== */
.faq-section {
  padding: 60px 0 80px;
  background: var(--off-white);
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-gray);
  transition: all var(--transition);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark-gray);
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--primary);
}

.faq-question .arrow {
  font-size: 1.2rem;
  transition: transform var(--transition);
  color: var(--primary);
}

.faq-item.active .faq-question .arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 24px;
}

.faq-answer p {
  color: var(--gray);
  line-height: 1.8;
  padding-bottom: 18px;
}

.faq-item.active .faq-answer {
  max-height: 400px;
}

/* ===== GUIDE CARDS ===== */
.guides-section {
  padding: 60px 0 80px;
}

.guide-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  align-items: start;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 40px;
  transition: all var(--transition);
}

.guide-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.guide-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
}

.guide-info {
  padding: 32px 32px 32px 0;
}

.guide-info h3 {
  font-size: 1.4rem;
  margin-bottom: 4px;
}

.guide-info .role {
  color: var(--primary);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 16px;
  display: block;
}

.guide-info p {
  color: var(--gray);
  line-height: 1.8;
}

/* ===== BOOKING FORM ===== */
.booking-section {
  padding: 80px 0;
  background: var(--off-white);
}

.booking-cta {
  text-align: center;
  padding: 48px 32px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: var(--radius-xl);
  color: var(--white);
  margin-bottom: 48px;
}

.booking-cta h2 {
  color: var(--white);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin-bottom: 12px;
}

.booking-cta p {
  opacity: 0.9;
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto;
}

.booking-form-container {
  max-width: 700px;
  margin: 0 auto;
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.booking-form-container h3 {
  text-align: center;
  font-size: 1.4rem;
  margin-bottom: 28px;
  color: var(--primary);
}

/* ===== CONTACT PAGE ===== */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.contact-card {
  background: var(--white);
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: all var(--transition);
  border: 1px solid var(--light-gray);
}

.contact-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--primary-glow);
}

.contact-card .icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.4rem;
  color: var(--white);
  box-shadow: 0 6px 20px rgba(8, 74, 243, 0.25);
  transition: transform var(--transition);
}

.contact-card:hover .icon {
  transform: translateY(-4px) rotate(-5deg);
}

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

.contact-card p,
.contact-card a {
  color: var(--gray);
  font-size: 0.95rem;
}

.contact-card a:hover {
  color: var(--primary);
}

.contact-social {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 12px;
}

.contact-social a {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  font-size: 1.2rem;
  box-shadow: 0 4px 14px rgba(8, 74, 243, 0.25);
}

.contact-social a.whatsapp-social {
  background: linear-gradient(135deg, #25d366, #128c48);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.contact-social a:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 6px 20px rgba(8, 74, 243, 0.35);
}

.contact-social a.whatsapp-social:hover {
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--primary);
  color: var(--white);
  padding: 64px 0 0;
}

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

.footer-brand p {
  opacity: 0.85;
  line-height: 1.7;
  margin: 16px 0 24px;
}

.footer-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 28px;
  background: linear-gradient(135deg, #25d366, #128c48);
  color: var(--white);
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

.footer-whatsapp-btn i {
  font-size: 1.2rem;
}

.footer-whatsapp-btn:hover {
  background: linear-gradient(135deg, #1fb855, #0e7a3a);
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
}

.footer h4 {
  font-size: 1.05rem;
  margin-bottom: 20px;
  color: var(--white);
  position: relative;
  padding-bottom: 10px;
}

.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 1px;
}

.footer-links a {
  display: block;
  padding: 6px 0;
  font-size: 0.9rem;
  opacity: 0.8;
  transition: all var(--transition);
}

.footer-links a:hover {
  opacity: 1;
  padding-left: 6px;
}

.footer-contact-info p {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.9rem;
  opacity: 0.85;
  margin-bottom: 10px;
}

.footer-contact-info a {
  opacity: 0.85;
}

.footer-contact-info a:hover {
  opacity: 1;
}

.footer-bottom {
  text-align: center;
  padding: 20px 0;
  font-size: 0.85rem;
  opacity: 0.75;
}

.footer-bottom a {
  color: var(--white);
  font-weight: 600;
  opacity: 1;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* ===== FLOATING BUTTONS ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  left: 24px;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, #25d366, #128c48);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.65rem;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  transition: all var(--transition);
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 20px;
  background: rgba(37, 211, 102, 0.25);
  animation: whatsappPulse 2s ease-in-out infinite;
  z-index: -1;
}

@keyframes whatsappPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.15); opacity: 0; }
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.5);
  border-radius: 18px;
}

.whatsapp-float:hover::before {
  animation: none;
  opacity: 0;
}

.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 999;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  box-shadow: 0 4px 18px rgba(8, 74, 243, 0.3);
  transition: all var(--transition);
  opacity: 0;
  pointer-events: none;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover {
  transform: translateY(-4px) scale(1.05);
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  box-shadow: 0 8px 24px rgba(8, 74, 243, 0.4);
}

/* ===== TRIP CONTENT EXTRAS ===== */
.trip-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 32px 0;
}

.trip-detail-card {
  background: var(--primary-glow);
  border: 1px solid rgba(8, 74, 243, 0.12);
  padding: 20px;
  border-radius: var(--radius-md);
  text-align: center;
}

.trip-detail-card h4 {
  color: var(--primary);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.trip-detail-card .value {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--black);
}

.itinerary-item {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--light-gray);
}

.itinerary-item:last-child {
  border-bottom: none;
}

.itinerary-day {
  min-width: 70px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--primary);
  font-size: 0.85rem;
  text-transform: uppercase;
}

.itinerary-desc h4 {
  font-size: 1rem;
  margin-bottom: 4px;
  color: var(--dark-gray);
}

.itinerary-desc p {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* included/excluded lists */
.include-exclude {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin: 32px 0;
}

.include-box, .exclude-box {
  padding: 24px;
  border-radius: var(--radius-md);
}

.include-box {
  background: rgba(16, 185, 129, 0.06);
  border: 1px solid rgba(16, 185, 129, 0.15);
}

.exclude-box {
  background: rgba(239, 68, 68, 0.06);
  border: 1px solid rgba(239, 68, 68, 0.15);
}

.include-box h3, .exclude-box h3 {
  font-size: 1.05rem;
  margin-bottom: 12px;
}

.include-box h3 { color: #10b981; }
.exclude-box h3 { color: #ef4444; }

.include-box ul li, .exclude-box ul li {
  list-style: none;
  padding: 4px 0;
  padding-left: 20px;
  position: relative;
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
}

.include-box ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: 700;
}

.exclude-box ul li::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: #ef4444;
  font-weight: 700;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 992px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 80px 28px 28px;
    gap: 4px;
    box-shadow: var(--shadow-xl);
    transition: right var(--transition);
    align-items: flex-start;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    width: 100%;
    padding: 14px 16px;
    font-size: 1rem;
    border-radius: var(--radius-sm);
  }

  .nav-links a:hover {
    background: var(--off-white);
  }

  .about-grid,
  .query-grid {
    grid-template-columns: 1fr;
  }

  .why-cards,
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

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

  .guide-card {
    grid-template-columns: 1fr;
  }

  .guide-card img {
    min-height: 260px;
    max-height: 340px;
  }

  .guide-info {
    padding: 0 24px 28px;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto 48px;
  }

  .trip-details {
    grid-template-columns: 1fr;
  }

  .include-exclude {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .hero {
    min-height: 90vh;
    padding: 100px 16px 60px;
  }

  .page-hero {
    padding: 130px 16px 60px;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .container {
    padding: 0 16px;
  }

  .about-section,
  .why-section,
  .testimonials-section,
  .query-section,
  .content-page,
  .guides-section,
  .booking-section,
  .faq-section {
    padding: 60px 0;
  }

  .section-title {
    margin-bottom: 36px;
  }

  .query-form,
  .booking-form-container {
    padding: 24px;
  }

  .booking-cta {
    padding: 32px 20px;
  }

  .whatsapp-float {
    width: 52px;
    height: 52px;
    bottom: 20px;
    left: 16px;
    font-size: 1.4rem;
    border-radius: 14px;
  }

  .whatsapp-float::before {
    border-radius: 18px;
  }

  .back-to-top {
    width: 44px;
    height: 44px;
    bottom: 20px;
    right: 16px;
    font-size: 1rem;
    border-radius: 12px;
  }
}

/* ===== OVERLAY FOR MOBILE NAV ===== */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.nav-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* ===== ABOUT US PAGE - NO IMAGES ===== */
.about-page-content {
  padding: 60px 0 80px;
}

.about-page-content .content-wrapper h2 {
  margin-top: 32px;
}

.about-page-content .content-wrapper h2:first-child {
  margin-top: 0;
}

/* ===== MISC ===== */
.mobile-overlay {
  display: none;
}

@media(max-width: 992px) {
  .mobile-overlay {
    display: block;
  }
}

.form-success {
  text-align: center;
  padding: 32px;
  color: var(--success);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}
