/*!
Theme Name: panavia
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: panavia
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

panavia is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap');
/* ---- CSS Variables ---- */
:root {
  --navy:        #0c3e7d;
  --navy-mid:    #0c3e7d;
  --navy-light:  #0c3e7d;
  --gold:        #c91985;
  --gold-light:  #cb7db0;
  --gold-pale:   #f0d1f0;
  --ivory:       #f0d1f0;
  --white:       #fefefe;
  --text-dark:   #000000;
  --text-mid:    #000000;
  --text-light:  #cb7db0;
  --border:      #cb7db0;
  --border-dark: rgba(254,254,254,0.1);

  --font-display: "Space Grotesk", sans-serif;
  --font-body:    "Space Grotesk", sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --shadow-sm:  0 2px 12px rgba(0,0,0,0.08);
  --shadow-md:  0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg:  0 20px 60px rgba(0,0,0,0.18);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Base ---- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--white);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* ========================================================
   NAVBAR
   ======================================================== */
#mainNav {
  background: var(--white);
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  z-index: 1000;
}

#mainNav.scrolled {
  background: var(--white);
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
  padding: 0.75rem 0;
}

.navbar-brand {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 0.01em;
}
.brand-tag {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--text-dark);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.navbar-nav .nav-link {
  color: rgba(0,0,0,0.85) !important;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 0.5rem 1rem !important;
  transition: color var(--transition);
  position: relative;
}
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1rem;
  right: 1rem;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.navbar-nav .nav-link:hover { color: var(--text-dark) !important; }
.navbar-nav .nav-link:hover::after { transform: scaleX(1); }

.navbar-toggler {
  border: 1px solid rgba(0,0,0,0.3);
  padding: 0.3rem 0.6rem;
}
.navbar-toggler-icon {
  filter: invert(0);
}

/* Custom Logo */
.custom-logo-link {
  display: inline-flex;
  align-items: center;
}
.custom-logo {
  height: 70px;
  max-width: 100%;
  width: auto;
}
@media (min-width: 992px) {
  .custom-logo {
    max-width: max-content;
    height: 80px;
  }
}

/* ========================================================
   BUTTONS
   ======================================================== */
.btn-gold {
  background: var(--gold-pale);
  color: var(--navy) !important;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  padding: 0.65rem 1.6rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--gold);
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
  display: inline-block;
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  box-shadow: 0 4px 20px rgba(201,25,133,0.35);
  transform: translateY(-1px);
}

.btn-outline-light {
  border-color: rgba(254,254,254,0.4) !important;
  color: var(--white) !important;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0.65rem 1.6rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.btn-outline-light:hover {
  background: rgba(254,254,254,0.1) !important;
  border-color: rgba(254,254,254,0.7) !important;
}

.btn-outline-dark {
  border-color: var(--navy) !important;
  color: var(--navy) !important;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.65rem 1.6rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.btn-outline-dark:hover {
  background: var(--navy) !important;
  color: var(--white) !important;
}

/* ========================================================
   SECTION HELPERS
   ======================================================== */
.section-default {
	padding: 20px;
  background: var(--white);
}
.section-dark {
  padding: 100px 0;
  background: var(--navy);
}
.section-light {
  padding: 100px 0;
  background: var(--ivory);
}

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
  position: relative;
  padding-left: 2rem;
}
.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.4rem;
  height: 1px;
  background: var(--gold);
}
.section-label--light { color: var(--gold-light); }
.section-label--light::before { background: var(--gold-light); }

