* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-blue: #0a2f8a;
  --secondary-blue: #e9f2f9;
  --accent-blue: #0f307d;
  --dark-blue: #061d54;
  --light-blue: #5a7fc4;
  --dark-bg: #061d54;
  --light-bg: #F5F6FA;
  --white: #FFFFFF;
  --text-dark: #1A1A1A;
  --text-gray: #6B7280;
  --border-light: #E5E7EB;
  --gradient: linear-gradient(77deg, #0a2f8a -17.11%, #0f307d 30.47%, #5a7fc4 78.04%);
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  background: #f8fafc;
}

/* Custom Scrollbar - Blue Theme */
::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--primary-blue) 0%, var(--light-blue) 100%);
  border-radius: 10px;
  border: 2px solid #f1f1f1;
  transition: all 0.3s;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--light-blue) 0%, var(--primary-blue) 100%);
  border-color: #e5e5e5;
}

::-webkit-scrollbar-thumb:active {
  background: var(--accent-blue);
}

/* Firefox Scrollbar */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--primary-blue) #f1f1f1;
}

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Top Banner */
.top-banner {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
  color: var(--white);
  text-align: center;
  padding: 10px 20px;
  font-size: 14px;
  border-bottom: 1px solid rgba(10, 47, 138, 0.3);
}

.top-banner strong {
  font-weight: 700;
}

/* Header */
.header {
  background: #ffffff;
  border-bottom: 1px solid rgba(10, 47, 138, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: visible;
}

.header.scrolled {
  box-shadow: 0 4px 24px rgba(10, 47, 138, 0.08);
  border-bottom-color: rgba(10, 47, 138, 0.15);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding: 24px 0;
}

.logo {
  text-decoration: none;
  transition: transform 0.3s;
}

.logo:hover {
  transform: scale(1.02);
}

.logo-img {
  height: 70px;
  width: auto;
  display: block;
}

.logo-text {
  font-size: 26px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.03em;
  font-family: 'Inter', sans-serif;
}

/* Navigation */
.nav {
  display: flex;
  gap: 8px;
  flex: 1;
  justify-content: center;
  align-items: center;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  padding: 12px 20px;
  border-radius: 10px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  letter-spacing: -0.01em;
}

.nav-link:hover {
  color: var(--primary-blue);
  background: rgba(10, 47, 138, 0.08);
}

.nav-item.active .nav-link {
  color: var(--primary-blue);
  background: rgba(10, 47, 138, 0.12);
}

.dropdown-arrow {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0.6;
}

.nav-item:hover .dropdown-arrow {
  transform: rotate(180deg);
  opacity: 1;
}

/* Dropdown Menus */
.dropdown-menu,
.mega-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 12px 48px rgba(10, 47, 138, 0.12), 0 0 0 1px rgba(10, 47, 138, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  z-index: 100;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.nav-item:hover .dropdown-menu,
.nav-item:hover .mega-dropdown,
.nav-item.active .dropdown-menu,
.nav-item.active .mega-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: all;
}

/* Standard Dropdown */
.dropdown-menu {
  min-width: 280px;
  padding: 12px;
}

/* Mega Dropdown */
.mega-dropdown {
  min-width: 900px;
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  /* Invisible bridge fills the gap between nav link and dropdown panel */
  margin-top: 0;
}

.mega-dropdown::before,
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
  background: transparent;
}

/* Travel Health 4-col Mega Dropdown */
.travel-health-dropdown {
  min-width: 960px;
}

.dropdown-content-4col {
  grid-template-columns: repeat(4, 1fr);
}

.nav-item:hover .mega-dropdown,
.nav-item.active .mega-dropdown {
  transform: translateX(-50%) translateY(0);
}

.dropdown-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr) 280px;
  gap: 8px;
  padding: 20px;
}

.dropdown-section {
  padding: 16px;
  border-radius: 12px;
  transition: background 0.3s;
}

.dropdown-section:hover {
  background: rgba(10, 47, 138, 0.04);
}

/* Compact About dropdown */
.about-dropdown {
  min-width: 320px;
}

.about-dropdown .dropdown-content-2col {
  display: block;
  padding: 12px;
}

.dropdown-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-blue);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  padding-left: 4px;
}

.dropdown-link {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 4px;
  position: relative;
  overflow: hidden;
}

.dropdown-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(10, 47, 138, 0.08), transparent);
  transition: left 0.5s;
}

.dropdown-link:hover::before {
  display: none;
}

.dropdown-link:hover {
  background: rgba(10, 47, 138, 0.08);
}

.link-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(10, 47, 138, 0.08) 0%, rgba(10, 47, 138, 0.04) 100%);
  border-radius: 10px;
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(10, 47, 138, 0.12);
  color: var(--primary-blue);
}

.link-icon svg {
  width: 20px;
  height: 20px;
  stroke-width: 2;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.dropdown-link:hover .link-icon {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
  border-color: var(--primary-blue);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(10, 47, 138, 0.25);
}

.link-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.link-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--primary-blue);
  letter-spacing: -0.01em;
  transition: color 0.3s;
}

.dropdown-link:hover .link-name {
  color: var(--primary-blue);
}

.link-desc {
  font-size: 13px;
  color: var(--text-gray);
  font-weight: 400;
  line-height: 1.4;
}

.dropdown-divider {
  height: 1px;
  background: rgba(10, 47, 138, 0.15);
  margin: 8px 0;
}

/* Featured Card in Mega Menu */
.dropdown-featured {
  padding: 16px;
}

.featured-card {
  background: linear-gradient(135deg, var(--primary-blue) 0%, #0f307d 50%, var(--accent-blue) 100%);
  border-radius: 14px;
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.featured-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 15% 80%, rgba(90,127,196,0.18) 0%, transparent 50%),
    radial-gradient(circle at 85% 20%, rgba(255,255,255,0.04) 0%, transparent 40%);
  pointer-events: none;
}

.featured-card > * {
  position: relative;
  z-index: 1;
}

.featured-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px;
  font-size: 10px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  width: fit-content;
}

.featured-card h5 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin: 4px 0;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.featured-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  line-height: 1.55;
}

.featured-trust {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px 0 4px;
}

.featured-trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}

.featured-trust svg {
  color: #7ee8a2;
  flex-shrink: 0;
}

a.featured-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  background: var(--white);
  color: var(--primary-blue);
  text-decoration: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  margin-top: auto;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

a.featured-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,255,255,0.25);
  background: #f0f4ff;
}

a.featured-btn svg {
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
}

a.featured-btn:hover svg {
  transform: translateX(3px);
}

/* Header Actions */
.header-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

/* Mobile menu toggle — hidden on desktop */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 8px;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 10px;
  transition: background 0.3s;
}

.hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--primary-blue, #0a2f8a);
  border-radius: 2px;
  transition: all 0.3s ease;
}

@media (max-width: 1023px) {
  .mobile-menu-toggle {
    display: flex;
  }

  .header-content {
    gap: 16px;
    padding: 16px 0;
  }

  .logo-img {
    height: 45px;
  }

  .header-actions .btn-primary {
    padding: 10px 18px;
    font-size: 13px;
    text-align: center;
  }

  .header-actions .header-search-btn {
    display: none;
  }
}

.icon-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  border-radius: 10px;
  color: var(--text-dark);
}

.icon-btn:hover {
  background: rgba(10, 47, 138, 0.08);
  color: var(--primary-blue);
}

.icon-btn svg {
  width: 20px;
  height: 20px;
}

