/* ===== ICA Edu Skills Landing Page Styles ===== */

:root {
  --navy: #221c4d;
  --navy-dark: #14112e;
  --gold: #00a8dd;
  --gold-dark: #0086b3;
  --blue: #393185;
  --light: #f5f7fb;
  --gray: #64748b;
  --border: #e2e8f0;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(34, 28, 77, 0.08);
  --shadow-lg: 0 20px 50px rgba(34, 28, 77, 0.15);
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #1e293b;
  line-height: 1.6;
  background: var(--white);
  overflow-x: hidden;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

ul {
  list-style: none;
}

h1,
h2,
h3,
h4 {
  color: var(--navy);
  line-height: 1.25;
}

.eyebrow {
  display: inline-block;
  color: var(--gold-dark);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 10px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-align: center;
}
.btn--primary {
  background: var(--gold);
  color: var(--navy-dark);
}
.btn--primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn--outline {
  border-color: var(--white);
  color: var(--white);
}
.btn--outline:hover {
  background: var(--white);
  color: var(--navy);
}
.btn--small {
  padding: 9px 20px;
  font-size: 0.85rem;
  background: var(--navy);
  color: var(--white);
}
.btn--small:hover {
  background: var(--blue);
}
.btn--full {
  width: 100%;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(34, 28, 77, 0);
  backdrop-filter: blur(0px);
  transition: var(--transition);
  padding: 18px 0;
}
.header.is-scrolled {
  background: rgba(34, 28, 77, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  padding: 10px 0;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  background: var(--white);
  padding: 8px 14px;
  border-radius: 10px;
  box-shadow: var(--shadow);
}
.logo img {
  height: 40px;
  width: auto;
  display: block;
}
.nav {
  display: flex;
  gap: 28px;
}
.nav a {
  color: var(--white);
  font-weight: 500;
  font-size: 0.95rem;
  opacity: 0.9;
  transition: var(--transition);
}
.nav a:hover {
  opacity: 1;
  color: var(--gold);
}
.nav__cta {
  padding: 10px 22px;
}
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav__toggle span {
  width: 26px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--white);
  padding-top: 100px;
  padding-bottom: 90px;
  overflow: hidden;
}
/* Hero background slider */
.hero-slider {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: var(--navy-dark);
  z-index: -3;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition:
    opacity 1.4s ease,
    transform 6s ease;
  z-index: -3;
}
.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: -2;
}
.hero-slider__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    135deg,
    rgba(34, 28, 77, 0.92) 0%,
    rgba(34, 28, 77, 0.82) 45%,
    rgba(0, 168, 221, 0.75) 130%
  );
}
.hero-slider__overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 80% 20%,
    rgba(0, 168, 221, 0.18),
    transparent 45%
  );
}
.hero-slider__nav {
  position: absolute;
  bottom: 34px;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  z-index: 2;
}
.hero-slider__nav button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 1.3rem;
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}
.hero-slider__nav button:hover {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
}
.hero-slider__dots {
  display: flex;
  gap: 10px;
}
.hero-slider__dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: var(--transition);
}
.hero-slider__dots span.is-active {
  background: var(--gold);
  width: 26px;
  border-radius: 6px;
}

.hero__content {
  max-width: 780px;
  position: relative;
  z-index: 1;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  color: var(--white);
  margin-bottom: 20px;
}
.hero h1 span {
  color: var(--gold);
}
.hero__desc {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 30px;
  max-width: 620px;
}
.hero__actions {
  display: flex;
  gap: 16px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}
.hero__stats {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
}
.stat {
  display: flex;
  flex-direction: column;
}
.stat__value {
  display: flex;
  align-items: baseline;
}
.stat__num,
.stat__suffix {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold);
}
.stat__label {
  font-size: 0.9rem;
  opacity: 0.85;
  margin-top: 4px;
}

/* About */
.about {
  padding: 100px 0;
  background: var(--light);
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}
.about__media {
  position: relative;
}
.about__media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: 100%;
}
.about__badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  color: var(--navy-dark);
  padding: 18px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.about__badge strong {
  font-size: 1.3rem;
}
.about__content h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  margin-bottom: 20px;
}
.about__content p {
  color: var(--gray);
  margin-bottom: 16px;
}
.about__quote {
  background: var(--white);
  border-left: 4px solid var(--gold);
  padding: 20px 24px;
  border-radius: 8px;
  font-style: italic;
  color: #334155;
  margin: 24px 0;
  box-shadow: var(--shadow);
}
.about__quote cite {
  display: block;
  margin-top: 10px;
  font-style: normal;
  font-weight: 700;
  color: var(--navy);
  font-size: 0.9rem;
}
.about__center {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px 20px;
}
.about__center h3 {
  margin-bottom: 6px;
  font-size: 1.1rem;
}
.about__center p {
  color: var(--gray);
  font-size: 0.92rem;
  margin: 0;
}

