/* ============================================
   TRIPADEMY - Premium Educational Travel
   Modern, Responsive CSS with Animations
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  --primary: #1B3A5C;
  --primary-light: #2A5A7C;
  --primary-dark: #122840;
  --accent: #E8A838;
  --accent-light: #F0C060;
  --secondary: #2BB5B2;
  --gradient: linear-gradient(135deg, #1B3A5C 0%, #2A5A7C 50%, #3A7A9C 100%);
  --gradient-accent: linear-gradient(135deg, #E8A838 0%, #F0C060 100%);
  --gradient-text: linear-gradient(135deg, #E8A838, #F0C060, #E8A838);
  --bg: #f8f9fc;
  --bg-alt: #ffffff;
  --text: #2d3748;
  --text-light: #718096;
  --text-dark: #1a202c;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(27, 58, 92, 0.06);
  --shadow-md: 0 8px 30px rgba(27, 58, 92, 0.08);
  --shadow-lg: 0 20px 60px rgba(27, 58, 92, 0.12);
  --shadow-xl: 0 30px 80px rgba(27, 58, 92, 0.15);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', Georgia, -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 17.6px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

/* --- Preloader --- */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader {
  position: relative;
  width: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-ring {
  position: absolute;
  inset: 0;
  border: 3px solid transparent;
  border-top-color: var(--primary);
  border-right-color: var(--accent);
  border-radius: 50%;
  animation: spin 1.2s linear infinite;
}

.loader-logo {
  width: 200px;
  height: auto;
}

.loader-tagline {
  display: block;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: -6px;
  text-align: center;
  text-align: center;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* --- Container --- */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity var(--transition);
}

.btn-primary {
  background: var(--gradient);
  color: var(--white);
  border-color: transparent;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(27, 58, 92, 0.3);
}

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

.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
  transform: translateY(-3px);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* --- Gradient Text --- */
.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================
   NAVBAR
   ============================ */
.navbar {
  position: fixed;
  top: 37px;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 14px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  top: 0;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 8px 0;
  box-shadow: 0 2px 20px rgba(27, 58, 92, 0.1);
}

.nav-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 6px 12px 5px;
  margin-top: 10px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  transition: var(--transition);
}

.navbar.scrolled .nav-logo {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  padding: 0 8px;
  margin-top: 0;
  border-radius: 0;
  border: none;
  box-shadow: none;
}

.nav-logo .logo-img {
  height: 85px;
  width: auto;
  object-fit: contain;
  margin: 0;
  transition: var(--transition);
}

.navbar.scrolled .nav-logo .logo-img {
  height: 60px;
  margin: 0;
  filter: none;
}

.logo-tagline {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: -6px;
  text-align: center;
  white-space: nowrap;
  transition: var(--transition);
}

.navbar.scrolled .logo-tagline {
  color: var(--accent);
}

.footer-logo-tagline {
  display: block;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: -6px;
  text-align: center;
}

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

.nav-link {
  padding: 8px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--white);
  border-radius: 6px;
  transition: var(--transition-fast);
  position: relative;
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition-fast);
  transform: translateX(-50%);
}

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

.navbar.scrolled .nav-link {
  color: var(--primary);
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
  color: var(--primary-light);
}

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

/* IATA badge moved to top bar */

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

.nav-toggle span {
  width: 26px;
  height: 2.5px;
  background: var(--white);
  border-radius: 3px;
  transition: var(--transition-fast);
}

.navbar.scrolled .nav-toggle span {
  background: var(--primary);
}

.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);
}

/* ============================
   HERO
   ============================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero-slider {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.1);
  transition: opacity 1.5s ease, transform 8s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(8, 28, 58, 0.90) 0%,
    rgba(12, 42, 82, 0.85) 50%,
    rgba(27, 58, 92, 0.80) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  max-width: 850px;
  margin-top: -60px;
  padding: 0 24px;
}

.hero-tag {
  display: inline-block;
  padding: 8px 24px;
  background: rgba(232, 168, 56, 0.2);
  border: 1px solid rgba(232, 168, 56, 0.4);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 28px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.hero-scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
}

.scroll-text {
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--accent);
  animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
  0% { top: -100%; }
  100% { top: 100%; }
}

/* ============================
   SECTIONS COMMON
   ============================ */
.section {
  padding: 100px 0;
  position: relative;
}

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