.cta-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
  color: var(--white);
  text-decoration: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(10, 47, 138, 0.3);
  letter-spacing: -0.01em;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(10, 47, 138, 0.4);
}

.cta-btn svg {
  width: 16px;
  height: 16px;
}

/* Search Overlay */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--dark-blue);
  background: linear-gradient(160deg, #041540 0%, var(--primary-blue) 60%, var(--accent-blue) 100%);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s;
  overflow-y: auto;
}

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

.search-overlay-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 100px 24px 80px;
  position: relative;
}

.search-close {
  position: absolute;
  top: 32px;
  right: 24px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}

.search-close:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: rotate(90deg);
}

.search-box {
  position: relative;
  margin-bottom: 48px;
}

.search-box .search-icon {
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.6);
}

.search-overlay-input {
  width: 100%;
  padding: 24px 24px 24px 64px;
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  font-size: 20px;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  transition: all 0.3s;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.search-overlay-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.search-overlay-input:focus {
  outline: none;
  border-color: var(--light-blue);
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 4px 32px rgba(90, 127, 196, 0.25);
}

.search-suggestions {
  display: grid;
  gap: 32px;
}

.suggestion-category h5 {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.suggestion-category a {
  display: block;
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  color: var(--white);
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  transition: all 0.3s;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.suggestion-category a:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--light-blue);
  transform: translateX(8px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

/* Hero Section - Premium Redesign */
.hero {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 50%, var(--dark-blue) 100%);
  padding: 60px 0 60px;
  position: relative;
  overflow: visible;
}


.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(90, 127, 196, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(90, 127, 196, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 56px;
}

.hero-text {
  flex: 1;
}

.btn-view-all {
  flex-shrink: 0;
  margin-top: 8px;
  animation: fadeInUp 0.8s ease 1.4s both;
}

.hero-title {
  font-size: 72px;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 24px;
  font-family: 'Playfair Display', serif;
  letter-spacing: -0.04em;
  color: #fff;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.2);
  overflow: visible;
}

.hero-title-line {
  display: block;
  opacity: 0;
  transform: translateY(100%);
  animation: slideUpFade 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.hero-title-line:nth-child(1) {
  animation-delay: 0.2s;
}

.hero-title-line:nth-child(2) {
  animation-delay: 0.5s;
}

@keyframes slideUpFade {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.gradient-text {
  background: linear-gradient(135deg, #ffffff 0%, #93c5fd 50%, #bfdbfe 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
  animation: gradientShift 4s ease-in-out infinite;
  display: inline;
  position: relative;
  text-shadow: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.gradient-text::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--light-blue), transparent);
  border-radius: 2px;
  animation: underlineGlow 3s ease-in-out infinite;
}

/* ============================================
   .gradient-text-light
   ---------------------------------------------
   Use this on headings sitting on LIGHT / white
   section backgrounds where the default
   .gradient-text (white → light blue) becomes
   invisible. Same animated fade effect, but the
   palette stays in readable brand blues so it
   works on near-white backgrounds.

   When adding a new section with a gradient
   heading, pick:
     - .gradient-text          → dark bg sections
     - .gradient-text-light    → light bg sections
   ============================================ */
.gradient-text-light {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 40%, var(--light-blue) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
  animation: gradientShift 4s ease-in-out infinite;
  display: inline;
  position: relative;
  text-shadow: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.gradient-text-light::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--light-blue), transparent);
  border-radius: 2px;
  animation: underlineGlow 3s ease-in-out infinite;
}

@keyframes underlineGlow {
  0%, 100% {
    opacity: 0.5;
    transform: scaleX(0.8);
  }
  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
}

.hero-subtitle {
  font-size: 22px;
  color: #fff;
  margin-bottom: 0;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.6;
  max-width: 700px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease 0.9s both;
}

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

/* Service Grid - Cloud Pharmacy Style */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease 1.2s both;
}

.service-card {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 50%, #7ba3d9 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 15px;
  padding: 20px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  color: var(--white);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 2px 12px rgba(10, 47, 138, 0.15);
  gap: 20px;
  min-height: 100px;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 15px;
  padding: 2px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.3));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 1;
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

.service-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 32px rgba(10, 47, 138, 0.4);
  border-color: rgba(255, 255, 255, 0.5);
}

.service-title {
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--white);
  line-height: 1.3;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  flex: 1;
  transition: color 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.service-image {
  width: 100px;
  height: 100px;
  border-radius: 0;
  overflow: visible;
  flex-shrink: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  order: 2;
  z-index: 1;
}

.service-card:hover .service-image {
  transform: scale(1.08) rotate(-3deg);
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.15)) brightness(1.05);
}

.service-card:hover .service-image img {
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.25)) brightness(1.1);
}

.arrow-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2f2f2f 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  border: 2px solid rgba(255, 255, 255, 0.1);
  order: 3;
  margin-left: auto;
  z-index: 1;
  box-shadow: 
    0 4px 12px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.arrow-icon::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  padding: 2px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s;
}

.arrow-icon::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.3), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.service-card:hover .arrow-icon {
  background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
  transform: translateX(8px) scale(1.15) rotate(45deg);
  border-color: rgba(10, 47, 138, 0.3);
  box-shadow: 
    0 8px 24px rgba(10, 47, 138, 0.4),
    0 0 0 4px rgba(255, 255, 255, 0.1),
    inset 0 2px 4px rgba(255, 255, 255, 0.8);
}

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

.service-card:hover .arrow-icon::after {
  opacity: 1;
}

.arrow-icon img {
  width: 14px;
  height: 14px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  filter: brightness(0) invert(1);
  position: relative;
  z-index: 1;
}

.service-card:hover .arrow-icon img {
  filter: brightness(0) saturate(100%) invert(17%) sepia(89%) saturate(2447%) hue-rotate(215deg) brightness(95%) contrast(95%);
  transform: rotate(-45deg) scale(1.1);
}

/* Buttons */
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 32px;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.btn-secondary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn-secondary:hover::before {
  left: 100%;
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-secondary img {
  width: 12px;
  height: 12px;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  filter: brightness(0) invert(1);
}

.btn-secondary:hover img {
  transform: translateX(4px);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--primary-blue);
  color: var(--white);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  transition: all 0.3s;
  border: 2px solid var(--primary-blue);
}

.btn-primary:hover {
  background: var(--accent-blue);
  border-color: var(--accent-blue);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(10, 47, 138, 0.3);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  color: var(--primary-blue);
  text-decoration: none;
  border-radius: 40px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s;
  border: 2px solid var(--primary-blue);
}

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

