/* ============================================
   THOMAS HOLIDAYS — Design System
   Premium Tour Package Website
   ============================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  /* Palette */
  --clr-primary: #0f6b4e;
  --clr-primary-light: #17a374;
  --clr-primary-dark: #0a4e38;
  --clr-accent: #f0a500;
  --clr-accent-light: #ffc847;
  --clr-dark: #0b1215;
  --clr-dark-card: #111b1f;
  --clr-dark-surface: #162025;
  --clr-text: #eaf0ec;
  --clr-text-muted: #8fa9a0;
  --clr-white: #ffffff;
  --clr-glass: rgba(255, 255, 255, 0.06);
  --clr-glass-border: rgba(255, 255, 255, 0.1);
  --clr-overlay: rgba(11, 18, 21, 0.65);
  --clr-gradient-hero: linear-gradient(135deg, #0b1215 0%, #0f3d2e 50%, #0b1215 100%);

  /* Typography */
  --ff-heading: 'Playfair Display', serif;
  --ff-body: 'Inter', sans-serif;
  --ff-accent: 'Outfit', sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.35);
  --shadow-glow: 0 0 40px rgba(15, 107, 78, 0.25);
  --shadow-float: 0 20px 60px rgba(0, 0, 0, 0.4);

  /* Transitions */
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Layout */
  --max-width: 1280px;
  --header-height: 72px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  max-width: 100vw;
  overflow-x: hidden;
}

body {
  max-width: 100vw;
  overflow-x: hidden;
  font-family: var(--ff-body);
  background: var(--clr-dark);
  color: var(--clr-text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

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

ul {
  list-style: none;
}

/* ---------- Utility ---------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section-pad {
  padding: var(--space-2xl) 0;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-accent);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--clr-accent);
  margin-bottom: var(--space-sm);
}

.section-label::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--clr-accent);
  border-radius: 2px;
}

.section-title {
  font-family: var(--ff-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--clr-white);
  line-height: 1.2;
  margin-bottom: var(--space-sm);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--clr-text-muted);
  max-width: 600px;
  line-height: 1.7;
}

.text-center {
  text-align: center;
}

.text-center .section-subtitle {
  margin-inline: auto;
}

.text-center .section-label {
  justify-content: center;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-accent);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all 0.35s var(--ease-smooth);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: opacity 0.35s;
}

.btn:hover::after {
  opacity: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-light));
  color: var(--clr-white);
  box-shadow: 0 4px 20px rgba(15, 107, 78, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(15, 107, 78, 0.5);
}

.btn-accent {
  background: linear-gradient(135deg, var(--clr-accent), var(--clr-accent-light));
  color: var(--clr-dark);
  box-shadow: 0 4px 20px rgba(240, 165, 0, 0.35);
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(240, 165, 0, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--clr-white);
  border: 1.5px solid var(--clr-glass-border);
  backdrop-filter: blur(6px);
}

.btn-outline:hover {
  background: var(--clr-glass);
  border-color: var(--clr-primary-light);
  color: var(--clr-primary-light);
  transform: translateY(-2px);
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.4s var(--ease-smooth);
  background: transparent;
}

.header.scrolled {
  background: rgba(11, 18, 21, 0.92);
  backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--clr-glass-border);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.4);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

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

.logo-brand-img {
  height: 50px;
  width: auto;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.logo-text {
  font-family: var(--ff-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--clr-white);
}

.logo-text span {
  color: var(--clr-accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav-links a {
  font-family: var(--ff-accent);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--clr-accent);
  border-radius: 2px;
  transition: width 0.3s var(--ease-smooth);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--clr-white);
}

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

.nav-cta {
  margin-left: var(--space-sm);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none; /* Hidden on desktop */
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 9999 !important;
  position: relative; /* Required for z-index to work */
  border-radius: var(--radius-sm);
  background: rgba(15, 107, 78, 0.25) !important;
  border: 1.5px solid var(--clr-accent) !important;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: none; /* Hidden on desktop, shown via media query */
  align-items: center;
  justify-content: center;
}

.nav-toggle:hover {
  background: rgba(15, 107, 78, 0.35) !important;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--clr-accent);
  border-radius: 2px;
  transition: all 0.3s var(--ease-smooth);
}

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

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

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

