/* ========================================
   NWAS Ambulance — Stylesheet
   ======================================== */

:root {
  --color-primary: #C41E3A;
  --color-primary-dark: #9B1830;
  --color-primary-light: #E8354F;
  --color-navy: #0B1F3A;
  --color-navy-light: #152D4F;
  --color-accent: #C41E3A;
  --color-accent-dark: #9B1830;
  --color-dark: #0B1F3A;
  --color-text: #333333;
  --color-text-light: #666666;
  --color-bg: #ffffff;
  --color-bg-alt: #F5F7FA;
  --color-border: #e5e5e5;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;

  --header-height: 72px;
  --container-width: 1200px;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

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

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

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--color-primary-dark);
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section__header {
  margin-bottom: 60px;
}

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

.section__label {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.section__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.2;
}

.section__desc {
  font-size: 18px;
  color: var(--color-text-light);
  margin-top: 16px;
  max-width: 600px;
}

.section__header--center .section__desc {
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn--primary {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

.btn--primary:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196, 30, 58, 0.35);
}

.btn--outline {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.btn--outline:hover {
  background: #fff;
  color: var(--color-navy);
}

.btn--white {
  background: #fff;
  color: var(--color-primary);
  border-color: #fff;
}

.btn--white:hover {
  background: transparent;
  color: #fff;
}

.btn--outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
}

.btn--outline-white:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  color: #fff;
}

.btn--full {
  width: 100%;
}

/* Header / Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
}

.header.scrolled {
  background: rgba(11, 31, 58, 0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

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

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

.lang-switcher {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.lang-switcher__btn {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.5px;
}

.lang-switcher__btn:hover {
  color: #fff;
}

.lang-switcher__btn.active {
  background: var(--color-primary);
  color: #fff;
}

.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav__logo:hover {
  opacity: 0.92;
}

.nav__logo-img {
  height: 42px;
  width: auto;
  max-width: min(220px, 52vw);
  display: block;
  object-fit: contain;
}

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

.nav__link {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 50px;
  transition: all var(--transition);
}

.nav__link:hover,
.nav__link.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.nav__link--cta {
  background: var(--color-primary);
  color: #fff !important;
  margin-left: 4px;
}

.nav__link--cta:hover {
  background: var(--color-primary-dark);
}

.nav__social {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-left: 8px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.nav__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.1);
  transition: all var(--transition);
}

.nav__social-link:hover {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-2px);
}

.nav__social-link--wa:hover {
  background: #25D366;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav__toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all var(--transition);
}

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

.nav__toggle.active .nav__toggle-bar:nth-child(2) {
  opacity: 0;
}

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

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.hero__carousel {
  overflow: hidden;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  z-index: 0;
}

.hero__slide--active {
  opacity: 1;
  z-index: 1;
}

.hero__slide .hero__bg-img {
  transform: scale(1.08);
  transition: transform 6s ease-out;
}

.hero__slide--active .hero__bg-img {
  transform: scale(1);
}

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

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    135deg,
    rgba(11, 31, 58, 0.92) 0%,
    rgba(11, 31, 58, 0.78) 45%,
    rgba(196, 30, 58, 0.55) 100%
  );
}

.hero__carousel-dots {
  position: absolute;
  bottom: 88px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 10px;
}

.hero__carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.6);
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: all var(--transition);
}

.hero__carousel-dot:hover,
.hero__carousel-dot--active {
  background: #fff;
  border-color: #fff;
  transform: scale(1.15);
}

@media (max-width: 640px) {
  .hero__carousel-dots {
    bottom: 72px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__slide,
  .hero__slide .hero__bg-img {
    transition: none;
  }

  .hero__slide .hero__bg-img {
    transform: none;
  }
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  padding: 120px 24px 80px;
  max-width: 920px;
}

.hero__brand {
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.95;
  margin: -8px 0 20px;
}

.hero__points {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 12px;
}

.hero__points li {
  font-size: 13px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 8px 14px;
  border-radius: 50px;
  line-height: 1.35;
}

.hero__badge {
  display: inline-block;
  background: var(--color-primary);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 24px;
  animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
  0%, 100% { box-shadow: 0 0 0 0 rgba(196, 30, 58, 0.5); }
  50% { box-shadow: 0 0 0 10px rgba(196, 30, 58, 0); }
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  opacity: 0.9;
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero__phone {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 32px;
}

.hero__phone-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 700;
  background: rgba(255, 255, 255, 0.1);
  padding: 16px 32px;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  transition: all var(--transition);
}

.hero__phone-link:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
  transform: scale(1.03);
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero__social {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.hero__social a {
  color: #fff;
  opacity: 0.8;
  transition: all var(--transition);
}

.hero__social a:hover {
  opacity: 1;
  color: var(--color-primary-light);
  transform: translateY(-3px);
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.hero__scroll span {
  display: block;
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  position: relative;
}

.hero__scroll span::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: #fff;
  border-radius: 2px;
  animation: scroll-bounce 2s infinite;
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50% { transform: translateX(-50%) translateY(12px); opacity: 0.3; }
}

/* About */
.about {
  background: var(--color-bg);
}

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