.section-tag {
  display: inline-block;
  padding: 6px 20px;
  background: rgba(27, 58, 92, 0.06);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.section-line {
  width: 60px;
  height: 3px;
  background: var(--gradient-accent);
  margin: 0 auto;
  border-radius: 2px;
}

/* ============================
   ABOUT
   ============================ */
.section-about {
  background: var(--white);
}

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

.about-lead {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.about-content p {
  color: var(--text-light);
  margin-bottom: 32px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid rgba(27, 58, 92, 0.08);
}

.stat {
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.stat-suffix {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
}

.stat-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 4px;
  font-weight: 500;
}

.about-visual {
  position: relative;
}

.about-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-image-wrapper::before {
  content: '';
  position: absolute;
  inset: -4px;
  background: var(--gradient);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.3;
}

.about-img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  transition: transform 0.8s ease;
}

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

.about-float-card {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 10px 16px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}

.float-icon {
  font-size: 1.5rem;
}

/* ============================
   OFFERINGS
   ============================ */
.section-offerings {
  background: var(--bg);
}

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

.offering-card {
  position: relative;
  background: var(--white);
  padding: 48px 36px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid rgba(27, 58, 92, 0.06);
}

.offering-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

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

.offering-card:hover::before {
  transform: scaleX(1);
}

.offering-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: rgba(27, 58, 92, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: var(--transition);
}

.offering-icon svg {
  width: 30px;
  height: 30px;
  color: var(--primary);
  transition: var(--transition);
}

.offering-card:hover .offering-icon {
  background: var(--primary);
}

.offering-card:hover .offering-icon svg {
  color: var(--white);
}

.offering-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 14px;
}

.offering-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

.offering-number {
  position: absolute;
  bottom: 20px;
  right: 24px;
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: rgba(27, 58, 92, 0.04);
  line-height: 1;
}

/* ============================
   WHY US
   ============================ */
/* Why Us Big Scrolling Band */
.why-big-band {
  background: var(--white);
  padding: 50px 0 0;
  overflow: hidden;
}

.why-big-band-header {
  text-align: center;
  margin-bottom: 30px;
}


.why-big-band-track {
  background: var(--accent);
  padding: 18px 0;
  overflow: hidden;
  transform: rotate(-2deg) scale(1.05);
  margin: 10px -20px;
}

.why-big-scroll {
  display: flex;
  align-items: center;
  white-space: nowrap;
  will-change: transform;
}

.why-big-card {
  flex-shrink: 0;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border-radius: 50px;
  padding: 10px 24px 10px 12px;
  margin: 0 10px;
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.08);
}

.why-big-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-big-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

.why-big-card h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  white-space: nowrap;
  line-height: 1.3;
}

/* ============================
   GALLERY
   ============================ */
.section-gallery {
  background: var(--bg);
}

/* Gallery Horizontal Slider */
.gallery-slider-wrap {
  position: relative;
}

.gallery-slider {
  display: flex;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.gallery-page {
  flex: 0 0 100%;
  width: 100%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 260px);
  gap: 16px;
}

/* Navigation Arrows */
.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: var(--white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  opacity: 0.9;
}

.gallery-arrow:hover {
  background: var(--primary);
  box-shadow: 0 6px 24px rgba(27, 58, 92, 0.3);
  opacity: 1;
}

.gallery-arrow svg {
  width: 22px;
  height: 22px;
  color: var(--primary);
  transition: var(--transition);
}

.gallery-arrow:hover svg {
  color: var(--white);
}

.gallery-arrow-left {
  left: -24px;
}

.gallery-arrow-right {
  right: -24px;
}

.gallery-arrow.disabled {
  opacity: 0.3;
  pointer-events: none;
}

/* Gallery Dots */
.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.gallery-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(27, 58, 92, 0.15);
  cursor: pointer;
  transition: var(--transition);
}

.gallery-dots .dot.active {
  background: var(--primary);
  width: 28px;
  border-radius: 5px;
}

.gallery-dots .dot:hover:not(.active) {
  background: rgba(27, 58, 92, 0.3);
}

/* Gallery Items */
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}