@media (max-width: 992px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(11, 18, 21, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--space-xl);
    transition: all 0.5s var(--ease-smooth);
    z-index: 1000;
  }

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

  .nav-links a {
    font-size: 1.5rem;
  }

  .nav-cta {
    margin-left: 0;
    margin-top: var(--space-md);
  }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 25s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0% { transform: scale(1.05); }
  100% { transform: scale(1.15); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(11, 18, 21, 0.55) 0%,
    rgba(11, 18, 21, 0.3) 40%,
    rgba(11, 18, 21, 0.6) 70%,
    rgba(11, 18, 21, 0.95) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding-top: var(--header-height);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--clr-glass);
  backdrop-filter: blur(10px);
  border: 1px solid var(--clr-glass-border);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-family: var(--ff-accent);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--clr-accent);
  margin-bottom: var(--space-md);
  animation: fadeUp 0.8s ease-out 0.2s both;
}

.hero-title {
  font-family: var(--ff-heading);
  font-size: clamp(2.2rem, 8vw, 4.5rem);
  font-weight: 800;
  color: var(--clr-white);
  line-height: 1.1;
  margin-bottom: var(--space-md);
  animation: fadeUp 0.8s ease-out 0.4s both;
}

.hero-title .highlight {
  background: linear-gradient(135deg, var(--clr-accent), var(--clr-accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--clr-text-muted);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
  max-width: 560px;
  animation: fadeUp 0.8s ease-out 0.6s both;
}

.hero-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  animation: fadeUp 0.8s ease-out 0.8s both;
}

.hero-stats {
  display: flex;
  gap: var(--space-xl);
  margin-top: var(--space-xl);
  animation: fadeUp 0.8s ease-out 1s both;
}

.hero-stat {
  text-align: left;
}

.hero-stat-number {
  font-family: var(--ff-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--clr-white);
}

.hero-stat-number span {
  color: var(--clr-accent);
}

.hero-stat-label {
  font-size: 0.82rem;
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-family: var(--ff-accent);
}

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

/* Floating particles for hero */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--clr-accent);
  border-radius: 50%;
  opacity: 0.3;
  animation: floatParticle 15s linear infinite;
}

@keyframes floatParticle {
  0% { transform: translateY(100vh) translateX(0); opacity: 0; }
  10% { opacity: 0.4; }
  90% { opacity: 0.4; }
  100% { transform: translateY(-10vh) translateX(50px); opacity: 0; }
}

/* ============================================
   CATEGORY TABS
   ============================================ */
.category-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
}

.tab-btn {
  font-family: var(--ff-accent);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--clr-glass-border);
  background: var(--clr-glass);
  color: var(--clr-text-muted);
  cursor: pointer;
  transition: all 0.35s var(--ease-smooth);
  backdrop-filter: blur(8px);
}

.tab-btn:hover {
  border-color: var(--clr-primary-light);
  color: var(--clr-white);
  background: rgba(15, 107, 78, 0.15);
}

.tab-btn.active {
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-light));
  border-color: var(--clr-primary);
  color: var(--clr-white);
  box-shadow: 0 4px 20px rgba(15, 107, 78, 0.35);
}

/* ============================================
   DESTINATION / PACKAGE CARDS
   ============================================ */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--space-lg);
}

.package-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--clr-dark-card);
  border: 1px solid var(--clr-glass-border);
  transition: all 0.45s var(--ease-smooth);
  cursor: pointer;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-float);
  border-color: rgba(15, 107, 78, 0.3);
}

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

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-smooth);
}

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

.card-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 18, 21, 0.7) 0%, transparent 50%);
}

.card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(11, 18, 21, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid var(--clr-glass-border);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-family: var(--ff-accent);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--clr-accent);
}

.card-rating {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(240, 165, 0, 0.9);
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-family: var(--ff-accent);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--clr-dark);
}

.card-body {
  padding: var(--space-md);
}

.card-title {
  font-family: var(--ff-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 6px;
}

.card-location {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: var(--space-sm);
}

.card-highlights {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: var(--space-sm);
}

.card-highlight-tag {
  font-family: var(--ff-accent);
  font-size: 0.72rem;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  background: rgba(15, 107, 78, 0.15);
  color: var(--clr-primary-light);
  border: 1px solid rgba(15, 107, 78, 0.2);
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-sm);
  border-top: 1px solid var(--clr-glass-border);
}

