/* ==========================================================================
   1. VARIABLES, FONTS, & CORE RESET
   ========================================================================== */

:root {
  --alcon-navy: #04304e;
  --alcon-text-blue: #1e4763;
  --alcon-accent: #2ea5f5;
  --alcon-muted: #567a8b;
  --alcon-dark: #333333;
}

* {
  box-sizing: border-box;
}

@font-face {
  font-family: 'Marko';
  src: url('../fonts/marko.otf') format('woff'),
    url('../fonts/marko.otf') format('truetype');
  font-display: swap;
}

html,
body {
  margin: 0;
  min-height: 100%;
  font-family: "Inter", sans-serif;
  background: #f8fafc;
  overflow-x: hidden;
}

body.loading {
  overflow: hidden !important;
}

a {
  text-decoration: none;
}


/* ==========================================================================
   2. KEYFRAME ANIMATIONS
   ========================================================================== */

@keyframes logoBreathe {

  0%,
  100% {
    transform: scale(0.9);
  }

  50% {
    transform: scale(1.1);
  }
}

@keyframes containerEntrance {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }

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

@keyframes fadeLoop1 {

  0%,
  45% {
    opacity: 1;
  }

  50%,
  95% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeLoop2 {

  0%,
  45% {
    opacity: 0;
  }

  50%,
  95% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes slideDownHeader {
  from {
    transform: translate(-50%, -100px);
  }

  to {
    transform: translate(-50%, 0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes logoEntrance {
  from {
    transform: translateX(-100vw);
  }

  to {
    transform: translateX(0);
  }
}

@keyframes navEntrance {
  from {
    transform: translateY(-200px);
  }

  to {
    transform: translateY(0);
  }
}

@keyframes slideFromRight {
  from {
    transform: translateX(100vw);
  }

  to {
    transform: translateX(0);
  }
}

@keyframes slideFromLeft {
  from {
    transform: translateX(-100vw);
  }

  to {
    transform: translateX(0);
  }
}

@keyframes doorBlurEntrance {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideFromBottom {
  from {
    transform: translateY(100vh);
  }

  to {
    transform: translateY(0);
  }
}


/* ==========================================================================
   3. UTILITIES & OBSERVER REVEALS
   ========================================================================== */

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}


/* ==========================================================================
   4. REUSABLE UI COMPONENTS
   ========================================================================== */

/* --- Loader Component --- */
.loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: visible;
  transition: visibility 1.3s step-end;
}

.loader-overlay.fade-out {
  visibility: hidden;
}

.loader-bg-columns {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  z-index: 9999;
  pointer-events: none;
}

.loader-column {
  flex: 1;
  height: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.8s cubic-bezier(0.76, 0, 0.24, 1);
  border-right: 1.5px solid rgba(46, 165, 245, 0.2);
}

.loader-overlay.fade-out .loader-column {
  transform: translateY(-100%);
}

.loader-column:nth-child(1) {
  transition-delay: 0s;
}

.loader-column:nth-child(2) {
  transition-delay: 0.1s;
}

.loader-column:nth-child(3) {
  transition-delay: 0.2s;
}

.loader-column:nth-child(4) {
  transition-delay: 0.3s;
}

.loader-column:nth-child(5) {
  transition-delay: 0.4s;
}

.loader-column:nth-child(6) {
  transition-delay: 0.5s;
}

.loader-content {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 10001;
  transition: transform 0.8s cubic-bezier(0.76, 0, 0.24, 1);
  transition-delay: 0.15s;
}

.loader-overlay.fade-out .loader-content {
  transform: translateY(-60vh);
}

.loader-logo {
  width: 150px;
  height: auto;
  animation: logoBreathe 2s ease-in-out infinite;
}

/* --- Tag & Badge Component --- */
.section-tag,
.about-tag,
.services-tag,
.serve-tag,
.testimonials-tag,
.footprint-tag {
  border: 1px solid rgba(4, 48, 78, 0.08);
  border-radius: 999px;
  font-size: 14px;
  color: var(--alcon-navy);
  padding: 0 20px 0 0;
  margin-bottom: 12px;
}

.section-tag.no-tag-icon {
  padding: 7px 20px;
}

.no-tag-icon .section-tag-icon {
  display: none;
}

.section-tag-icon,
.about-tag-icon,
.services-tag-icon,
.serve-tag-icon,
.testimonials-tag-icon,
.footprint-tag-icon {
  background: var(--alcon-accent);
  width: 35px;
  height: 35px;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.section-tag-icon img,
.about-tag-icon img,
.services-tag-icon img,
.serve-tag-icon img,
.testimonials-tag-icon img,
.testimonials-tag-icon svg,
.footprint-tag-icon img,
.footprint-tag-icon svg {
  width: 18px;
  height: 18px;
}

.about-badge {
  position: absolute;
  background: #2ea5f5f2;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 10px 25px rgba(46, 165, 245, 0.25);
  z-index: 3;
  white-space: nowrap;
  transition: transform 0.2s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.2s ease;
}

.badge-top-left {
  top: 0;
  left: 0;
}

.badge-bottom-right {
  bottom: 0;
  right: 0;
}

.about-badge-icon {
  width: 39.5px;
  height: 39.5px;
}

.about-badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.about-badge-value {
  font-size: 26px;
  font-weight: 500;
}

.about-badge-label {
  font-size: 11px;
  opacity: 0.9;
}

/* --- Shared Leaf Images Layout Component --- */
.leaf-images-container,
.about-images-container,
.serve-images-container {
  position: relative;
  width: 100%;
  max-width: 727px;
  display: flex;
  gap: 15px;
}

.leaf-img-wrapper,
.about-img-wrapper,
.serve-img-wrapper {
  width: 50%;
  position: relative;
}

.leaf-img-left,
.about-img-left,
.serve-img-left {
  top: 0;
  left: 0;
  z-index: 1;
  margin-bottom: 180px;
}

.leaf-img-right,
.about-img-right,
.serve-img-right {
  bottom: 0;
  right: 0;
  z-index: 2;
  margin-top: 180px;
}

.leaf-img-wrapper>img,
.about-img-wrapper>img,
.serve-img-wrapper>img {
  width: 100%;
  height: 630px;
  object-fit: cover;
  border-radius: 500px;
  box-shadow: 0 20px 40px rgba(4, 48, 78, 0.12);
}

@media (max-width: 991.98px) {

  .leaf-images-container,
  .about-images-container,
  .serve-images-container {
    margin: 50px auto 0 !important;
  }

}

.contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--alcon-navy);
  font-size: 14px;
  font-weight: 600;
  backdrop-filter: blur(8px);
  transition: 0.25s ease;
  opacity: 0;
}

body.home-page.loaded .contact-btn {
  animation: slideFromRight 1.2s cubic-bezier(0.34, 1.18, 0.64, 1) 0.8s both, fadeIn 0.8s ease-out 0.8s both;
}

body.inner-page.loaded .contact-btn {
  animation: slideFromRight 1.2s cubic-bezier(0.34, 1.18, 0.64, 1) 0.3s both, fadeIn 0.8s ease-out 0.3s both;
}

.contact-btn:hover {
  background: #ffffff;
  color: var(--alcon-navy);
  transform: translateY(-1px);
}

.btn-consultation {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 12px 12px 12px 24px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.02em;
  background: linear-gradient(70deg, #43aef6 9%, #007dd1 110%);
  transition: 0.25s ease;
}

.btn-consultation:hover {
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: #007dd1;
  transition: 0.25s ease;
}

.btn-consultation:hover .btn-arrow {
  transform: translateX(4px);
}

.btn-services {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 28px;
  border-radius: 999px;
  background: #ffffff;
  color: var(--alcon-navy);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.02em;
  transition: 0.25s ease;
}

.btn-services:hover {
  background: #eff8ff;
  color: var(--alcon-navy);
  transform: translateY(-2px);
}

.about-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--alcon-navy);
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 21px;
  border-radius: 999px;
  transition: background-color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}

.about-btn:hover {
  background-color: var(--alcon-accent);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(46, 165, 245, 0.2);
}

.service-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  color: var(--alcon-navy);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 32px;
  border: 1px solid rgba(4, 48, 78, 0.15);
  border-radius: 999px;
  transition: background-color 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    transform 0.2s ease;
  width: 100%;
}

.service-card:hover .service-card-btn,
.service-card-btn:hover {
  background-color: var(--alcon-navy);
  border-color: var(--alcon-navy);
  color: #ffffff;
}

.service-card-btn:hover {
  transform: scale(1.03);
}

/* --- Stats Cards Component --- */
.stat-card {
  min-height: 189px;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 80px;
  corner-shape: squircle;
  background: linear-gradient(140deg, rgba(255, 255, 255, .96) 0%, rgba(255, 255, 255, .75) 57%, rgba(255, 255, 255, .25) 100%);
  backdrop-filter: blur(10px);
}

.hero-section .stat-card {
  opacity: 0;
}

.hero-section.revealed .stats-row .col-12:nth-child(1) .stat-card {
  animation: slideFromBottom 1.2s cubic-bezier(0.34, 1.18, 0.64, 1) 1.8s both, fadeIn 0.8s ease-out 1.8s both;
}

.hero-section.revealed .stats-row .col-12:nth-child(2) .stat-card {
  animation: slideFromBottom 1.2s cubic-bezier(0.34, 1.18, 0.64, 1) 1.95s both, fadeIn 0.8s ease-out 1.95s both;
}

.hero-section.revealed .stats-row .col-12:nth-child(3) .stat-card {
  animation: slideFromBottom 1.2s cubic-bezier(0.34, 1.18, 0.64, 1) 2.1s both, fadeIn 0.8s ease-out 2.1s both;
}

.stat-icon {
  flex: 0 0 auto;
  width: 86px;
  height: 86px;
  color: var(--alcon-accent);
}

.stat-number {
  display: block;
  color: var(--alcon-text-blue);
  font-size: 67px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.03em;
}

.stat-label {
  display: block;
  margin-top: 8px;
  color: var(--alcon-muted);
  font-size: 14px;
}

/* --- Service Cards Component --- */
.service-card {
  padding: 40px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    border-radius 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
  border-right: 1px solid rgba(4, 48, 78, 0.08);
  border-bottom: 1px solid rgba(4, 48, 78, 0.08);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(4, 48, 78, 0.08);
  z-index: 5;
  outline: 1px solid rgba(4, 48, 78, 0.05);
}

.service-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .service-icon-wrapper {
  transform: scale(1.08);
}

.service-icon {
  width: 32px;
  height: 32px;
}

.bg-blue-medium {
  background-color: #2ea5f5;
}

.bg-navy-dark {
  background-color: #04304e;
}

.bg-blue-light {
  background-color: #43adf6;
}

.service-card-title {
  color: var(--alcon-navy);
  font-size: 21px;
  font-weight: 500;
  margin-bottom: 10px;
}

.service-card-desc {
  color: #505050;
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 30px;
  flex-grow: 1;
}


/* ==========================================================================
   5. NAVIGATION HEADER COMPONENT
   ========================================================================== */

.site-header {
  position: relative;
  z-index: 100;
  transition: padding 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease, border-bottom 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translate(-50%, 0);
  width: calc(100% - 40px);
  max-width: 1400px !important;
  margin: 0 auto !important;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(4, 48, 78, 0.06);
  border-radius: 100px;
  box-shadow: 0 10px 30px rgba(4, 48, 78, 0.09);
  z-index: 1000;
  animation: slideDownHeader 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.site-header.scrolled .site-logo,
.site-header.scrolled .nav-menu,
.site-header.scrolled .nav-menu>.nav-link,
.site-header.scrolled .nav-menu>.dropdown,
.site-header.scrolled .contact-btn,
body.header-entrance-done .site-logo,
body.header-entrance-done .nav-menu>.nav-link,
body.header-entrance-done .nav-menu>.dropdown,
body.header-entrance-done .contact-btn {
  animation: none !important;
  opacity: 1 !important;
  transform: none !important;
}

.site-header.scrolled .contact-btn {
  background: var(--alcon-navy) !important;
  color: #ffffff !important;
}

.site-header.scrolled .contact-btn:hover {
  background: var(--alcon-accent) !important;
  color: #ffffff !important;
}

.site-logo {
  opacity: 0;
}

body.home-page.loaded .site-logo {
  animation: logoEntrance 1.2s cubic-bezier(0.34, 1.18, 0.64, 1) 0.6s both, fadeIn 0.8s ease-out 0.6s both;
}

body.inner-page.loaded .site-logo {
  animation: logoEntrance 1.2s cubic-bezier(0.34, 1.18, 0.64, 1) 0.1s both, fadeIn 0.8s ease-out 0.1s both;
}

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

.nav-menu {
  position: relative;
}

.nav-menu>.nav-link,
.nav-menu>.dropdown {
  opacity: 0;
}

body.home-page.loaded .nav-menu>.nav-link,
body.home-page.loaded .nav-menu>.dropdown {
  animation: navEntrance 1.2s cubic-bezier(0.34, 1.45, 0.64, 1) 0.7s both, fadeIn 0.8s ease-out 0.7s both;
}

body.inner-page.loaded .nav-menu>.nav-link,
body.inner-page.loaded .nav-menu>.dropdown {
  animation: navEntrance 1.2s cubic-bezier(0.34, 1.45, 0.64, 1) 0.2s both, fadeIn 0.8s ease-out 0.2s both;
}

.nav-menu .nav-link {
  position: relative;
  z-index: 2;
  padding: 12px 20px;
  color: #1b4562;
  font-size: 14px;
  transition: color 0.25s ease, background-color 0.25s ease, font-weight 0.2s ease;
}

.nav-menu .nav-link:hover {
  color: var(--alcon-navy);
}

.nav-menu .nav-link.active {
  border-radius: 999px;
  color: var(--alcon-navy);
  font-weight: 600;
  transition: color 0.3s ease, font-weight 0.2s ease;
}

.nav-menu.nav-menu-hovered .nav-link.active {
  color: #1b4562;
  font-weight: 400;
}

.nav-menu.nav-menu-hovered .nav-link.active-hover {
  color: var(--alcon-navy);
  font-weight: 600;
}

.nav-hover-indicator {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-radius: 999px;
  background: #ffffffb5;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  pointer-events: none;
  opacity: 0;
  z-index: 1;
  transition:
    background-color 0.28s ease,
    border-color 0.28s ease,
    backdrop-filter 0.28s ease,
    -webkit-backdrop-filter 0.28s ease,
    box-shadow 0.28s ease;
}

body.home-page.loaded .nav-hover-indicator {
  animation: fadeIn 0.5s ease-out 1.8s both;
}

body.inner-page.loaded .nav-hover-indicator {
  animation: fadeIn 0.5s ease-out 1.3s both;
}

.nav-menu.nav-menu-hovered .nav-hover-indicator {
  opacity: 1 !important;
  animation: none !important;
  z-index: 2;
  background: transparent;
  backdrop-filter: url(#distortion);
  -webkit-backdrop-filter: url(#distortion);
  border: 0 solid rgba(255, 255, 255, 0.5);
  box-shadow:
    0 10px 30px rgba(30, 71, 99, 0.08),
    inset 0 1px 1px rgba(255, 255, 255, 0.8),
    inset 0 -1px 2px rgba(255, 255, 255, 0.3);
  transition:
    background-color 0.28s ease,
    border-color 0.28s ease,
    backdrop-filter 0.28s ease,
    -webkit-backdrop-filter 0.28s ease,
    box-shadow 0.28s ease;
}

.nav-hover-indicator.no-transition {
  transition: none !important;
}

/* Header Dropdowns */
.nav-menu .dropdown {
  position: relative;
}

.nav-menu .dropdown-menu {
  display: block;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px) scale(0.95);
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(4, 48, 78, 0.08);
  border-radius: 60px;
  corner-shape: squircle;
  box-shadow:
    0 15px 35px rgba(4, 48, 78, 0.1),
    0 5px 15px rgba(0, 0, 0, 0.03);
  padding: 12px;
  min-width: 340px;
  margin-top: 2px;
  pointer-events: none;
  z-index: 1000;
}

.nav-menu .dropdown-menu::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 0;
  width: 100%;
  height: 15px;
  background: transparent;
}

.nav-menu .dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.nav-menu .dropdown-item {
  color: #1e4763;
  font-size: 14px;
  font-weight: 500;
  padding: 10px;
  border-radius: 12px;
  white-space: normal;
  transition: background-color 0.25s ease, color 0.25s ease, padding-left 0.25s ease;
}

.nav-menu .dropdown-item:hover,
.nav-menu .dropdown-item:focus {
  background-color: rgba(46, 165, 245, 0.1);
  color: var(--alcon-navy);
  padding-left: 20px;
}

.dropdown-item.active,
.dropdown-item:active {
  color: var(--alcon-accent);
  font-weight: 500;
  background: transparent;
}

/* ==========================================================================
   6. MOBILE MENU DRAWER COMPONENT
   ========================================================================== */

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9999;
  visibility: hidden;
  pointer-events: none;
  transition: visibility 0.4s ease;
}

.mobile-drawer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(4, 48, 78, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.mobile-drawer-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 320px;
  max-width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-left: 1px solid rgba(255, 255, 255, 0.0);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
}

.mobile-drawer.open {
  visibility: visible;
  pointer-events: auto;
}

.mobile-drawer.open .mobile-drawer-overlay {
  opacity: 1;
}

.mobile-drawer.open .mobile-drawer-content {
  transform: translateX(0);
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
}

.mobile-drawer-close {
  background: rgba(255, 255, 255, 0.5);
  border: none;
  color: var(--alcon-navy);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
  cursor: pointer;
}

.mobile-drawer-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.mobile-drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-drawer-link {
  font-size: 20px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.85);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: color 0.2s ease, padding-left 0.2s ease, border-bottom-color 0.2s ease;
}