.section-sublabel {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-title--light { color: var(--white); }
.section-title em { color: var(--gold); font-style: italic; }

.section-body {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.8;
}
.section-body--light { color: rgba(254,254,254,0.72); }

/* ========================================================
   HERO
   ======================================================== */
.hero-section {
  background-image: 
    linear-gradient(135deg, rgba(12,62,125,0.7) 0%, rgba(0,0,0,0.75) 50%, rgba(12,62,125,0.6) 100%),
    url('https://images.unsplash.com/photo-1552664730-d307ca884978?w=1200&q=80');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  position: relative;
  overflow: hidden;
  min-height: auto;
  padding: 4rem 0;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(12,62,125,0.65) 0%, transparent 50%),
    linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.35) 100%);
  pointer-events: none;
}


.hero-content {
  padding-top: clamp(4rem, 8vw, 8.5rem);
  padding-bottom: clamp(3rem, 6vw, 6rem);
  position: relative;
  z-index: 2;
  animation: fadeInUp 0.9s ease both;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.hero-eyebrow {
  font-size: clamp(0.6rem, 1.2vw, 0.72rem);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: clamp(0.8rem, 2vw, 1.25rem);
  padding-left: 2.2rem;
  position: relative;
  display: inline-block;
}
.hero-eyebrow::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.6rem;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 4.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  letter-spacing: -0.015em;
  text-shadow: 0 4px 12px rgba(0,0,0,0.5);
}
.hero-title em {
  color: var(--gold);
  font-style: italic;
  display: block;
  margin-top: 0.2em;
}

.hero-subtitle {
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  color: rgba(254,254,254,0.85);
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.hero-actions {
  display: flex;
  gap: clamp(0.6rem, 2vw, 1.2rem);
  flex-wrap: wrap;
  margin-bottom: clamp(2rem, 3vw, 3rem);
}

.hero-actions .btn {
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
  font-weight: 600;
  letter-spacing: 0.03em;
}

.hero-actions .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.7), 0 0 40px rgba(201,25,133,0.3);
}

.hero-stats {
  display: flex;
  align-items: flex-start;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  flex-wrap: wrap;
  margin-top: clamp(1rem, 2vw, 2rem);
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  text-shadow: 0 2px 6px rgba(0,0,0,0.3);
}
.stat-label {
  font-size: clamp(0.6rem, 1.2vw, 0.75rem);
  color: rgba(254,254,254,0.65);
  margin-top: 0.35rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
}
.stat-divider {
  display: none;
}

/* Hero visual card */
.hero-visual {
  position: relative;
  z-index: 2;
  padding-top: 9rem;
  padding-bottom: 4rem;
  animation: fadeInRight 0.9s 0.2s ease both;
}
.hero-card {
  background: linear-gradient(180deg, rgba(254,254,254,0.04), rgba(254,254,254,0.02));
  border: 1px solid rgba(201,25,133,0.12);
  border-radius: calc(var(--radius-lg) + 6px);
  padding: 2.3rem 2.2rem;
  backdrop-filter: blur(10px) saturate(120%);
  position: relative;
  box-shadow: var(--shadow-lg);
}
.hero-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.hc-flag {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
}
.flag-circle {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: #c91985;
  box-shadow: 0 0 0 3px rgba(201,25,133,0.2);
}

.hc-flag { position: relative; }
.hc-flag::after {
  content: '';
  position: absolute;
  left: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 52px; height: 52px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(201,25,133,0.12), transparent 40%);
  z-index: -1;
}

.hc-label {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.4rem;
  margin-left: 2.6rem;
  margin-top: -2.2rem;
}
.hc-title {
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 1.25rem;
  line-height: 1.25;
}