.gallery-item-tall {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(12, 42, 82, 0.7) 0%,
    transparent 60%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-zoom {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(20px);
  transition: var(--transition);
}

.gallery-zoom svg {
  width: 24px;
  height: 24px;
  color: var(--white);
}

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

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

.gallery-item:hover .gallery-zoom {
  transform: translateY(0);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

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

.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  transform: scale(0.9);
  transition: transform 0.4s ease;
}

.lightbox.active .lightbox-content img {
  transform: scale(1);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: none;
  color: var(--white);
  cursor: pointer;
  transition: var(--transition-fast);
  border-radius: 50%;
}

.lightbox-close {
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-prev,
.lightbox-next {
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* ============================
   TESTIMONIALS
   ============================ */
.section-testimonials {
  background: var(--white);
}

.testimonials-slider {
  overflow: hidden;
  position: relative;
}

.testimonials-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-card {
  min-width: 100%;
  padding: 0 60px;
}

@media (min-width: 768px) {
  .testimonial-card {
    min-width: 50%;
    padding: 0 16px;
  }
}

@media (min-width: 1024px) {
  .testimonial-card {
    min-width: 33.333%;
    padding: 0 16px;
  }
}

.testimonial-inner {
  background: var(--bg);
  padding: 40px;
  border-radius: var(--radius-lg);
  width: 100%;
  transition: var(--transition);
  border: 1px solid rgba(27, 58, 92, 0.04);
}

.testimonial-inner:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(27, 58, 92, 0.08);
}

.testimonial-quote {
  margin-bottom: 20px;
}

.testimonial-quote svg {
  width: 36px;
  height: 36px;
  color: var(--accent);
  opacity: 0.4;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 28px;
  font-style: italic;
}

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

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

.testimonial-author strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--text-light);
}

.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

.testimonials-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(27, 58, 92, 0.15);
  cursor: pointer;
  transition: var(--transition-fast);
}

.testimonials-dots .dot.active {
  background: var(--primary);
  width: 32px;
  border-radius: 5px;
}

/* ============================
   CONTACT
   ============================ */
.section-contact {
  background: var(--bg);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info .section-title {
  text-align: left;
  font-size: 2rem;
}

.contact-info p {
  color: var(--text-light);
  margin: 16px 0 36px;
  line-height: 1.8;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(27, 58, 92, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
}

.contact-item strong {
  display: block;
  font-size: 0.85rem;
  color: var(--text-dark);
}

.contact-item span {
  font-size: 0.9rem;
  color: var(--text-light);
}

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

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  position: relative;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid rgba(27, 58, 92, 0.1);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--bg);
  transition: var(--transition-fast);
  outline: none;
}

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

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

.form-group label {
  position: absolute;
  left: 20px;
  top: 16px;
  font-size: 0.95rem;
  color: var(--text-light);
  pointer-events: none;
  transition: var(--transition-fast);
  background: transparent;
  padding: 0 4px;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
  top: -10px;
  left: 16px;
  font-size: 0.75rem;
  color: var(--primary);
  background: var(--white);
  font-weight: 600;
}

.contact-form .btn {
  margin-top: 8px;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.3fr;
  gap: 48px;
}

