/* ============================================
   ONE WORLD HOLIDAYS — Design System
   ============================================ */

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

/* --- CSS Custom Properties --- */
:root {
  --primary: #F5A623;
  --primary-dark: #d4891a;
  --primary-light: #ffc964;
  --secondary: #1B9CFC;
  --secondary-dark: #0d7fd4;
  --secondary-light: #5ab8fd;
  --dark: #1a1a2e;
  --dark-2: #16213e;
  --dark-3: #0f3460;
  --text: #2d3748;
  --text-light: #718096;
  --text-lighter: #a0aec0;
  --white: #FFF9F0;
  --off-white: #FFF3E4;
  --gray-100: #edf2f7;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e0;
  --success: #38a169;
  --danger: #e53e3e;
  --gradient-primary: linear-gradient(135deg, #F5A623 0%, #ff6b35 100%);
  --gradient-secondary: linear-gradient(135deg, #1B9CFC 0%, #0d47a1 100%);
  --gradient-dark: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  --gradient-hero: linear-gradient(180deg, rgba(26,26,46,0.7) 0%, rgba(26,26,46,0.3) 50%, rgba(26,26,46,0.7) 100%);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 14px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.2);
  --shadow-card: 0 8px 30px rgba(0,0,0,0.08);
  --shadow-card-hover: 0 16px 50px rgba(0,0,0,0.15);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1280px;
  --header-height: 80px;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.3;
  color: var(--dark);
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section-dark {
  background: var(--dark);
  color: var(--white);
}

.section-gray {
  background: var(--off-white);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .label {
  display: inline-block;
  background: var(--gradient-primary);
  color: var(--white);
  padding: 6px 20px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: 2.8rem;
  margin-bottom: 16px;
}

.section-dark .section-header h2 {
  color: var(--white);
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 650px;
  margin: 0 auto;
}

.section-dark .section-header p {
  color: var(--text-lighter);
}

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

.header.scrolled {
  box-shadow: var(--shadow-md);
  border-bottom: 1px solid var(--gray-200);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1001;
}

.logo img {
  height: 55px;
  width: auto;
}

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

.nav a, .nav .dropdown > span {
  padding: 10px 16px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav a:hover, .nav .dropdown:hover > span {
  color: var(--primary);
  background: rgba(245,166,35,0.08);
}

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

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown > span::after {
  content: '';
  border: solid var(--text-light);
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 2.5px;
  transform: rotate(45deg);
  margin-top: -2px;
  transition: var(--transition);
}

.dropdown:hover > span::after {
  transform: rotate(-135deg);
  border-color: var(--primary);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 999;
  border: 1px solid var(--gray-100);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 10px 16px;
  font-size: 0.88rem;
  border-radius: var(--radius-sm);
  color: var(--text);
}

.dropdown-menu a:hover {
  background: var(--off-white);
  color: var(--primary);
  padding-left: 22px;
}

.dropdown-menu .dropdown-divider {
  height: 1px;
  background: var(--gray-200);
  margin: 6px 8px;
}

.dropdown-menu .dropdown-label {
  display: block;
  padding: 6px 16px 2px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-lighter);
  pointer-events: none;
}

.dropdown-menu .dropdown-sub {
  padding-left: 28px;
  font-size: 0.82rem;
  color: var(--text-light);
}

.dropdown-menu .dropdown-sub:hover {
  padding-left: 34px;
}

/* CTA button in nav */
.nav .btn-cta {
  background: var(--gradient-primary);
  color: #fff !important;
  padding: 12px 28px;
  border-radius: var(--radius-xl);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 18px rgba(245,166,35,0.45);
  animation: ctaPulse 2s ease-in-out infinite;
  text-transform: uppercase;
}

.nav .btn-cta:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 30px rgba(245,166,35,0.6);
  background: var(--gradient-primary) !important;
  animation: none;
}

@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 4px 18px rgba(245,166,35,0.45); }
  50% { box-shadow: 0 4px 25px rgba(245,166,35,0.7), 0 0 40px rgba(245,166,35,0.2); }
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  padding: 8px;
}

.hamburger span {
  width: 26px;
  height: 2.5px;
  background: var(--dark);
  border-radius: 3px;
  transition: var(--transition);
}

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

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

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