/* Trust Badges */
.trust-badges {
  margin-top: 48px;
  padding-top: 32px;
  padding-bottom: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-badges img {
  height: 45px;
  width: auto;
  opacity: 0.7;
  transition: opacity 0.3s;
  filter: brightness(0) invert(1);
}

.trust-badges img:hover {
  opacity: 1;
}

/* Features Bar */
.features-bar {
  background: linear-gradient(135deg, var(--secondary-blue) 0%, #ffffff 100%);
  padding: 24px 0 48px;
  position: relative;
  overflow: hidden;
}

.features-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 10% 50%, rgba(10, 47, 138, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 90% 50%, rgba(10, 47, 138, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.features-bar .container {
  position: relative;
  z-index: 1;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 32px;
  background: var(--white);
  border-radius: 15px;
  border: 1px solid rgba(10, 47, 138, 0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(10, 47, 138, 0.04);
}

.feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(10, 47, 138, 0.08), transparent);
  transition: left 0.6s;
}

.feature:hover::before {
  left: 100%;
}

.feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(10, 47, 138, 0.15);
  border-color: var(--primary-blue);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(10, 47, 138, 0.1) 0%, rgba(10, 47, 138, 0.05) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(10, 47, 138, 0.2);
  position: relative;
  z-index: 1;
}

.feature:hover .feature-icon {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
  transform: scale(1.1) rotate(-5deg);
  border-color: var(--primary-blue);
}

.feature-icon img {
  width: 28px;
  height: 28px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  filter: brightness(0) saturate(100%) invert(17%) sepia(89%) saturate(2447%) hue-rotate(215deg) brightness(95%) contrast(95%);
}

.feature:hover .feature-icon img {
  filter: brightness(0) invert(1);
  transform: scale(1.1);
}

.feature-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.feature-content h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-blue);
  letter-spacing: -0.02em;
  margin: 0;
  transition: color 0.3s;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.feature:hover .feature-content h4 {
  color: var(--primary-blue);
}

.feature-content span {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-gray);
  line-height: 1.4;
}

/* ================================
   Travel Destinations Section
   ================================ */
.destinations-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 50%, var(--dark-blue) 100%);
  padding: 100px 0 120px;
}

.destinations-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.destinations-orb {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
}

.destinations-orb-1 {
  width: 500px;
  height: 500px;
  top: -160px;
  left: -140px;
}

.destinations-orb-2 {
  width: 600px;
  height: 600px;
  bottom: -200px;
  right: -120px;
}

.destinations-container {
  position: relative;
  z-index: 2;
}

/* Header */
.destinations-header {
  text-align: center;
  margin-bottom: 56px;
}

.destinations-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 50px;
  margin-bottom: 28px;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.destinations-pill svg {
  flex-shrink: 0;
}

.destinations-title {
  font-size: 52px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.12;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
  font-family: 'Inter', sans-serif;
}

.destinations-br-md {
  display: none;
}

@media (min-width: 768px) {
  .destinations-br-md {
    display: block;
  }
}

.destinations-desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 400;
}

/* Stats Row */
.destinations-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 56px;
}

@media (min-width: 768px) {
  .destinations-stats {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}

.dest-stat-card {
  text-align: center;
  padding: 36px 20px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: background 0.3s ease;
}

.dest-stat-card:hover {
  background: rgba(255, 255, 255, 0.14);
}

.dest-stat-number {
  font-size: 48px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.04em;
  font-family: 'Inter', sans-serif;
}

.dest-stat-label {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
}

/* Destination Cards Grid */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (min-width: 768px) {
  .destinations-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
}

@media (min-width: 1024px) {
  .destinations-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 28px;
  }
}

.dest-card {
  display: block;
  text-decoration: none;
  cursor: pointer;
}

.dest-card-image {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  margin-bottom: 14px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}

.dest-card-image img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.dest-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.35) 0%, transparent 50%);
  pointer-events: none;
}

.dest-card-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
  letter-spacing: -0.02em;
  transition: color 0.3s ease;
}

.dest-card:hover .dest-card-name {
  color: var(--secondary-blue);
}

.dest-card-vaccines {
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
}

/* Responsive tweaks */
@media (max-width: 767px) {
  .destinations-section {
    padding: 72px 0 80px;
  }

  .destinations-title {
    font-size: 32px;
  }

  .destinations-desc {
    font-size: 16px;
  }

  .dest-stat-number {
    font-size: 36px;
  }

  .dest-card-name {
    font-size: 17px;
  }

  .dest-card-vaccines {
    font-size: 13px;
  }
}

/* Homepage locations quote — two-beat rhythm treatment */
.hp-locations-quote {
  font-size: 18px;
  font-style: normal;
  color: var(--primary-blue);
  line-height: 1.6;
  max-width: 620px;
  margin: 0 auto 48px;
  font-family: 'Inter', sans-serif;
}
.hp-locations-quote.section-subtitle {
  color: var(--primary-blue);
}
.hp-locations-quote span {
  font-weight: 500;
  color: var(--light-blue);
}
.hp-locations-quote strong {
  font-weight: 700;
  font-style: normal;
  font-size: 20px;
}

/* Locations Section - Premium Redesign */
.locations-section {
  padding: 80px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.locations-section::before {
  content: none;
}

.locations-section .container {
  position: relative;
  z-index: 1;
}

/* Keep the fade effect on the locations heading but use darker brand
   blues so the text remains legible on the section's light background
   (WCAG AA for large text). */
.locations-section .gradient-text {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 40%, var(--light-blue) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 32px;
  margin-top: 56px;
}

.location-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(10, 47, 138, 0.08);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(10, 47, 138, 0.12);
  border-left: 3px solid var(--primary-blue);
  position: relative;
}

.location-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 2px;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.location-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 47, 138, 0.03) 0%, rgba(90, 127, 196, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  z-index: 1;
}

.location-card:hover::after {
  opacity: 1;
}

.location-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 20px 48px rgba(10, 47, 138, 0.18),
    0 0 0 1px rgba(10, 47, 138, 0.06);
  border-color: transparent;
}

.location-image {
  width: 100%;
  height: 320px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--secondary-blue) 0%, #f5f9fc 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.location-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 47, 138, 0.05) 100%);
  pointer-events: none;
}

.location-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}

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

.location-content {
  padding: 40px;
}

.location-content h3 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 32px;
  color: var(--primary-blue);
  letter-spacing: -0.02em;
  line-height: 1.2;
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 2;
}

.location-card:hover .location-content h3 {
  color: var(--primary-blue);
  transform: translateX(4px);
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 32px;
}

.detail-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 0 0 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.detail-item:last-child {
  padding-bottom: 0;
}

.detail-item + .detail-item {
  padding-top: 16px;
  border-top: 1px solid rgba(10, 47, 138, 0.08);
}

.detail-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  background: rgba(10, 47, 138, 0.06);
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.detail-item:hover .detail-icon {
  background: rgba(10, 47, 138, 0.10);
  transform: scale(1.05);
}

.detail-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.detail-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--light-blue);
}

.detail-item p,
.detail-item a {
  font-size: 16px;
  color: var(--text-dark);
  line-height: 1.5;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.detail-item a {
  font-weight: 700;
  color: var(--primary-blue);
  transition: color 0.3s;
}

.detail-item a:hover {
  color: var(--light-blue);
}

.location-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.location-actions .btn-primary,
.location-actions .btn-outline {
  padding: 16px 32px;
  font-size: 15px;
}

.btn-arrow {
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.location-actions .btn-primary:hover .btn-arrow {
  transform: translateX(4px);
}

.location-card:hover .location-actions .btn-primary {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
  border-color: var(--primary-blue);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10, 47, 138, 0.4);
}

.location-card:hover .location-actions .btn-outline {
  border-color: var(--primary-blue);
  color: var(--primary-blue);
}

.location-actions .btn-outline:hover {
  background: rgba(10, 47, 138, 0.08);
  color: var(--primary-blue);
  border-color: var(--primary-blue);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(10, 47, 138, 0.15);
}

/* Location card — embedded map (flush with card bottom) */
.location-map {
  overflow: hidden;
  border-top: 1px solid rgba(10, 47, 138, 0.1);
  line-height: 0;
}

.location-map iframe {
  display: block;
  width: 100%;
  height: 220px;
  border: 0;
}

/* ==========================================================================
   Locations Section — DARK variant (homepage)
   Scoped to .locations-section--dark so other pages keep the light treatment.
   ========================================================================== */
.locations-section--dark {
  background: #11368F;
  position: relative;
  overflow: hidden;
}

/* Ambient background orbs — soft radial glows for visual depth */
.locations-section--dark::before,
.locations-section--dark::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(60px);
}

