/* ===========================================
   CSS VARIABLES
=========================================== */

:root {
  --primary: #272894;
  --secondary: skyblue;
  --accent: #ffe16a;
  --white: #ffffff;
  --background: #f8fafc;
  --heading: #111827;
  --text: #4b5563;
  --border: #e5e7eb;
  --radius: 18px;
  --shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
  --transition: 0.35s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Outfit", sans-serif;
  background: var(--background);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.7;
}

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

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
}

/* ===========================================
GLOBAL CONTAINER
=========================================== */
.container-custom {
  width: min(92%, 1280px);
  margin: auto;
}

/* ===========================================
GLOBAL BUTTONS
=========================================== */

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--secondary);
  color: var(--primary);
  padding: 10px 28px;
  border-radius: 999px;
  font-weight: 700;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  transform: translateY(-4px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 10px 28px;
  border-radius: 999px;
  transition: var(--transition);
}

.btn-outline:hover {
  background: var(--primary);
  color: white;
}

/* ===========================================
SECTION SPACING
=========================================== */
section {
  padding: 45px 0;
}

/* ==========================================
   SITE HEADER
========================================== */

.site-header {
  position: fixed;

  top: 0;

  left: 0;

  width: 100%;

  z-index: 1000;

  transition:
    background-color 0.35s ease,
    backdrop-filter 0.35s ease,
    box-shadow 0.35s ease,
    padding 0.35s ease;
}

/* ==========================================
   NAV WRAPPER
========================================== */

.nav-wrapper {
  height: 96px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  transition: height 0.35s ease;
}

/* ==========================================
   LOGO
========================================== */

.nav-logo {
  position: relative;

  z-index: 1002;
}

.nav-logo img {
  height: 64px;

  width: auto;

  transition: 0.35s ease;
}

/* ==========================================
   NAV MENU
========================================== */

.nav-menu {
  display: flex;

  align-items: center;
}

/* ==========================================
   NAV LINKS
========================================== */

.nav-links {
  display: flex;

  align-items: center;

  gap: 8px;

  padding: 8px;

  margin: 0;

  background: rgba(255, 255, 255, 0.15);

  backdrop-filter: blur(12px);

  -webkit-backdrop-filter: blur(12px);

  border: 1px solid rgba(255, 255, 255, 0.2);

  border-radius: 999px;

  transition: 0.35s ease;
}

.nav-links a {
  display: block;

  padding: 9px 16px;

  color: #fff;

  font-size: 0.95rem;

  font-weight: 500;

  border-radius: 999px;

  transition:
    color 0.3s ease,
    background-color 0.3s ease;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.18);
}

/* ==========================================
   DESKTOP CTA
========================================== */

.nav-cta {
  display: flex;

  align-items: center;
}

/* ==========================================
   MOBILE CTA
========================================== */

.nav-mobile-cta {
  display: none;
}

/* ==========================================
   MENU TOGGLE
========================================== */
.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 1.5rem;
  padding: 8px;
  transition: color 0.3s ease;
}

/* ==========================================
   SCROLLED HEADER
========================================== */
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

/* Smaller header after scrolling */
.site-header.scrolled .nav-wrapper {
  height: 78px;
}

.site-header.scrolled .nav-logo img {
  height: 54px;
}

/* Navigation background after scrolling */
.site-header.scrolled .nav-links {
  background: rgba(39, 40, 148, 0.06);
  border-color: rgba(39, 40, 148, 0.08);
}

/* Navigation text after scrolling */
.site-header.scrolled .nav-links a {
  color: var(--primary);
}

.site-header.scrolled .nav-links a:hover {
  background: rgba(39, 40, 148, 0.08);
}

/* Menu icon after scrolling */
.site-header.scrolled .menu-toggle {
  color: var(--primary);
}

/* ==========================================
   MOBILE
========================================== */
@media (max-width: 991px) {
  .nav-wrapper {
    height: 82px;
  }

  .nav-logo img {
    height: 56px;
  }

  /* Hide desktop CTA */
  .nav-cta {
    display: none;
  }

  /* Menu button */
  .menu-toggle {
    display: block;
  }

  /* Navigation dropdown */
  .nav-menu {
    position: absolute;
    top: 82px;
    left: 0;
    width: 100%;
    padding: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  }

  .nav-menu.open {
    display: flex;
  }

  /* Remove desktop pill */
  .nav-links {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 3px;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
  }

  .nav-links a {
    color: var(--primary);
    padding: 12px 15px;
    border-radius: 10px;
  }

  .nav-links a:hover {
    background: rgba(39, 40, 148, 0.06);
  }

  /* Mobile CTA */
  .nav-mobile-cta {
    display: inline-flex;
    width: 100%;
    margin-top: 12px;
  }

  /* Scrolled mobile */
  .site-header.scrolled .nav-menu {
    top: 78px;
  }
}

