/* ==========================================================================
   1. GLOBAL VARIABLES & RESET
   ========================================================================== */
:root {
  --primary-navy: #0B132B;
  --dark-navy: #1C2541;
  --accent-orange: #FF6B00;
  --accent-orange-hover: #E05E00;
  --bg-surface: #F8FAFC;
  --text-main: #1F2937;
  --text-muted: #6B7280;
  --border-color: #E2E8F0;
  --white: #FFFFFF;
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 30px -10px rgba(0, 0, 0, 0.15);
}

body {
  position: relative;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

img, svg, video {
  max-width: 100%;
  height: auto;
}

.flex-child {
  min-width: 0; /* Prevents flex items from overflowing */
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text-main);
  background-color: var(--bg-surface);
  line-height: 1.5;
  overflow-x: hidden; /* Prevents screen splitting/horizontal scroll on mobile */
  width: 100%;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.bg-surface {
  background-color: var(--bg-surface);
}

.section-padding {
  padding: 5rem 0;
}

/* ==========================================================================
   2. HEADER & NAVIGATION (DESKTOP)
   ========================================================================== */
.navbar-v2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(11, 19, 43, 0.6);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.brand-logo img {
  height: 42px;
  width: auto;
  display: block;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-link {
  color: #E2E8F0;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.925rem;
  transition: color 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent-orange);
}

.hamburger-btn {
  display: none;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1002; /* Keeps hamburger above mobile menu */
}

/* ==========================================================================
   3. HERO SECTION (DESKTOP)
   ========================================================================== */
.hero-v2 {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: url('../assets/images/hero-bg.jpg') center/cover no-repeat;
  padding: 8rem 0 6rem 0;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  /* Reduced opacities from 0.88 -> 0.50 and 0.75 -> 0.35 */
  background: linear-gradient(135deg, rgba(11, 19, 43, 0.50) 0%, rgba(28, 37, 65, 0.35) 100%);
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero-content-v2 {
  max-width: 620px;
}

.hero-script-tag {
  font-family: 'Caveat', cursive;
  font-size: 1.6rem;
  color: var(--accent-orange);
  display: block;
  margin-bottom: 0.5rem;
}

.hero-headline {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.highlight-orange {
  color: var(--accent-orange);
}

.hero-subtext {
  font-size: 1.05rem;
  color: #CBD5E1;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.btn-orange-filled {
  background: var(--accent-orange);
  color: var(--white);
  padding: 0.85rem 1.75rem;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.btn-orange-filled:hover {
  background: var(--accent-orange-hover);
  transform: translateY(-2px);
}

.btn-outline-glass {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0.85rem 1.75rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
}

.btn-outline-glass:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

/* Floating Badge Desktop */
.floating-badge-v2 {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1rem 1.5rem;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.badge-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-orange);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.badge-text h3 {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
}

.badge-text p {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.9;
}

/* Slider Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
  z-index: 3;
}

.slider-arrow:hover {
  background: var(--accent-orange);
}

.arrow-left { left: 1rem; }
.arrow-right { right: 1rem; }

/* ==========================================================================
   4. FLOATING SEARCH DRAWER (DESKTOP)
   ========================================================================== */
.drawer-wrapper-v2 {
  margin-top: -3.5rem;
  position: relative;
  z-index: 10;
}

.search-drawer-v2 {
  background: var(--primary-navy);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}

.drawer-tabs {
  display: flex;
  gap: 0.5rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1rem;
  margin-bottom: 1.25rem;
  overflow-x: auto;
}

.drawer-tab {
  background: transparent;
  border: none;
  padding: 0.6rem 1.2rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--white);
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  transition: all 0.25s ease;
}

.drawer-tab.active {
  background: var(--accent-orange);
  color: var(--white);
}

.search-tab-content {
  display: none;
}

.search-tab-content.active {
  display: block;
}

.drawer-inputs-row {
  display: grid;
  gap: 1rem;
  align-items: end;
}

/* Strict Layout grids to ensure single line on desktop */
.flight-grid {
  grid-template-columns: 2fr auto 2fr 1.5fr 1.5fr 1.5fr 1.5fr;
}

.grid-hotel, .grid-tour, .grid-visa {
  grid-template-columns: 2.5fr 1.5fr 1.5fr 1.5fr 1.5fr;
}

.drawer-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.drawer-field label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Fixed Colors for Search Inputs */
.input-with-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.input-with-icon i {
  position: absolute;
  left: 0.85rem;
  color: var(--primary-navy);
  font-size: 0.9rem;
  pointer-events: none;
}

.input-with-icon input,
.input-with-icon select {
  width: 100%;
  padding: 0.7rem 0.85rem 0.7rem 2.25rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: 0.875rem;
  outline: none;
  font-family: inherit;
  background-color: var(--bg-surface);
  color: var(--text-main);
}

.input-with-icon input::placeholder {
  color: var(--text-muted);
}

.btn-swap-cities {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-navy);
  align-self: center;
}

.btn-drawer-search {
  width: 100%;
  background: var(--primary-navy);
  color: var(--white);
  border: none;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.875rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: background 0.25s ease;
}

.btn-drawer-search:hover {
  background: var(--accent-orange);
}

/* ==========================================================================
   5. TRUST INDICATORS BAR (DESKTOP)
   ========================================================================== */
.trust-bar-section {
  padding: 3rem 0;
  background-color: var(--white);
}

.trust-bar-v2 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.trust-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.icon-green { background: #ECFDF5; color: #10B981; }
.icon-orange { background: #FFF7ED; color: #F97316; }
.icon-teal { background: #F0FDFA; color: #14B8A6; }
.icon-gold { background: #FEFCE8; color: #EAB308; }
.icon-blue { background: #EFF6FF; color: #3B82F6; }

.trust-text h4 {
  font-size: 0.9rem;
  font-weight: 700;
}

.trust-text p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ==========================================================================
   6. SERVICES SECTION (DESKTOP)
   ========================================================================== */
.section-header {
  margin-bottom: 3rem;
}

.text-center { text-align: center; }

.sub-header-tag {
  color: var(--accent-orange);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 1px;
}

.main-header-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-top: 0.25rem;
}

.header-line {
  width: 50px;
  height: 3px;
  background: var(--accent-orange);
  margin: 0.5rem auto 0 auto;
  border-radius: 2px;
}

.grid-6-v2 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
}

.service-box-v2 {
  background: var(--white);
  padding: 2rem 1rem;
  border-radius: 12px;
  text-align: center;
  text-decoration: none;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-box-v2:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(255, 107, 0, 0.4);
}

.service-box-v2 img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.service-box-v2 h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 0.25rem;
}

.service-box-v2 p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ==========================================================================
   7. FOOTER & FLOATING WIDGETS (DESKTOP)
   ========================================================================== */
.site-footer {
  background: var(--primary-navy);
  color: #94A3B8;
  padding: 2rem 0;
  text-align: center;
  font-size: 0.85rem;
}

.whatsapp-float, .instagram-float, .facebook-float {
  position: fixed;
  right: 20px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.35rem;
  box-shadow: var(--shadow-md);
  z-index: 99;
  text-decoration: none;
}

.whatsapp-float { bottom: 20px; background: #25D366; }
.instagram-float { bottom: 74px; background: linear-gradient(45deg, #f09433, #dc2743, #bc1888); }
.facebook-float { bottom: 128px; background: #1877F2; }


/* ==========================================================================
   8. MOBILE RESPONSIVENESS OVERHAUL (≤768px ONLY)
   ========================================================================== */
@media (max-width: 768px) {
  
  /* --- Navigation / Hamburger System --- */
  .hamburger-btn {
    display: block; 
  }

  .nav-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  height: 100vh;
  background: var(--primary-navy);
  flex-direction: column;
  align-items: flex-start;
  padding: 5rem 1.75rem 2rem 1.75rem;
  gap: 1.25rem;
  box-shadow: -10px 0 30px rgba(0,0,0,0.5);
  transform: translateX(100%); /* Hides it off-screen without stretching viewport */
  transition: transform 0.35s ease-in-out;
  z-index: 1001;
}

.nav-menu.open {
  transform: translateX(0); /* Slides it back smoothly */
}

  .nav-menu.open {
    right: 0;
  }

  .nav-link {
    font-size: 1.05rem;
    width: 100%;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  /* --- Brand Logo --- */
  .brand-logo img {
    height: 50px;
  }

  /* --- Hero Heights & Typography Spacing --- */
  .hero-v2 {
    min-height: 75vh;
    padding: 6.5rem 0 3.5rem 0;
  }

  .hero-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-script-tag {
    font-size: 1.25rem;
  }

  .hero-headline {
    font-size: 2.15rem;
    margin-bottom: 0.75rem;
  }

  .hero-subtext {
    font-size: 0.925rem;
    margin-bottom: 1.5rem;
  }

  /* --- Mobile CTA Buttons --- */
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
    align-items: flex-start;
  }

  .btn-orange-filled,
  .btn-outline-glass {
    width: 100%;
    justify-content: center;
  }

  /* --- Floating Counter Badge --- */
  .floating-badge-v2 {
    margin-top: 1.75rem;
    padding: 0.75rem 1.25rem;
  }

  .badge-icon {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }

  .badge-text h3 { font-size: 1.2rem; }
  .badge-text p { font-size: 0.68rem; }

  /* --- Slider Arrows --- */
  .slider-arrow {
    width: 34px;
    height: 34px;
    font-size: 0.8rem;
  }

  .arrow-left { left: 0.5rem; }
  .arrow-right { right: 0.5rem; }

  /* --- Search Drawer Mobile Refinements --- */
  .drawer-wrapper-v2 {
    margin-top: -1.5rem;
    padding: 0 1rem;
  }

  .search-drawer-v2 {
    padding: 1rem;
  }

  .flight-grid, .grid-hotel, .grid-tour, .grid-visa {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .btn-swap-cities {
    transform: rotate(90deg);
    margin: -0.25rem auto;
  }

  /* --- Trust Bar & Services Grid Mobile Refinements --- */
  .trust-bar-v2 {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .grid-6-v2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
  }

  .service-box-v2 {
    padding: 1.25rem 0.75rem;
  }

  /* --- Collapsed Floating Social Buttons --- */
  .whatsapp-float, .instagram-float, .facebook-float {
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
    right: 12px;
  }

  .whatsapp-float { bottom: 12px; }
  .instagram-float { bottom: 56px; }
  .facebook-float { bottom: 100px; }
}



/* ==========================================================================
   9. INNER PAGE HERO (ABOUT, SERVICES, ETC)
   ========================================================================== */
.page-hero-v2 {
  position: relative;
  padding: 8rem 0 4rem 0;
  background: url('../assets/images/hero-bg.jpg') center/cover no-repeat;
  text-align: center;
  color: var(--white);
}

.hero-inner-container {
  position: relative;
  z-index: 2;
}

.page-title {
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #CBD5E1;
}

.breadcrumb a {
  color: var(--accent-orange);
  text-decoration: none;
}

.breadcrumb i {
  font-size: 0.75rem;
  opacity: 0.6;
}

/* ==========================================================================
   10. ABOUT STORY & STATS SECTION
   ========================================================================== */
.text-left {
  text-align: left;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.about-image-stack {
  position: relative;
}

.about-image-stack img {
  width: 100%;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  display: block;
}

.experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--primary-navy);
  color: var(--white);
  padding: 1.25rem 1.75rem;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--shadow-md);
  border: 3px solid var(--white);
}

.exp-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-orange);
  line-height: 1;
}

.exp-text {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

.about-lead {
  font-size: 1.1rem;
  color: var(--primary-navy);
  margin-top: 1rem;
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.about-body {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  border-top: 1px solid var(--border-color);
  padding-top: 1.5rem;
}

.stat-card h3 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--accent-orange);
}

.stat-card p {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* ==========================================================================
   11. PILLARS / MISSION & VISION
   ========================================================================== */
.bg-white {
  background-color: var(--white);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.pillar-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  padding: 2.25rem 1.5rem;
  border-radius: 16px;
  text-align: center;
  transition: transform 0.3s ease;
}

.pillar-card:hover {
  transform: translateY(-5px);
}

.pillar-card.highlight-card {
  background: var(--primary-navy);
  color: var(--white);
}

.pillar-card.highlight-card p {
  color: #CBD5E1;
}

.pillar-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255, 107, 0, 0.1);
  color: var(--accent-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin: 0 auto 1.25rem auto;
}

.pillar-card.highlight-card .pillar-icon {
  background: var(--accent-orange);
  color: var(--white);
}

.pillar-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.pillar-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   12. FEATURES & CTA BANNER
   ========================================================================== */
.features-grid-v2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.feature-box {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.feature-icon-wrapper {
  width: 48px;
  height: 48px;
  background: var(--bg-surface);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-orange);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.feature-info h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 0.25rem;
}

.feature-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.cta-banner-v2 {
  padding: 3rem 0;
  background: var(--bg-surface);
}

.cta-card {
  background: linear-gradient(135deg, var(--primary-navy) 0%, var(--dark-navy) 100%);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
}

.cta-text h2 {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.cta-text p {
  color: #CBD5E1;
  font-size: 0.95rem;
}

/* ==========================================================================
   13. ABOUT PAGE MOBILE RESPONSIVENESS (≤768px)
   ========================================================================== */
@media (max-width: 768px) {
  .page-hero-v2 {
    padding: 6.5rem 0 3rem 0;
  }

  .page-title {
    font-size: 2rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .experience-badge {
    right: 10px;
    bottom: -15px;
    padding: 0.85rem 1.25rem;
  }

  .pillars-grid {
    grid-template-columns: 1fr;
  }

  .features-grid-v2 {
    grid-template-columns: 1fr;
  }

  .cta-card {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
    padding: 2rem 1.5rem;
  }

  .cta-actions {
    width: 100%;
  }

  .cta-actions .btn-orange-filled {
    width: 100%;
    justify-content: center;
  }
}


/* ==========================================================================
   14. SERVICES PAGE SPECIFIC LIGHTWEIGHT STYLES
   ========================================================================== */
.services-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.s-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.s-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.s-card-img {
  position: relative;
  height: 190px;
  overflow: hidden;
}

.s-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.s-card:hover .s-card-img img {
  transform: scale(1.05);
}

.s-card-icon {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--primary-navy);
  color: var(--accent-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-sm);
}

.s-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.s-card-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 0.5rem;
}

.s-card-body p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.s-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--accent-orange);
  text-decoration: none;
  transition: gap 0.2s ease;
}

.s-card-link:hover {
  gap: 0.75rem;
}

/* Process Section */
.process-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.process-card {
  position: relative;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  padding: 2.25rem 1.5rem;
  border-radius: 16px;
  text-align: center;
}

.step-badge {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--border-color);
  line-height: 1;
}

.process-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--white);
  color: var(--accent-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin: 0 auto 1.25rem auto;
  box-shadow: var(--shadow-sm);
}