.locations-section--dark::before {
  width: 720px;
  height: 720px;
  top: -240px;
  left: -240px;
  background: radial-gradient(circle, rgba(140, 190, 255, 0.55) 0%, rgba(140, 190, 255, 0) 65%);
  animation: rl-orb-drift 16s ease-in-out infinite alternate;
}

.locations-section--dark::after {
  width: 820px;
  height: 820px;
  bottom: -320px;
  right: -260px;
  background: radial-gradient(circle, rgba(90, 220, 255, 0.42) 0%, rgba(90, 220, 255, 0) 65%);
  animation: rl-orb-drift 22s ease-in-out infinite alternate-reverse;
}

.locations-section--dark .container {
  position: relative;
  z-index: 1;
}

@keyframes rl-orb-drift {
  0%   { transform: translate(0, 0) scale(1); opacity: 0.9; }
  100% { transform: translate(40px, -30px) scale(1.08); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .locations-section--dark::before,
  .locations-section--dark::after { animation: none; }
}

.locations-section--dark .section-title,
.locations-section--dark .section-title span,
.locations-section--dark .gradient-text {
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
}

.locations-section--dark .section-subtitle,
.locations-section--dark .hp-locations-quote,
.locations-section--dark .hp-locations-quote.section-subtitle {
  color: #ffffff;
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.7;
  opacity: 1;
}

.locations-section--dark .hp-locations-quote span,
.locations-section--dark .hp-locations-quote strong {
  color: #ffffff;
  font-weight: 400;
  font-style: normal;
  font-size: inherit;
}

.locations-section--dark .location-card {
  background: #1a3a7a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
}

.locations-section--dark .location-card::before,
.locations-section--dark .location-card::after {
  display: none;
}

.locations-section--dark .location-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 20px 48px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(90, 127, 196, 0.35),
    0 0 48px rgba(90, 127, 196, 0.28);
  border-color: rgba(120, 170, 255, 0.32);
}

.locations-section--dark .location-content {
  padding: 32px;
}

.locations-section--dark .location-content h3,
.locations-section--dark .location-card:hover .location-content h3 {
  color: #ffffff;
}

.locations-section--dark .detail-item + .detail-item {
  border-top-color: rgba(255, 255, 255, 0.08);
}

.locations-section--dark .detail-icon {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.locations-section--dark .detail-item:hover .detail-icon {
  background: rgba(255, 255, 255, 0.14);
}

.locations-section--dark .detail-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.locations-section--dark .detail-item p,
.locations-section--dark .detail-item a {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
}

.locations-section--dark .detail-item a:hover {
  color: rgba(255, 255, 255, 0.85);
}

.locations-section--dark .location-actions .btn-primary {
  background: #ffffff;
  color: #11368F;
  border: 1px solid #ffffff;
}

.locations-section--dark .location-actions .btn-primary:hover,
.locations-section--dark .location-card:hover .location-actions .btn-primary {
  background: rgba(255, 255, 255, 0.92);
  color: #11368F;
  border-color: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transform: translateY(-2px);
}

.locations-section--dark .location-map {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Soften the scroll-in reveal inside the dark locations section.
   Default hp-reveal-left/right slides cards 50px horizontally with a sharp
   ease — on the navy background that reads as jagged. Replace with a short,
   vertical-only fade-up using a gentler curve. */
.locations-section--dark .location-card.hp-reveal,
.locations-section--dark .location-card.hp-reveal.hp-reveal-left,
.locations-section--dark .location-card.hp-reveal.hp-reveal-right {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1.1s cubic-bezier(0.22, 1, 0.36, 1),
              transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}

.locations-section--dark .location-card.hp-reveal.hp-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Section Styles */
.services-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #ffffff 0%, var(--secondary-blue) 50%, #f5f9fc 100%);
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 10% 20%, rgba(10, 47, 138, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(90, 127, 196, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.services-section .container {
  position: relative;
  z-index: 1;
}

/* Keep the fade effect on the services heading but use darker brand
   blues so the text remains legible on the section's light background
   (WCAG AA for large text). */
.services-section .gradient-text {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 40%, var(--light-blue) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


.how-it-works {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 50%, var(--dark-blue) 100%);
  position: relative;
  overflow: hidden;
}

.how-it-works::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 50%, rgba(90, 127, 196, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(90, 127, 196, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.how-it-works .container {
  position: relative;
  z-index: 1;
}

.how-it-works .section-title {
  color: var(--white);
}

.how-it-works .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.team-header {
  text-align: center;
  margin-bottom: 64px;
}

.team-header .section-title {
  color: var(--white);
}

.team-header .section-subtitle {
  color: rgba(255, 255, 255, 0.85);
  font-size: 20px;
  font-weight: 500;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
  letter-spacing: -0.01em;
}

.section-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
  text-align: center;
  letter-spacing: -0.03em;
  color: var(--primary-blue);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-gray);
  text-align: center;
  margin-bottom: 48px;
  font-weight: 400;
}

.locations-section .section-subtitle {
  color: var(--primary-blue);
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.benefit-card {
  background: var(--white);
  border-radius: 15px;
  padding: 0;
  border: 1px solid rgba(10, 47, 138, 0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 12px rgba(10, 47, 138, 0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}

.benefit-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 15px;
  padding: 2px;
  background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(10, 47, 138, 0.2);
  border-color: transparent;
}

.benefit-image {
  width: 100%;
  aspect-ratio: 4/3;
  height: auto;
  overflow: hidden;
  background: linear-gradient(135deg, var(--secondary-blue) 0%, #f5f9fc 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.benefit-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 47, 138, 0.05) 100%);
  pointer-events: none;
}

.benefit-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.benefit-content {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.benefit-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.02em;
  color: var(--primary-blue);
  transition: color 0.3s;
}

.benefit-card:hover h3 {
  color: var(--primary-blue);
}

.benefit-card p {
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.6;
  font-weight: 400;
  margin: 0;
  flex: 1;
}

.benefit-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: rgba(10, 47, 138, 0.08);
  color: var(--primary-blue);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(10, 47, 138, 0.15);
  width: fit-content;
  margin-top: 8px;
}

.benefit-cta svg {
  width: 16px;
  height: 16px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-card:hover .benefit-cta {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
  color: var(--white);
  border-color: transparent;
  transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(10, 47, 138, 0.3);
}

.benefit-card:hover .benefit-cta svg {
  transform: translateX(4px);
}


/* ================================
   Premium Testimonials Section
   ================================ */
.testimonials-premium {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 50%, var(--dark-blue) 100%);
  padding: 100px 0 120px;
}

.testimonials-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.1;
}

.testimonials-orb {
  position: absolute;
  border-radius: 50%;
  background: var(--white);
}

.testimonials-orb-1 {
  width: 500px;
  height: 500px;
  top: -180px;
  right: -160px;
}

.testimonials-orb-2 {
  width: 600px;
  height: 600px;
  bottom: -220px;
  left: -140px;
}

.testimonials-container {
  position: relative;
  z-index: 2;
}

/* Header */
.testimonials-header {
  text-align: center;
  margin-bottom: 56px;
}

.testimonials-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 50px;
  margin-bottom: 28px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.testimonials-pill svg {
  flex-shrink: 0;
}

.testimonials-title {
  font-size: 52px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.12;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
  font-family: 'Inter', sans-serif;
}

.testimonials-desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 400;
}

/* Testimonials Grid */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1320px;
  margin: 0 auto;
}

/* Card */
.testimonial-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

/* Stars */
.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.testimonial-stars svg {
  color: #facc15;
}

/* Quote */
.testimonial-quote {
  font-size: 17px;
  color: var(--white);
  line-height: 1.7;
  margin-bottom: 28px;
  font-style: italic;
  font-weight: 400;
  flex: 1;
}

/* Author */
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.testimonial-name {
  color: var(--white);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
}

.testimonial-location {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  font-weight: 400;
  margin-top: 2px;
}

/* Trust Indicators */
.testimonials-trust {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  margin-top: 72px;
  flex-wrap: wrap;
}

.testimonials-trust-item {
  text-align: center;
  min-width: 160px;
}

.testimonials-trust-number {
  font-size: 40px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 6px;
  font-family: 'Inter', sans-serif;
}

.testimonials-trust-label {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.testimonials-trust-divider {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.25);
}

/* Responsive */
@media (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 767px) {
  .testimonials-premium {
    padding: 72px 0 80px;
  }

  .testimonials-title {
    font-size: 32px;
  }

  .testimonials-desc {
    font-size: 16px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .testimonial-card {
    padding: 28px;
  }

  .testimonials-trust {
    gap: 32px;
    margin-top: 56px;
  }

  .testimonials-trust-number {
    font-size: 32px;
  }

  .testimonials-trust-divider {
    display: none;
  }
}

/* How It Works */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.step-card {
  position: relative;
  min-height: 480px;
  border-radius: 16px;
  overflow: hidden;
  background: var(--dark-blue);
  border: none;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
  transition: box-shadow 0.4s ease;
}

.step-card:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

.step-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.step-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.step-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.step-image-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 14px;
  font-weight: 600;
}

.step-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  z-index: 2;
}

.step-label {
  color: var(--white);
  font-weight: 700;
  font-size: 12px;
  display: block;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.8;
}

.step-content h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 0;
  letter-spacing: -0.02em;
  color: var(--white);
  line-height: 1.3;
}

.step-content p {
  font-size: 15px;
  color: var(--white);
  line-height: 1.6;
  font-weight: 400;
  opacity: 0.85;
  margin-top: 8px;
}

@media (max-width: 1024px) {
  .steps-grid { grid-template-columns: 1fr; }
  .step-card { min-height: 400px; }
  .step-content { padding: 28px; }
  .step-content h3 { font-size: 20px; }
}

/* ============================================
   PHARMACIST EDITORIAL SECTION
   Clean two-column: photo left, credentials right.
   No cards, no frosted glass, no icons.
   ============================================ */
.team-section {
  padding: 96px 0 80px;
  background: #11368F;
  position: relative;
  overflow: hidden;
}
.team-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(90,127,196,.12) 0%, transparent 60%);
  pointer-events: none;
}