.card-price {
  font-family: var(--ff-accent);
}

.card-price-from {
  font-size: 0.75rem;
  color: var(--clr-text-muted);
}

.card-price-amount {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--clr-accent);
}

.card-price-per {
  font-size: 0.75rem;
  color: var(--clr-text-muted);
}

.card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--ff-accent);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--clr-primary-light);
  transition: all 0.3s;
}

.card-cta:hover {
  color: var(--clr-white);
  gap: 10px;
}

/* ============================================
   ABOUT / WHY US SECTION
   ============================================ */
.about-section {
  position: relative;
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  
  .about-image {
    order: 2;
  }
  
  .about-text {
    order: 1;
    text-align: center;
  }
}

.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}

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

.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-glass-border);
}

.about-image-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(11, 18, 21, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid var(--clr-glass-border);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  text-align: center;
}

.about-image-badge .number {
  font-family: var(--ff-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--clr-accent);
}

.about-image-badge .label {
  font-family: var(--ff-accent);
  font-size: 0.75rem;
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.about-feature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.about-feature-icon {
  width: 44px;
  min-width: 44px;
  height: 44px;
  background: rgba(15, 107, 78, 0.15);
  border: 1px solid rgba(15, 107, 78, 0.25);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.about-feature h4 {
  font-family: var(--ff-accent);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--clr-white);
  margin-bottom: 2px;
}

.about-feature p {
  font-size: 0.8rem;
  color: var(--clr-text-muted);
  line-height: 1.5;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.service-card {
  background: var(--clr-dark-card);
  border: 1px solid var(--clr-glass-border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  text-align: center;
  transition: all 0.4s var(--ease-smooth);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-primary), var(--clr-accent));
  border-radius: 0 0 4px 4px;
  opacity: 0;
  transition: opacity 0.4s;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(15, 107, 78, 0.3);
  box-shadow: var(--shadow-glow);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-md);
  background: rgba(15, 107, 78, 0.12);
  border: 1px solid rgba(15, 107, 78, 0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  transition: all 0.4s var(--ease-smooth);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-light));
  border-color: var(--clr-primary);
  transform: scale(1.1);
}

.service-card h3 {
  font-family: var(--ff-accent);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--clr-white);
  margin-bottom: 8px;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: var(--space-md);
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-smooth);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 18, 21, 0.8) 0%, transparent 60%);
  opacity: 0;
  display: flex;
  align-items: flex-end;
  padding: var(--space-md);
  transition: opacity 0.4s;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-info h4 {
  font-family: var(--ff-accent);
  color: var(--clr-white);
  font-size: 1rem;
  font-weight: 600;
}

.gallery-info p {
  color: var(--clr-accent);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Mansonry-like layout */
.gallery-item:nth-child(1) { grid-row: span 2; }
.gallery-item:nth-child(4) { grid-column: span 2; }

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
  .gallery-item:nth-child(4) { grid-column: span 1; }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item:nth-child(1) { grid-row: span 1; }
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-track {
  display: flex;
  gap: var(--space-md);
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: var(--space-sm);
}

.testimonials-track::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  flex: 0 0 380px;
  background: var(--clr-dark-card);
  border: 1px solid var(--clr-glass-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-family: var(--ff-heading);
  font-size: 4rem;
  color: var(--clr-primary);
  opacity: 0.3;
  position: absolute;
  top: 12px;
  left: 20px;
  line-height: 1;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--clr-text);
  line-height: 1.75;
  margin-bottom: var(--space-md);
  position: relative;
  z-index: 1;
}

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

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-accent);
  font-weight: 700;
  font-size: 1rem;
  color: var(--clr-white);
}

.testimonial-name {
  font-family: var(--ff-accent);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--clr-white);
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--clr-text-muted);
}