.process-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 0.5rem;
}

.process-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Mobile Adjustments */
@media (max-width: 992px) {
  .services-grid-v2,
  .process-steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .services-grid-v2,
  .process-steps-grid {
    grid-template-columns: 1fr;
  }
}


/* ==========================================================================
   15. STUDY ABROAD PAGE SPECIFIC STYLES
   ========================================================================== */
.study-stats {
  grid-template-columns: repeat(4, 1fr);
  border-top: none;
  padding-top: 0;
  text-align: center;
}

.study-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: start;
}

/* Checklist Styles */
.sa-checklist {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.sa-checklist li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--primary-navy);
  font-weight: 500;
}

.sa-checklist li i {
  color: #10B981;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* Intake Card */
.intake-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.intake-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.intake-item i {
  color: var(--accent-orange);
  font-size: 1.25rem;
  margin-top: 0.2rem;
}

.intake-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 0.15rem;
}

.intake-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Form Wrapper Card */
.form-wrapper-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.form-card-header {
  background: var(--primary-navy);
  color: var(--white);
  padding: 1.5rem;
  text-align: center;
}

.form-card-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.form-card-header p {
  font-size: 0.85rem;
  color: #CBD5E1;
}

.iframe-container {
  width: 100%;
  height: 650px;
  position: relative;
  background: #fdfdfd;
}