.team-editorial {
  display: grid;
  grid-template-columns: 35% 65%;
  min-height: 600px;
  position: relative;
  z-index: 1;
}

.team-photo-col {
  position: relative;
  overflow: hidden;
}
.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.team-photo-fade {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 120px;
  background: linear-gradient(to left, #11368F 0%, transparent 100%);
  pointer-events: none;
}

.team-credentials-col {
  display: flex;
  align-items: center;
  padding: 64px 64px 64px 48px;
}
.team-credentials-inner {
  max-width: 560px;
}

.team-eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
}

.team-name {
  font-size: 42px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 8px;
  font-family: 'Inter', sans-serif;
}

.team-title {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  font-weight: 400;
  margin-bottom: 16px;
}

.team-badge {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 50px;
  background: var(--white);
  color: #11368F;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}

.team-bio {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
  margin-bottom: 32px;
}

.team-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.team-btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  background: var(--white);
  color: #11368F;
  font-size: 15px;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s;
  border: 2px solid var(--white);
}
.team-btn-primary:hover {
  background: transparent;
  color: var(--white);
}
.team-btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  background: transparent;
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.4);
  transition: all 0.3s;
}
.team-btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}

.team-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 48px;
}
.team-stat { text-align: left; }
.team-stat-number {
  font-size: 48px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 4px;
  font-family: 'Inter', sans-serif;
}
.team-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@media (max-width: 1024px) {
  .team-editorial { grid-template-columns: 1fr; min-height: auto; }
  .team-photo-col { height: 420px; }
  .team-photo-fade { display: none; }
  .team-photo { object-position: top center; }
  .team-photo-col::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    background: linear-gradient(to bottom, transparent 60%, #11368F 100%);
    pointer-events: none;
  }
  .team-credentials-col { padding: 48px 32px; }
  .team-name { font-size: 34px; }
  .team-stat-number { font-size: 36px; }
}
@media (max-width: 640px) {
  .team-photo-col { height: 420px; }
  .team-credentials-col { padding: 32px 20px; }
  .team-name { font-size: 28px; }
  .team-stats-grid { gap: 24px 32px; }
  .team-stat-number { font-size: 32px; }
  .team-buttons { flex-direction: column; }
  .team-btn-primary, .team-btn-ghost { width: 100%; justify-content: center; }
}

/* Certifications - Modern */
.certifications-modern {
  text-align: center;
  padding: 48px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.cert-label {
  font-size: 13px;
  font-weight: 700;
  color: rgba(10, 47, 138, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 32px;
}

.cert-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
}

.cert-logos img {
  height: 48px;
  width: auto;
  opacity: 0.7;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  filter: grayscale(30%);
}

.cert-logos img:hover {
  opacity: 1;
  transform: scale(1.1);
  filter: grayscale(0%);
}

/* Products Section */
.products-section {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 50%, var(--dark-blue) 100%);
  padding: 80px 0 120px;
  position: relative;
  overflow: hidden;
}

.products-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(90, 127, 196, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(90, 127, 196, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.products-section .container {
  position: relative;
  z-index: 2;
}

.products-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 56px;
}

.products-text {
  flex: 1;
}

.products-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease 0.3s both;
}

.products-section .section-title {
  text-align: left;
  margin-bottom: 0;
  color: var(--white);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease 0.5s both;
}

.products-section .gradient-text {
  background: linear-gradient(135deg, var(--secondary-blue) 0%, var(--light-blue) 30%, #7ba3d9 60%, #a8c5e8 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease-in-out infinite;
  font-weight: 600;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease 0.9s both;
}

@media (min-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.product-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(10, 47, 138, 0.15);
  box-shadow: 0 4px 20px rgba(10, 47, 138, 0.06);
  display: flex;
  flex-direction: column;
  position: relative;
  cursor: pointer;
}

.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(135deg, var(--primary-blue), var(--light-blue), #7ba3d9);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.product-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 60px rgba(10, 47, 138, 0.25);
  border-color: transparent;
}

.product-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(10, 47, 138, 0.3);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.product-image {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--secondary-blue) 0%, #f5f9fc 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 47, 138, 0.05) 100%);
  pointer-events: none;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}

.product-card:hover .product-image img {
  transform: scale(1.1) rotate(2deg);
}

.product-content {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  background: var(--white);
  position: relative;
  z-index: 1;
}

.product-content h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-blue);
  line-height: 1.3;
  letter-spacing: -0.02em;
  transition: color 0.3s;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.product-card:hover .product-content h3 {
  color: var(--primary-blue);
}