.footer-logo-wrap {
  margin-bottom: 20px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 6px 12px 5px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.footer-logo-img {
  height: 70px;
  width: auto;
  margin: 0;
  filter: none;
}



.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.footer-social a[aria-label="Facebook"] { background: #1877F2; }
.footer-social a[aria-label="Instagram"] { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.footer-social a[aria-label="LinkedIn"] { background: #0A66C2; }
.footer-social a[aria-label="YouTube"] { background: #FF0000; }

.footer-social a:hover {
  transform: translateY(-3px);
  filter: brightness(1.15);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  color: var(--white);
}

.footer-links h4,
.footer-newsletter h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 20px;
}

.footer-links h4 {
  grid-column: 1 / -1;
}

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

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

.footer-newsletter p {
  font-size: 0.85rem;
  margin-bottom: 16px;
  line-height: 1.7;
}

.newsletter-form {
  display: flex;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50px;
  overflow: hidden;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 20px;
  border: none;
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.newsletter-form button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  flex-shrink: 0;
}

.newsletter-form button:hover {
  background: var(--accent-light);
}

.newsletter-form button svg {
  width: 18px;
  height: 18px;
  color: var(--primary-dark);
}

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

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ============================
   BACK TO TOP
   ============================ */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
  color: var(--white);
}

/* ============================
   SCROLL REVEAL ANIMATIONS
   ============================ */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-up {
  transform: translateY(40px);
}

.reveal-left {
  transform: translateX(-40px);
}

.reveal-right {
  transform: translateX(40px);
}

.reveal-up.revealed,
.reveal-left.revealed,
.reveal-right.revealed {
  opacity: 1;
  transform: translate(0);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

/* ============================
   RESPONSIVE - TABLET
   ============================ */
@media (max-width: 1024px) {

  .nav-toggle {
    display: none;
  }

  .nav-menu {
    display: none;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-link {
    color: var(--text-dark) !important;
    font-size: 1rem;
    padding: 14px 16px;
    width: 100%;
    border-radius: var(--radius-sm);
  }

  .nav-link:hover,
  .nav-link.active {
    background: rgba(27, 58, 92, 0.05);
  }

  .nav-link::after {
    display: none;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-visual {
    order: -1;
  }

  .offerings-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 200px);
  }

  .gallery-arrow-left {
    left: 8px;
  }

  .gallery-arrow-right {
    right: 8px;
  }

  .gallery-arrow {
    width: 40px;
    height: 40px;
  }

  .gallery-arrow svg {
    width: 18px;
    height: 18px;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .iata-badge {
    display: none;
  }
}

/* ============================
   RESPONSIVE - MOBILE
   ============================ */
@media (max-width: 640px) {
  .section {
    padding: 72px 0;
  }

  .nav-container {
    padding: 0 20px;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .hero-cta .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .hero-scroll {
    display: none;
  }

  .about-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 160px);
  }

  .gallery-arrow-left {
    left: 4px;
  }

  .gallery-arrow-right {
    right: 4px;
  }

  .gallery-arrow {
    width: 36px;
    height: 36px;
  }

  .contact-form-wrap {
    padding: 32px 24px;
  }

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

  .section-title {
    font-size: 1.8rem;
  }

  .lightbox-prev,
  .lightbox-next {
    width: 40px;
    height: 40px;
    font-size: 24px;
  }

  .lightbox-prev { left: 12px; }
  .lightbox-next { right: 12px; }

  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
  }

  .nav-menu {
    width: 100%;
    max-width: 100%;
  }
}

/* ============================
   SCROLL PROGRESS BAR
   ============================ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--gradient-accent);
  z-index: 10001;
  width: 0%;
  transition: width 0.1s linear;
}

/* ============================
   HERO FLOATING SHAPES
   ============================ */
.hero-shapes {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  background: var(--white);
}

.shape-1 {
  width: 300px;
  height: 300px;
  top: -50px;
  right: -80px;
  animation: floatShape 20s ease-in-out infinite;
}

.shape-2 {
  width: 200px;
  height: 200px;
  bottom: 10%;
  left: 5%;
  animation: floatShape 15s ease-in-out infinite reverse;
}

.shape-3 {
  width: 120px;
  height: 120px;
  top: 30%;
  right: 15%;
  border-radius: 30%;
  animation: floatShape 18s ease-in-out infinite 2s;
}

.shape-4 {
  width: 80px;
  height: 80px;
  bottom: 25%;
  left: 20%;
  border-radius: 20%;
  animation: floatShape 12s ease-in-out infinite 1s;
}

@keyframes floatShape {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(20px, -30px) rotate(5deg); }
  50% { transform: translate(-15px, 20px) rotate(-3deg); }
  75% { transform: translate(25px, 15px) rotate(4deg); }
}

/* ============================
   TEXT ROTATION (HERO)
   ============================ */
.text-rotate {
  display: inline-block;
  position: relative;
}

.text-rotate .rotate-word {
  display: inline-block;
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transform: translateY(20px);
  white-space: nowrap;
}

.text-rotate .rotate-word.active {
  opacity: 1;
  position: relative;
  transform: translateY(0);
}

/* ============================
   WAVE DIVIDERS
   ============================ */
.wave-divider {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  z-index: 3;
  line-height: 0;
}

.wave-divider svg {
  width: 100%;
  height: auto;
  display: block;
}

.wave-hero {
  bottom: -2px;
}

.wave-about {
  position: relative;
  margin-top: -1px;
  line-height: 0;
}

/* ============================
   SECTION DECORATIONS
   ============================ */
.section-deco {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.section-about,
.section-offerings,
.section-why,
.section-gallery,
.section-testimonials,
.section-contact {
  position: relative;
  z-index: 1;
}

.section-about .container,
.section-offerings .container,
.section-why .container,
.section-gallery .container,
.section-testimonials .container,
.section-contact .container {
  position: relative;
  z-index: 2;
}

.deco-circle {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(27, 58, 92, 0.03), rgba(232, 168, 56, 0.03));
}

.deco-1 {
  width: 400px;
  height: 400px;
  top: -100px;
  right: -100px;
}

.deco-2 {
  width: 300px;
  height: 300px;
  bottom: -80px;
  left: -80px;
}

/* Enhanced offering card hover effects are handled above in the main offering-card rules */

/* ============================
   ENHANCED WHY CARDS - GRADIENT BORDER ON HOVER
   ============================ */

/* ============================
   TESTIMONIAL STARS
   ============================ */
.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
  color: #f59e0b;
}

/* ============================
   WHATSAPP FLOATING BUTTON
   ============================ */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  left: 32px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  animation: whatsappPulse 2s infinite;
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  color: var(--white);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-tooltip {
  position: absolute;
  left: 68px;
  background: var(--white);
  color: var(--text-dark);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-10px);
  transition: var(--transition-fast);
}

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

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 0 12px rgba(37, 211, 102, 0.1); }
}