.hc-sectors {
  list-style: none;
  padding: 0; margin: 0 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
.hc-sectors li {
  font-size: 0.875rem;
  color: rgba(254,254,254,0.75);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hc-sectors li .bi {
  color: var(--gold);
  font-size: 0.8rem;
}

.hc-link {
  font-size: 0.85rem;
  color: var(--gold-light);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap var(--transition), color var(--transition);
}
.hc-link:hover { color: var(--white); gap: 0.7rem; }

/* Small subtle animation for the hero card */
.hero-card { transform: translateY(0); transition: transform 0.6s var(--transition); }
.hero-card:hover { transform: translateY(-6px) scale(1.01); }

/* Responsive tweaks */
@media (max-width: 768px) {
  .hero-section {
    background-attachment: scroll;
    min-height: auto;
  }
  .hero-content { padding-top: 3rem; padding-bottom: 2rem; }
  .hero-eyebrow { padding-left: 1.8rem; font-size: 0.6rem; margin-bottom: 0.6rem; }
  .hero-eyebrow::before { width: 1.4rem; }
  .hero-title { font-size: clamp(1.6rem, 5vw, 2.3rem); margin-bottom: 0.8rem; }
  .hero-subtitle { font-size: clamp(0.85rem, 1.8vw, 0.95rem); max-width: 100%; margin-bottom: 1.3rem; line-height: 1.6; }
  .hero-actions { gap: 0.5rem; margin-bottom: 1.5rem; }
  .hero-actions .btn { font-size: 0.8rem; padding: 0.6rem 1.2rem; }
  .hero-visual { padding-top: 2rem; padding-bottom: 2rem; }
  .hero-stats { gap: 1.2rem; margin-top: 1rem; }
  .stat-number { font-size: 1.1rem; }
  .stat-label { font-size: 0.62rem; margin-top: 0.25rem; }
  .hero-scroll-indicator { display: none; }
}

@media (max-width: 480px) {
  .hero-section { min-height: auto; }
  .hero-content { padding-top: 2rem; padding-bottom: 1.5rem; }
  .hero-eyebrow { padding-left: 1.6rem; margin-bottom: 0.5rem; }
  .hero-title { font-size: clamp(1.3rem, 4.5vw, 1.9rem); margin-bottom: 0.6rem; line-height: 1.2; }
  .hero-subtitle { font-size: 0.8rem; line-height: 1.5; margin-bottom: 1rem; }
  .hero-actions { flex-direction: column; gap: 0.5rem; margin-bottom: 1.2rem; }
  .hero-actions .btn { width: 100%; font-size: 0.75rem; padding: 0.55rem 1rem; }
  .hero-stats { flex-direction: column; gap: 0.8rem; align-items: flex-start; margin-top: 0.8rem; }
  .stat-number { font-size: 1rem; }
  .stat-label { font-size: 0.6rem; }
}

@media (max-width: 991px) {
  .hero-title { font-size: clamp(2rem, 6vw, 2.6rem); }
}

@media (min-width: 1200px) {
  .hero-section { padding-bottom: 4rem; }
  .hero-visual { padding-top: 11rem; }
}

.hero-scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 2.5rem;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
}
.hero-scroll-indicator span {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(254,254,254,0.4);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(254,254,254,0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

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

.about-header {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.about-header .section-title {
  margin-top: 0.8rem;
  margin-bottom: 1rem;
}

.about-header .section-body {
  margin: 0 auto 0.7rem;
  line-height: 1.85;
}

.about-stats {
  margin-top: 1.4rem;
  margin-bottom: 2.2rem;
}

.about-stat-card {
  border: 1px solid rgba(201,25,133,0.2);
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 0.95rem 0.9rem;
  text-align: center;
  height: 100%;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.about-stat-card strong {
  display: block;
  font-family: var(--font-display);
  color: var(--navy);
  font-size: 1.25rem;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.about-stat-card span {
  color: var(--text-dark);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
}

.about-stat-card:hover {
  transform: translateY(-3px);
  border-color: rgba(201,25,133,0.45);
  box-shadow: 0 12px 24px rgba(201,25,133,0.14);
}

.why-us-section {
  margin-top: 0.8rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(201,25,133,0.14);
}
.why-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.4rem;
  text-align: center;
}

.about-visual {
  position: relative;
  height: 420px;
}
.av-block {
  position: absolute;
  border-radius: var(--radius-md);
  padding: 1.8rem;
}
.av-block--main {
  top: 0; left: 0;
  width: 72%;
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}
.av-block--main h4 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  margin-top: 0.8rem;
}
.av-block--main p {
  font-size: 0.8rem;
  color: rgba(254,254,254,0.55);
  letter-spacing: 0.04em;
  margin: 0;
}
.av-icon {
  font-size: 2rem;
  color: var(--gold);
}

.av-block--accent {
  bottom: 4rem; right: 0;
  width: 62%;
  background: var(--gold);
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.1rem 1.4rem;
  box-shadow: var(--shadow-md);
}
.av-block--accent p { margin: 0; font-size: 0.85rem; font-weight: 600; }

.av-block--accent2 {
  bottom: 0; left: 0;
  width: 60%;
  background: var(--ivory);
  border: 1px solid var(--border);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.1rem 1.4rem;
  box-shadow: var(--shadow-sm);
}
.av-block--accent2 p { margin: 0; font-size: 0.85rem; font-weight: 500; }

.av-icon-sm {
  font-size: 1.2rem;
  color: var(--navy);
  flex-shrink: 0;
}
.av-block--accent2 .av-icon-sm { color: var(--gold); }

.value-card {
  background: rgba(254,254,254,0.98);
  border: 1.5px solid rgba(201,25,133,0.2);
  border-radius: var(--radius-md);
  padding: 2rem;
  height: 100%;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.value-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.value-card:hover {
  border-color: var(--gold);
  box-shadow: 0 16px 34px rgba(201,25,133,0.14);
  transform: translateY(-3px);
}

.value-card--mission {
  background:
    linear-gradient(165deg, rgba(254,254,254,0.99), rgba(240,209,240,0.62));
}

.value-card--vision {
  background:
    linear-gradient(165deg, rgba(254,254,254,0.99), rgba(203,125,176,0.28));
}
.value-card:hover::before { transform: scaleX(1); }

.value-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1rem;
  transition: color var(--transition);
}
.value-card:hover .value-icon {
  color: #0c3e7d;
}
.value-card h5 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
}
.value-list {
  list-style: none;
  padding: 0; margin: 0;
}
.value-list li {
  font-size: 0.9rem;
  color: var(--text-mid);
  padding: 0.4rem 0;
  padding-left: 1.2rem;
  position: relative;
  line-height: 1.6;
}
.value-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: bold;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}
.why-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.2rem;
  border: 1.5px solid rgba(201,25,133,0.14);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
  background: rgba(254,254,254,0.95);
  transition: all var(--transition);
}
.why-item:hover {
  border-color: var(--gold);
  box-shadow: 0 10px 24px rgba(201,25,133,0.12);
  transform: translateY(-2px);
}
.why-item .bi {
  font-size: 1.4rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: color var(--transition);
}
.why-item:hover .bi {
  color: #0c3e7d;
}

/* ========================================================
   WhatsApp sticky icon + popup message
   ======================================================== */
.whatsapp-float {
  position: fixed;
  right: 16px;
  bottom: 84px;
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(180deg, #25d366 0%, #128c7e 100%);
  box-shadow: 0 14px 34px rgba(18,140,126,0.25), 0 6px 14px rgba(0,0,0,0.16);
  text-decoration: none;
  z-index: 9999;
  opacity: 0;
  transform: translateY(12px);
  transition: transform 280ms var(--transition), box-shadow 280ms var(--transition), opacity 380ms ease;
}

.whatsapp-float.wa-visible {
  opacity: 1;
  transform: translateY(0);
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 20px 46px rgba(18,140,126,0.33), 0 8px 18px rgba(0,0,0,0.18);
}

.whatsapp-float:focus-visible {
  outline: 3px solid rgba(37,211,102,0.35);
  outline-offset: 3px;
}

.whatsapp-float .wa-icon {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-float .wa-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.whatsapp-float .wa-badge {
  position: absolute;
  top: -1px;
  right: -1px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 30%, #8af8b1, #25d366 60%);
  border: 2px solid #ffffff;
  box-shadow: 0 0 0 0 rgba(37,211,102,0.4);
  animation: wa-pulse 2s infinite;
}

.whatsapp-float .wa-text {
  display: none;
}

.whatsapp-float .wa-preview {
  position: absolute;
  right: calc(100% + 12px);
  bottom: 12px;
  background: #ffffff;
  color: #111111;
  border-radius: 10px;
  padding: 0.6rem 0.8rem;
  font-size: 0.86rem;
  line-height: 1.35;
  white-space: nowrap;
  box-shadow: 0 14px 30px rgba(0,0,0,0.15);
  border: 1px solid rgba(0,0,0,0.06);
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.whatsapp-float .wa-preview::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 18px;
  width: 10px;
  height: 10px;
  background: #ffffff;
  border-right: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transform: rotate(-45deg);
}

.whatsapp-float:hover .wa-preview,
.whatsapp-float:focus-visible .wa-preview,
.whatsapp-float.wa-show-preview .wa-preview {
  opacity: 1;
  transform: translateY(0);
}

@keyframes wa-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.45); }
  70% { box-shadow: 0 0 0 10px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

@media (max-width: 991px) {
  .whatsapp-float {
    right: 12px;
    bottom: 70px;
    width: 54px;
    height: 54px;
  }
}

@media (max-width: 575px) {
  .whatsapp-float {
    right: 10px;
    bottom: 18px;
    width: 50px;
    height: 50px;
  }

  .whatsapp-float .wa-icon {
    width: 26px;
    height: 26px;
  }

  .whatsapp-float .wa-preview {
    display: none;
  }
}

/* ========================================================
   SSW SECTION
   ======================================================== */
.ssw-feature-card {
  background: rgba(254,254,254,0.04);
  border: 1px solid rgba(254,254,254,0.08);
  border-radius: var(--radius-md);
  padding: 2rem;
  height: 100%;
  transition: border-color var(--transition), background var(--transition);
}
.ssw-feature-card:hover {
  border-color: rgba(201,25,133,0.35);
  background: rgba(254,254,254,0.06);
}
.ssw-feature-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(201,25,133,0.25);
  line-height: 1;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
.ssw-feature-card h5 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.ssw-feature-card p {
  font-size: 0.9rem;
  color: rgba(254,254,254,0.6);
  line-height: 1.75;
  margin: 0;
}

.sector-card {
  background: rgba(254,254,254,0.05);
  border: 1px solid rgba(254,254,254,0.08);
  border-radius: var(--radius-md);
  padding: 1.5rem 1rem;
  text-align: center;
  transition: all var(--transition);
  cursor: default;
}
.sector-card:hover {
  background: rgba(201,25,133,0.12);
  border-color: rgba(201,25,133,0.35);
  transform: translateY(-2px);
}
.sector-card .bi {
  font-size: 1.6rem;
  color: var(--gold);
  display: block;
  margin-bottom: 0.6rem;
}
.sector-card span {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(254,254,254,0.75);
  display: block;
  letter-spacing: 0.02em;
}

/* ========================================================
   SERVICES
   ======================================================== */
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  height: 100%;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.service-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.service-card:hover::after { transform: scaleX(1); }

.service-icon {
  width: 52px; height: 52px;
  background: var(--gold-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: background var(--transition);
}
.service-card:hover .service-icon { background: var(--gold); }
.service-icon .bi {
  font-size: 1.4rem;
  color: var(--gold);
  transition: color var(--transition);
}
.service-card:hover .service-icon .bi { color: var(--navy); }

.service-card h5 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}
.service-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.service-features {
  list-style: none;
  padding: 0; margin: 0;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}
.service-features li {
  font-size: 0.82rem;
  color: var(--text-mid);
  padding: 0.2rem 0;
  padding-left: 1.1rem;
  position: relative;
}
.service-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 5px; height: 1px;
  background: var(--gold);
}

/* ========================================================
   COURSES
   ======================================================== */
.course-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2.2rem;
  height: 100%;
  transition: box-shadow var(--transition), transform var(--transition);
}
.course-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.course-card--featured {
  background: var(--navy);
  border-color: var(--navy);
}
.course-card--featured .course-title { color: var(--white); }
.course-card--featured .course-desc { color: rgba(254,254,254,0.65); }