.product-content p {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.5;
  flex: 1;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
  padding-top: 20px;
  border-top: 1px solid rgba(10, 47, 138, 0.1);
}

.product-price {
  font-size: 24px;
  font-weight: 800;
  color: var(--primary-blue);
  letter-spacing: -0.02em;
  transition: color 0.3s;
}

.product-card:hover .product-price {
  color: var(--primary-blue);
}

.product-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-blue);
  padding: 10px 20px;
  background: rgba(10, 47, 138, 0.08);
  border-radius: 50px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(10, 47, 138, 0.15);
}

.product-card:hover .product-cta {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
  color: var(--white);
  border-color: transparent;
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(10, 47, 138, 0.3);
}

.product-cta img {
  width: 10px;
  height: 10px;
  transition: transform 0.3s;
  filter: brightness(0) saturate(100%) invert(17%) sepia(89%) saturate(2447%) hue-rotate(215deg) brightness(95%) contrast(95%);
}

.product-card:hover .product-cta img {
  transform: translateX(4px);
  filter: brightness(0) invert(1);
}


/* Health Hub Section */
.health-hub-section {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 50%, var(--dark-blue) 100%);
  padding: 80px 0 120px;
  position: relative;
  overflow: hidden;
}

.health-hub-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(90, 127, 196, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(90, 127, 196, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.health-hub-section .container {
  position: relative;
  z-index: 2;
}

.health-hub-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 56px;
}

.health-hub-text {
  flex: 1;
}

.health-hub-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease 0.3s both;
}

.health-hub-section .section-title {
  color: var(--white);
  text-align: left;
  margin-bottom: 0;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease 0.5s both;
}

.health-hub-section .gradient-text {
  background: linear-gradient(135deg, var(--secondary-blue) 0%, var(--light-blue) 30%, #7ba3d9 60%, #a8c5e8 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease-in-out infinite;
  font-weight: 600;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

/* Articles Grid */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease 0.9s both;
}

@media (min-width: 768px) {
  .articles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .articles-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================
   EDITORIAL BLOG CARDS — Full-bleed image-driven
   Image fills entire card, title + CTA overlaid on
   bottom gradient. Excerpt hidden. Premium editorial.
   ============================================ */
.article-card {
  position: relative;
  min-height: 480px;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  display: block;
  background: var(--dark-blue);
  border: none;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
  transition: box-shadow 0.4s ease;
}

.article-card:hover {
  transform: none;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

.article-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.article-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.article-card:hover .article-image img {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.article-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 3;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-blue);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.article-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.article-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  letter-spacing: -0.02em;
  font-family: 'Playfair Display', serif;
}

.article-card:hover .article-content h3 {
  color: var(--white);
}

.article-content p {
  display: none;
}

.article-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  border-bottom: none;
  transition: all 0.3s;
  width: fit-content;
  margin-top: 12px;
  padding-bottom: 0;
}

.article-card:hover .article-link {
  border-bottom-color: transparent;
  gap: 12px;
}

.article-link img {
  width: 10px;
  height: 10px;
  transition: transform 0.3s;
  filter: brightness(0) invert(1);
}

.article-card:hover .article-link img {
  transform: translateX(4px);
}

/* ================================
   Integrated CTA + Newsletter Block (homepage)
   ================================ */
.hp-footer-cta-block {
  position: relative;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 50%, var(--dark-blue) 100%);
  overflow: hidden;
  padding: 80px 0 0;
}
.hp-footer-cta-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hp-footer-cta-orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(90,127,196,.15) 0%, transparent 60%);
}
.hp-footer-cta-orb-1 { width: 600px; height: 600px; top: -200px; left: -150px; }
.hp-footer-cta-orb-2 { width: 400px; height: 400px; bottom: -100px; right: -80px; }

.hp-footer-cta-inner {
  position: relative;
  z-index: 2;
}

/* Top CTA area */
.hp-footer-cta-top {
  text-align: center;
  padding-bottom: 64px;
}
.hp-cta-badges {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hp-cta-badge {
  display: inline-block;
  padding: 8px 22px;
  border-radius: 50px;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.9);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hp-footer-cta-title {
  font-size: 48px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.04em;
  line-height: 1.1;
  margin-bottom: 20px;
  font-family: 'Inter', sans-serif;
}
.hp-footer-cta-sub {
  font-size: 19px;
  color: rgba(255,255,255,.8);
  max-width: 680px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.hp-footer-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hp-btn-cta-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  background: var(--white);
  color: var(--primary-blue);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  transition: all .3s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 4px 24px rgba(0,0,0,.18);
  border: none;
}
.hp-btn-cta-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,.22);
  background: var(--secondary-blue);
}
.hp-btn-cta-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  background: transparent;
  color: var(--white);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  transition: all .3s cubic-bezier(.4,0,.2,1);
  border: 2px solid rgba(255,255,255,.45);
}
.hp-btn-cta-ghost:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--white);
  transform: translateY(-2px);
}
.hp-cta-checks {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,.75);
}

/* Divider */
.hp-footer-cta-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,.15);
  margin: 0;
}

/* Newsletter row */
.hp-footer-newsletter-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding: 48px 0;
  flex-wrap: wrap;
}
.hp-footer-newsletter-text h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.hp-footer-newsletter-text p {
  font-size: 15px;
  color: rgba(255,255,255,.7);
  line-height: 1.6;
  max-width: 420px;
}
.hp-footer-newsletter-form {
  flex-shrink: 0;
  min-width: 360px;
}

/* Responsive */
@media (max-width: 768px) {
  .hp-footer-cta-title { font-size: 32px; }
  .hp-footer-cta-sub { font-size: 16px; }
  .hp-cta-checks { gap: 16px; flex-direction: column; align-items: center; }
  .hp-footer-newsletter-row { flex-direction: column; gap: 28px; }
  .hp-footer-newsletter-form { min-width: 0; width: 100%; }
  .hp-footer-cta-buttons { flex-direction: column; }
  .hp-btn-cta-white,
  .hp-btn-cta-ghost { width: 100%; justify-content: center; padding: 16px 32px; }
}


/* Footer - Billion Pound Design */
.footer {
  background: linear-gradient(135deg, var(--dark-blue) 0%, var(--accent-blue) 50%, var(--primary-blue) 100%);
  color: var(--white);
  padding: 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(10, 47, 138, 0.2);
}

.footer-glow {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 1200px;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(90, 127, 196, 0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.footer > .container {
  position: relative;
  z-index: 1;
}

/* Newsletter form styles (shared — used inside integrated CTA block and other pages) */

.newsletter-form {
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(10, 47, 138, 0.3);
  border-radius: 60px;
  padding: 8px 8px 8px 24px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.newsletter-input-wrapper:focus-within {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--light-blue);
  box-shadow: 0 12px 48px rgba(10, 47, 138, 0.3);
}

.newsletter-icon {
  color: rgba(255, 255, 255, 0.5);
  flex-shrink: 0;
  transition: color 0.3s;
}

.newsletter-input-wrapper:focus-within .newsletter-icon {
  color: var(--light-blue);
}

.newsletter-input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 16px 20px;
  font-size: 16px;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  outline: none;
}

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

.newsletter-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(10, 47, 138, 0.4);
  white-space: nowrap;
}

.newsletter-btn:hover {
  transform: translateX(4px);
  box-shadow: 0 6px 24px rgba(10, 47, 138, 0.5);
}

.newsletter-btn svg {
  transition: transform 0.3s;
}

.newsletter-btn:hover svg {
  transform: translateX(4px);
}

