:root {
  /* Premium Trekking Color Palette */
  --primary: #12372A; /* Deep rich forest green */
  --primary-light: #436850;
  --primary-dark: #0A2218;
  --secondary: #ADBC9F; /* Soft sage */
  --accent: #FF9F1C; /* Warm sunset orange for CTAs */
  --accent-hover: #E88E12;
  --bg-color: #FAFAFA;
  --bg-light: #F4F6F5;
  
  --text-dark: #1A1A1A;
  --text-body: #4A5568;
  --text-light: #FBFADA;
  
  --surface: #FFFFFF;
  --surface-off: #F8F9FA;
  
  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.2);
  --glass-shadow: 0 8px 32px 0 rgba(18, 55, 42, 0.08);
  
  /* Shadows & Radius */
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;
  
  /* Fonts */
  --font-heading: 'Outfit', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Global */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-color);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

/* Typography Classes */
.text-body { color: var(--text-body); }
.text-white { color: #FFFFFF; }
.text-white-70 { color: rgba(255, 255, 255, 0.7); }
.text-accent { color: var(--accent); }
.text-center { text-align: center; }

/* Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 6rem 0;
}

.bg-light { background-color: var(--bg-light); }
.bg-primary { background-color: var(--primary); }

.w-full { width: 100%; }
.rounded-lg { border-radius: var(--radius-lg); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }

.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

/* Grids */
.grid {
  display: grid;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.gap-md { gap: 1.5rem; }
.gap-lg { gap: 3rem; }
.gap-xl { gap: 5rem; }

.align-center { align-items: center; }
.align-end { align-items: flex-end; }
.flex-between { display: flex; justify-content: space-between; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.9rem 2.25rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  outline: none;
  line-height: 1.2;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn:active {
  transform: translateY(0);
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1.1rem;
}

.btn-primary {
  background-color: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background-color: var(--accent-hover);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: #fff;
}

.btn-glass {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.25);
}

.btn-white {
  background-color: #fff;
  color: var(--primary);
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
  padding: 1.5rem 0;
}

/* Hide header at the top for Home and About pages */
.header.header-hidden-top:not(.scrolled) {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100%);
}

/* Hover reveal for Home/About pages */
.header-hover-trigger {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 999;
}

.header-hover-trigger:hover + .header.header-hidden-top,
.header.header-hidden-top:hover,
.header.header-hidden-top.scrolled {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
  background: var(--glass-bg) !important;
  backdrop-filter: blur(12px) !important;
  box-shadow: var(--glass-shadow) !important;
  border-bottom: 1px solid var(--glass-border) !important;
  padding: 0.75rem 0 !important;
}

.header-hover-trigger:hover + .header.header-hidden-top .nav-link,
.header.header-hidden-top:hover .nav-link,
.header.header-hidden-top.scrolled .nav-link,
.header-hover-trigger:hover + .header.header-hidden-top .search-toggle,
.header.header-hidden-top:hover .search-toggle,
.header.header-hidden-top.scrolled .search-toggle,
.header-hover-trigger:hover + .header.header-hidden-top .menu-toggle,
.header.header-hidden-top:hover .menu-toggle,
.header.header-hidden-top.scrolled .menu-toggle {
  color: var(--text-dark) !important;
}

.header-hover-trigger:hover + .header.header-hidden-top .brand-logo,
.header.header-hidden-top:hover .brand-logo,
.header.header-hidden-top.scrolled .brand-logo {
  height: 40px !important;
}

.header.scrolled {
  padding: 0.75rem 0;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  box-shadow: var(--glass-shadow);
  border-bottom: 1px solid var(--glass-border);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo {
  height: 48px;
  width: auto;
  transition: var(--transition);
}

.header.scrolled .brand-logo {
  height: 40px;
}

.nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 500;
  color: #fff;
  font-size: 1rem;
  position: relative;
}

.header.scrolled .nav-link {
  color: var(--text-dark);
}

/* Subpage Navbar Visibility */
.header.header-subpage:not(.scrolled) .nav-link,
.header.header-subpage:not(.scrolled) .search-toggle,
.header.header-subpage:not(.scrolled) .menu-toggle {
  color: var(--text-dark);
}

.nav-link.active {
  color: #88B04B !important; /* Lighter green for active state as in image */
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #88B04B;
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.search-toggle {
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.header.scrolled .search-toggle {
  color: var(--text-dark);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
}

.header.scrolled .menu-toggle {
  color: var(--text-dark);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 6rem;
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  overflow: hidden;
}

.hero-slider .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.5s ease, transform 6s linear;
}

.hero-slider .slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(10, 34, 24, 0.6) 0%, rgba(10, 34, 24, 0.8) 100%);
  z-index: -1;
}