/* ============================
   ENHANCED PRELOADER
   ============================ */
.loader-ring-2 {
  position: absolute;
  inset: 6px;
  border: 2px solid transparent;
  border-bottom-color: var(--accent);
  border-left-color: var(--primary-light);
  border-radius: 50%;
  animation: spin 1.8s linear infinite reverse;
}

/* ============================
   ENHANCED BUTTON GLOW
   ============================ */
.btn-primary {
  position: relative;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: var(--gradient);
  z-index: -1;
  opacity: 0;
  filter: blur(12px);
  transition: opacity var(--transition);
}

.btn-primary:hover::after {
  opacity: 0.5;
}

/* ============================
   SMOOTH CURSOR GLOW (DESKTOP)
   ============================ */
.cursor-glow {
  position: fixed;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 168, 56, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease-out, opacity 0.3s ease;
  opacity: 0;
}

.cursor-glow.visible {
  opacity: 1;
}

/* ============================
   TILT EFFECT ON OFFERING CARDS
   ============================ */
.offering-card {
  transform-style: preserve-3d;
  perspective: 1000px;
}

/* ============================
   RESPONSIVE ADDITIONS
   ============================ */
@media (max-width: 1024px) {
  .hero-shapes .shape-1 { width: 200px; height: 200px; }
  .hero-shapes .shape-3,
  .hero-shapes .shape-4 { display: none; }
}

@media (max-width: 640px) {
  .whatsapp-float {
    bottom: 20px;
    left: 20px;
    width: 48px;
    height: 48px;
  }
  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }
  .whatsapp-tooltip { display: none; }
  .hero-shapes { display: none; }
  .wave-divider svg { height: 40px; }
  .section-deco { display: none; }
}

/* ============================
   TOP INFO BAR
   ============================ */
.top-bar {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.8rem;
  padding: 8px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.3s ease;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition-fast);
}

.top-bar-item:hover {
  color: var(--accent-light);
}

.top-bar-item svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar-social {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-bar-social a {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition-fast);
}

.top-bar-social a:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
}

.top-bar-social svg {
  width: 13px;
  height: 13px;
}

.top-bar-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 3px 12px;
  background: rgba(232, 168, 56, 0.15);
  border-radius: 20px;
  border: 1px solid rgba(232, 168, 56, 0.3);
}

.top-bar-badge img {
  height: 18px;
  filter: brightness(0) invert(1);
}

.top-bar-badge span {
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--accent-light);
}

/* ============================
   NAV CTA BUTTON
   ============================ */
.nav-cta-btn {
  padding: 10px 28px;
  background: var(--gradient-accent);
  color: var(--primary-dark) !important;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: var(--transition);
  white-space: nowrap;
}

.nav-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 168, 56, 0.4);
}

/* ============================
   SECTION SUBTITLE
   ============================ */
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 16px auto 0;
  line-height: 1.7;
}

/* ============================
   DESTINATIONS SECTION
   ============================ */
.section-destinations {
  background: var(--white);
  overflow: hidden;
}

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

.destination-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
}

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

.destination-card-wide {
  grid-column: span 3;
}

.destination-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.destination-card-wide .destination-img {
  height: 280px;
}

.destination-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.destination-card:hover .destination-img img {
  transform: scale(1.1);
}

.destination-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 42, 82, 0.5) 0%, transparent 60%);
}

.destination-content {
  padding: 24px;
}

.destination-tag {
  display: inline-block;
  padding: 4px 14px;
  background: rgba(232, 168, 56, 0.12);
  color: var(--accent);
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.destination-content h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.destination-content p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 14px;
}

.destination-meta {
  display: flex;
  gap: 20px;
}

.destination-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 500;
}

.destination-meta svg {
  color: var(--primary);
}

/* ============================
   STATS COUNTER BAR
   ============================ */
.stats-bar {
  background: var(--gradient);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}

.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stats-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
  z-index: 1;
}

.stats-bar-item {
  text-align: center;
  color: var(--white);
}