.about__image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about__image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.about__badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--color-primary);
  color: #fff;
  padding: 20px 24px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
}

.about__badge-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  line-height: 1;
  font-weight: 700;
}

.about__badge-text {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
}

.about__lead {
  font-size: 18px;
  margin-bottom: 16px;
  color: var(--color-dark);
}

.about__content p {
  color: var(--color-text-light);
  margin-bottom: 16px;
}

.about__registration {
  margin: 0 0 24px;
  padding: 16px 20px;
  background: var(--color-bg-alt, #f4f7fb);
  border-left: 4px solid var(--color-primary, #c41e3a);
  border-radius: 0 var(--radius-md, 8px) var(--radius-md, 8px) 0;
}

.about__registration-item {
  margin: 0;
}

.about__registration-item + .about__registration-item {
  margin-top: 12px;
}

.about__registration dt {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text-light);
  margin-bottom: 4px;
}

.about__registration dd {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-dark);
  font-variant-numeric: tabular-nums;
}

.about__features {
  margin: 32px 0;
}

.about__features li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.about__icon {
  font-size: 28px;
  flex-shrink: 0;
}

.about__features strong {
  display: block;
  color: var(--color-dark);
  margin-bottom: 4px;
}

.about__features p {
  font-size: 14px;
  margin: 0;
}

/* Stats */
.stats {
  background: var(--color-navy);
  padding: 60px 0;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stats__number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: #fff;
  line-height: 1;
  font-weight: 700;
}

.stats__suffix {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--color-primary-light);
  font-weight: 700;
}

.stats__label {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 8px;
}

/* Services */
.services {
  background: var(--color-bg-alt);
}

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

.service-card {
  background: #fff;
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  border-top: 4px solid var(--color-primary);
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.service-card__icon {
  width: 64px;
  height: 64px;
  background: rgba(196, 30, 58, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--color-primary);
  font-size: 28px;
  line-height: 1;
  flex-shrink: 0;
}

.service-card__title {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--color-dark);
  margin-bottom: 12px;
}

.service-card__text {
  color: var(--color-text-light);
  margin-bottom: 20px;
  font-size: 15px;
}

.service-card__list {
  margin: 0;
  padding: 0;
  list-style: none;
  flex: 1;
}

.service-card__list li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  color: var(--color-text);
  margin-bottom: 8px;
  line-height: 1.5;
}

.service-card__list li:last-child {
  margin-bottom: 0;
}

.service-card__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
}

/* Leadership */
.leadership {
  background: var(--color-bg-alt);
}

.leadership__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.leadership__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.leadership__image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: top center;
}

.leadership__creds {
  margin-top: 24px;
}

.leadership__creds li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  color: var(--color-text-light);
  font-size: 15px;
}

.leadership__creds li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
}

/* Team */
.team {
  background: var(--color-bg);
}

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