/* ---- Newsletter Success State ---- */
.newsletter-success {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.4);
  border-radius: 60px;
  padding: 12px 24px 12px 12px;
  color: var(--white);
  font-size: 15px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(16, 185, 129, 0.15);
  animation: newsletterSuccessIn 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.newsletter-success-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.newsletter-success-text {
  flex: 1;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.newsletter-success-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
  padding: 8px 18px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.newsletter-success-link:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(2px);
}

.newsletter-success-link svg {
  transition: transform 0.25s ease;
}

.newsletter-success-link:hover svg {
  transform: translateX(3px);
}

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

@media (max-width: 640px) {
  .newsletter-success {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    border-radius: 20px;
    padding: 16px;
    gap: 10px;
  }
  .newsletter-success-text {
    flex: 1 1 100%;
  }
}

/* Main Footer Content */
.footer-main {
  padding: 80px 0 60px;
  padding-top: 48px;
}

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

/* Brand Column */
.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.footer-logo-wrapper {
  margin-bottom: 8px;
}

.footer-logo-img {
  height: 80px;
  width: auto;
  display: block;
}

.footer-logo-text {
  font-size: 32px;
  font-weight: 900;
  background: linear-gradient(135deg, #ffffff 0%, var(--light-blue) 50%, var(--secondary-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.03em;
  font-family: 'Inter', sans-serif;
}

.footer-description {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
}

/* Contact Cards */
.footer-contact-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(10, 47, 138, 0.2);
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--light-blue);
  transform: translateX(4px);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(90, 127, 196, 0.2) 0%, rgba(90, 127, 196, 0.1) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(90, 127, 196, 0.3);
  color: var(--light-blue);
  transition: all 0.4s;
}

.contact-card:hover .contact-card-icon {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
  color: var(--white);
  transform: scale(1.1) rotate(-5deg);
}

.contact-card-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-card-label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-card-value {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s;
  letter-spacing: -0.01em;
}

.contact-card:hover .contact-card-value {
  color: var(--light-blue);
}

/* Social Links */
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.social-label {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

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

.social-link {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(10, 47, 138, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.social-link:hover {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
  border-color: var(--primary-blue);
  color: var(--white);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(10, 47, 138, 0.4);
}

/* Footer Links Columns */
.footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-col-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-list a {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
  font-weight: 400;
  position: relative;
  padding-left: 0;
}

.footer-links-list a::before {
  content: '';
  position: absolute;
  left: -16px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--light-blue);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.3s;
}

.footer-links-list a:hover {
  color: var(--white);
  padding-left: 16px;
}

.footer-links-list a:hover::before {
  opacity: 1;
  left: 0;
}

/* Footer Bottom */
.footer-bottom-premium {
  padding: 32px 0;
  border-top: 1px solid rgba(10, 47, 138, 0.15);
  position: relative;
}

.footer-bottom-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(90, 127, 196, 0.3), transparent);
}

.footer-bottom-content {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 48px;
  align-items: center;
}

.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-copyright {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.footer-registration {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
}

/* Certifications */
.footer-certifications {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
}

.cert-badge {
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(10, 47, 138, 0.2);
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cert-badge:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--light-blue);
  transform: translateY(-4px);
}

.cert-badge img {
  height: 32px;
  width: auto;
  opacity: 0.8;
  transition: opacity 0.3s;
  filter: brightness(0) invert(1);
}

.cert-badge:hover img {
  opacity: 1;
}

/* Payment Methods */
.footer-payments {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.payments-label {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.payment-methods {
  display: flex;
  gap: 12px;
  align-items: center;
}

.payment-methods img {
  height: 28px;
  width: auto;
  opacity: 0.8;
  transition: all 0.3s;
}

.payment-methods img:hover {
  opacity: 1;
  transform: scale(1.05);
}

.payment-badge-text {
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(10, 47, 138, 0.2);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s;
}

.payment-badge-text:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--light-blue);
}

/* ============================================
   HOMEPAGE SCROLL-REVEAL ANIMATION SYSTEM
   ============================================ */

/* Base hidden state — applied by JS, animated on scroll */
.hp-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

.hp-reveal.hp-reveal-scale {
  transform: scale(0.92);
}

.hp-reveal.hp-visible {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

/* Stagger children inside grids */
.hp-stagger-children .hp-reveal:nth-child(1) { transition-delay: 0s; }
.hp-stagger-children .hp-reveal:nth-child(2) { transition-delay: 0.1s; }
.hp-stagger-children .hp-reveal:nth-child(3) { transition-delay: 0.12s; }
.hp-stagger-children .hp-reveal:nth-child(4) { transition-delay: 0.18s; }
.hp-stagger-children .hp-reveal:nth-child(5) { transition-delay: 0.24s; }
.hp-stagger-children .hp-reveal:nth-child(6) { transition-delay: 0.3s; }
.hp-stagger-children .hp-reveal:nth-child(7) { transition-delay: 0.36s; }
.hp-stagger-children .hp-reveal:nth-child(8) { transition-delay: 0.42s; }
.hp-stagger-children .hp-reveal:nth-child(9) { transition-delay: 0.48s; }
.hp-stagger-children .hp-reveal:nth-child(10) { transition-delay: 0.54s; }

/* ============================================
   HERO ENTRANCE CHOREOGRAPHY
   ============================================ */
.hero .hero-title-line {
  opacity: 0;
  transform: translateY(100%);
  animation: hpHeroSlideUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero .hero-title-line:nth-child(1) { animation-delay: 0.15s; }
.hero .hero-title-line:nth-child(2) { animation-delay: 0.35s; }

.hero .hero-subtitle {
  opacity: 0;
  transform: translateY(30px);
  animation: hpHeroFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.55s forwards;
}

.hero .service-grid {
  opacity: 0;
  transform: translateY(40px);
  animation: hpHeroFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.75s forwards;
}

.hero .btn-view-all {
  opacity: 0;
  transform: translateY(20px);
  animation: hpHeroFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.65s forwards;
}

.hero .trust-badges {
  opacity: 0;
  transform: translateY(20px);
  animation: hpHeroFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 1s forwards;
}

/* Service cards stagger in from within the grid */
.hero .service-card {
  opacity: 0;
  transform: translateY(30px) scale(0.97);
  animation: hpCardPopIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero .service-card:nth-child(1) { animation-delay: 0.8s; }
.hero .service-card:nth-child(2) { animation-delay: 0.9s; }
.hero .service-card:nth-child(3) { animation-delay: 1.0s; }
.hero .service-card:nth-child(4) { animation-delay: 1.1s; }
.hero .service-card:nth-child(5) { animation-delay: 1.2s; }
.hero .service-card:nth-child(6) { animation-delay: 1.3s; }

@keyframes hpHeroSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hpHeroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hpCardPopIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Trust badge icons stagger */
.hero .trust-badges img {
  opacity: 0;
  transform: translateY(10px);
  animation: hpHeroFadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero .trust-badges img:nth-child(1) { animation-delay: 1.1s; }
.hero .trust-badges img:nth-child(2) { animation-delay: 1.2s; }
.hero .trust-badges img:nth-child(3) { animation-delay: 1.3s; }
.hero .trust-badges img:nth-child(4) { animation-delay: 1.4s; }

/* Destinations stat number counter reveal */
.hp-stat-counter {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hp-stat-counter.hp-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Testimonials trust number counter */
.hp-trust-counter {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hp-trust-counter.hp-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  .hp-reveal,
  .hero .hero-title-line,
  .hero .hero-subtitle,
  .hero .service-grid,
  .hero .btn-view-all,
  .hero .trust-badges,
  .hero .trust-badges img,
  .hero .service-card,
  .hp-stat-counter,
  .hp-trust-counter {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }
}

/* Responsive */
/* ================================
   Mobile Hamburger & Drawer Nav
   ================================ */

/* Hamburger animation — three lines to X */
.mobile-menu-toggle:hover {
  background: rgba(10, 47, 138, 0.08);
}

.mobile-menu-toggle .hamburger-line {
  width: 22px;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s, width 0.35s;
  transform-origin: center;
}

.mobile-menu-toggle.is-open .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.is-open .hamburger-line:nth-child(2) {
  opacity: 0;
  width: 0;
}

.mobile-menu-toggle.is-open .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Overlay behind drawer */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(6, 29, 84, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.mobile-nav-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

/* Drawer */
.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: min(360px, 90vw);
  background: var(--white);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s 0.4s;
  overflow-y: auto;
  overscroll-behavior: contain;
  box-shadow: -8px 0 40px rgba(6, 29, 84, 0.18);
}

.mobile-nav.is-open {
  transform: translateX(0);
  visibility: visible;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s 0s;
}

/* Drawer header */
.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-light);
  flex-shrink: 0;
}

.mobile-nav-close {
  width: 40px;
  height: 40px;
  border: none;
  background: rgba(10, 47, 138, 0.06);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-dark);
  transition: background 0.3s;
  flex-shrink: 0;
}

.mobile-nav-close:hover {
  background: rgba(10, 47, 138, 0.12);
}

/* Drawer body */
.mobile-nav-body {
  flex: 1;
  padding: 16px 0;
  display: flex;
  flex-direction: column;
}

/* Accordion items */
.mobile-nav-item {
  border-bottom: 1px solid var(--border-light);
}

.mobile-nav-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background: transparent;
  border: none;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  text-align: left;
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.01em;
  transition: color 0.25s, background 0.25s;
}

.mobile-nav-trigger:hover,
.mobile-nav-trigger[aria-expanded="true"] {
  color: var(--primary-blue);
  background: rgba(10, 47, 138, 0.04);
}

.mobile-chevron {
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--text-gray);
}