.stats-bar-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.stats-bar-icon svg {
  width: 24px;
  height: 24px;
  color: var(--accent-light);
}

.stats-bar-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  color: var(--white);
}

.stats-bar-suffix {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-light);
}

.stats-bar-item p {
  font-size: 0.9rem;
  opacity: 0.85;
  margin-top: 4px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* ============================
   PROGRAMS SCROLLING BAND
   ============================ */
.programs-band {
  background: var(--accent);
  padding: 16px 0;
  overflow: hidden;
}

.programs-scroll {
  display: flex;
  align-items: center;
  white-space: nowrap;
  will-change: transform;
}

.programs-scroll span {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 0 24px;
  white-space: nowrap;
}

.programs-dot {
  width: 6px !important;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5) !important;
  display: inline-block;
  flex-shrink: 0;
  padding: 0 !important;
  letter-spacing: 0 !important;
  font-size: 0 !important;
}

/* ============================
   WHY US SCROLLING BAND
   ============================ */
.why-us-band {
  background: var(--accent);
  padding: 16px 0;
  overflow: hidden;
}

.why-us-scroll {
  display: flex;
  align-items: center;
  white-space: nowrap;
  will-change: transform;
}

.why-us-item {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary-dark);
  padding: 0 24px !important;
  white-space: nowrap;
}

.why-us-item svg {
  color: var(--primary-dark);
  flex-shrink: 0;
}

.why-us-dot {
  width: 6px !important;
  height: 6px;
  border-radius: 50%;
  background: var(--primary) !important;
  display: inline-block;
  flex-shrink: 0;
  padding: 0 !important;
  letter-spacing: 0 !important;
  font-size: 0 !important;
  opacity: 0.5;
}

/* ============================
   WHY CHOOSE US SCROLLING BAND
   ============================ */
.why-choose-band {
  background: var(--primary-dark);
  padding: 18px 0;
  overflow: hidden;
  position: relative;
}

.why-choose-band .marquee-track {
  display: flex;
  overflow: hidden;
}

.why-choose-band .marquee-content {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
}

.why-item {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.5px;
  padding: 0 24px !important;
}

.why-item svg {
  color: var(--accent);
  flex-shrink: 0;
}

.why-dot {
  width: 5px !important;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4) !important;
  display: inline-block;
  flex-shrink: 0;
  padding: 0 !important;
  letter-spacing: 0 !important;
  font-size: 0 !important;
}

@keyframes marqueeScroll {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

/* ============================
   SIDE FLOATING CONTACT PANEL
   ============================ */
.side-contact-panel {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 98;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.side-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  color: var(--white);
  transition: var(--transition);
  border-radius: 8px 0 0 8px;
  transform: translateX(calc(100% - 48px));
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
}

.side-btn:hover {
  transform: translateX(0);
}

.side-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.side-whatsapp {
  background: #25d366;
}

.side-phone {
  background: #38bdf8;
}

.side-email {
  background: #ea4335;
}

.side-label {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.side-btn:hover .side-label {
  opacity: 1;
}

/* ============================
   LEFT SIDE SLIDER PANEL
   ============================ */
.side-slider-tab {
  position: fixed;
  left: 0;
  top: 40%;
  transform: translateY(-50%);
  z-index: 1002;
  background: rgba(232, 168, 56, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 0 12px 12px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 8px;
  cursor: pointer;
  box-shadow: 3px 0 15px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-left: none;
}

.side-slider-tab:hover {
  background: var(--accent-light);
  padding-right: 12px;
}

.slider-icon {
  width: 20px;
  height: 20px;
  color: var(--primary-dark);
}

.slider-text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--primary-dark);
  text-transform: uppercase;
}

.side-slider-tab.active {
  left: 240px;
}

.side-slider-tab.active .slider-icon {
  transform: rotate(180deg);
}

.side-slider-panel {
  position: fixed;
  left: -260px;
  top: 40%;
  transform: translateY(-50%);
  width: 240px;
  background: rgba(232, 168, 56, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 50px 24px 30px;
  border-radius: 0 20px 20px 0;
  transition: left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 4px 0 40px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-left: none;
}

.side-slider-panel.active {
  left: 0;
}

.side-slider-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--primary-dark);
  opacity: 0.5;
  transition: var(--transition-fast);
}

.side-slider-close:hover {
  opacity: 1;
}

.side-slider-close svg {
  width: 20px;
  height: 20px;
}

.side-slider-link {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 12px 20px;
  background: var(--primary);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 10px;
  transition: var(--transition-fast);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  border: none;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.side-slider-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  filter: brightness(1.1);
}