.team-card {
  background: var(--color-bg-alt);
  padding: 28px 24px;
  border-radius: var(--radius);
  border-left: 4px solid var(--color-navy);
  transition: transform var(--transition), box-shadow var(--transition);
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.team-card--highlight {
  border-left-color: var(--color-primary);
  background: #fff;
  box-shadow: var(--shadow);
}

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

.team-card__role {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.team-card__name {
  font-family: var(--font-heading);
  font-size: 17px;
  color: var(--color-dark);
  line-height: 1.4;
}

/* Service Highlights — full PDF slide graphics (title + copy baked into image) */
.services__highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
  margin-bottom: 56px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.service-highlight {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(11, 31, 58, 0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-highlight:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-highlight__image {
  line-height: 0;
  background: #fff;
}

.service-highlight__image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.services__grid--categories {
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 28px;
}

/* Values */
.values {
  background: var(--color-bg);
}

.values__grid--three {
  grid-template-columns: repeat(3, 1fr);
  max-width: 900px;
  margin: 0 auto;
}

.values__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}

.values__card {
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.values__card--mission {
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
  color: #fff;
}

.values__card--vision {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #fff;
}

.values__card-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.8;
  margin-bottom: 12px;
}

.values__card p {
  font-size: 18px;
  line-height: 1.6;
}

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

.value-item {
  background: var(--color-bg-alt);
  padding: 28px 24px;
  border-radius: var(--radius);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.value-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.value-item__icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.value-item h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  color: var(--color-dark);
  margin-bottom: 8px;
}

.value-item p {
  font-size: 13px;
  color: var(--color-text-light);
  line-height: 1.5;
}

/* Why Choose Us */
.why {
  background: var(--color-bg-alt);
}

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

.why__content p {
  color: var(--color-text-light);
  margin: 16px 0 32px;
}

.why__items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why__item-icon {
  width: 32px;
  height: 32px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

.why__item h4 {
  font-size: 16px;
  color: var(--color-dark);
  margin-bottom: 4px;
}

.why__item p {
  font-size: 14px;
  color: var(--color-text-light);
  margin: 0;
}

.why__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.why__image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

/* Gallery */
.gallery {
  background: var(--color-bg);
}

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

.gallery__item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 31, 58, 0.5) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

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

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

.gallery__item:hover img {
  transform: scale(1.08);
}

.gallery__item[hidden] {
  display: none;
}

.gallery__nav {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.gallery__pagination {
  display: inline-flex;
  gap: 8px;
  padding: 6px;
  background: var(--color-bg-alt);
  border-radius: var(--radius);
}

.gallery__page-btn {
  border: none;
  background: transparent;
  color: var(--color-text-light);
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 8px;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}

.gallery__page-btn:hover {
  color: var(--color-dark);
}

.gallery__page-btn.is-active {
  background: var(--color-white, #fff);
  color: var(--color-primary);
  box-shadow: var(--shadow-sm, 0 2px 8px rgba(11, 31, 58, 0.08));
}

.gallery__more-btn {
  min-width: 220px;
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
  padding: 80px 0;
  text-align: center;
}

.cta-banner__inner h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: #fff;
  margin-bottom: 12px;
}

.cta-banner__inner p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 18px;
  margin-bottom: 32px;
}

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

/* Contact */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
}

.contact__card {
  background: var(--color-bg-alt);
  padding: 28px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  border-left: 4px solid var(--color-primary);
}

.contact__card-icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.contact__card h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  margin-bottom: 4px;
}

.contact__card p {
  font-size: 14px;
  color: var(--color-text-light);
  margin-bottom: 8px;
}

.contact__card a {
  font-weight: 600;
  font-size: 16px;
}

.contact__card-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact__card span {
  font-size: 14px;
  color: var(--color-text-light);
}

.contact__social h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  margin-bottom: 16px;
}

.contact__social-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.contact__social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--color-bg-alt);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-dark);
  transition: all var(--transition);
}

.contact__social-link:hover {
  background: var(--color-navy);
  color: #fff;
}

.contact__social-link--wa:hover {
  background: #25D366;
}

.contact__form {
  background: #fff;
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  border: 2px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-bg);
  color: var(--color-text);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
}

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

/* Footer */
.footer {
  background: var(--color-navy);
  color: rgba(255, 255, 255, 0.7);
  padding-top: 60px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer__logo-wrap {
  margin-bottom: 16px;
}

.footer__logo-img {
  height: 52px;
  width: auto;
  max-width: 240px;
  display: block;
  object-fit: contain;
}

.footer__tagline {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--color-primary-light);
  margin-bottom: 8px;
}

.footer__brand p {
  font-size: 14px;
  line-height: 1.7;
}

.footer__links h4 {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 16px;
  margin-bottom: 20px;
}

.footer__links li {
  margin-bottom: 10px;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--color-primary-light);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
  text-align: center;
  font-size: 14px;
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: transform var(--transition), box-shadow var(--transition);
  animation: pulse-wa 2s infinite;
}

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

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 24px rgba(37, 211, 102, 0.7); }
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

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

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

  .team-card--wide {
    grid-column: span 2;
  }

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

  .services__grid--categories {
    grid-template-columns: 1fr;
  }

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

  .leadership__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .nav__social {
    display: none;
  }
}

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

  .nav__actions {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .nav__toggle {
    display: flex;
    order: 2;
  }

  .lang-switcher {
    order: 1;
  }

  .nav__menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background: rgba(11, 31, 58, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 24px;
    gap: 4px;
    transform: translateY(-120%);
    opacity: 0;
    transition: all var(--transition);
    pointer-events: none;
  }

  .nav__menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav__link {
    width: 100%;
    text-align: center;
    padding: 14px;
  }

  .nav__link--cta {
    margin-left: 0;
    margin-top: 8px;
  }

  .about__grid,
  .why__grid,
  .contact__grid,
  .values__top,
  .leadership__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about__image img,
  .why__image img,
  .leadership__image img {
    height: 320px;
  }

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

  .team-card--wide {
    grid-column: span 1;
  }

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

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

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

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

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact__form {
    padding: 28px;
  }

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

  .cta-banner__actions .btn {
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .hero__actions .btn {
    width: 100%;
    max-width: 280px;
  }

  .hero__phone-link {
    font-size: 1.2rem;
    padding: 14px 24px;
  }

  .nav__logo-img {
    height: 36px;
  }

  .footer__logo-img {
    height: 48px;
  }

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

  .values__grid,
  .values__grid--three {
    grid-template-columns: 1fr;
  }

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

  .service-card {
    padding: 28px;
  }
}