/* ==========================================
HERO SECTION
========================================== */
.hero-title {
  animation-delay: 500ms;
}

.hero-description {
  margin-top: 25px;
  margin-bottom: 50px;
  max-width: 620px;
  font-size: 1.1rem;
  color: #f3f4f6;
  animation-delay: 1.2s;
}

.btn-light {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  background: white;
  color: var(--primary);
  font-weight: 700;
}

/*=====================================
Hero Background Slider
======================================*/
.hero.active {
  opacity: 1;
  animation: heroZoom 5s linear forwards;
}

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}

.hero-item {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: 1.2s ease;
}

.hero-item.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

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

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.9), transparent);
}

.hero-text {
  color: white;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-buttons a {
  animation-delay: 1.5s;
}

.hero-buttons a:nth-child(2) {
  animation-delay: 1.6s;
}

/* ==========================================
   ABOUT SECTION
========================================== */
.about-section {
  background: var(--white);
  position: relative;
  overflow: hidden;
}

/* ==========================================
   IMAGE
========================================== */
.about-image-wrapper {
  position: relative;
  padding: 15px;
}

.about-image-main {
  position: relative;
  height: 570px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(39, 40, 148, 0.15);
}

.about-image-main::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.25));
}

.about-image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.about-image-wrapper:hover .about-image-main img {
  transform: scale(1.05);
}

/* ==========================================
   EXPERIENCE CARD
========================================== */
.about-experience {
  position: absolute;
  left: -5px;
  bottom: 55px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px 25px;
  background: var(--primary);
  color: var(--white);
  border-radius: 18px;
  box-shadow: 0 20px 45px rgba(39, 40, 148, 0.3);
  z-index: 3;
}

.about-experience-number {
  font-size: 2.3rem;
  line-height: 1;
  font-weight: 800;
  color: var(--secondary);
}

.about-experience-text {
  font-size: 0.9rem;
  line-height: 1.4;
  font-weight: 500;
}

/* ==========================================
   DECORATION
========================================== */
.about-decoration {
  position: absolute;
  right: -5px;
  top: 0;
  width: 120px;
  height: 120px;
  border: 12px solid var(--secondary);
  border-radius: 50%;
  opacity: 0.7;
  z-index: 0;
}

/* ==========================================
   ABOUT CONTENT
========================================== */
.about-content {
  position: relative;
}

.about-content > p {
  max-width: 650px;
  margin-top: 20px;
  color: var(--text);
  font-size: 1rem;
}

.about-content .about-intro {
  font-size: 1.1rem;
  color: var(--heading);
  font-weight: 500;
}

/* ==========================================
   HEADING HIGHLIGHT
========================================== */
.about-highlight {
  color: var(--primary);
  position: relative;
}

/* ==========================================
   FEATURES
========================================== */
.about-features {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 30px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 15px;
  border: 1px solid var(--border);
  border-radius: 15px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.about-feature:hover {
  transform: translateX(7px);
  border-color: rgba(39, 40, 148, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.about-feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(39, 40, 148, 0.08);
  color: var(--primary);
  border-radius: 12px;
  font-size: 1.1rem;
}

.about-feature h3 {
  color: var(--heading);
  font-size: 1rem;
  font-weight: 700;
}

.about-feature p {
  margin-top: 2px;
  color: var(--text);
  font-size: 0.85rem;
  line-height: 1.5;
}

/* ==========================================
   CTA
========================================== */
.about-cta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
  margin-top: 35px;
}

.about-call {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--heading);
}

.about-call-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(39, 40, 148, 0.08);
  color: var(--primary);
}

.about-call small {
  display: block;
  font-size: 0.72rem;
  color: var(--text);
}

.about-call strong {
  display: block;
  font-size: 0.9rem;
  color: var(--primary);
}

/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 991px) {
  .about-image-main {
    height: 480px;
  }

  .about-experience {
    left: 0;
  }
}