.course-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--gold-pale);
  color: var(--gold);
  padding: 0.28rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.course-badge--light {
  background: rgba(201,25,133,0.15);
  color: var(--gold-light);
}

.course-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}
.course-desc {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.course-levels {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.level-tag {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.65rem;
  border-radius: 100px;
  border: 1px solid var(--border);
  color: var(--text-mid);
  background: var(--ivory);
}
.level-tag--light {
  border-color: rgba(254,254,254,0.2);
  color: rgba(254,254,254,0.7);
  background: rgba(254,254,254,0.07);
}

/* ========================================================
   CTA SECTION
   ======================================================== */
.cta-section {
  background: var(--navy-light);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.cta-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(201,25,133,0.07) 0%, transparent 55%),
    radial-gradient(circle at 80% 50%, rgba(201,25,133,0.07) 0%, transparent 55%);
  pointer-events: none;
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  position: relative;
}
.cta-body {
  font-size: 1rem;
  color: rgba(254,254,254,0.65);
  max-width: 540px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
  position: relative;
}

/* ========================================================
   CONTACT
   ======================================================== */
.contact-info {
  padding: 2.5rem;
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  height: 100%;
}
.contact-info-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-icon {
  width: 40px; height: 40px;
  background: var(--gold-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 1.1rem;
}
.contact-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.2rem;
}
.contact-value {
  font-size: 0.95rem;
  color: var(--text-dark);
  margin: 0;
  line-height: 1.6;
}
.contact-value a {
  color: var(--text-dark);
  transition: color var(--transition);
}
.contact-value a:hover { color: var(--gold); }

.contact-hours {
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
  margin-top: 0.5rem;
}

.contact-spotlight {
  position: relative;
  border-radius: var(--radius-md);
  border: 1px solid rgba(201,25,133,0.2);
  background:
    radial-gradient(circle at top right, rgba(201,25,133,0.15), transparent 55%),
    linear-gradient(145deg, rgba(12,62,125,0.96), rgba(12,62,125,0.86));
  overflow: hidden;
  min-height: 100%;
  box-shadow: 0 22px 48px rgba(12,62,125,0.22);
}

.contact-spotlight-glow {
  position: absolute;
  inset: auto -50px -70px auto;
  width: 240px;
  height: 240px;
  border-radius: 999px;
  background: rgba(254,254,254,0.1);
  filter: blur(2px);
}

.contact-spotlight-content {
  position: relative;
  z-index: 1;
  padding: clamp(1.75rem, 3vw, 2.6rem);
}

.contact-kicker {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(254,254,254,0.35);
  background: rgba(254,254,254,0.08);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.contact-spotlight-title {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.6vw, 2.1rem);
  color: var(--white);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 0.85rem;
}

.contact-spotlight-body {
  color: rgba(254,254,254,0.82);
  font-size: 0.98rem;
  line-height: 1.75;
  max-width: 640px;
  margin-bottom: 1.3rem;
}

.contact-pill-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.45rem;
}

.contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.72rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--white);
  background: rgba(254,254,254,0.12);
  border: 1px solid rgba(254,254,254,0.2);
}

.contact-pill i {
  font-size: 0.95rem;
  color: var(--gold-light);
}

.contact-open-btn {
  min-width: 260px;
}

.contact-note {
  margin-top: 0.75rem;
  margin-bottom: 0;
  font-size: 0.82rem;
  color: rgba(254,254,254,0.72);
}

/* Contact Form */
.contact-form .form-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}
.contact-form .form-control,
.contact-form .form-select {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.7rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,25,133,0.12);
  outline: none;
}
.contact-form .form-control::placeholder { color: var(--text-light); }

.form-success-msg {
  background: #f0d1f0;
  border: 1px solid #cb7db0;
  border-radius: var(--radius-md);
  padding: 2rem;
  text-align: center;
}
.form-success-msg .bi {
  font-size: 2rem;
  color: #c91985;
  display: block;
  margin-bottom: 0.75rem;
}
.form-success-msg p {
  font-weight: 500;
  color: #000000;
  margin: 0;
}

.modal-content {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 24px 55px rgba(12,62,125,0.25);
}

.modal-header {
  background: var(--gold-pale);
  border-bottom: 1px solid var(--border);
}

.modal-title {
  color: var(--text-dark);
  font-family: var(--font-display);
  font-weight: 700;
}