.side-slider-link svg {
  color: var(--white);
  width: 18px;
  height: 18px;
}

.side-slider-link svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.side-slider-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

/* ============================
   TEAM SECTION
   ============================ */
.section-team {
  background: var(--bg);
  padding: 80px 0;
}

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

.team-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.team-card-img img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.team-card-info {
  padding: 20px 16px;
}

.team-card-info h3 {
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 4px;
}

.team-role {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 8px;
}

.team-bio {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.5;
}

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

@media (max-width: 576px) {
  .team-grid { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }
}

/* ============================
   BLOG SECTION
   ============================ */
.section-blog {
  background: var(--bg);
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid rgba(27, 58, 92, 0.04);
  display: flex;
  flex-direction: column;
}

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

.blog-card-featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
}

.blog-card-featured .blog-card-img {
  height: 100%;
  min-height: 300px;
}

.blog-card-featured .blog-card-body {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-card-featured h3 {
  font-size: 1.5rem;
}

.blog-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}

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

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

.blog-card-category {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 5px 14px;
  background: var(--gradient);
  color: var(--white);
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.blog-card-body {
  padding: 28px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 14px;
}

.blog-card-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 500;
}

.blog-card-meta svg {
  color: var(--accent);
}

.blog-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
  flex: 1;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  transition: var(--transition-fast);
}

.blog-read-more:hover {
  color: var(--accent);
  gap: 10px;
}

.blog-read-more svg {
  transition: var(--transition-fast);
}

@media (max-width: 1024px) {
  .blog-card-featured {
    grid-column: span 2;
    grid-template-columns: 1fr;
  }
  .blog-card-featured .blog-card-img {
    min-height: 220px;
    height: 220px;
  }
}

@media (max-width: 640px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .blog-card-featured {
    grid-column: span 1;
  }
}

/* ============================
   FOOTER TRUST STRIP
   ============================ */
.footer-trust-strip {
  background: rgba(255, 255, 255, 0.04);
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.trust-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.trust-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-icon svg {
  width: 22px;
  height: 22px;
  color: var(--accent-light);
}

.trust-item strong {
  display: block;
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
}

.trust-item span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ============================
   RESPONSIVE ADDITIONS - NEW
   ============================ */
@media (max-width: 1024px) {
  .top-bar-left { display: none; }
  .top-bar-inner { justify-content: center; }
  .nav-cta-btn { display: none; }

  .destinations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .destination-card-wide {
    grid-column: span 2;
  }

  .stats-bar-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

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

  .side-contact-panel { display: none; }
}

@media (max-width: 640px) {
  .top-bar { display: none; }
  .navbar { top: 0; }

  .destinations-grid {
    grid-template-columns: 1fr;
  }
  .destination-card-wide {
    grid-column: span 1;
  }
  .destination-img { height: 180px; }
  .destination-card-wide .destination-img { height: 200px; }

  .stats-bar-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .stats-bar { padding: 48px 0; }
  .stats-bar-number { font-size: 2.2rem; }

  .marquee-content span {
    font-size: 1rem;
    letter-spacing: 4px;
  }

  .trust-items {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .side-contact-panel { display: none; }
}

/* ============================
   PAGE HERO (subpages)
   ============================ */
.page-hero {
  position: relative;
  padding: 180px 0 80px;
  text-align: center;
  overflow: hidden;
  min-height: 380px;
  display: flex;
  align-items: center;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(12, 42, 82, 0.85) 0%, rgba(27, 58, 92, 0.92) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 560px;
  margin: 0 auto 24px;
  line-height: 1.7;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.85rem;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition-fast);
}

.breadcrumb a:hover {
  color: var(--accent-light);
}

.breadcrumb-sep {
  color: rgba(255, 255, 255, 0.35);
}

.breadcrumb-current {
  color: var(--accent-light);
  font-weight: 600;
}

/* ============================
   BLOG PAGE SPECIFICS
   ============================ */
.section-blog-page {
  background: var(--bg);
}

.blog-grid-page {
  grid-template-columns: repeat(3, 1fr);
}

.blog-grid-page .blog-card-featured {
  grid-column: span 1;
  display: flex;
  flex-direction: column;
}

.blog-grid-page .blog-card-featured .blog-card-img {
  height: 200px;
  min-height: 200px;
}

.blog-grid-page .blog-card-featured .blog-card-body {
  padding: 28px 24px;
}

.blog-grid-page .blog-card-featured h3 {
  font-size: 1.15rem;
}

/* Category Filters */
.blog-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 48px;
}