.hero-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.badge-glow {
  background: rgba(255, 159, 28, 0.2);
  color: var(--accent);
  border: 1px solid rgba(255, 159, 28, 0.3);
  backdrop-filter: blur(4px);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(3rem, 5vw, 5rem);
  color: #fff;
  margin-top: 4rem;
  margin-bottom: 1.5rem;
}

.hero-description-wrapper {
  position: relative;
  max-width: 600px;
  margin: 0 auto 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.squiggle-arrow {
  position: absolute;
  left: -110px;
  top: -50px;
  transform: rotate(-5deg);
}

.hero-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
  line-height: 1.4;
  text-align: center;
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

/* Hero Features removed */



/* Section Headers */
.subtitle {
  display: block;
  font-family: var(--font-heading);
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 1.25rem;
}

.section-description {
  color: var(--text-body);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* About Section */
/* empty .about removed */

.check-list {
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
  color: var(--text-dark);
}

.check-list svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
}

.image-grid {
  position: relative;
  height: 500px;
}

.img-large {
  position: absolute;
  top: 0;
  right: 0;
  width: 80%;
  height: 90%;
  object-fit: cover;
}

.img-small {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50%;
  height: 50%;
  object-fit: cover;
  border: 8px solid var(--bg-color);
}

.experience-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--surface);
  width: 140px;
  height: 140px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--primary);
  text-align: center;
}

.experience-badge .number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.experience-badge .text {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-body);
  text-transform: uppercase;
}

/* Services */
.service-card {
  background: var(--surface);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid transparent;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(18, 55, 42, 0.1);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: rgba(18, 55, 42, 0.05);
  color: var(--primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--primary);
  color: #fff;
}

.service-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.service-desc {
  color: var(--text-body);
  font-size: 0.95rem;
}

/* Featured Tours */
.tourSwiper {
  padding: 2rem 1rem 4rem !important;
  margin: 0 -1rem;
}

.tours-header-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.swiper-nav-buttons {
  display: flex;
  gap: 1rem;
}

.swiper-button-prev-custom,
.swiper-button-next-custom {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid var(--primary);
  background: transparent;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10;
}

.swiper-button-prev-custom:hover,
.swiper-button-next-custom:hover {
  background: var(--primary);
  color: #fff;
}

.tour-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.tour-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.tour-img-wrapper {
  position: relative;
  height: 240px;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.tour-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.tour-card:hover .tour-img {
  transform: scale(1.05);
}

.tour-badges {
  position: absolute;
  top: 1rem;
  left: 1rem;
  right: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
}

.badge-tag {
  padding: 0.4rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.badge-tag.primary { background: #00A99D; color: #fff; } /* Teal like in screenshot */
.badge-tag.accent { background: #FF9F1C; color: #fff; }

.wishlist-btn {
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(4px);
  border: none;
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.wishlist-btn:hover {
  background: var(--accent);
}

.camera-badge {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: #fff;
  padding: 0.4rem 0.6rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary-light);
  box-shadow: var(--shadow-sm);
  z-index: 2;
}

.tour-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.tour-rating {
  display: flex;
  gap: 2px;
  margin-bottom: 0.75rem;
}

.tour-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #718096;
  margin-bottom: 0.75rem;
}

.tour-location svg {
  color: #48BB78;
}

.tour-title {
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
}

.tour-title a:hover {
  color: var(--primary);
}

.tour-price-box {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #718096;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #EDF2F7;
}

.tour-price-box svg {
  color: #48BB78;
}

.tour-price-box strong {
  color: var(--accent);
  font-size: 1.1rem;
  font-family: var(--font-heading);
}

.tour-footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tour-duration {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #718096;
  font-weight: 500;
}

.tour-duration svg {
  color: #48BB78;
}

.tour-explore {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  color: var(--text-dark);
  font-size: 0.9rem;
}

.tour-explore svg {
  transition: transform 0.3s ease;
}

.tour-explore:hover svg {
  transform: translateX(4px);
}

/* Assistance */
.assist-features {
  display: grid;
  gap: 1.5rem;
}

.assist-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.assist-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--secondary);
}

.assist-text h4 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.assist-text p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.glass-card {
  position: relative;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.floating-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--surface);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: float 3s ease-in-out infinite;
}