.modal-body {
  background: var(--white);
}

/* ========================================================
   FOOTER
   ======================================================== */
.site-footer {
  background: var(--navy);
  padding: 70px 0 30px;
}

.footer-main {
  max-width: 760px;
  margin: 0 auto;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.footer-brand span {
  color: var(--gold-light);
}

.footer-tagline {
  font-size: 0.875rem;
  color: rgba(254,254,254,0.5);
  line-height: 1.7;
  margin: 0.4rem auto 0.75rem;
  max-width: 560px;
}
.footer-address {
  font-size: 0.82rem;
  color: rgba(254,254,254,0.45);
  margin: 0;
}

.footer-social {
  margin-top: 1.15rem;
  display: flex;
  justify-content: center;
  gap: 0.65rem;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(254,254,254,0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(254,254,254,0.78);
  background: rgba(254,254,254,0.06);
  transition: transform var(--transition), border-color var(--transition), color var(--transition), background var(--transition);
}

.footer-social a:hover {
  transform: translateY(-2px);
  border-color: rgba(201,25,133,0.75);
  color: var(--white);
  background: rgba(201,25,133,0.3);
}

.footer-heading {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(254,254,254,0.4);
  margin-bottom: 1.2rem;
}
.footer-links {
  list-style: none;
  padding: 0; margin: 0;
}
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a {
  font-size: 0.875rem;
  color: rgba(254,254,254,0.6);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold-light); }

.footer-divider {
  border-color: rgba(254,254,254,0.08);
  margin: 2.5rem 0 1.25rem;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(254,254,254,0.35);
  margin: 0;
}
.footer-note { font-size: 0.75rem !important; }

/* ========================================================
   BACK TO TOP
   ======================================================== */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px; height: 44px;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity var(--transition), transform var(--transition), background var(--transition);
  z-index: 999;
  box-shadow: var(--shadow-md);
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--gold-light); }

/* ========================================================
   ANIMATIONS
   ======================================================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(24px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50%       { opacity: 0.8; }
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ========================================================
   RESPONSIVE
   ======================================================== */
@media (max-width: 991.98px) {
  .section-default,
  .section-dark,
  .section-light { padding: 70px 0; }

  .hero-content { padding-top: 7rem; }
  .about-visual { height: 320px; }
  .contact-spotlight {
    margin-top: 0.2rem;
  }
  .contact-open-btn {
    width: 100%;
    min-width: 0;
  }
  .av-block--main { width: 75%; }
  .why-us-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 767.98px) {
  .section-default,
  .section-dark,
  .section-light { padding: 55px 0; }

  .hero-stats { gap: 1.2rem; }
  .about-visual { display: none; }
  .why-us-grid { grid-template-columns: 1fr; }
  .contact-info { margin-bottom: 0; }
  .back-to-top { bottom: 1.2rem; right: 1.2rem; }
}