.iframe-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Responsive Overrides */
@media (max-width: 992px) {
  .study-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .study-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .study-stats {
    grid-template-columns: 1fr;
  }
  
  .iframe-container {
    height: 550px;
  }
}


/* ==========================================================================
   16. FLIGHTS PAGE SPECIFIC STYLES
   ========================================================================== */
.flight-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.flight-route-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.flight-sidebar .s-card-img {
  height: 150px;
}

.flight-sidebar .s-card-body {
  padding: 1.25rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

@media (min-width: 993px) {
  /* Reverses column order so form sits on the left, routes on the right */
  .study-grid {
    grid-template-columns: 1.1fr 1fr;
  }
}


/* ==========================================================================
   BLOG PAGE - SUIGENERIS TRAVELS NEWS & MEDIA HUB
   ========================================================================== */

/* 1. Page Hero Banner */
.page-hero {
 position: relative;
  padding: 8rem 0 4rem 0;
  background: url('../assets/images/hero-bg.jpg') center/cover no-repeat;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}

 .hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255, 107, 0, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.page-hero .hero-inner-container {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.page-hero .section-title {
  color: var(--white);
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.page-hero .section-subtitle {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  line-height: 1.6;
}

/* 2. Breaking / Latest News Ticker Strip */
.breaking-news-strip {
  background: var(--primary-navy);
  border-bottom: 2px solid var(--accent-orange);
  color: var(--white);
  padding: 0.6rem 0;
  font-size: 0.875rem;
  overflow: hidden;
}

.news-strip-inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.breaking-label {
  background: var(--accent-orange);
  color: var(--white);
  font-weight: 800;
  font-size: 0.75rem;
  padding: 0.35rem 0.75rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: 0 2px 6px rgba(255, 107, 0, 0.4);
}

.ticker-wrapper {
  flex-grow: 1;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.ticker-content {
  display: inline-block;
  white-space: nowrap;
  animation: ticker 35s linear infinite;
}

.ticker-wrapper:hover .ticker-content {
  animation-play-state: paused;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-right: 2.5rem;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.2s ease;
}

.ticker-item:hover {
  color: var(--accent-orange);
}

.ticker-item i {
  font-size: 0.4rem;
  color: var(--accent-orange);
}

@keyframes ticker {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

/* 3. Category Bar Navigation */
.news-categories-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border-color);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 90;
  box-shadow: var(--shadow-sm);
}

.categories-scroll {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 2px;
}

.categories-scroll::-webkit-scrollbar {
  display: none;
}

.cat-pill {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  padding: 0.5rem 1rem;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.cat-pill:hover,
.cat-pill.active {
  background: var(--primary-navy);
  color: var(--white);
  border-color: var(--primary-navy);
}

.cat-pill.active i {
  color: var(--accent-orange);
}

/* Base Category Badges & Identifiers */
.category-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.725rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: 4px;
  letter-spacing: 0.03em;
  width: fit-content;
}

.category-tag.visa { background: rgba(13, 110, 253, 0.1); color: #0d6efd; }
.category-tag.scholarship { background: rgba(25, 135, 84, 0.1); color: #198754; }
.category-tag.company { background: rgba(255, 107, 0, 0.1); color: var(--accent-orange); }
.category-tag.alert { background: rgba(220, 53, 69, 0.1); color: #dc3545; }
.category-tag.tips { background: rgba(108, 117, 125, 0.1); color: #495057; }

/* 4. Featured Spotlight Post */
.featured-news-card {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 3.5rem;
}

.featured-news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.featured-news-img {
  position: relative;
  min-height: 340px;
  background: var(--primary-navy);
  overflow: hidden;
}

.featured-news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.featured-news-card:hover .featured-news-img img {
  transform: scale(1.05);
}

.featured-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background: var(--accent-orange);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.35rem 0.85rem;
  border-radius: 30px;
  text-transform: uppercase;
  box-shadow: var(--shadow-sm);
}

.featured-news-body {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.news-meta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.825rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.featured-headline {
  font-size: 1.85rem;
  font-weight: 800;
  line-height: 1.35;
  color: var(--primary-navy);
  margin-bottom: 1rem;
}

.featured-headline a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.featured-headline a:hover {
  color: var(--accent-orange);
}

.featured-excerpt {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

.featured-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.read-time {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* Section Structural Headers */
.news-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--border-color);
  position: relative;
}

.news-section-header::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 60px;
  height: 2px;
  background: var(--accent-orange);
}

.news-section-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary-navy);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.news-section-title i {
  color: var(--accent-orange);
}

.section-link {
  color: var(--accent-orange);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap 0.2s ease;
}

.section-link:hover {
  gap: 0.6rem;
}

/* 5. Company Announcements (Dark/Navy Distinct Style) */
.company-announcements-wrapper {
  background: linear-gradient(135deg, var(--primary-navy) 0%, var(--dark-navy) 100%);
  border-radius: 16px;
  padding: 2.5rem;
  color: var(--white);
  margin: 3.5rem 0;
}

.company-announcements-wrapper .news-section-title {
  color: var(--white);
}

.company-announcements-wrapper .news-section-header {
  border-bottom-color: rgba(255, 255, 255, 0.15);
}

.announcement-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.announcement-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.announcement-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
  border-color: var(--accent-orange);
}

.announcement-badge {
  background: rgba(255, 107, 0, 0.2);
  color: var(--accent-orange);
  border: 1px solid rgba(255, 107, 0, 0.4);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  margin-bottom: 1rem;
  width: fit-content;
}

.announcement-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.announcement-desc {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.announcement-date {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* 6. Travel Alerts & Visa Updates (Alert Cards Style) */
.alerts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.alert-card {
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  border-left: 5px solid #dc3545; /* Red alert theme default */
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.alert-card.warning { border-left-color: #ffc107; }
.alert-card.info { border-left-color: #0d6efd; }

.alert-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.alert-status-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.alert-pill {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

.alert-card.danger .alert-pill { background: rgba(220, 53, 69, 0.1); color: #dc3545; }
.alert-card.warning .alert-pill { background: rgba(255, 193, 7, 0.15); color: #856404; }
.alert-card.info .alert-pill { background: rgba(13, 110, 253, 0.1); color: #0d6efd; }

.alert-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 0.5rem;
}

.alert-excerpt {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 1rem;
}

/* 7. Scholarship & Study Abroad Updates */
.scholarship-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.scholarship-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.scholarship-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.scholarship-header {
  background: var(--bg-surface);
  padding: 1.25rem;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flag-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--primary-navy);
}

.funding-tag {
  background: rgba(25, 135, 84, 0.1);
  color: #198754;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.25rem 0.6rem;
  border-radius: 20px;
}

.scholarship-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.scholarship-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.scholarship-deadline {
  font-size: 0.825rem;
  color: #dc3545;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 1rem;
  background: rgba(220, 53, 69, 0.05);
  padding: 0.4rem 0.6rem;
  border-radius: 6px;
  width: fit-content;
}

.scholarship-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

/* 8. Main Article Feed Grid */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.75rem;
}

.blog-card {
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(255, 107, 0, 0.3);
}

.blog-card-img {
  position: relative;
  height: 190px;
  overflow: hidden;
  background: var(--primary-navy);
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.06);
}

.blog-card-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--primary-navy);
  margin: 0.5rem 0 0.75rem;
}

.blog-card-title a {
  color: inherit;
  text-decoration: none;
}

.blog-card-title a:hover {
  color: var(--accent-orange);
}

.blog-card-excerpt {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border-color);
  font-size: 0.825rem;
}

.blog-author {
  font-weight: 600;
  color: var(--text-main);
}

.blog-link {
  color: var(--accent-orange);
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

/* 9. Sidebar & Widgets */
.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sidebar-widget {
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.widget-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.widget-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 3px;
  background: var(--accent-orange);
  border-radius: 2px;
}

.blog-search {
  position: relative;
}

.blog-search input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 2.5rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background: var(--bg-surface);
  font-size: 0.875rem;
  color: var(--text-main);
  outline: none;
  transition: all 0.2s ease;
}

.blog-search input:focus {
  border-color: var(--accent-orange);
  background: var(--white);
}

.blog-search i {
  position: absolute;
  left: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}

.recent-posts-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style: none;
}

.recent-post-item {
  display: flex;
  gap: 0.85rem;
  align-items: center;
}

.recent-post-img {
  width: 65px;
  height: 65px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--primary-navy);
}

.recent-post-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.recent-post-title {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--primary-navy);
  text-decoration: none;
}

.recent-post-title:hover {
  color: var(--accent-orange);
}

.recent-post-date {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.sidebar-cat-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sidebar-cat-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0.75rem;
  border-radius: 6px;
  color: var(--text-main);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  background: var(--bg-surface);
  cursor: pointer;
  transition: all 0.2s ease;
}

.sidebar-cat-item:hover,
.sidebar-cat-item.active {
  background: var(--primary-navy);
  color: var(--white);
}

.sidebar-cat-item .cat-count {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 700;
}

.sidebar-cat-item:hover .cat-count,
.sidebar-cat-item.active .cat-count {
  color: var(--accent-orange);
}

/* Featured Destination Widget */
.featured-dest-widget {
  background: linear-gradient(rgba(11, 25, 44, 0.8), rgba(11, 25, 44, 0.9)), url('https://images.unsplash.com/photo-1503614472-8c93d56e92ce?auto=format&fit=crop&w=600&q=80');
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  padding: 1.75rem;
  color: var(--white);
  text-align: center;
}

.featured-dest-widget h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.featured-dest-widget p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.25rem;
}

/* 10. Newsletter Banner Block */
.news-newsletter-banner {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 3rem 2rem;
  text-align: center;
  margin: 3.5rem 0;
  position: relative;
  overflow: hidden;
}

.news-newsletter-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-navy), var(--accent-orange));
}