@media (max-width: 576px) {
  .about-section {
    padding: 65px 0;
  }

  .about-image-wrapper {
    padding: 8px;
  }

  .about-image-main {
    height: 400px;
    border-radius: 20px;
  }

  .about-experience {
    bottom: 30px;
    padding: 15px 18px;
  }

  .about-experience-number {
    font-size: 1.8rem;
  }

  .about-experience-text {
    font-size: 0.75rem;
  }

  .about-decoration {
    width: 80px;
    height: 80px;
    border-width: 8px;
  }

  .about-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* ==========================================
   WHY CHOOSE US
========================================== */
.why-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 10% 20%,
      rgba(135, 206, 235, 0.12),
      transparent 30%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(39, 40, 148, 0.25),
      transparent 35%
    ),
    var(--primary);
  color: var(--white);
}

/* ==========================================
   DECORATIVE BACKGROUND
========================================== */
.why-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  top: -250px;
  right: -150px;
}

.why-section::after {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  bottom: -180px;
  left: -100px;
}

/* ==========================================
   HEADER
========================================== */
.why-header {
  position: relative;
  z-index: 2;
  max-width: 750px;
  margin: 0 auto 40px;
  text-align: center;
}

.section-subtitle {
  color: var(--secondary);
  font-size: 30px;
  font-weight: 700;
}

.why-header .section-title {
  color: var(--white);
  margin-top: 10px;
}

.why-header .section-title span {
  color: var(--secondary);
}

.why-header > p {
  max-width: 650px;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
}

/* ==========================================
   FEATURES GRID
========================================== */
.why-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

/* ==========================================
   CARD
========================================== */
.why-card {
  position: relative;
  padding: 32px;
  min-height: 270px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition:
    transform 0.35s ease,
    background-color 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.why-card::after {
  content: "";
  position: absolute;
  width: 110px;
  height: 110px;
  right: -45px;
  bottom: -45px;
  border-radius: 50%;
  background: rgba(135, 206, 235, 0.08);
  transition: transform 0.4s ease;
}

.why-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(135, 206, 235, 0.35);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.why-card:hover::after {
  transform: scale(1.6);
}

/* ==========================================
   ICON
========================================== */
.why-icon {
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: 15px;
  background: rgba(135, 206, 235, 0.13);
  border: 1px solid rgba(135, 206, 235, 0.2);
  color: var(--secondary);
  font-size: 1.3rem;
  transition: 0.35s ease;
}

.why-card:hover .why-icon {
  transform: scale(1.08) rotate(-5deg);
  background: var(--secondary);
  color: var(--primary);
}

/* ==========================================
   NUMBER
========================================== */
.why-number {
  position: absolute;
  top: 25px;
  right: 28px;
  color: rgba(255, 255, 255, 0.18);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
}

/* ==========================================
   CARD CONTENT
========================================== */
.why-card h3 {
  position: relative;
  z-index: 2;
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
}

.why-card p {
  position: relative;
  z-index: 2;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ==========================================
   CTA
========================================== */
.why-cta {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 45px;
  padding: 25px 30px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.why-cta span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.85rem;
}

.why-cta h3 {
  margin-top: 3px;
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
}

/* ==========================================
   RESPONSIVE
========================================== */
@media (max-width: 991px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .why-section {
    padding: 65px 0;
  }

  .why-header {
    margin-bottom: 35px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .why-card {
    min-height: auto;
    padding: 25px;
  }

  .why-cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 22px;
  }

  .why-cta .btn-primary {
    width: 100%;
  }
}

/* ==========================================
   COURSES SECTION
========================================== */

.courses-section {
  background: var(--background);
  position: relative;
  overflow: hidden;
}
.courses-header {
  max-width: 760px;
  margin: 0 auto 55px;
  text-align: center;
}
.courses-header .section-title span {
  color: var(--primary);
}
.courses-header > p {
  max-width: 650px;
  margin: 18px auto 0;
  color: var(--text);
}
.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.course-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}
.course-card:hover {
  transform: translateY(-8px);
  border-color: rgba(39, 40, 148, 0.18);
  box-shadow: 0 25px 55px rgba(39, 40, 148, 0.12);
}
.course-image {
  height: 225px;
  position: relative;
  overflow: hidden;
}
.course-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.35));
}
.course-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.course-card:hover .course-image img {
  transform: scale(1.08);
}
.course-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  padding: 7px 13px;
  border-radius: 999px;
  background: var(--secondary);
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 700;
}
.course-content {
  padding: 25px;
}
.course-category {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.course-category i {
  font-size: 0.8rem;
}
.course-content h3 {
  margin-top: 9px;
  color: var(--heading);
  font-size: 1.35rem;
  font-weight: 700;
}
.course-content > p {
  margin-top: 10px;
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.65;
}
.course-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 20px;
  padding-top: 17px;
  border-top: 1px solid var(--border);
}
.course-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text);
  font-size: 0.78rem;
}
.course-meta i {
  color: var(--primary);
}
.course-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 20px;
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 700;
}
.course-link i {
  transition: transform 0.3s ease;
}
.course-link:hover i {
  transform: translateX(5px);
}
.courses-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 45px;
  padding: 25px 30px;
  border-radius: 20px;
  background: var(--primary);
  color: var(--white);
}
.courses-cta span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
}
.courses-cta h3 {
  margin-top: 3px;
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 700;
}
@media (max-width: 991px) {
  .courses-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .courses-section {
    padding: 65px 0;
  }
  .courses-header {
    margin-bottom: 35px;
  }
  .courses-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .course-image {
    height: 215px;
  }
  .courses-cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 22px;
  }
  .courses-cta .btn-primary {
    width: 100%;
  }
}