.testimonial-stars {
  color: var(--clr-accent);
  font-size: 0.85rem;
  margin-bottom: var(--space-sm);
  letter-spacing: 2px;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  padding: var(--space-2xl) var(--space-xl);
  text-align: center;
  background: linear-gradient(135deg, var(--clr-primary-dark), var(--clr-primary), var(--clr-primary-dark));
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200"><circle cx="100" cy="100" r="80" fill="none" stroke="rgba(255,255,255,0.04)" stroke-width="1"/></svg>') repeat;
  opacity: 0.5;
}

.cta-banner > * {
  position: relative;
  z-index: 1;
}

.cta-banner .section-title {
  margin-bottom: var(--space-sm);
}

.cta-banner .section-subtitle {
  margin-inline: auto;
  margin-bottom: var(--space-lg);
  color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--clr-dark-card);
  border-top: 1px solid var(--clr-glass-border);
  padding: var(--space-xl) 0 var(--space-md);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  margin-top: var(--space-sm);
  line-height: 1.7;
  max-width: 300px;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: var(--space-md);
}

.footer-social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--clr-glass);
  border: 1px solid var(--clr-glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.3s;
}

.footer-social-link:hover {
  background: var(--clr-primary);
  border-color: var(--clr-primary);
  transform: translateY(-3px);
}

.footer-column h4 {
  font-family: var(--ff-accent);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--clr-white);
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  font-size: 0.88rem;
  color: var(--clr-text-muted);
  transition: all 0.3s;
}

.footer-column ul li a:hover {
  color: var(--clr-primary-light);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid var(--clr-glass-border);
  padding-top: var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--clr-text-muted);
}

.footer-bottom-links {
  display: flex;
  gap: var(--space-md);
}

.footer-bottom-links a {
  font-size: 0.82rem;
  color: var(--clr-text-muted);
  transition: color 0.3s;
}

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



/* ============================================
   SCROLL ANIMATIONS (IntersectionObserver)
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s var(--ease-smooth), transform 0.7s var(--ease-smooth);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: rgba(11, 18, 21, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 40px 40px;
    gap: var(--space-md);
    transition: right 0.4s var(--ease-smooth);
    border-left: 1px solid var(--clr-glass-border);
  }

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

  .logo-brand-img {
    height: 40px;
  }

  .logo-text {
    font-size: 1.15rem;
  }

  .nav-toggle {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 99999 !important;
    background: rgba(15, 107, 78, 0.25) !important;
    border: 1.5px solid var(--clr-accent) !important;
    padding: 6px;
    width: 44px !important;
    height: 44px !important;
    border-radius: 8px !important;
    margin-left: auto;
  }

  .nav-cta {
    margin-left: 0;
  }

  .hero-stats {
    gap: var(--space-lg);
  }

  .hero-stat-number {
    font-size: 1.6rem;
  }

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

  .packages-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .testimonial-card {
    flex: 0 0 300px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-stats {
    flex-direction: column;
    gap: var(--space-sm);
  }

  .category-tabs {
    gap: 6px;
  }

  .tab-btn {
    padding: 10px 20px;
    font-size: 0.82rem;
  }
}

/* ============================================
   BACKGROUND DECORATIONS
   ============================================ */
.bg-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15, 107, 78, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.bg-glow-1 {
  top: -200px;
  right: -200px;
}

.bg-glow-2 {
  bottom: -200px;
  left: -200px;
}

/* ============================================
   WHATSAPP FLOAT (High Priority)
   ============================================ */
.whatsapp-float {
  position: fixed !important;
  bottom: 28px !important;
  right: 28px !important;
  z-index: 9999 !important;
  width: 60px !important;
  height: 60px !important;
  border-radius: 50% !important;
  background: #25d366 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: var(--clr-white) !important;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4) !important;
  transition: all 0.35s var(--ease-bounce) !important;
  cursor: pointer !important;
  text-decoration: none !important;
  border: none !important;
  padding: 0 !important;
  outline: none !important;
  visibility: visible !important;
  opacity: 1 !important;
}

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

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
  background: #20ba5a;
}

@media (max-width: 768px) {
  .whatsapp-float {
    position: fixed !important;
    bottom: 25px !important;
    right: 25px !important;
    width: 60px !important;
    height: 60px !important;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 99999 !important;
    background: #25d366 !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5) !important;
  }
  
  .whatsapp-float svg {
    width: 30px !important;
    height: 30px !important;
  }
}