/* --- HERO SLIDER --- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  max-height: 900px;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  text-align: center;
  color: var(--white);
  padding: 0 24px;
  max-width: 800px;
  animation: fadeInUp 1s ease;
}

.hero-content .tagline {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 500;
  margin-bottom: 16px;
  color: var(--primary-light);
}

.hero-content h1 {
  font-size: 3.8rem;
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 36px;
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.hero-dot.active {
  background: var(--primary);
  transform: scale(1.3);
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-xl);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(245,166,35,0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(245,166,35,0.5);
}

.btn-secondary {
  background: var(--gradient-secondary);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(27,156,252,0.35);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(27,156,252,0.5);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}

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

.btn-outline-dark:hover {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}

.btn-white {
  background: var(--white);
  color: var(--dark);
}

.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* --- CARDS --- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 30px;
}

.card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  position: relative;
}

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

.card-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.card:hover .card-image img {
  transform: scale(1.08);
}

.card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gradient-primary);
  color: var(--white);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.card-body {
  padding: 24px;
}

.card-body h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
  font-family: 'Playfair Display', serif;
}

.card-body p {
  color: var(--text-light);
  font-size: 0.92rem;
  margin-bottom: 16px;
  line-height: 1.6;
}

.card-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
  font-size: 0.85rem;
  color: var(--text-light);
}

.card-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.card-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
}

.card-price small {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-light);
}

/* --- PRICING TABLE --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 960px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  position: relative;
  border: 2px solid transparent;
}

.pricing-card.featured {
  border-color: var(--primary);
  transform: scale(1.05);
}

.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: var(--white);
  padding: 5px 20px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
}

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

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-5px);
}

.pricing-card h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.pricing-card .price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  margin: 16px 0;
  font-family: 'Inter', sans-serif;
}

.pricing-card .price small {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-light);
}

.pricing-card ul {
  text-align: left;
  margin: 24px 0 32px;
}

.pricing-card ul li {
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--text-light);
  border-bottom: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  gap: 8px;
}

.pricing-card ul li::before {
  content: '✓';
  color: var(--success);
  font-weight: 700;
}

/* --- ITINERARY --- */
.itinerary {
  max-width: 800px;
  margin: 0 auto;
}

.itinerary-day {
  display: flex;
  gap: 24px;
  margin-bottom: 0;
  position: relative;
}

.itinerary-day::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 50px;
  bottom: -20px;
  width: 2px;
  background: var(--gray-200);
}

.itinerary-day:last-child::before {
  display: none;
}

.itinerary-marker {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  z-index: 2;
}

.itinerary-content {
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 24px;
  flex: 1;
  margin-bottom: 20px;
}

.itinerary-content h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

.itinerary-content p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* --- TESTIMONIALS --- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px;
  box-shadow: var(--shadow-card);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-size: 5rem;
  color: var(--primary);
  opacity: 0.15;
  position: absolute;
  top: 10px;
  left: 20px;
  font-family: 'Playfair Display', serif;
  line-height: 1;
}

.testimonial-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
}

.testimonial-info h4 {
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

.testimonial-info span {
  font-size: 0.82rem;
  color: var(--text-lighter);
}

.stars {
  color: var(--primary);
  font-size: 0.85rem;
  margin-bottom: 12px;
}

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

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

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

.form-group.full-width {
  grid-column: span 2;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: var(--text);
  background: var(--off-white);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(245,166,35,0.1);
  background: var(--white);
}

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

/* --- PAGE BANNER --- */
.page-banner {
  height: 400px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: var(--header-height);
}

.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,46,0.85) 0%, rgba(15,52,96,0.75) 100%);
}

.page-banner-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 0 24px;
}

.page-banner-content h1 {
  font-size: 3rem;
  color: var(--white);
  margin-bottom: 12px;
}

.page-banner-content .breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}

.page-banner-content .breadcrumb a {
  color: var(--primary-light);
}

.page-banner-content .breadcrumb a:hover {
  color: var(--primary);
}

/* --- FEATURES / STATS --- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-card {
  padding: 30px;
}

.stat-card .stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  font-family: 'Inter', sans-serif;
}

.stat-card .stat-label {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-top: 5px;
}

/* Features row */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-card {
  text-align: center;
  padding: 40px 24px;
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.feature-card:hover {
  background: var(--off-white);
  transform: translateY(-5px);
}

.feature-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(245,166,35,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
}

.feature-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

.feature-card p {
  font-size: 0.88rem;
  color: var(--text-light);
}

/* --- TEAM --- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.team-card {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 40px 24px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card-hover);
}

.team-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: var(--white);
  font-weight: 700;
}

.team-card h3 {
  font-size: 1.15rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  margin-bottom: 4px;
}

.team-card .role {
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 12px;
}

.team-card p {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* --- FOOTER --- */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-about .logo-footer img {
  height: 55px;
  margin-bottom: 16px;
}

.footer-about p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer h4 {
  color: var(--white);
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-links a {
  display: block;
  padding: 6px 0;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 8px;
}

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

.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  transition: var(--transition);
}

.social-icons a:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  text-align: center;
  font-size: 0.82rem;
}