/* ==========================================
   COUNTER SECTION
========================================== */

.counter-section {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-image: url("/assets/images/aviation-counter.webp");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--white);
}
.counter-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}
.counter-header {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto 45px;
  text-align: center;
}
.counter-header .section-subtitle {
  color: var(--secondary);
}
.counter-header h2 {
  margin-top: 10px;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  font-weight: 800;
}
.counter-header p {
  max-width: 620px;
  margin: 15px auto 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
}
.counter-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.counter-item {
  position: relative;
  padding: 35px 25px;
  text-align: center;
  transition: background-color 0.35s ease;
}
.counter-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 25%;
  right: 0;
  width: 1px;
  height: 50%;
  background: rgba(255, 255, 255, 0.15);
}
.counter-item:hover {
  background: rgba(255, 255, 255, 0.08);
}
.counter-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(135, 206, 235, 0.14);
  border: 1px solid rgba(135, 206, 235, 0.2);
  color: var(--secondary);
  font-size: 1.2rem;
  transition:
    transform 0.35s ease,
    background-color 0.35s ease;
}
.counter-item:hover .counter-icon {
  transform: translateY(-5px) scale(1.05);
  background: var(--secondary);
  color: var(--primary);
}
.counter-number {
  display: flex;
  align-items: baseline;
  justify-content: center;
  color: var(--white);
  line-height: 1;
}
.counter-value {
  font-size: clamp(2.3rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -1px;
}
.counter-symbol {
  margin-left: 3px;
  color: var(--secondary);
  font-size: 1.8rem;
  font-weight: 800;
}
.counter-item > p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-weight: 500;
}
@media (max-width: 991px) {
  .counter-section {
    background-attachment: scroll;
  }
  .counter-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .counter-item:nth-child(2)::after {
    display: none;
  }
  .counter-item:nth-child(3)::after {
    display: block;
  }
}
@media (max-width: 640px) {
  .counter-section {
    min-height: auto;
    padding: 70px 0;
  }
  .counter-header {
    margin-bottom: 35px;
  }
  .counter-grid {
    grid-template-columns: 1fr;
    border-radius: 20px;
  }
  .counter-item {
    padding: 28px 20px;
  }
  .counter-item::after {
    display: none !important;
  }
  .counter-item:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
}
/* ==========================================
   TESTIMONIALS SECTION
========================================== */