.mobile-drawer-link:hover,
.mobile-drawer-link.active {
  color: var(--alcon-accent);
  padding-left: 8px;
  border-bottom-color: var(--alcon-accent);
}

.mobile-drawer-contact-btn {
  margin-top: 32px;
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px 28px;
  background: #ffffff;
  color: var(--alcon-navy);
  border-radius: 999px;
  font-weight: 600;
  font-size: 16px;
  transition: background 0.25s ease, transform 0.2s ease;
}

.mobile-drawer-contact-btn:hover {
  background: #eff8ff;
  transform: translateY(-2px);
  color: var(--alcon-navy);
}

/* Mobile Submenu & Toggle */
.mobile-menu-btn {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--alcon-navy);
  display: none;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, transform 0.2s ease, color 0.25s ease;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(4, 48, 78, 0.05);
  animation: navEntrance 1.2s cubic-bezier(0.34, 1.18, 0.64, 1) 2.6s both;
}

.mobile-menu-btn:hover {
  background: #ffffff;
  color: var(--alcon-accent);
  transform: scale(1.05);
}

.mobile-menu-btn:active {
  transform: scale(0.95);
}

.mobile-drawer-dropdown {
  width: 100%;
}

.mobile-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), padding-top 0.35s, padding-bottom 0.35s;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 16px;
}