.newsletter-content-box {
  max-width: 650px;
  margin: 0 auto;
}

.newsletter-content-box h2 {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 0.75rem;
}

.newsletter-content-box p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.75rem;
}

.newsletter-form-inline {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form-inline input {
  padding: 0.85rem 1.25rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: 0.9rem;
  outline: none;
  flex-grow: 1;
}

.newsletter-form-inline input:focus {
  border-color: var(--accent-orange);
}

/* 11. Final Tri-Action Callout Hub */
.action-hub-section {
  margin: 3.5rem 0 1rem;
}

.action-hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.action-hub-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.action-hub-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-orange);
}

.action-hub-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 107, 0, 0.1);
  color: var(--accent-orange);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.action-hub-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 0.5rem;
}

.action-hub-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 1.25rem;
}

/* Media Queries for Viewport Alignment */
@media (min-width: 768px) {
  .featured-news-card {
    grid-template-columns: 1.1fr 1fr;
  }
  .newsletter-form-inline {
    flex-direction: row;
  }
}

@media (min-width: 992px) {
  .blog-layout {
    grid-template-columns: 1fr 320px;
  }
  .blog-sidebar {
    position: sticky;
    top: 90px;
  }
}

/* ==========================================================================
   17. GALLERY PAGE SPECIFIC OPTIMIZATIONS
   ========================================================================== */