.mobile-nav-trigger[aria-expanded="true"] .mobile-chevron {
  transform: rotate(180deg);
  color: var(--primary-blue);
}

/* Accordion sub-menu */
.mobile-nav-sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(10, 47, 138, 0.02);
}

.mobile-nav-sub.is-open {
  max-height: 800px;
}

.mobile-nav-sub-link {
  display: block;
  padding: 12px 24px 12px 40px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
  border-left: 3px solid transparent;
  margin-left: 0;
}

.mobile-nav-sub-link:hover {
  color: var(--primary-blue);
  background: rgba(10, 47, 138, 0.06);
  border-left-color: var(--primary-blue);
  padding-left: 44px;
}

/* Standalone link (Contact) */
.mobile-nav-link {
  display: block;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.25s, background 0.25s;
  border-bottom: 1px solid var(--border-light);
}

.mobile-nav-link:hover {
  color: var(--primary-blue);
  background: rgba(10, 47, 138, 0.04);
}

/* Branch quick-contact cards */
.mobile-nav-branches {
  margin-top: 20px;
  padding: 20px 20px 16px;
  background: linear-gradient(180deg, rgba(10, 47, 138, 0.02) 0%, rgba(10, 47, 138, 0.05) 100%);
  border-top: 1px solid var(--border-light);
}

.mobile-nav-branches-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--primary-blue);
  margin-bottom: 12px;
  padding-left: 4px;
}

.mobile-nav-branch {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: var(--white);
  border: 1px solid rgba(10, 47, 138, 0.08);
  border-radius: 12px;
  text-decoration: none;
  margin-bottom: 8px;
  transition: all 0.25s ease;
}

.mobile-nav-branch:hover,
.mobile-nav-branch:active {
  transform: translateY(-1px);
  border-color: rgba(10, 47, 138, 0.2);
  box-shadow: 0 4px 12px rgba(10, 47, 138, 0.08);
}

.mobile-nav-branch-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav-branch-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.mobile-nav-branch-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-gray);
  letter-spacing: -0.01em;
}

.mobile-nav-branch-phone {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-blue);
  letter-spacing: -0.01em;
}

.mobile-nav-trust {
  display: flex;
  gap: 14px;
  margin-top: 14px;
  padding-left: 4px;
  flex-wrap: wrap;
}

.mobile-nav-trust span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-gray);
  letter-spacing: 0.01em;
}

/* Drawer footer CTA */
.mobile-nav-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--border-light);
  flex-shrink: 0;
}

.mobile-nav-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px 24px;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
  color: var(--white);
  text-decoration: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.3s;
  box-shadow: 0 4px 16px rgba(10, 47, 138, 0.3);
  letter-spacing: -0.01em;
}

.mobile-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(10, 47, 138, 0.4);
}

/* No body scroll when drawer open */
body.mobile-nav-open {
  overflow: hidden;
}

@media (max-width: 1024px) {
  .nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .mobile-nav-overlay {
    display: block;
  }

  .hero-title {
    font-size: 48px;
  }

  .section-title {
    font-size: 36px;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 768px) {
  .hero {
    padding: 48px 0 100px;
  }

  .hero-header {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
  }

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

  .hero-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 19px;
    font-weight: 500;
    text-shadow: none;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }
  
  .service-title {
    font-size: 19px;
  }
  
  .service-image {
    width: 70px;
    height: 70px;
  }

  .section-title {
    font-size: 28px;
  }

  .benefits-grid,
  .testimonials-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .cert-logos {
    gap: 32px;
  }

  .cert-logos img {
    height: 40px;
  }

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

  .footer-bottom-content {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .footer-legal {
    align-items: center;
  }

  .footer-certifications {
    justify-content: center;
  }

  .footer-payments {
    align-items: center;
  }

  .payment-methods {
    flex-wrap: wrap;
    justify-content: center;
  }

  .newsletter-text h3 {
    font-size: 28px;
  }

  .newsletter-input-wrapper {
    flex-direction: column;
    padding: 16px;
    border-radius: 24px;
  }

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

  .footer-contact-cards {
    gap: 12px;
  }

  .trust-badges {
    gap: 20px;
    margin-top: 32px;
    padding-top: 24px;
  }

  .trust-badges img {
    height: 32px;
  }

  .cta-content-full {
    padding: 60px 24px;
  }

  .cta-content-full h2 {
    font-size: 32px;
  }

  .cta-content-full p {
    font-size: 18px;
  }

  .cta-buttons {
    flex-direction: column;
  }

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

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

  .btn-primary,
  .btn-outline {
    width: 100%;
    justify-content: center;
  }

  /* Health Hub Responsive */
  .health-hub-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .health-hub-section .btn-view-all {
    width: 100%;
  }

  .articles-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .article-card {
    min-height: 380px;
  }

  /* Products Responsive */
  .products-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .products-section .btn-view-all {
    width: 100%;
  }

  .products-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }

  .product-image {
    height: 240px;
  }

  .product-content h3 {
    font-size: 20px;
  }

  .products-features {
    padding: 24px 16px;
  }

  .feature-pill {
    padding: 10px 16px;
    font-size: 13px;
  }

  /* Health Hub Mobile Fix */
  .articles-grid {
    grid-template-columns: 1fr !important;
    gap: 24px;
  }
}