.mobile-submenu.open {
  max-height: 400px;
  padding-top: 12px;
  padding-bottom: 8px;
}

.mobile-submenu-link {
  font-size: 16px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.65);
  transition: color 0.2s, padding-left 0.2s;
  padding: 4px 0;
  border: none;
}

.mobile-submenu-link:hover {
  color: #ffffff;
  padding-left: 6px;
}

.submenu-arrow {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-drawer-dropdown.active .submenu-arrow {
  transform: rotate(180deg);
}


/* ==========================================================================
   7. HERO SECTION LAYOUT
   ========================================================================== */

.hero-section {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  overflow: hidden;
  padding: 38px 48px 60px;
  background: linear-gradient(130deg, #edf7ff 0%, #cfeaff 36%, #9cc7f4 100%);
  z-index: 1;
}

.hero-section.header-scrolled {
  z-index: 1020;
}

.hero-container {
  max-width: 1800px;
  margin: 0 auto;
}

.text-watermark-slider-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  opacity: 0;
}

.hero-section.revealed .text-watermark-slider-container {
  animation: containerEntrance 1.5s cubic-bezier(0.16, 1, 0.3, 1) 2.3s both;
}

.alcon-watermark {
  position: absolute;
  left: 50%;
  top: 30%;
  z-index: -1;
  transform: translateX(-50%) translateY(-30%);
  font-family: "Marko", serif;
  font-size: 22vw;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  user-select: none;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(31, 111, 165, .13) 34%, rgba(31, 111, 165, 0) 82%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  width: 100%;
  text-align: center;
}

.hero-section.revealed .text-watermark-slider-container .alcon-watermark:nth-child(1) {
  animation: fadeLoop1 8s ease-in-out 2.3s infinite both;
}

.hero-section.revealed .text-watermark-slider-container .alcon-watermark:nth-child(2) {
  animation: fadeLoop2 8s ease-in-out 2.3s infinite both;
}

.hero-grid {
  min-height: calc(100vh - 145px);
  align-items: end;
}

.hero-content {
  position: relative;
  z-index: 20;
  padding-bottom: 96px;
}

.hero-title {
  margin: 0;
  color: var(--alcon-dark);
  font-size: 48px;
  font-weight: 300;
  line-height: 1.18;
  letter-spacing: -0.04em;
  opacity: 0;
}

.hero-section.revealed .hero-title {
  animation: slideFromLeft 1.2s cubic-bezier(0.34, 1.18, 0.64, 1) 1.2s both, fadeIn 0.8s ease-out 1.2s both;
}

.hero-title span {
  color: var(--alcon-text-blue);
  font-weight: 500;
}

.hero-title .indent-text {
  display: inline-block;
  margin-left: 60px;
}

.hero-subtitle {
  margin: 10px 0 0 60px;
  color: var(--alcon-dark);
  font-size: 18px;
  line-height: 1.55;
  opacity: 0;
}

.hero-section.revealed .hero-subtitle {
  animation: slideFromLeft 1.2s cubic-bezier(0.34, 1.18, 0.64, 1) 1.35s both, fadeIn 0.8s ease-out 1.35s both;
}

.hero-actions {
  margin-top: 28px;
  margin-left: 60px;
  gap: 16px;
  opacity: 0;
}

.hero-section.revealed .hero-actions {
  animation: slideFromLeft 1.2s cubic-bezier(0.34, 1.18, 0.64, 1) 1.5s both, fadeIn 0.8s ease-out 1.5s both;
}

.hero-visual {
  position: relative;
  min-height: 760px;
}

.door {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  z-index: -1;
  object-position: bottom center;
  opacity: 0;
}

.hero-section.revealed .door {
  animation: fadeIn 1.2s ease-out both;
}

.door-blur-overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 30%, rgba(0, 0, 0, 0) 40%);
  -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 30%, rgba(0, 0, 0, 0) 40%);
  opacity: 0;
}