.blog-filter-btn {
  padding: 8px 24px;
  border: 2px solid rgba(27, 58, 92, 0.12);
  background: var(--white);
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-light);
  cursor: pointer;
  transition: var(--transition-fast);
  letter-spacing: 0.3px;
}

.blog-filter-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.blog-filter-btn.active {
  background: var(--gradient);
  color: var(--white);
  border-color: transparent;
}

/* Pagination */
.blog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 60px;
}

.blog-page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light);
  background: var(--white);
  border: 1px solid rgba(27, 58, 92, 0.1);
  transition: var(--transition-fast);
  cursor: pointer;
  text-decoration: none;
}

.blog-page-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.blog-page-btn.active {
  background: var(--gradient);
  color: var(--white);
  border-color: transparent;
}

.blog-page-next {
  gap: 6px;
}

.blog-page-next svg {
  width: 16px;
  height: 16px;
}

/* View All Posts */
.blog-view-all {
  text-align: center;
  margin-top: 48px;
}

/* Page Hero Responsive */
@media (max-width: 1024px) {
  .page-hero {
    padding: 150px 0 60px;
    min-height: 320px;
  }
  .blog-grid-page {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .page-hero {
    padding: 120px 0 48px;
    min-height: 280px;
  }
  .page-hero-title { font-size: 1.8rem; }
  .page-hero-subtitle { font-size: 0.92rem; }
  .blog-grid-page { grid-template-columns: 1fr; }
  .blog-grid-page .blog-card-featured { grid-column: span 1; }
  .blog-filters { gap: 8px; margin-bottom: 36px; }
  .blog-filter-btn { padding: 7px 18px; font-size: 0.78rem; }
  .blog-pagination { margin-top: 40px; gap: 6px; }
  .blog-page-btn { min-width: 38px; height: 38px; font-size: 0.8rem; }
}

/* --- Blog Article Page --- */
.article-page {
  padding: 60px 0 80px;
  background: var(--bg);
}

.article-container {
  max-width: 820px;
  margin: 0 auto;
}

.article-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 32px;
  transition: var(--transition-fast);
}

.article-back:hover {
  color: var(--accent);
  gap: 10px;
}

.article-category {
  display: inline-block;
  padding: 5px 16px;
  border-radius: 20px;
  background: var(--gradient);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.article-title {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 20px;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(27, 58, 92, 0.08);
}

.article-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.article-hero-img {
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 40px;
}

.article-hero-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.article-content {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text);
}

.article-content p {
  margin-bottom: 24px;
}

.article-content h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 40px 0 16px;
}

.article-content h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 32px 0 12px;
}

.article-content ul,
.article-content ol {
  margin: 0 0 24px 24px;
}

.article-content li {
  margin-bottom: 10px;
  line-height: 1.75;
}

.article-content blockquote {
  border-left: 4px solid var(--accent);
  padding: 20px 24px;
  margin: 32px 0;
  background: rgba(232, 168, 56, 0.06);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--text);
  font-size: 1.1rem;
}

.article-content strong {
  color: var(--text-dark);
  font-weight: 600;
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(27, 58, 92, 0.08);
}

.article-tag {
  padding: 6px 16px;
  border-radius: 20px;
  background: rgba(27, 58, 92, 0.06);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 500;
  transition: var(--transition-fast);
}

.article-tag:hover {
  background: var(--primary);
  color: var(--white);
}

.article-share {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}

.article-share span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
}

.article-share a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(27, 58, 92, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: var(--transition-fast);
}

.article-share a:hover {
  background: var(--primary);
  color: var(--white);
}

.article-share a svg {
  width: 18px;
  height: 18px;
}

/* Related Articles */
.related-articles {
  padding: 60px 0 80px;
  background: var(--white);
}

.related-articles .section-header {
  margin-bottom: 40px;
}

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

@media (max-width: 1024px) {
  .article-title { font-size: 2rem; }
  .article-hero-img img { height: 340px; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .article-title { font-size: 1.6rem; }
  .article-hero-img img { height: 240px; }
  .article-meta { flex-wrap: wrap; gap: 12px; }
  .related-grid { grid-template-columns: 1fr; }
  .article-content { font-size: 1rem; }
}

/* --- Print --- */
@media print {
  .navbar, .hero-scroll, .back-to-top, .lightbox, #preloader, .top-bar, .side-contact-panel, .marquee-section {
    display: none !important;
  }
  .hero {
    height: auto;
    min-height: auto;
    padding: 40px 0;
  }
}