.testimonials-section {
  position: relative;
  background: var(--background);
  overflow: hidden;
}
.testimonials-header {
  max-width: 760px;
  margin: 0 auto 55px;
  text-align: center;
}
.testimonials-header .section-title span {
  color: var(--primary);
}
.testimonials-header > p {
  max-width: 650px;
  margin: 18px auto 0;
  color: var(--text);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.testimonial-card {
  position: relative;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}
.testimonial-card:hover {
  transform: translateY(-7px);
  border-color: rgba(39, 40, 148, 0.15);
  box-shadow: 0 25px 55px rgba(39, 40, 148, 0.1);
}
.testimonial-card.featured {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 20px 50px rgba(39, 40, 148, 0.18);
}
.testimonial-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
.testimonial-quote {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(39, 40, 148, 0.08);
  color: var(--primary);
  font-size: 1.1rem;
}
.testimonial-card.featured .testimonial-quote {
  background: rgba(255, 255, 255, 0.12);
  color: var(--secondary);
}
.testimonial-rating {
  display: flex;
  gap: 3px;
  color: #f5b800;
  font-size: 0.75rem;
}
.testimonial-text {
  min-height: 145px;
  margin-top: 25px;
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.75;
}
.testimonial-card.featured .testimonial-text {
  color: rgba(255, 255, 255, 0.78);
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.testimonial-card.featured .testimonial-author {
  border-color: rgba(255, 255, 255, 0.15);
}
.testimonial-avatar {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  overflow: hidden;
  border-radius: 50%;
  border: 2px solid rgba(39, 40, 148, 0.1);
}
.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonial-author h3 {
  color: var(--heading);
  font-size: 0.95rem;
  font-weight: 700;
}
.testimonial-card.featured .testimonial-author h3 {
  color: var(--white);
}
.testimonial-author span {
  display: block;
  margin-top: 2px;
  color: var(--text);
  font-size: 0.75rem;
}
.testimonial-card.featured .testimonial-author span {
  color: rgba(255, 255, 255, 0.6);
}
.testimonials-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 45px;
  padding: 25px 30px;
  border-radius: 22px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.04);
}
.testimonials-cta-content {
  display: flex;
  align-items: center;
  gap: 16px;
}
.testimonials-cta-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(39, 40, 148, 0.08);
  color: var(--primary);
  font-size: 1.2rem;
}
.testimonials-cta span {
  color: var(--text);
  font-size: 0.82rem;
}
.testimonials-cta h3 {
  margin-top: 2px;
  color: var(--heading);
  font-size: 1.1rem;
  font-weight: 700;
}
@media (max-width: 991px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonial-card.featured {
    grid-column: span 2;
  }
}
@media (max-width: 640px) {
  .testimonials-section {
    padding: 65px 0;
  }
  .testimonials-header {
    margin-bottom: 35px;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .testimonial-card.featured {
    grid-column: auto;
  }
  .testimonial-text {
    min-height: auto;
  }
  .testimonials-cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 22px;
  }
  .testimonials-cta-content {
    align-items: flex-start;
  }
  .testimonials-cta .btn-primary {
    width: 100%;
  }
}
/* ==========================================
   STUDENT GALLERY
========================================== */

.gallery-section {
  position: relative;
  background: var(--white);
  overflow: hidden;
}
.gallery-header {
  max-width: 760px;
  margin: 0 auto 50px;
  text-align: center;
}
.gallery-header .section-title span {
  color: var(--primary);
}
.gallery-header > p {
  max-width: 680px;
  margin: 18px auto 0;
  color: var(--text);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 230px;
  gap: 18px;
}
.gallery-item {
  position: relative;
  display: block;
  min-width: 0;
  overflow: hidden;
  border-radius: 22px;
  background: #e5e7eb;
}
.gallery-item-large {
  grid-column: span 2;
}
.gallery-item:nth-child(1) {
  grid-row: span 2;
}
.gallery-item:nth-child(5) {
  grid-column: span 2;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(17, 24, 39, 0) 25%,
    rgba(17, 24, 39, 0.82) 100%
  );
  opacity: 0.85;
  transition: opacity 0.4s ease;
}
.gallery-item:hover img {
  transform: scale(1.08);
}
.gallery-item:hover::after {
  opacity: 1;
}
.gallery-overlay {
  position: absolute;
  z-index: 2;
  inset: auto 20px 20px 20px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 15px;
  color: var(--white);
}
.gallery-overlay span {
  display: block;
  margin-bottom: 4px;
  color: var(--secondary);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.gallery-overlay h3 {
  max-width: 300px;
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 700;
}
.gallery-overlay > i {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition:
    background-color 0.3s ease,
    transform 0.3s ease;
}
.gallery-item:hover .gallery-overlay > i {
  background: var(--secondary);
  color: var(--primary);
  transform: rotate(10deg);
}
.gallery-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  margin-top: 35px;
  padding: 25px 30px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--background);
}
.gallery-bottom span {
  color: var(--text);
  font-size: 0.82rem;
}
.gallery-bottom h3 {
  margin-top: 3px;
  color: var(--heading);
  font-size: 1.1rem;
  font-weight: 700;
}
@media (max-width: 991px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }
  .gallery-item:nth-child(1) {
    grid-row: span 2;
  }
  .gallery-item:nth-child(5) {
    grid-column: span 2;
  }
}
@media (max-width: 640px) {
  .gallery-section {
    padding: 65px 0;
  }
  .gallery-header {
    margin-bottom: 35px;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 250px;
    gap: 14px;
  }
  .gallery-item-large,
  .gallery-item:nth-child(5),
  .gallery-item:nth-child(1) {
    grid-column: auto;
    grid-row: span 1;
  }
  .gallery-overlay {
    inset: auto 15px 15px 15px;
  }
  .gallery-bottom {
    flex-direction: column;
    align-items: flex-start;
    padding: 22px;
  }
  .gallery-bottom .btn-primary {
    width: 100%;
  }
}
/* ==========================================
   ENQUIRY SECTION
========================================== */