.footer-bottom a {
  color: var(--primary-light);
}

/* --- ANIMATIONS --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- INCLUSIONS / EXCLUSIONS LISTS --- */
.inc-exc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin: 30px 0;
}

.inc-list, .exc-list {
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 30px;
}

.inc-list h4, .exc-list h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.inc-list li, .exc-list li {
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 8px;
}

.inc-list li::before {
  content: '✓';
  color: var(--success);
  font-weight: 700;
}

.exc-list li::before {
  content: '✗';
  color: var(--danger);
  font-weight: 700;
}

/* --- TWO COLUMN LAYOUT --- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.two-col-text h2 {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.two-col-text p {
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.8;
}

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

.two-col-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- PACKAGE DETAIL PAGE --- */
.package-header {
  text-align: center;
  margin-bottom: 50px;
}

.package-header h2 {
  font-size: 2.4rem;
  margin-bottom: 12px;
}

.package-header p {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
}

.package-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 20px;
}

.highlight-tag {
  background: rgba(245,166,35,0.1);
  color: var(--primary-dark);
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
}

/* --- TABS (for package details) --- */
.tabs {
  display: flex;
  gap: 4px;
  border-bottom: 2px solid var(--gray-200);
  margin-bottom: 30px;
  overflow-x: auto;
}

.tab-btn {
  padding: 12px 24px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-light);
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  white-space: nowrap;
  transition: var(--transition);
}

.tab-btn.active, .tab-btn:hover {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.tab-content {
  display: none;
  animation: fadeIn 0.4s ease;
}

.tab-content.active {
  display: block;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .hero-content h1 { font-size: 2.8rem; }
  .section-header h2 { font-size: 2.2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .two-col { gap: 40px; }
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }

  .hamburger {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 400px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 40px;
    box-shadow: var(--shadow-xl);
    transition: var(--transition-slow);
    overflow-y: auto;
    gap: 0;
  }

  .nav.active {
    right: 0;
  }

  .nav a, .nav .dropdown > span {
    width: 100%;
    padding: 14px 0;
    font-size: 1rem;
    border-bottom: 1px solid var(--gray-100);
  }

  .nav .btn-cta {
    margin-top: 20px;
    text-align: center;
    justify-content: center;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    padding: 0 0 0 16px;
    display: none;
    min-width: auto;
  }

  .dropdown.open .dropdown-menu {
    display: block;
  }

  .hero { min-height: 500px; max-height: 700px; }
  .hero-content h1 { font-size: 2.2rem; }
  .hero-content p { font-size: 1rem; }

  .section { padding: 70px 0; }
  .section-header h2 { font-size: 1.9rem; }
  .section-header { margin-bottom: 40px; }

  .card-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
  .pricing-card.featured { transform: scale(1); }
  .pricing-card.featured:hover { transform: translateY(-5px); }

  .two-col { grid-template-columns: 1fr; gap: 30px; }
  .inc-exc-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }

  .form-grid { grid-template-columns: 1fr; }
  .form-group.full-width { grid-column: span 1; }
  .form-container { padding: 30px 20px; }

  .footer-grid { grid-template-columns: 1fr; }
  .page-banner { height: 300px; }
  .page-banner-content h1 { font-size: 2rem; }

  .tabs { gap: 0; }
  .tab-btn { padding: 10px 16px; font-size: 0.82rem; }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 1.8rem; }
  .section-header h2 { font-size: 1.6rem; }
  .btn { padding: 12px 24px; font-size: 0.88rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-card .stat-number { font-size: 2rem; }
}

/* --- UTILITY CLASSES --- */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mb-40 { margin-bottom: 40px; }
.mt-40 { margin-top: 40px; }
.mt-80 { margin-top: var(--header-height); }

/* Overlay for mobile menu */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* --- FLOATING WHATSAPP BUTTON --- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 64px;
  height: 64px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  z-index: 9999;
  transition: var(--transition);
  animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 30px rgba(37,211,102,0.6);
  animation: none;
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
}