/* Section head */
.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}
.section-head h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
}
.section-head__desc {
  color: var(--gray);
  margin-top: 12px;
}
.section-head--light h2,
.section-head--light .eyebrow {
  color: var(--white);
}
.section-head--light .eyebrow {
  color: var(--gold);
}

/* Courses */
.courses {
  padding: 100px 0;
}
.course-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-btn {
  background: var(--light);
  border: 1px solid var(--border);
  padding: 9px 22px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  color: var(--navy);
  transition: var(--transition);
}
.filter-btn:hover {
  border-color: var(--gold);
}
.filter-btn.is-active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.course-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}
.course-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.course-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.course-card__img {
  aspect-ratio: 8 / 5;
  overflow: hidden;
  background: var(--light);
}
.course-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: var(--transition);
}
.course-card:hover .course-card__img img {
  transform: scale(1.07);
}
.course-card__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.course-card__body h3 {
  font-size: 1.1rem;
  margin: 10px 0 8px;
}
.course-card__body p {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 14px;
}
.course-meta {
  margin-bottom: 16px;
  flex: 1;
}
.course-meta li {
  font-size: 0.85rem;
  color: #475569;
  margin-bottom: 4px;
}
.badge {
  display: inline-block;
  background: var(--light);
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  align-self: flex-start;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.badge--gold {
  background: var(--gold);
  color: var(--navy-dark);
}
.course-card[data-category*="hidden"] {
  display: none;
}
.course-card.is-hidden {
  display: none;
}

/* Features */
.features {
  padding: 100px 0;
  background: var(--navy-dark);
  color: var(--white);
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}
.feature {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 30px 24px;
  text-align: center;
  transition: var(--transition);
}
.feature:hover {
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-4px);
}
.feature__icon {
  width: 46px;
  height: 46px;
  object-fit: contain;
  margin: 0 auto 16px;
}
.feature h3 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.feature p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}
.partners {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.partners span {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  font-size: 0.9rem;
}
.partners img {
  height: 34px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

/* Testimonials */
.testimonials {
  padding: 100px 0;
  background: var(--light);
}
.testi-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 20px;
  scrollbar-width: thin;
}
.testi-track::-webkit-scrollbar {
  height: 6px;
}
.testi-track::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 10px;
}
.testi-card {
  min-width: 300px;
  max-width: 320px;
  scroll-snap-align: start;
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  flex-shrink: 0;
}
.testi-card img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 16px;
  border: 3px solid var(--gold);
}
.testi-card p {
  font-size: 0.92rem;
  color: #475569;
  font-style: italic;
  margin-bottom: 16px;
  min-height: 90px;
}
.testi-card h4 {
  font-size: 1rem;
  margin-bottom: 2px;
}
.testi-card span {
  font-size: 0.82rem;
  color: var(--gray);
}
.testi-nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 10px;
}
.testi-nav button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  font-size: 1.3rem;
  cursor: pointer;
  color: var(--navy);
  transition: var(--transition);
}
.testi-nav button:hover {
  background: var(--navy);
  color: var(--white);
}

/* Placements */
.placements {
  padding: 100px 0;
  background: var(--light);
}
.placement-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 20px;
  scrollbar-width: thin;
}
.placement-track::-webkit-scrollbar {
  height: 6px;
}
.placement-track::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 10px;
}
.placement-card {
  min-width: 220px;
  max-width: 220px;
  scroll-snap-align: start;
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 20px;
  box-shadow: var(--shadow);
  flex-shrink: 0;
  text-align: center;
}
.placement-card img {
  width: 100%;
  aspect-ratio: 146 / 85;
  border-radius: 10px;
  object-fit: cover;
  margin: 0 auto 14px;
  display: block;
  border: 2px solid var(--gold);
}
.placement-card h4 {
  font-size: 1rem;
  margin-bottom: 6px;
}
.placement-card__course {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--navy);
  background: var(--light);
  border-radius: 20px;
  padding: 3px 12px;
  margin-bottom: 10px;
}
.placement-card__company {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 6px;
  min-height: 40px;
}
.placement-card__ctc {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
}

/* Contact */
.contact {
  padding: 100px 0;
  background: var(--navy-dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 168, 221, 0.16), transparent 70%);
  pointer-events: none;
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  position: relative;
}
.contact__info h2 {
  color: var(--white);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  margin-bottom: 16px;
}
.contact__info p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 24px;
}

.contact__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact__list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 16px 18px;
  transition: var(--transition);
}
.contact__list li:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(0, 168, 221, 0.4);
  transform: translateX(4px);
}
.contact__icon {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(0, 168, 221, 0.12);
  color: var(--gold);
}
.contact__icon svg {
  width: 20px;
  height: 20px;
}
.contact__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.6;
}
.contact__text strong {
  color: var(--white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.contact__list a {
  color: var(--gold);
}
.contact__list a:hover {
  text-decoration: underline;
}

.contact__map {
  min-height: 360px;
  height: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition);
}
.contact__map:hover {
  border-color: rgba(0, 168, 221, 0.35);
}
.contact__map iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
}