.enquiry-section {
  position: relative;
  background: var(--background);
  overflow: hidden;
}
.enquiry-section::before {
  content: "";
  position: absolute;
  top: -180px;
  left: -180px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(39, 40, 148, 0.06);
  filter: blur(10px);
}
.enquiry-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.enquiry-content {
  position: relative;
}
.enquiry-content h2 {
  margin-top: 12px;
  color: var(--heading);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.08;
  font-weight: 800;
}
.enquiry-content h2 span {
  display: block;
  color: var(--primary);
}
.enquiry-content > p {
  max-width: 560px;
  margin-top: 20px;
  color: var(--text);
  font-size: 1rem;
}
.enquiry-benefits {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 35px;
}
.enquiry-benefit {
  display: flex;
  align-items: center;
  gap: 15px;
}
.enquiry-benefit-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(39, 40, 148, 0.08);
  color: var(--primary);
  transition:
    transform 0.3s ease,
    background-color 0.3s ease;
}
.enquiry-benefit:hover .enquiry-benefit-icon {
  transform: translateY(-3px);
  background: var(--primary);
  color: var(--secondary);
}
.enquiry-benefit h3 {
  color: var(--heading);
  font-size: 0.95rem;
  font-weight: 700;
}
.enquiry-benefit p {
  margin-top: 2px;
  color: var(--text);
  font-size: 0.78rem;
  line-height: 1.5;
}
.enquiry-direct {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 35px;
  padding-top: 25px;
  border-top: 1px solid var(--border);
}
.enquiry-direct span {
  color: var(--text);
  font-size: 0.82rem;
}
.enquiry-direct a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 700;
}
.enquiry-direct a i {
  color: var(--secondary);
}
.enquiry-form-wrapper {
  position: relative;
  padding: 35px;
  border-radius: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 25px 70px rgba(39, 40, 148, 0.1);
}
.enquiry-form-header {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-bottom: 25px;
  margin-bottom: 25px;
  border-bottom: 1px solid var(--border);
}
.enquiry-form-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background: var(--primary);
  color: var(--secondary);
  font-size: 1.1rem;
}
.enquiry-form-header span {
  color: var(--text);
  font-size: 0.75rem;
}
.enquiry-form-header h3 {
  margin-top: 2px;
  color: var(--heading);
  font-size: 1.3rem;
  font-weight: 700;
}
.enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.form-group label {
  color: var(--heading);
  font-size: 0.78rem;
  font-weight: 600;
}
.form-group label span {
  color: #dc2626;
}
.form-input {
  position: relative;
}
.form-input > i {
  position: absolute;
  top: 50%;
  left: 15px;
  z-index: 1;
  color: #9ca3af;
  font-size: 0.85rem;
  pointer-events: none;
  transform: translateY(-50%);
  transition: color 0.25s ease;
}
.form-input:focus-within > i {
  color: var(--primary);
}
.form-input input,
.form-input select,
.form-input textarea {
  width: 100%;
  border: 1px solid var(--border);
  outline: none;
  border-radius: 12px;
  background: #fafafa;
  color: var(--heading);
  font-family: inherit;
  font-size: 0.85rem;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease;
}
.form-input input,
.form-input select {
  height: 48px;
  padding: 0 15px 0 42px;
}
.form-input select {
  appearance: none;
  cursor: pointer;
}
.form-input textarea {
  min-height: 110px;
  padding: 13px 15px 13px 42px;
  resize: vertical;
  line-height: 1.6;
}
.form-input textarea + i {
  top: 20px;
  transform: none;
}
.form-input input::placeholder,
.form-input textarea::placeholder {
  color: #9ca3af;
}
.form-input input:focus,
.form-input select:focus,
.form-input textarea:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(39, 40, 148, 0.07);
}
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: var(--text);
  font-size: 0.72rem;
  line-height: 1.5;
  cursor: pointer;
}
.form-consent input {
  flex-shrink: 0;
  width: 15px;
  height: 15px;
  margin-top: 1px;
  accent-color: var(--primary);
  cursor: pointer;
}
.enquiry-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 52px;
  border: 0;
  border-radius: 999px;
  background: var(--primary);
  color: var(--white);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(39, 40, 148, 0.2);
  transition:
    transform 0.3s ease,
    background-color 0.3s ease,
    box-shadow 0.3s ease;
}
.enquiry-submit:hover {
  transform: translateY(-3px);
  background: #1e2078;
  box-shadow: 0 15px 30px rgba(39, 40, 148, 0.25);
}
.enquiry-submit i {
  transition: transform 0.3s ease;
}
.enquiry-submit:hover i {
  transform: translateX(5px);
}
.form-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #9ca3af;
  font-size: 0.7rem;
}
.form-note i {
  color: #16a34a;
}
@media (max-width: 991px) {
  .enquiry-wrapper {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .enquiry-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
  }
  .enquiry-content > p {
    margin-left: auto;
    margin-right: auto;
  }
  .enquiry-benefits {
    text-align: left;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  .enquiry-direct {
    justify-content: center;
  }
  .enquiry-form-wrapper {
    max-width: 700px;
    width: 100%;
    margin: 0 auto;
  }
}
@media (max-width: 640px) {
  .enquiry-section {
    padding: 65px 0;
  }
  .enquiry-wrapper {
    gap: 35px;
  }
  .enquiry-content h2 {
    font-size: 2.2rem;
  }
  .enquiry-direct {
    flex-direction: column;
    gap: 5px;
  }
  .enquiry-form-wrapper {
    padding: 25px 18px;
    border-radius: 22px;
  }
  .enquiry-form-header {
    align-items: flex-start;
  }
  .enquiry-form-header h3 {
    font-size: 1.1rem;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}
/* ==========================================
   SITE FOOTER
========================================== */

.site-footer {
  position: relative;
  padding: 75px 0 0;
  background: #10124f;
  color: rgba(255, 255, 255, 0.7);
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: -220px;
  right: -180px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(135, 206, 235, 0.06);
  pointer-events: none;
}
.footer-main {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 50px;
  padding-bottom: 55px;
}
.footer-brand {
  max-width: 330px;
}
.footer-logo {
  display: inline-block;
}
.footer-logo img {
  width: auto;
  height: 65px;
  object-fit: contain;
}
.footer-brand > p {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.85rem;
  line-height: 1.8;
}
.footer-socials {
  display: flex;
  gap: 9px;
  margin-top: 25px;
}
.footer-socials a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}
.footer-socials a:hover {
  background: var(--secondary);
  color: var(--primary);
  border-color: var(--secondary);
  transform: translateY(-4px);
}
.footer-column p {
  position: relative;
  margin-bottom: 22px;
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
}
.footer-column p::after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  margin-top: 9px;
  border-radius: 999px;
  background: var(--secondary);
}
.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-column li a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
  transition:
    color 0.25s ease,
    transform 0.25s ease;
}
.footer-column li a i {
  color: var(--secondary);
  font-size: 0.65rem;
}
.footer-column li a:hover {
  color: var(--white);
  transform: translateX(4px);
}
.footer-contact {
  min-width: 0;
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.8rem;
  line-height: 1.6;
  transition: color 0.25s ease;
}
.footer-contact-item:hover {
  color: var(--white);
}
.footer-contact-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--secondary);
  font-size: 0.75rem;
}
.footer-cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 25px 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
}
.footer-cta span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.78rem;
}
.footer-cta h3 {
  margin-top: 3px;
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.42);
  font-size: 1rem;
}
.footer-bottom > p:last-child {
  text-align: right;
}
.footer-bottom > p:last-child i {
  color: #f87171;
  margin: 0 3px;
}
.footer-legal {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-legal a {
  color: rgba(255, 255, 255, 0.48);
  transition: color 0.25s ease;
}
.footer-legal a:hover {
  color: var(--white);
}
.footer-legal span {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
}
@media (max-width: 991px) {
  .footer-main {
    grid-template-columns: repeat(2, 1fr);
    gap: 45px 35px;
  }
  .footer-brand {
    max-width: 100%;
  }
  .footer-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 640px) {
  .site-footer {
    padding-top: 60px;
  }
  .footer-main {
    grid-template-columns: 1fr;
    gap: 35px;
    padding-bottom: 40px;
  }
  .footer-brand {
    max-width: 100%;
  }
  .footer-column h3 {
    margin-bottom: 17px;
  }
  .footer-cta {
    padding: 22px;
  }
  .footer-cta .btn-primary {
    width: 100%;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .footer-bottom > p:last-child {
    text-align: left;
  }
  .footer-legal {
    order: 2;
  }
}
/* ==========================================
   BREADCRUMB SECTION
========================================== */

.breadcrumb-section {
  position: relative;
  min-height: 350px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--primary);
}
.breadcrumb-bg {
  position: absolute;
  inset: 0;
}
.breadcrumb-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
}
.breadcrumb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}
.breadcrumb-content {
  position: relative;
  z-index: 2;
  padding-top: 75px;
  color: var(--white);
}
.breadcrumb-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: var(--secondary);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.breadcrumb-label i {
  font-size: 0.7rem;
}
.breadcrumb-content h1 {
  margin-top: 18px;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.breadcrumb-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.85rem;
}
.breadcrumb-list a {
  color: var(--white);
  transition: color 0.25s ease;
}
.breadcrumb-list a:hover {
  color: var(--secondary);
}
.breadcrumb-list li:nth-child(2) {
  color: var(--secondary);
  font-size: 0.65rem;
}
.breadcrumb-list li:last-child {
  color: var(--secondary);
  font-weight: 600;
}
@media (max-width: 640px) {
  .breadcrumb-section {
    min-height: 350px;
  }
  .breadcrumb-content {
    padding-top: 65px;
  }
  .breadcrumb-content h1 {
    font-size: 2.7rem;
  }
  .breadcrumb-list {
    margin-top: 18px;
  }
}
/* ==========================================
   NAVIGATION DROPDOWN
========================================== */

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.nav-dropdown-toggle i {
  font-size: 0.65rem;
  transition: transform 0.3s ease;
}