.whatsapp-tooltip {
  position: absolute;
  right: 76px;
  background: var(--dark);
  color: #fff;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: var(--transition);
  pointer-events: none;
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--dark);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 6px 30px rgba(37,211,102,0.7), 0 0 50px rgba(37,211,102,0.25); }
}

/* WhatsApp CTA button style */
.btn-whatsapp {
  background: #25D366 !important;
  color: #fff !important;
}

.btn-whatsapp:hover {
  background: #1da851 !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.5) !important;
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 16px;
    right: 16px;
    width: 56px;
    height: 56px;
  }
  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
  .whatsapp-tooltip {
    display: none;
  }
}

/* --- FAQ ACCORDION (Pure CSS) --- */
.faq-section {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: var(--transition);
}

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

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: var(--transition);
}

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

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--primary);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-question::after {
  content: '−';
  transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 24px 20px;
}

.faq-answer p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* --- BLOG STYLES --- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 30px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
  display: block;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover);
}

.blog-card-image {
  height: 200px;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.08);
}

.blog-card-body {
  padding: 24px;
}

.blog-card-body h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-family: 'Playfair Display', serif;
  color: var(--text);
  line-height: 1.4;
}

.blog-card-body p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 16px;
}

.blog-tag {
  display: inline-block;
  background: rgba(245,166,35,0.1);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-right: 8px;
  margin-bottom: 8px;
}

.blog-date {
  font-size: 0.82rem;
  color: var(--text-lighter);
}

/* Blog Article */
.article-content {
  max-width: 800px;
  margin: 0 auto;
}

.article-content h2 {
  font-size: 1.6rem;
  margin: 40px 0 16px;
  font-family: 'Playfair Display', serif;
  color: var(--text);
}

.article-content h3 {
  font-size: 1.25rem;
  margin: 30px 0 12px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: var(--text);
}

.article-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 20px;
}

.article-content ul, .article-content ol {
  padding-left: 24px;
  margin-bottom: 20px;
}

.article-content li {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 8px;
}

.article-content blockquote {
  border-left: 4px solid var(--primary);
  padding: 16px 20px;
  margin: 24px 0;
  background: rgba(245,166,35,0.06);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--text);
}

.article-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 0.92rem;
}

.article-content table th,
.article-content table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--gray-200);
}

.article-content table th {
  background: var(--off-white);
  font-weight: 600;
  color: var(--text);
}

.article-content table td {
  color: var(--text-light);
}

.article-cta {
  background: linear-gradient(135deg, rgba(245,166,35,0.08), rgba(245,166,35,0.15));
  border-radius: var(--radius-md);
  padding: 40px;
  text-align: center;
  margin: 40px 0;
}

.article-cta h3 {
  margin-bottom: 12px !important;
  margin-top: 0 !important;
}

.article-cta p {
  margin-bottom: 20px !important;
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   CONVERSION OPTIMIZATION — NEW STYLES
   ============================================ */

/* --- Trust Ribbon --- */
.trust-ribbon {
  background: var(--gradient-dark);
  padding: 16px 0;
  overflow: hidden;
  position: relative;
}
.trust-ribbon-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.9);
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
  letter-spacing: 0.3px;
}
.trust-badge .trust-icon {
  font-size: 1.3rem;
  filter: drop-shadow(0 0 6px rgba(245,166,35,0.4));
}
@media (max-width: 768px) {
  .trust-ribbon-inner {
    gap: 16px 24px;
    justify-content: center;
  }
  .trust-badge { font-size: 0.78rem; }
}