.hero-section.revealed .door-blur-overlay {
  animation: doorBlurEntrance 1.2s ease-out 1.2s both;
}

.trusted-clients {
  position: absolute;
  right: 0;
  top: 64%;
  z-index: 20;
  display: flex;
  align-items: center;
  opacity: 0;
}

.hero-section.revealed .trusted-clients {
  animation: slideFromRight 1.2s cubic-bezier(0.34, 1.18, 0.64, 1) 1.8s both, fadeIn 0.8s ease-out 1.8s both;
}

.client-icons {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  margin-right: 10px;
}

.client-icons>img,
.client-icons>span {
  width: 54px;
  height: 54px;
  border-radius: 50%;
}

.client-icons>span {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  margin-left: -24px;
  background: rgba(255, 255, 255, 0.75);
}

.client-icons span img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.trusted-text {
  padding: 12px 28px 12px 36px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 0 999px 999px 0;
  background: rgba(255, 255, 255, 0.1);
  color: var(--alcon-navy);
  font-size: 14px;
  font-weight: 400;
  backdrop-filter: blur(10px);
}

.stats-row {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 30;
  width: min(100%, 1050px);
}

/* Hero Section Breakpoints */
@media (max-width: 1199.98px) {
  .hero-section {
    padding: 24px 32px 40px;
    overflow: visible;
    height: auto;
  }

  .hero-grid {
    min-height: auto;
    padding-top: 56px;
    gap: 40px;
  }

  .hero-content {
    padding-bottom: 0;
    text-align: center;
  }

  .hero-title .indent-text,
  .hero-subtitle,
  .hero-actions {
    margin-left: 0;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    min-height: auto;
    position: relative;
    padding-bottom: 40px;
  }

  .trusted-clients {
    display: none;
  }

  .stats-row {
    position: relative;
    left: auto;
    right: auto;
    transform: none;
    width: 100%;
    margin-top: 40px;
  }

  .stat-card {
    min-height: auto;
    padding: 24px;
    border-radius: 30px;
    flex-direction: column;
    align-items: center;
  }

  .stat-icon {
    height: 64px;
  }

  .stat-number {
    font-size: 48px;
  }
}