/* Footer */
.footer {
  background: #050e1c;
  color: rgba(255, 255, 255, 0.75);
  padding: 70px 0 0;
  border-top: 4px solid var(--gold);
  position: relative;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
}
.footer__brand img {
  height: 44px;
  width: auto;
  background: var(--white);
  padding: 8px 14px;
  border-radius: 10px;
}
.footer__brand p {
  margin-top: 14px;
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}
.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: var(--transition);
}
.footer__social a svg {
  width: 17px;
  height: 17px;
}
.footer__social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-dark);
  transform: translateY(-3px);
}

.footer__links h4,
.footer__contact h4 {
  color: var(--white);
  margin-bottom: 18px;
  font-size: 1rem;
  position: relative;
  padding-bottom: 12px;
}
.footer__links h4::after,
.footer__contact h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
}
.footer__links a {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 0.9rem;
  transition: var(--transition);
  width: fit-content;
}
.footer__link-icon {
  color: var(--gold);
  font-weight: 700;
  transition: var(--transition);
}
.footer__links a:hover {
  color: var(--gold);
  transform: translateX(4px);
}

.footer__contact p {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  margin-bottom: 16px;
  line-height: 1.5;
}
.footer__contact p svg {
  flex: none;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  color: var(--gold);
}
.footer__contact a {
  transition: var(--transition);
}
.footer__contact a:hover {
  color: var(--gold);
}

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

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy-dark);
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 900;
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.floating-call {
  position: fixed;
  bottom: 88px;
  right: 26px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--navy, #0f3d5c);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  z-index: 900;
  animation: floatingCallPulse 2s infinite;
}

.floating-call svg {
  width: 24px;
  height: 24px;
}

@keyframes floatingCallPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(15, 61, 92, 0.55);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(15, 61, 92, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(15, 61, 92, 0);
  }
}

.floating-enquire {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%) rotate(-90deg) translateY(-100%);
  transform-origin: top right;
  background: var(--gold);
  color: var(--navy-dark);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  padding: 12px 22px;
  border-radius: 8px 8px 0 0;
  box-shadow: var(--shadow);
  z-index: 900;
  transition: var(--transition);
  text-decoration: none;
}

.floating-enquire:hover {
  background: var(--navy);
  color: var(--white);
}

.floating-whatsapp {
  position: fixed;
  bottom: 150px;
  right: 26px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  z-index: 900;
  animation: floatingWhatsappPulse 2s infinite;
}

.floating-whatsapp svg {
  width: 26px;
  height: 26px;
}

@keyframes floatingWhatsappPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Reveal animation */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 900px) {
  .about__grid,
  .contact__grid {
    grid-template-columns: 1fr;
  }
  .footer__inner {
    grid-template-columns: 1fr;
  }
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 280px;
    background: var(--navy-dark);
    flex-direction: column;
    padding: 100px 30px;
    gap: 24px;
    transition: var(--transition);
    z-index: 1001;
  }
  .nav.is-open {
    right: 0;
  }
  .nav__toggle {
    display: flex;
    position: relative;
    z-index: 1002;
  }
  .nav__toggle span {
    transition: var(--transition);
  }
  .nav__toggle.is-open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .nav__toggle.is-open span:nth-child(2) {
    opacity: 0;
  }
  .nav__toggle.is-open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .nav__cta {
    display: none;
  }
}
@media (max-width: 560px) {
  .hero__stats {
    gap: 30px;
  }
  .about__badge {
    position: static;
    margin-top: 16px;
  }
  .contact__map {
    min-height: 280px;
  }
}

/* Enquiry Popup */
.popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 20, 40, 0.65);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.popup-overlay.is-open {
  display: flex;
}
.popup-box {
  position: relative;
  background: #fff;
  width: 100%;
  max-width: 400px;
  border-radius: 12px;
  padding: 32px 28px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: popupIn 0.3s ease;
}
@keyframes popupIn {
  from {
    opacity: 0;
    transform: translateY(-20px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.popup-close {
  position: absolute;
  top: 10px;
  right: 14px;
  background: none;
  border: 0;
  font-size: 26px;
  line-height: 1;
  color: #8b3777;
  cursor: pointer;
}
.popup-title {
  margin: 0 0 6px;
  font-size: 22px;
  color: #0a2a5e;
}
.popup-subtitle {
  margin: 0 0 20px;
  font-size: 14px;
  color: #555;
}
.popup-box .form-control {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
  box-sizing: border-box;
}
.popup-box .btn-block {
  width: 100%;
  padding: 12px;
  border-radius: 6px;
  font-size: 15px;
  cursor: pointer;
}