.nav-dropdown-menu {
  position: absolute;
  height: 350px;
  overflow: auto;
  top: calc(100%);
  left: 50%;
  min-width: 245px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 10px);
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease,
    transform 0.3s ease;
  z-index: 100;
}

.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  width: 12px;
  height: 12px;
  background: white;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  transform: translateX(-50%) rotate(45deg);
}

.nav-dropdown-menu li {
  width: 100%;
}

.nav-dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 11px 13px;
  border-radius: 10px;
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 500;
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.nav-dropdown-menu li a i {
  width: 20px;
  color: var(--primary);
  font-size: 0.8rem;
  text-align: center;
  transition: color 0.25s ease;
}

.nav-dropdown-menu li a:hover {
  background: rgba(39, 40, 148, 0.07);
  color: var(--primary);
  transform: translateX(3px);
}

.nav-dropdown-menu li a:hover i {
  color: var(--primary);
}

/* Desktop hover */
@media (min-width: 992px) {
  .nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
  }

  .nav-dropdown:hover .nav-dropdown-toggle i {
    transform: rotate(180deg);
  }
}
@media (max-width: 991px) {
  .nav-dropdown-menu {
    position: static;
    width: 100%;
    min-width: 0;
    margin-top: 8px;
    padding: 5px;
    border: 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: none;
    backdrop-filter: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    display: none;
  }

  .nav-dropdown-menu::before {
    display: none;
  }

  .nav-dropdown.open .nav-dropdown-menu {
    display: block;
  }

  .nav-dropdown-menu li a {
    color: var(--primary);
    padding: 10px 12px;
  }

  .nav-dropdown-menu li a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--secondary);
  }

  .nav-dropdown-menu li a i {
    color: var(--secondary);
  }

  .nav-dropdown.open .nav-dropdown-toggle i {
    transform: rotate(180deg);
  }
}
/* ==========================================
   FLOATING WHATSAPP BUTTON
========================================== */

.wa-float {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 9999;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  font-size: 1.65rem;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.wa-float:hover {
  color: #ffffff;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.45);
}

.wa-float::before {
  content: "";
  position: absolute;
  inset: -5px;
  border: 2px solid rgba(37, 211, 102, 0.35);
  border-radius: 50%;
  animation: waPulse 2s infinite;
}

.wa-float i {
  position: relative;
  z-index: 2;
}

@keyframes waPulse {
  0% {
    transform: scale(0.95);
    opacity: 1;
  }

  70% {
    transform: scale(1.25);
    opacity: 0;
  }

  100% {
    transform: scale(1.25);
    opacity: 0;
  }
}

@media (max-width: 640px) {
  .wa-float {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
    font-size: 1.45rem;
  }
}