/* --- Urgency Badges --- */
.urgency-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  animation: urgencyPulse 2s ease-in-out infinite;
}
.urgency-badge.fire { background: linear-gradient(135deg, #ff4757, #ff6b6b); color: #fff; }
.urgency-badge.early { background: linear-gradient(135deg, #2ed573, #7bed9f); color: #1a1a2e; }
.urgency-badge.limited { background: linear-gradient(135deg, #ffa502, #ffcc00); color: #1a1a2e; }
.urgency-badge.spots { background: linear-gradient(135deg, #e056fd, #be2edd); color: #fff; }

@keyframes urgencyPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255,71,87,0.4); }
  50% { transform: scale(1.05); box-shadow: 0 0 20px 4px rgba(255,71,87,0.2); }
}

/* --- Package Card Enhancements --- */
.card-details-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.card-detail-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  background: var(--gray-100);
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text);
  font-family: 'Inter', sans-serif;
}
.card-inclusions {
  margin-top: 10px;
  padding: 10px 14px;
  background: linear-gradient(135deg, rgba(245,166,35,0.06), rgba(245,166,35,0.12));
  border-left: 3px solid var(--primary);
  border-radius: 0 6px 6px 0;
  font-size: 0.82rem;
  color: var(--text-light);
  font-family: 'Inter', sans-serif;
}

/* --- Moments Gallery --- */
.moments-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 12px;
}
.moments-grid .moment-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}
.moments-grid .moment-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.moments-grid .moment-item:hover img {
  transform: scale(1.08);
}
.moment-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.moment-item:hover .moment-caption {
  transform: translateY(0);
}
.moments-grid .moment-item:nth-child(1) { grid-row: span 2; }
.moments-grid .moment-item:nth-child(4) { grid-row: span 2; }

@media (max-width: 768px) {
  .moments-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .moments-grid .moment-item:nth-child(1),
  .moments-grid .moment-item:nth-child(4) { grid-row: span 1; }
  .moment-caption { transform: translateY(0); font-size: 0.75rem; padding: 10px; }
}

/* --- Video Section --- */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.video-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  aspect-ratio: 16/9;
  background: var(--dark);
  cursor: pointer;
  transition: var(--transition);
}
.video-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.video-card img { width: 100%; height: 100%; object-fit: cover; opacity: 0.7; }
.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: rgba(255,255,255,0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  transition: var(--transition);
}
.video-card:hover .video-play-btn { transform: translate(-50%, -50%) scale(1.1); background: var(--primary); color: #fff; }
.video-card-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
}

/* --- USP Comparison --- */
.usp-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.usp-col {
  padding: 36px 30px;
}
.usp-col.usp-us {
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  color: #fff;
}
.usp-col.usp-them {
  background: var(--gray-100);
  color: var(--text);
}
.usp-col h3 { margin-bottom: 20px; font-size: 1.2rem; }
.usp-col.usp-us h3 { color: var(--primary); }
.usp-list { list-style: none; }
.usp-list li {
  padding: 8px 0;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
}
.usp-list li .usp-icon { font-size: 1.1rem; flex-shrink: 0; }
@media (max-width: 768px) {
  .usp-comparison { grid-template-columns: 1fr; }
}

/* --- Trip Builder --- */
.trip-builder {
  background: linear-gradient(135deg, rgba(26,26,46,0.03), rgba(245,166,35,0.06));
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  max-width: 900px;
  margin: 0 auto;
}
.trip-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}
.trip-option-group label {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 10px;
  color: var(--dark);
  font-family: 'Inter', sans-serif;
}
.trip-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.trip-chip {
  padding: 8px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-xl);
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  background: #fff;
  font-family: 'Inter', sans-serif;
  user-select: none;
}
.trip-chip:hover { border-color: var(--primary); color: var(--primary); }
.trip-chip.active {
  background: var(--gradient-primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 4px 15px rgba(245,166,35,0.3);
}
@media (max-width: 768px) {
  .trip-builder { padding: 30px 20px; }
  .trip-options { grid-template-columns: 1fr 1fr; }
}

/* --- Enhanced Testimonials --- */
.testimonial-card .verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  background: linear-gradient(135deg, #2ed573, #7bed9f);
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 700;
  color: #1a1a2e;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-left: 8px;
}
.testimonial-flag { font-size: 1.3rem; margin-right: 4px; }

/* --- Sticky Mobile CTA Bar --- */
.sticky-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(26,26,46,0.98);
  backdrop-filter: blur(12px);
  padding: 10px 16px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}
.sticky-cta-inner {
  display: flex;
  gap: 10px;
  max-width: 600px;
  margin: 0 auto;
}
.sticky-cta-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  transition: var(--transition);
}
.sticky-cta-btn.whatsapp {
  background: #25D366;
  color: #fff;
  box-shadow: 0 4px 15px rgba(37,211,102,0.4);
}
.sticky-cta-btn.quote {
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: 0 4px 15px rgba(245,166,35,0.4);
}
@media (max-width: 768px) {
  .sticky-cta-bar { display: block; }
  body { padding-bottom: 70px; }
  .whatsapp-float { bottom: 80px; }
}

/* --- Animated Counter --- */
.stat-number {
  font-family: 'Inter', sans-serif;
}

/* --- Shimmer Effect --- */
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
.shimmer-badge {
  background: linear-gradient(90deg, #F5A623 25%, #ffe082 50%, #F5A623 75%);
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}