.floating-badge span {
  font-weight: 700;
  color: var(--text-dark);
  font-family: var(--font-heading);
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

/* CTA Section */
.cta-section {
  padding: 4rem 0;
  margin-top: -3rem; /* Overlap with previous section */
  position: relative;
  z-index: 10;
}

.cta-box {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: var(--radius-xl);
  padding: 3.5rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: var(--shadow-xl);
  color: #fff;
}

.cta-content h2 {
  color: #fff;
  font-size: clamp(2rem, 3vw, 2.5rem);
  margin-bottom: 0.5rem;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
}

/* Footer */
.footer {
  background-color: var(--primary-dark);
  color: rgba(255, 255, 255, 0.7);
  padding-top: 5rem;
  padding-bottom: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-logo {
  height: 48px;
  margin-bottom: 1.5rem;
}

.footer-desc {
  margin-bottom: 1.5rem;
  max-width: 300px;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-3px);
}

.footer-title {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background-color: var(--accent);
}

.footer-links {
  display: grid;
  gap: 0.85rem;
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 5px;
}

.footer-contact {
  display: grid;
  gap: 1rem;
}

.footer-contact li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.footer-contact svg {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a:hover {
  color: #fff;
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* Responsive */
@media (max-width: 1024px) {

  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .header-actions .btn { display: none; }
  .menu-toggle { display: block; }
  
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--surface);
    flex-direction: column;
    padding: 6rem 2rem 2rem;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    display: flex;
    align-items: flex-start;
  }
  
  .nav.open {
    right: 0;
  }
  
  .nav-link {
    color: var(--text-dark);
    font-size: 1.25rem;
  }
  
  .grid-2 { grid-template-columns: 1fr; }
  

  

  .image-grid { height: 400px; margin-top: 2rem; }
  
  .cta-box {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
    padding: 2.5rem 1.5rem;
  }
  
  .flex-between {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .d-none-mobile { display: none; }
  .d-show-mobile { display: block; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.5rem; }
  .hero-cta { flex-direction: column; width: 100%; }
  .hero-cta .btn { width: 100%; }
  
  .hero-features { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* WhatsApp Float & Language Switcher */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1) rotate(5deg);
  background-color: #128c7e;
}

.whatsapp-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background: #ff3b30;
  color: white;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  border: 2px solid #fff;
}

.language-switcher {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 1000;
}

.lang-btn {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.lang-btn:hover {
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.lang-btn img {
  border-radius: 2px;
}

/* Animations */
@keyframes reveal-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal.active {
  animation: reveal-up 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

/* Responsive Adjustments */
@media (max-width: 768px) {
  /* .nav visibility handled in previous media query */
  .menu-toggle { display: block; }
  .squiggle-arrow { display: none; }
  
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }
  .whatsapp-badge {
    width: 18px;
    height: 18px;
    font-size: 11px;
  }
}

/* Search Dropdown */
.header-actions {
  position: relative;
}

.search-container-small {
  position: absolute;
  top: 150%;
  right: 0;
  background: var(--surface);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  padding: 0.5rem;
  width: 250px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
  z-index: 1000;
  border: 1px solid rgba(0,0,0,0.05);
}

.search-container-small.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.search-form-small {
  display: flex;
  align-items: center;
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  padding: 0.25rem 0.5rem;
  border: 1px solid transparent;
  transition: var(--transition);
}

.search-form-small:focus-within {
  border-color: var(--accent);
  background: #fff;
}

.search-input-small {
  width: 100%;
  border: none;
  background: transparent;
  padding: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-dark);
  outline: none;
}

.search-submit-small {
  background: transparent;
  border: none;
  color: var(--primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem;
  transition: var(--transition);
}

.search-submit-small:hover {
  color: var(--accent);
}