@media (max-width: 991.98px) {

  .nav-menu,
  .contact-btn {
    display: none !important;
  }

  .mobile-menu-btn {
    display: inline-flex;
  }

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

@media (max-width: 767.98px) {
  .hero-section {
    padding: 20px 20px 36px;
  }

  .alcon-watermark {
    top: 18%;
    font-size: 28vw;
    letter-spacing: -0.04em;
  }

  .hero-grid {
    padding-top: 48px;
  }

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

  .hero-subtitle {
    font-size: 16px;
  }

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

  .btn-consultation,
  .btn-services {
    width: 100%;
    max-width: 330px;
    justify-content: center;
    font-size: 16px;
  }

  .hero-visual {
    min-height: auto;
  }

  .stat-card {
    flex-direction: row;
    align-items: center;
    border-radius: 28px;
    justify-content: center;
  }

  .door-blur-overlay,
  .door,
  .text-watermark-slider-container {
    display: none;
  }
}

@media (max-width: 420px) {
  .hero-title {
    font-size: 34px;
  }

  .logo-title {
    font-size: 18px;
  }

  .logo-tagline {
    font-size: 9px;
  }

  .hero-visual {
    min-height: auto;
  }
}

@media (min-width: 1350px) and (max-width: 1800px) {
  .stat-card {
    gap: 10px;
    padding: 20px;
    min-height: 160px;
  }

  .stat-icon {
    height: 64px;
    width: 64px;
  }

  .stat-icon svg {
    height: 60px;
    width: 60px;
  }

  .stat-number {
    font-size: 50px;
  }
}

@media (min-width: 1200px) and (max-width: 1350px) {
  .stat-card {
    gap: 10px;
    padding: 20px;
    min-height: 160px;
  }

  .stat-icon {
    height: 64px;
    width: 64px;
  }

  .stat-icon svg {
    height: 60px;
    width: 60px;
  }

  .stat-number {
    font-size: 40px;
  }
}


/* ==========================================================================
   8. ABOUT US SECTION LAYOUT
   ========================================================================== */

.about-section {
  background-color: #ffffff;
  padding: 120px 0 60px;
  overflow: hidden;
  position: relative;
}

.about-title {
  color: var(--alcon-dark);
  font-size: 48px;
  font-weight: 300;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.about-title .highlight-text {
  color: var(--alcon-text-blue);
  font-weight: 500;
}

.about-text {
  color: #555555;
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 300;
}

.about-images-container {
  margin: 0 0 0 auto;
}

.about-image-col.reveal-on-scroll {
  transition-delay: 0.25s;
}

/* About Us Section Breakpoints */
@media (max-width: 991.98px) {
  .about-section {
    padding: 70px 0;
  }

  .about-title {
    font-size: 34px;
  }

  .badge-top-left {
    top: 10px;
    left: -10px;
  }

  .badge-bottom-right {
    bottom: 10px;
    right: -10px;
  }
}

@media (max-width: 575.98px) {
  .about-badge {
    padding: 6px 12px;
  }

  .about-badge-value {
    font-size: 13px;
  }

  .about-badge-label {
    font-size: 9px;
  }
}


/* ==========================================================================
   9. OUR SERVICES SECTION LAYOUT
   ========================================================================== */

.services-section {
  background-color: #fff;
  padding: 60px 0 120px;
  overflow: hidden;
  position: relative;
}

.services-header {
  margin-bottom: 40px;
}

.services-title {
  color: var(--alcon-navy);
  font-size: 48px;
  font-weight: 300;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.services-title .highlight-text {
  color: var(--alcon-text-blue);
  font-weight: 500;
}

.services-subtitle {
  color: #333;
  font-size: 20px;
  font-weight: 300;
  max-width: 900px;
  margin-bottom: 0;
}

.services-grid-container {
  background: #ffffff;
  border: 1px solid rgba(4, 48, 78, 0.08);
  border-radius: 80px;
  corner-shape: squircle;
  overflow: hidden;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background-color: #ffffff;
}

.services-grid .service-card:nth-child(3n) {
  border-right: none;
}

.services-grid .service-card:nth-child(n+4) {
  border-bottom: none;
}

/* Our Services Section Breakpoints */
@media (max-width: 991.98px) {
  .services-section {
    padding: 70px 0;
  }

  .services-title {
    font-size: 34px;
  }

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

  .services-grid .service-card {
    border-right: 1px solid rgba(4, 48, 78, 0.08);
    border-bottom: 1px solid rgba(4, 48, 78, 0.08);
  }

  .services-grid .service-card:nth-child(2n) {
    border-right: none;
  }

  .services-grid .service-card:nth-child(n+5) {
    border-bottom: none;
  }
}

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

  .services-grid .service-card {
    border-right: none;
    border-bottom: 1px solid rgba(4, 48, 78, 0.08);
    padding: 40px 24px;
  }

  .services-grid .service-card:last-child {
    border-bottom: none;
  }
}


/* ==========================================================================
   10. WHO WE SERVE SECTION LAYOUT
   ========================================================================== */

.serve-section {
  background-color: #eff7ff;
  /* Very light blue tint */
  padding: 120px 0 0;
  /* Padding adjusted to sit nicely with bottom center logo */
  overflow: hidden;
  position: relative;
}

.serve-images-container {
  margin: 0 auto 0 0;
}

.serve-title {
  color: var(--alcon-dark);
  font-size: 48px;
  font-weight: 300;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.serve-title .highlight-text {
  color: var(--alcon-text-blue);
  font-weight: 500;
}

.serve-text {
  color: #555555;
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 300;
  line-height: 1.6;
}

.serve-highlight-statement {
  color: var(--alcon-accent);
  /* Bright blue accent */
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
}

.serve-image-col.reveal-on-scroll {
  transition-delay: 0.25s;
}

/* Radar Subsection Add-on */
.serve-sectors-wrapper {
  margin-top: 120px;
}

.serve-header {
  margin-bottom: 40px;
}

.serve-subtitle {
  color: #555555;
  font-size: 20px;
  font-weight: 300;
  max-width: 800px;
  line-height: 1.55;
}

/* Radar Container Styling */
.radar-container {
  position: relative;
  width: 100%;
  max-width: 1185px;
  height: 569px;
  margin: 100px auto 0;
  --r-outer: 570px;
  --r-inner: 355px;
}

/* Arc Circles centered at bottom center */
.radar-arc {
  position: absolute;
  left: 50%;
  bottom: 0;
  border-radius: 50%;
  border: 1px solid #C1E6FF;
  transform: translate(-50%, 50%);
  pointer-events: none;
}

.radar-arc-outer {
  width: calc(var(--r-outer) * 2);
  height: calc(var(--r-outer) * 2);
}

.radar-arc-inner {
  width: calc(var(--r-inner) * 2);
  height: calc(var(--r-inner) * 2);
}

/* Radar Node Points positioned using CSS Trig */
.radar-point {
  position: absolute;
  left: 50%;
  bottom: 0;
  --x: calc(var(--r) * cos(var(--angle)));
  --y: calc(var(--r) * sin(var(--angle)));
  /* Initially hidden behind the emblem at center-bottom */
  transform: translate(-50%, 50%) scale(0);
  opacity: 0;
  z-index: 4;
  /* Animates on reveal */
  transition: transform 1.2s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.8s ease, z-index 0s;
}

/* Shoots out to its actual location once the section is revealed */
.serve-sectors-wrapper.revealed .radar-point {
  transform: translate(calc(-50% + var(--x)), calc(50% - var(--y))) scale(1);
  opacity: 1;
  z-index: 10;
}

/* Staggered delay for each of the 10 radar points (3rd child to 12th child of .radar-container) */
.serve-sectors-wrapper.revealed .radar-point:nth-child(3) {
  transition-delay: 0.12s;
}

.serve-sectors-wrapper.revealed .radar-point:nth-child(4) {
  transition-delay: 0.24s;
}

.serve-sectors-wrapper.revealed .radar-point:nth-child(5) {
  transition-delay: 0.36s;
}

.serve-sectors-wrapper.revealed .radar-point:nth-child(6) {
  transition-delay: 0.48s;
}

.serve-sectors-wrapper.revealed .radar-point:nth-child(7) {
  transition-delay: 0.60s;
}

.serve-sectors-wrapper.revealed .radar-point:nth-child(8) {
  transition-delay: 0.72s;
}

.serve-sectors-wrapper.revealed .radar-point:nth-child(9) {
  transition-delay: 0.84s;
}

.serve-sectors-wrapper.revealed .radar-point:nth-child(10) {
  transition-delay: 0.96s;
}

.serve-sectors-wrapper.revealed .radar-point:nth-child(11) {
  transition-delay: 1.08s;
}

.serve-sectors-wrapper.revealed .radar-point:nth-child(12) {
  transition-delay: 1.20s;
}

/* Tooltip Badges */
.radar-tooltip {
  position: absolute;
  bottom: 100%;
  left: 50%;
  z-index: 1;
  /* Layered behind the white icon button */
  transform: translate(-50%, 30px) scale(0);
  background: #ffffff;
  color: var(--alcon-navy);
  padding: 6px 24px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 4px 15px rgba(4, 48, 78, 0.08);
  border: 1px solid rgba(4, 48, 78, 0.05);
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
    transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
    visibility 0.35s;
  pointer-events: none;
}

.radar-tooltip.active,
.radar-point:hover .radar-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -8px) scale(1);
}

/* Icon Buttons */
.radar-icon-btn {
  width: 65px;
  height: 65px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--alcon-accent);
  font-size: 23px;
  box-shadow: 0 10px 25px rgba(46, 165, 245, 0.12);
  border: 1px solid rgba(46, 165, 245, 0.1);
  position: relative;
  z-index: 2;
  /* Layered in front of the tooltip */
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
  cursor: pointer;
}

.radar-point:hover .radar-icon-btn {
  transform: scale(1.15);
  background: var(--alcon-accent);
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(46, 165, 245, 0.35);
  border-color: var(--alcon-accent);
}

/* Center Emblem */
.radar-center-emblem {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 40%);
  z-index: 5;
}

.radar-logo-bg {
  width: 300px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  /* matches section background color */
  position: relative;
  overflow: hidden;
  background: #eff7ff;
}


.radar-logo-mark {
  width: 300px;
  object-fit: contain;
}

/* Who We Serve Section Breakpoints */
@media (max-width: 991.98px) {
  .serve-section {
    padding: 70px 0 0;
  }

  .serve-title {
    font-size: 34px;
  }

  .serve-sectors-wrapper {
    margin-top: 50px;
    padding-top: 50px;
  }

  .radar-container {
    height: 420px;
    --r-outer: 330px;
    --r-inner: 200px;
    margin-top: 40px;
  }

  .radar-icon-btn {
    width: 48px;
    height: 48px;
    font-size: 17px;
  }

  .radar-logo-bg {
    width: 110px;
    height: 110px;
    border-width: 6px;
  }

  .radar-logo-mark {
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 575.98px) {
  .radar-container {
    height: 290px;
    --r-outer: 210px;
    --r-inner: 130px;
  }

  .radar-icon-btn {
    width: 38px;
    height: 38px;
    font-size: 14px;
  }

  .radar-logo-bg {
    width: 80px;
    height: 80px;
    border-width: 4px;
  }

  .radar-logo-mark {
    width: 32px;
    height: 32px;
  }

  .radar-tooltip {
    padding: 4px 10px;
    font-size: 11px;
  }
}


/* ==========================================================================
   11. TESTIMONIALS SECTION LAYOUT
   ========================================================================== */

.testimonials-section {
  background-color: #ffffff;
  padding: 120px 0 60px;
  overflow: hidden;
  position: relative;
}

.testimonials-header {
  margin-bottom: 40px;
}

.testimonials-title {
  color: var(--alcon-navy);
  font-size: 48px;
  font-weight: 300;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.testimonials-title .highlight-text {
  color: var(--alcon-text-blue);
  font-weight: 500;
}

.testimonials-subtitle {
  color: #555555;
  font-size: 20px;
  font-weight: 300;
  max-width: 900px;
  line-height: 1.55;
}

/* Testimonial Cards */
.testimonial-card {
  background: #ffffff;
  border: 1px solid rgba(4, 48, 78, 0.08);
  border-radius: 80px;
  corner-shape: squircle;
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);

}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(4, 48, 78, 0.06);
}