.gallery-img-container {
  height: 240px;
}

.gallery-img-container img {
  image-rendering: -webkit-optimize-contrast;
  backface-visibility: hidden;
}

.gallery-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary-navy);
  color: var(--accent-orange);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: var(--shadow-sm);
}

.gallery-card .s-card-body p {
  margin-bottom: 0;
}



/* ==========================================================================
   CONTACT PAGE ENHANCEMENTS
   ========================================================================== */
.contact-grid-clean {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 992px) {
  .contact-grid-clean {
    grid-template-columns: 1fr 1.2fr;
  }
}

.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-detail-card {
  background: #ffffff;
  padding: 1.25rem 1.5rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-detail-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.contact-icon-box {
  width: 48px;
  height: 48px;
  background: var(--primary-navy, #0f172a);
  color: var(--accent-orange, #f97316);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-detail-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary-navy, #0f172a);
  margin-bottom: 0.2rem;
}

.contact-detail-card p {
  font-size: 0.88rem;
  color: #64748b;
  margin: 0;
  line-height: 1.4;
}

.contact-consult-box {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.contact-consult-box h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-navy, #0f172a);
  margin-bottom: 0.3rem;
}

.contact-consult-box p {
  font-size: 0.88rem;
  color: #64748b;
  margin-bottom: 1rem;
}

.mb-2 {
  margin-bottom: 1.5rem;
}

.mt-1 {
  margin-top: 1rem;
}