.star-rating {
  margin-bottom: 40px;
  display: flex;
  gap: 4px;
}

.star-rating .fa-star {
  color: #ffc107;
  /* Soft gold rating stars */
  font-size: 24px;
}

.star-rating .empty-star {
  color: #cbd5e1;
  /* Muted gray star */
}

.testimonial-quote {
  font-size: 24px;
  font-weight: 500;
  color: var(--alcon-navy);
  margin-bottom: 48px;
  font-family: inherit;
  border-left: none;
  /* Reset standard blockquote borders */
  padding-left: 0;
}

.testimonial-author {
  margin-top: auto;
  /* Push author block to bottom of card */
  display: flex;
  flex-direction: column;
}

.author-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--alcon-navy);
}

.author-role {
  font-size: 14px;
  color: var(--alcon-muted);
  margin-top: 4px;
}

/* Testimonials Responsive Breakpoints */
@media (max-width: 991.98px) {
  .testimonials-section {
    padding: 70px 0;
  }

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

  .testimonial-card {
    padding: 40px 32px;
  }
}


/* ==========================================================================
   12. GLOBAL FOOTPRINT SECTION LAYOUT
   ========================================================================== */

.footprint-section {
  background-color: #fff;
  padding: 60px 0;
  overflow: hidden;
  position: relative;
}

.footprint-header {
  margin-bottom: 48px;
}

.footprint-title {
  color: var(--alcon-navy);
  font-size: 48px;
  font-weight: 300;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.footprint-title .highlight-text {
  color: var(--alcon-text-blue);
  font-weight: 500;
}

.footprint-subtitle {
  color: #555555;
  font-size: 20px;
  font-weight: 300;
  max-width: 900px;
  line-height: 1.55;
}

/* Footprint Cards */
.footprint-card {
  background: #ffffff;
  border: 1px solid rgba(4, 48, 78, 0.08);
  border-radius: 80px;
  padding: 48px 40px;
  corner-shape: squircle;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 12px rgba(4, 48, 78, 0.02);
}

.footprint-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(4, 48, 78, 0.06);
  background: #eff7ff;
}

.footprint-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(46, 165, 245, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.footprint-card:hover .footprint-icon-wrapper {
  transform: scale(1.08);
}

.footprint-icon {
  width: 30px;
  height: 30px;
}

.footprint-card-title {
  font-size: 28px;
  font-weight: 500;
  color: var(--alcon-navy);
  margin-bottom: 4px;
}

.footprint-card-subtitle {
  font-size: 14px;
  color: var(--alcon-accent);
  margin-bottom: 24px;
  text-transform: uppercase;
}

.footprint-card-address {
  font-size: 15px;
  color: var(--alcon-muted);
  margin-bottom: 32px;
  min-height: 48px;
  /* Maintain height alignment for varying text wraps */
}

.footprint-card-divider {
  border-top: 1px solid rgba(4, 48, 78, 0.06);
  margin-top: auto;
  /* Push divider and contacts to bottom */
  margin-bottom: 20px;
}

.footprint-card-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--alcon-text-blue);
  font-size: 16px;
  transition: color 0.2s ease;
}

.contact-item:hover {
  color: var(--alcon-accent);
}

.contact-item i {
  font-size: 16px;
  color: var(--alcon-accent);
  width: 18px;
  /* Keep icons aligned */
  text-align: center;
}

/* Responsive styles */
@media (max-width: 991.98px) {
  .footprint-section {
    padding: 70px 0;
  }

  .footprint-title {
    font-size: 34px;
  }

  .footprint-card {
    padding: 40px 32px;
  }

  .footprint-card-address {
    min-height: auto;
  }
}


/* ==========================================================================
   13. CALL TO ACTION SECTION LAYOUT
   ========================================================================== */

.cta-section {
  padding: 60px 0 120px;
  background-color: #ffffff;
}

.cta-container {
  background: var(--alcon-accent);
  border-radius: 80px;
  corner-shape: squircle;
  padding: 80px 60px 0;
  text-align: center;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.cta-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.20) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.20) 1px, transparent 1px);
  background-size: 60px 60px;
  background-position: center;
  -webkit-mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 1) 10%, rgba(0, 0, 0, 0) 80%);
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 1) 10%, rgba(0, 0, 0, 0) 80%);
  z-index: 1;
  pointer-events: none;
}

.cta-title {
  font-size: 54px;
  margin-bottom: 10px;
  color: #ffffff;
  position: relative;
  z-index: 2;
}

.cta-subtitle {
  font-size: 20px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  max-width: 900px;
  margin: 0 auto 40px;
  position: relative;
  z-index: 2;
}

/* CTA Contact Cards */
.cta-cards-row {
  margin: auto;
  margin-bottom: 40px;
  max-width: 1000px;
  position: relative;
  z-index: 2;
}

.cta-card {
  background: #ffffff;
  border-radius: 80px;
  corner-shape: squircle;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.cta-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.cta-card-icon {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-card-title {
  font-size: 18px;
  font-weight: 500;
  color: var(--alcon-navy);
  margin-bottom: 6px;
}

.cta-card-value {
  font-size: 16px;
  color: var(--alcon-muted);
}

/* Button */
.cta-btn-wrapper {
  position: relative;
  z-index: 10;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background-color: #ffffff;
  color: var(--alcon-navy);
  font-weight: 500;
  font-size: 18px;
  padding: 12px 12px 12px 24px;
  border-radius: 999px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  background-color: #f8fafc;
  color: var(--alcon-navy);
}

.cta-btn-arrow {
  background-color: var(--alcon-accent);
  color: #ffffff;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: transform 0.25s ease;
}

.cta-btn:hover .cta-btn-arrow {
  transform: translateX(4px);
}

/* Image & Backdrop Dome */
.cta-image-wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  margin-top: -30px;
  overflow: hidden;
}

.cta-team-img {
  position: relative;
  width: 100%;
  max-width: 1216px;
  height: auto;
  z-index: 2;
  margin: 0 auto;
  display: block;
}

/* Responsive styles */
@media (max-width: 991.98px) {
  .cta-section {
    padding: 40px 0 80px;
  }

  .cta-container {
    padding: 60px 40px 0;
    border-radius: 36px;
  }

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

  .cta-subtitle {
    font-size: 16px;
    margin-bottom: 36px;
  }

  .cta-cards-row {
    margin-bottom: 30px;
  }

  .cta-card {
    border-radius: 28px;
    padding: 24px 16px;
  }

  .cta-btn-wrapper {
    margin-bottom: 40px;
  }

}

@media (max-width: 575.98px) {
  .cta-container {
    padding: 50px 20px 0;
    border-radius: 24px;
  }

  .cta-title {
    font-size: 26px;
  }

  .cta-subtitle {
    font-size: 14px;
  }

}


/* ==========================================================================
   14. FOOTER SECTION LAYOUT
   ========================================================================== */

.footer-section {
  background-color: #eef3f8;
  padding: 80px 0 40px;
  color: var(--alcon-navy);
  font-size: 15px;
}

.footer-logo {
  max-height: 45px;
  margin-bottom: 24px;
  display: block;
}

.footer-desc {
  color: var(--alcon-text-blue);
  line-height: 1.6;
  margin-bottom: 24px;
  font-weight: 400;
}

.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--alcon-navy);
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-contact-item:hover {
  color: var(--alcon-accent);
}

.footer-contact-item i {
  color: var(--alcon-accent);
  font-size: 16px;
  width: 20px;
  text-align: center;
}

.footer-title {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  color: var(--alcon-navy);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: var(--alcon-text-blue);
}

.footer-links a {
  color: var(--alcon-text-blue);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

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

/* Sub-Footer Bottom Bar */
.sub-footer-bar {
  border-top: 1px solid rgba(4, 48, 78, 0.08);
  margin-top: 60px;
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.copyright-text {
  color: var(--alcon-muted);
  font-size: 14px;
  margin: 0;
}

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

.footer-social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--alcon-text-blue);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-social-link:hover {
  color: var(--alcon-accent);
}

.footer-social-link i {
  font-size: 16px;
  color: var(--alcon-accent);
}

/* Responsive styles */
@media (max-width: 991.98px) {
  .footer-section {
    padding: 60px 0 30px;
  }

  .footer-title {
    margin-top: 32px;
    margin-bottom: 16px;
  }

  .sub-footer-bar {
    margin-top: 40px;
    padding-top: 24px;
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}


/* ==========================================================================
   15. ABOUT US & SUBPAGE LAYOUTS
   ========================================================================== */

.inner-hero-section {
  min-height: auto;
  padding-bottom: 100px;
}

.inner-hero-container {
  max-width: 1000px;
  margin: 100px auto 0;
  position: relative;
  z-index: 5;
}

.inner-hero-title {
  color: var(--alcon-navy);
  font-size: 56px;
  font-weight: 300;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
  line-height: 1.15;
}

.inner-hero-title .highlight-text {
  font-weight: 500;
  color: var(--alcon-text-blue);
}

.inner-hero-subtitle {
  color: var(--alcon-text-blue);
  font-size: 22px;
  font-weight: 300;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.5;
}


/* Story Section */
.story-section {
  background-color: #ffffff;
  padding: 120px 0;
  overflow: hidden;
  position: relative;
}

.story-title {
  color: var(--alcon-dark);
  font-size: 48px;
  font-weight: 300;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.story-title .highlight-text {
  color: var(--alcon-text-blue);
  font-weight: 500;
}

.story-text {
  color: #555555;
  font-size: 18px;
  margin-bottom: 24px;
  font-weight: 300;
  line-height: 1.65;
}

.story-text:last-of-type {
  margin-bottom: 0;
}

/* Mission, Vision, Values Section */
.mvv-section {
  background-color: #eff7ff;
  padding: 120px 0;
  overflow: hidden;
  position: relative;
}

.mvv-grid-row {
  margin-top: 60px;
}

.mvv-card {
  background: #ffffff;
  border: 1px solid rgba(4, 48, 78, 0.08);
  border-radius: 80px;
  corner-shape: squircle;
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    background-color 0.3s ease;
  box-shadow: 0 4px 12px rgba(4, 48, 78, 0.02);
}

.mvv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(4, 48, 78, 0.07);
  outline: 1px solid rgba(4, 48, 78, 0.05);
}

.mvv-card-icon-wrapper {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: rgba(46, 165, 245, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    background-color 0.3s ease;
}

.mvv-card:hover .mvv-card-icon-wrapper {
  transform: scale(1.08);
  background-color: var(--alcon-accent);
}

.mvv-card-icon {
  font-size: 24px;
  color: var(--alcon-accent);
  transition: color 0.3s ease;
}

.mvv-card:hover .mvv-card-icon {
  color: #ffffff;
}

.mvv-card-title {
  font-size: 28px;
  font-weight: 500;
  color: var(--alcon-navy);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.mvv-card-desc {
  font-size: 16px;
  color: var(--alcon-muted);
  line-height: 1.65;
  margin-bottom: 0;
  font-weight: 300;
}

/* Contact Page Styles */
.contact-page-section {
  background-color: #ffffff;
  padding: 120px 0;
}

.contact-form-card {
  background: #ffffff;
  border: 1px solid rgba(4, 48, 78, 0.08);
  border-radius: 60px;
  corner-shape: squircle;
  padding: 60px 48px;
  box-shadow: 0 10px 40px rgba(4, 48, 78, 0.04);
}

.contact-form-title {
  font-size: 32px;
  font-weight: 600;
  color: var(--alcon-navy);
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}

.contact-form .form-control {
  background-color: #f8fafc;
  border: 1px solid rgba(4, 48, 78, 0.08);
  border-radius: 16px;
  padding: 14px 20px;
  font-size: 15px;
  color: var(--alcon-navy);
  transition: all 0.25s ease;
}

.contact-form .form-control:focus {
  background-color: #ffffff;
  border-color: var(--alcon-accent);
  box-shadow: 0 0 0 4px rgba(46, 165, 245, 0.15);
  outline: none;
}

.contact-form textarea.form-control {
  border-radius: 20px;
  resize: none;
}

.contact-form .form-select {
  background-color: #f8fafc;
  border: 1px solid rgba(4, 48, 78, 0.08);
  border-radius: 16px;
  padding: 14px 20px;
  font-size: 15px;
  color: var(--alcon-navy);
  transition: all 0.25s ease;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%231e4763' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 12px;
}

.contact-form .form-select:focus {
  background-color: #ffffff;
  border-color: var(--alcon-accent);
  box-shadow: 0 0 0 4px rgba(46, 165, 245, 0.15);
  outline: none;
}

.form-select-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--alcon-muted);
  margin-bottom: 8px;
  display: block;
}

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

.contact-form .form-check-input {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  border: 1.5px solid rgba(4, 48, 78, 0.15);
  cursor: pointer;
  margin-top: 3px;
  transition: all 0.2s ease;
}

.contact-form .form-check-input:checked {
  background-color: var(--alcon-accent);
  border-color: var(--alcon-accent);
}

.contact-form .form-check-input:focus {
  box-shadow: 0 0 0 4px rgba(46, 165, 245, 0.15);
  border-color: var(--alcon-accent);
}

.contact-form .form-check-label {
  font-size: 14px;
  color: var(--alcon-muted);
  font-weight: 300;
  line-height: 1.5;
  cursor: pointer;
  user-select: none;
}

.btn-submit-request {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background-color: var(--alcon-accent);
  color: #ffffff;
  border: none;
  padding: 14px 36px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.25s ease;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(46, 165, 245, 0.2);
  width: auto;
}

.btn-submit-request:hover {
  background-color: var(--alcon-navy);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(4, 48, 78, 0.15);
}

.btn-submit-request:active {
  transform: translateY(0);
}

.btn-submit-arrow {
  transition: transform 0.25s ease;
  font-size: 14px;
}

.btn-submit-request:hover .btn-submit-arrow {
  transform: translateX(4px);
}

/* Service Details Subpage Styles */
.service-details-section {
  background-color: #ffffff;
  padding: 120px 0;
  overflow: hidden;
  position: relative;
}

.ideal-for-box {
  background: rgba(46, 165, 245, 0.06);
  border-left: 4px solid var(--alcon-accent);
  border-radius: 20px;
  padding: 32px;
  margin-top: 40px;
  box-shadow: 0 10px 30px rgba(46, 165, 245, 0.03);
}

.ideal-for-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--alcon-navy);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.ideal-for-title i {
  color: var(--alcon-accent);
  font-size: 20px;
}

.ideal-for-text {
  font-size: 16px;
  color: var(--alcon-muted);
  line-height: 1.6;
  margin: 0;
  font-weight: 300;
}

/* Deliverables Section */
.deliverables-section {
  background-color: #eff7ff;
  padding: 120px 0;
  overflow: hidden;
  position: relative;
}

.deliverable-card {
  background: #ffffff;
  border: 1px solid rgba(4, 48, 78, 0.08);
  border-radius: 60px;
  corner-shape: squircle;
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    background-color 0.3s ease;
  box-shadow: 0 4px 12px rgba(4, 48, 78, 0.02);
}

.deliverable-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(4, 48, 78, 0.07);
  outline: 1px solid rgba(4, 48, 78, 0.05);
}

.deliverable-card-icon-wrapper {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: rgba(46, 165, 245, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    background-color 0.3s ease;
}

.deliverable-card:hover .deliverable-card-icon-wrapper {
  transform: scale(1.08);
  background-color: var(--alcon-accent);
}

.deliverable-card-icon {
  font-size: 24px;
  color: var(--alcon-accent);
  transition: color 0.3s ease;
}

.deliverable-card:hover .deliverable-card-icon {
  color: #ffffff;
}

.deliverable-card-title {
  font-size: 24px;
  font-weight: 500;
  color: var(--alcon-navy);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.deliverable-card-desc {
  font-size: 15px;
  color: var(--alcon-muted);
  line-height: 1.6;
  margin: 0;
  font-weight: 300;
}

/* About Us Subpage Responsive Queries */
@media (max-width: 1199.98px) {
  .inner-hero-container {
    margin-top: 80px;
  }
}

@media (max-width: 991.98px) {
  .inner-hero-container {
    margin-top: 70px;
  }

  .inner-hero-title {
    font-size: 40px;
  }

  .inner-hero-subtitle {
    font-size: 18px;
  }

  .story-section,
  .mvv-section,
  .service-details-section,
  .deliverables-section {
    padding: 80px 0;
  }

  .deliverable-card {
    padding: 40px 32px;
    border-radius: 48px;
  }

  .deliverable-card-title {
    font-size: 22px;
  }

  .story-title {
    font-size: 34px;
  }

  .story-text {
    font-size: 16px;
    margin-bottom: 18px;
  }

  .mvv-card {
    padding: 40px 32px;
    border-radius: 48px;
  }

  .mvv-card-title {
    font-size: 24px;
  }

  .mvv-card-desc {
    font-size: 15px;
  }

  .contact-page-section {
    padding: 80px 0;
  }

  .contact-page-heading {
    font-size: 34px !important;
  }

  .contact-form-card {
    padding: 40px 32px;
    border-radius: 40px;
  }

  .contact-form-title {
    font-size: 26px;
    margin-bottom: 24px;
  }
}

@media (max-width: 575.98px) {
  .inner-hero-container {
    margin-top: 50px;
  }

  .inner-hero-title {
    font-size: 32px;
  }

  .inner-hero-subtitle {
    font-size: 15px;
  }

  .story-section,
  .mvv-section,
  .service-details-section,
  .deliverables-section {
    padding: 60px 0;
  }

  .deliverable-card {
    padding: 32px 24px;
    border-radius: 36px;
  }

  .deliverable-card-title {
    font-size: 20px;
  }

  .mvv-card {
    padding: 32px 24px;
    border-radius: 36px;
  }

  .mvv-card-title {
    font-size: 22px;
  }

  .contact-page-section {
    padding: 60px 0;
  }

  .contact-form-card {
    padding: 32px 20px;
    border-radius: 28px;
  }

  .btn-submit-request {
    width: 100%;
  }
}


/* ==========================================================================
   16. GLOBAL CONTAINER & GRID MEDIA OVERRIDES
   ========================================================================== */

@media (min-width: 1400px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1400px;
  }
}

/* ==========================================================================
   17. PRIVACY POLICY PAGE STYLES
   ========================================================================== */
.policy-content-section {
  background-color: #ffffff;
  padding: 100px 0;
}

.policy-card {
  background: #ffffff;
  border: 1px solid rgba(4, 48, 78, 0.06);
  border-radius: 24px;
  padding: 60px;
  box-shadow: 0 15px 40px rgba(4, 48, 78, 0.03);
}

.policy-section-title {
  font-size: 24px;
  color: var(--alcon-navy);
  font-weight: 600;
  margin-bottom: 20px;
  border-left: 4px solid var(--alcon-accent);
  padding-left: 15px;
  line-height: 1.2;
}

.policy-text-group {
  color: #4a5568;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 300;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.policy-text-group a {
  color: var(--alcon-text-blue);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid rgba(67, 173, 246, 0.2);
  transition: border-color 0.2s, color 0.2s;
}

.policy-text-group a:hover {
  color: var(--alcon-accent);
  border-bottom-color: var(--alcon-accent);
}

.policy-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.policy-list li {
  position: relative;
  padding-left: 24px;
}

.policy-list li i {
  position: absolute;
  left: 0;
  top: 5px;
  color: var(--alcon-accent);
  font-size: 14px;
}

@media (max-width: 768px) {
  .policy-content-section {
    padding: 60px 0;
  }

  .policy-card {
    padding: 30px 20px;
    border-radius: 16px;
  }

  .policy-section-title {
    font-size: 20px;
  }
}

/* ==========================================================================
   18. EUROPEAN CAPABILITY SECTION
   ========================================================================== */
.european-capability-section {
  background-color: #ffffff;
  padding: 120px 0 60px;
  overflow: hidden;
  position: relative;
}

.capability-icon-wrapper {
  background-color: rgba(46, 165, 245, 0.08) !important;
  color: var(--alcon-accent) !important;
}

.capability-icon-wrapper i {
  font-size: 24px;
  color: var(--alcon-accent);
}

.capability-badges-container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
  margin-bottom: 12px;
}

.capability-badge {
  border-radius: 30px;
  padding: 4px 12px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.capability-badge.badge-outline {
  background: rgba(4, 48, 78, 0.05);
  border: 1px solid rgba(4, 48, 78, 0.08);
  color: var(--alcon-navy);
}

.capability-badge.badge-accent {
  background: rgba(46, 165, 245, 0.1);
  border: 1px solid var(--alcon-accent);
  color: var(--alcon-accent);
}

.european-capability-section .footprint-card-address {
  min-height: auto;
  margin-bottom: 24px;
  line-height: 1.6;
  font-size: 18px;
  color: var(--alcon-muted);
  font-weight: 300;
}

.capability-check-item {
  color: var(--alcon-navy);
  font-weight: 500;
  font-size: 16px;
}

.capability-check-item i {
  color: var(--alcon-accent) !important;
  font-size: 18px;
}