/* ==========================================================================
   PMP LANDING PAGE — "BOARDING PASS" DESIGN SYSTEM
   ========================================================================== */

:root{
  --ink:#0F4C81;
  --navy:#0F4C81;
  --navy-light:#2563EB;
  --gold:#2563EB;
  --gold-light:#2563EB;
  --teal:#25D366;
  --teal-light:#25D366;
  --whatsapp:#25D366;
  --paper:#F8FAFC;
  --paper-alt:#FFFFFF;
  --text:#334155;
  --footer:#1e293b;

  --navy-rgb:15,76,129;
  --gold-rgb:37,99,235;
  --teal-rgb:37,211,102;
  --whatsapp-rgb:37,211,102;

  --radius-sm:12px;
  --radius-md:20px;
  --radius-lg:30px;

  --shadow-soft:0 10px 30px rgba(15,76,129,.09);
  --shadow-md:0 20px 45px rgba(15,76,129,.13);
  --shadow-lg:0 30px 60px rgba(15,76,129,.20);

  --transition:all .35s cubic-bezier(.4,0,.2,1);
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }

body{
  font-family:'Cairo', sans-serif;
  font-weight:400;
  color:var(--text);
  background:var(--paper);
  overflow-x:hidden;
  line-height:1.85;
}

h1,h2,h3,h4,h5,h6{ font-weight:800; color:var(--navy); margin:0; }
p{ margin:0; }
a{ text-decoration:none; color:inherit; }
ul{ list-style:none; margin:0; padding:0; }
img{ max-width:100%; display:block; }

::selection{ background:var(--gold); color:#fff; }

.section-eyebrow{
  display:inline-block;
  padding:.45rem 1.15rem;
  border-radius:100px;
  background:rgba(var(--gold-rgb),.12);
  color:var(--navy);
  font-weight:700;
  font-size:.82rem;
  margin-bottom:1rem;
  letter-spacing:.3px;
  border:1px solid rgba(var(--gold-rgb),.3);
}
.section-eyebrow.light{
  background:rgba(255,255,255,.12);
  color:#fff;
  border-color:rgba(255,255,255,.2);
}

.section-heading{
  max-width:640px;
  margin:0 auto 3.5rem;
  text-align:center;
}
.section-heading h2{
  font-size:clamp(1.6rem, 3vw, 2.4rem);
  line-height:1.4;
}
.section-heading.light h2{ color:#fff; }

/* ==========================================================================
   LOADER
   ========================================================================== */
#loader{
  position:fixed; inset:0; z-index:99999;
  background:linear-gradient(135deg, var(--ink), var(--navy-light));
  display:flex; align-items:center; justify-content:center;
  transition:opacity .6s ease, visibility .6s ease;
}
#loader.loader-hidden{ opacity:0; visibility:hidden; }
.loader-mark{
  padding:1rem 1.6rem;
  border-radius:16px;
  background:rgba(255,255,255,.06);
  border:1.5px solid rgba(37,99,235,.5);
  animation:loaderPulse 1.1s ease-in-out infinite;
}
.loader-mark span{ font-size:1.5rem; font-weight:900; color:#fff; letter-spacing:2px; }
@keyframes loaderPulse{
  0%,100%{ transform:scale(1); opacity:1; }
  50%{ transform:scale(.9); opacity:.6; }
}

/* ==========================================================================
   NAVBAR
   ========================================================================== */
.custom-navbar{
  padding:1rem 0;
  background:rgba(248,250,252,.7);
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
  transition:var(--transition);
  border-bottom:1px solid transparent;
}
.custom-navbar.scrolled{
  padding:.7rem 0;
  background:rgba(255,255,255,.9);
  box-shadow:0 8px 30px rgba(15,76,129,.08);
  border-bottom:1px solid rgba(15,76,129,.06);
}
.brand-mark{
  font-size:1.6rem;
  font-weight:900;
  color:var(--navy);
  letter-spacing:1px;
  position:relative;
  padding-left:.2rem;
}

.navbar-nav .nav-link{
  color:var(--navy);
  font-weight:600;
  font-size:.98rem;
  padding:.5rem 1rem !important;
  position:relative;
}
.navbar-nav .nav-link::after{
  content:'';
  position:absolute;
  right:1rem; left:1rem; bottom:.25rem;
  height:2px;
  background:var(--gold);
  transform:scaleX(0);
  transition:var(--transition);
}
.navbar-nav .nav-link:hover::after{ transform:scaleX(1); }
.navbar-nav .nav-link:hover{ color:var(--navy-light); }

.btn-nav-cta{
  display:inline-flex; align-items:center; gap:.5rem;
  background:var(--whatsapp);
  color:#fff !important;
  font-weight:700;
  padding:.65rem 1.5rem;
  border-radius:100px;
  box-shadow:0 8px 20px rgba(var(--whatsapp-rgb),.32);
  transition:var(--transition);
  white-space:nowrap;
}
.btn-nav-cta:hover{ transform:translateY(-2px); box-shadow:0 12px 26px rgba(var(--whatsapp-rgb),.42); color:#fff; }

.navbar-toggler{ border:none; padding:.4rem; display:flex; flex-direction:column; gap:5px; }
.navbar-toggler:focus{ box-shadow:none; }
.toggler-line{ width:24px; height:2px; background:var(--navy); display:block; border-radius:2px; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero-section{
  position:relative;
  padding:160px 0 110px;
  overflow:hidden;
  background:
    radial-gradient(circle at 88% 10%, rgba(37,99,235,.12), transparent 55%),
    radial-gradient(circle at 8% 92%, rgba(15,76,129,.08), transparent 50%),
    var(--paper);
}
.hero-grid-pattern{
  position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(15,76,129,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,76,129,.035) 1px, transparent 1px);
  background-size:44px 44px;
  mask-image:radial-gradient(ellipse 60% 55% at 60% 20%, black, transparent);
  -webkit-mask-image:radial-gradient(ellipse 60% 55% at 60% 20%, black, transparent);
  pointer-events:none;
}
.hero-blob{
  position:absolute; border-radius:50%; filter:blur(70px); opacity:.5; z-index:0;
  animation:blobFloat 12s ease-in-out infinite;
}
.blob-one{ width:420px; height:420px; background:radial-gradient(circle, rgba(37,99,235,.3), transparent 70%); top:-120px; left:-100px; }
.blob-two{ width:380px; height:380px; background:radial-gradient(circle, rgba(15,76,129,.22), transparent 70%); bottom:-140px; right:-80px; animation-delay:-6s; }
@keyframes blobFloat{
  0%,100%{ transform:translate(0,0) scale(1); }
  50%{ transform:translate(30px,-30px) scale(1.08); }
}

.hero-section .container{ position:relative; z-index:2; }

.hero-eyebrow{
  display:inline-flex; align-items:center; gap:.5rem;
  padding:.5rem 1.2rem;
  border-radius:100px;
  background:#fff;
  box-shadow:var(--shadow-soft);
  color:var(--navy);
  font-weight:800;
  font-size:.9rem;
  letter-spacing:1px;
  margin-bottom:1.5rem;
}
.hero-eyebrow i{ color:var(--gold); }

.hero-title{
  font-size:clamp(2rem, 4vw, 3.1rem);
  line-height:1.4;
  margin-bottom:1.3rem;
}
.hero-subtitle{
  font-size:1.12rem;
  color:var(--text);
  max-width:520px;
  margin-bottom:2rem;
}
.hero-actions{ display:flex; flex-wrap:wrap; gap:1rem; margin-bottom:2rem; }

.btn-hero-primary{
  display:inline-flex; align-items:center; gap:.6rem;
  background:var(--whatsapp);
  color:#fff;
  font-weight:700;
  padding:1rem 2rem;
  border-radius:100px;
  box-shadow:0 14px 30px rgba(var(--whatsapp-rgb),.32);
  transition:var(--transition);
  font-size:1.05rem;
}
.btn-hero-primary:hover{ transform:translateY(-3px); box-shadow:0 18px 38px rgba(var(--whatsapp-rgb),.42); color:#fff; }

.btn-hero-secondary{
  display:inline-flex; align-items:center; gap:.6rem;
  background:#fff;
  color:var(--navy);
  font-weight:700;
  padding:1rem 2rem;
  border-radius:100px;
  border:1px solid rgba(15,76,129,.14);
  transition:var(--transition);
}
.btn-hero-secondary:hover{ transform:translateY(-3px); border-color:var(--gold); color:var(--navy-light); box-shadow:var(--shadow-soft); }

.hero-quote-badge{
  display:flex; align-items:flex-start; gap:.9rem;
  background:rgba(255,255,255,.65);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  border:1px dashed rgba(var(--gold-rgb),.55);
  border-radius:var(--radius-md);
  padding:1rem 1.3rem;
  max-width:520px;
}
.hero-quote-badge i{
  color:var(--gold);
  font-size:1.2rem;
  margin-top:.2rem;
}
.quote-label{
  display:block;
  font-size:.72rem;
  font-weight:700;
  color:var(--gold);
  text-transform:uppercase;
  letter-spacing:.5px;
  margin-bottom:.25rem;
}
.hero-quote-badge strong{
  display:block;
  font-size:.95rem;
  color:var(--navy);
  font-weight:700;
}

/* ---- Boarding Pass Visual ---- */
.hero-visual{ position:relative; max-width:480px; margin:0 auto; }

.boarding-pass{
  background:linear-gradient(160deg, var(--navy) 0%, var(--ink) 100%);
  border-radius:var(--radius-lg);
  padding:2rem 1.8rem;
  color:#fff;
  box-shadow:var(--shadow-lg);
  position:relative;
  overflow:hidden;
}
.boarding-pass::before{
  content:'';
  position:absolute;
  top:-40%; right:-30%;
  width:280px; height:280px;
  background:radial-gradient(circle, rgba(37,99,235,.25), transparent 70%);
  border-radius:50%;
}
.bp-top{
  display:flex; align-items:center; justify-content:space-between;
  margin-bottom:1.6rem;
  position:relative; z-index:1;
}
.bp-brand{ display:flex; align-items:center; gap:.6rem; }
.bp-brand i{ color:#fff; font-size:1.2rem; }
.bp-brand span{ font-weight:800; font-size:.85rem; letter-spacing:1px; }
.bp-class{
  font-size:.7rem;
  font-weight:700;
  padding:.35rem .8rem;
  border-radius:100px;
  background:rgba(37,99,235,.18);
  color:#fff;
  border:1px solid rgba(37,99,235,.4);
  letter-spacing:.5px;
}

.bp-route{
  display:flex; align-items:center; justify-content:space-between;
  margin-bottom:1.5rem;
  position:relative; z-index:1;
}
.bp-point strong{ display:block; font-size:.65rem; letter-spacing:1.5px; color:rgba(255,255,255,.5); margin-bottom:.3rem; }
.bp-point span{ font-size:1.05rem; font-weight:800; }
.bp-path{ flex:1; text-align:center; color:#fff; font-size:1.3rem; position:relative; }
.bp-path::before, .bp-path::after{
  content:'';
  position:absolute;
  top:50%;
  width:35%;
  height:1px;
  background:repeating-linear-gradient(90deg, rgba(255,255,255,.4) 0 6px, transparent 6px 12px);
}
.bp-path::before{ right:65%; }
.bp-path::after{ left:65%; }

.bp-perforation{
  height:0;
  border-top:2px dashed rgba(255,255,255,.2);
  margin-bottom:1.5rem;
  position:relative;
}
.bp-perforation::before, .bp-perforation::after{
  content:'';
  position:absolute;
  top:-11px;
  width:22px; height:22px;
  border-radius:50%;
  background:var(--paper);
}
.bp-perforation::before{ right:-1.8rem; }
.bp-perforation::after{ left:-1.8rem; }

.bp-details{
  display:flex; justify-content:space-between; gap:1rem;
  margin-bottom:1.6rem;
  position:relative; z-index:1;
}
.bp-details > div{ text-align:center; flex:1; }
.bp-details span{ display:block; font-size:.68rem; color:rgba(255,255,255,.5); margin-bottom:.35rem; }
.bp-details strong{ font-size:.85rem; font-weight:700; }

.bp-barcode{
  height:36px;
  background:repeating-linear-gradient(90deg, #fff 0 2px, transparent 2px 5px, #fff 5px 6px, transparent 6px 10px);
  opacity:.55;
  border-radius:4px;
}

.floating-card{
  position:absolute;
  display:flex; align-items:center; gap:.75rem;
  background:rgba(255,255,255,.85);
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
  border:1px solid rgba(255,255,255,.6);
  padding:.85rem 1.15rem;
  border-radius:var(--radius-md);
  box-shadow:var(--shadow-md);
  animation:floatY 4.5s ease-in-out infinite;
}
.floating-card strong{ display:block; font-size:.82rem; color:var(--navy); }
.floating-card span{ font-size:.72rem; color:var(--text); }

.fc-icon{
  width:42px; height:42px; border-radius:12px;
  display:flex; align-items:center; justify-content:center;
  background:rgba(var(--navy-rgb),.1);
  color:var(--navy);
  font-size:1.1rem;
  flex-shrink:0;
}
.fc-icon-accent{ background:rgba(var(--teal-rgb),.14); color:var(--teal); }

.card-cert{ top:-6%; right:-10%; animation-delay:0s; }
.card-ai{ bottom:-6%; left:-10%; animation-delay:-2.2s; }

@keyframes floatY{
  0%,100%{ transform:translateY(0); }
  50%{ transform:translateY(-14px); }
}

/* ==========================================================================
   STATS / PASSPORT STAMPS
   ========================================================================== */
.stats-section{ padding:90px 0 100px; background:var(--paper-alt); }

.stamp-card{ padding:1rem; }
.stamp-circle{
  width:96px; height:96px;
  margin:0 auto 1.1rem;
  border-radius:50%;
  border:2.5px dashed rgba(var(--navy-rgb),.35);
  display:flex; align-items:center; justify-content:center;
  color:var(--navy);
  font-size:1.6rem;
  transform:rotate(-6deg);
  transition:var(--transition);
  background:rgba(var(--navy-rgb),.03);
}
.stamp-circle.stamp-alt{
  border-color:rgba(var(--teal-rgb),.45);
  color:var(--teal);
  transform:rotate(5deg);
  background:rgba(var(--teal-rgb),.05);
}
.stamp-card:hover .stamp-circle{ transform:rotate(0deg) scale(1.06); }
.stamp-circle .counter{
  font-size:1.6rem;
  color:inherit;
  margin:0;
}
.stamp-card p{ font-weight:700; color:var(--navy); font-size:.92rem; }
.stamp-note{
  display:inline-block;
  margin-top:.4rem;
  font-size:.68rem;
  color:var(--gold);
  font-weight:700;
  border:1px solid rgba(var(--gold-rgb),.4);
  border-radius:100px;
  padding:.15rem .6rem;
}

/* ==========================================================================
   CERTIFICATIONS
   ========================================================================== */
.certifications-section{ padding:100px 0; background:var(--paper-alt); }

.cert-card{
  background:#fff;
  border-radius:var(--radius-md);
  padding:1.8rem 1.4rem;
  height:100%;
  text-align:center;
  box-shadow:var(--shadow-soft);
  border:1px solid rgba(var(--navy-rgb),.06);
  position:relative;
  transition:var(--transition);
}
.cert-card:hover{
  transform:translateY(-8px);
  box-shadow:var(--shadow-md);
  border-color:rgba(var(--gold-rgb),.25);
}
.cert-num{
  position:absolute;
  top:14px;
  left:16px;
  font-size:.72rem;
  font-weight:800;
  color:rgba(var(--navy-rgb),.35);
  letter-spacing:1px;
}
.cert-icon{
  width:54px; height:54px;
  margin:0 auto 1.1rem;
  border-radius:14px;
  display:flex; align-items:center; justify-content:center;
  background:linear-gradient(135deg, var(--navy), var(--navy-light));
  color:#fff;
  font-size:1.25rem;
  transition:var(--transition);
}
.cert-card:hover .cert-icon{ transform:rotate(-8deg) scale(1.08); }
.cert-name-ar{
  font-size:.95rem;
  font-weight:800;
  color:var(--footer);
  line-height:1.6;
  margin-bottom:.5rem;
  min-height:3.1rem;
}
.cert-name-en{
  font-size:.72rem;
  font-weight:600;
  color:var(--text);
  line-height:1.6;
  direction:ltr;
}

.cert-cta{
  margin-top:3rem;
  text-align:center;
  padding:2rem;
  border-radius:var(--radius-md);
  background:linear-gradient(120deg, rgba(var(--navy-rgb),.05), rgba(var(--gold-rgb),.05));
  border:1px dashed rgba(var(--gold-rgb),.3);
}
.cert-cta p{
  font-weight:700;
  color:var(--footer);
  margin-bottom:1.2rem;
  font-size:1rem;
}

/* ==========================================================================
   FEATURES
   ========================================================================== */
.features-section{ padding:100px 0; background:var(--paper); }

.feature-card{
  display:flex; align-items:flex-start; gap:1.2rem;
  background:#fff;
  border-radius:var(--radius-md);
  padding:2rem 1.8rem;
  height:100%;
  box-shadow:var(--shadow-soft);
  border:1px solid rgba(15,76,129,.05);
  transition:var(--transition);
}
.feature-card:hover{
  transform:translateY(-8px);
  box-shadow:var(--shadow-lg);
  border-color:rgba(37,99,235,.25);
}
.feature-icon{
  width:56px; height:56px;
  border-radius:16px;
  display:flex; align-items:center; justify-content:center;
  background:linear-gradient(135deg, var(--navy), var(--navy-light));
  color:#fff;
  font-size:1.4rem;
  flex-shrink:0;
  transition:var(--transition);
}
.feature-card:hover .feature-icon{ transform:rotate(-8deg) scale(1.08); }
.feature-text{
  font-weight:700;
  color:var(--navy);
  font-size:1.02rem;
  line-height:1.9;
}

/* ==========================================================================
   TIMELINE
   ========================================================================== */
.timeline-section{
  padding:110px 0 90px;
  background:linear-gradient(160deg, var(--ink) 0%, var(--navy) 100%);
  position:relative;
}

.timeline-track{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:2rem;
  position:relative;
  margin-bottom:2.5rem;
}
.timeline-track::before{
  content:'';
  position:absolute;
  top:38px; right:12.5%; left:12.5%;
  height:2px;
  background:repeating-linear-gradient(90deg, rgba(37,99,235,.4) 0 10px, transparent 10px 20px);
}
.timeline-step{ position:relative; text-align:center; color:#fff; }
.ts-icon{
  width:76px; height:76px;
  margin:0 auto 1.2rem;
  border-radius:50%;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(37,99,235,.4);
  backdrop-filter:blur(6px);
  display:flex; align-items:center; justify-content:center;
  font-size:1.5rem;
  color:#fff;
  position:relative; z-index:2;
  animation:iconFloat 3.6s ease-in-out infinite;
}
.timeline-step:nth-child(2) .ts-icon{ animation-delay:-.9s; }
.timeline-step:nth-child(3) .ts-icon{ animation-delay:-1.8s; }
.timeline-step:nth-child(4) .ts-icon{ animation-delay:-2.7s; }
@keyframes iconFloat{
  0%,100%{ transform:translateY(0); }
  50%{ transform:translateY(-8px); }
}
.ts-num{ display:block; font-weight:800; color:rgba(37,99,235,.6); font-size:.85rem; margin-bottom:.4rem; }
.timeline-step h3{ color:#fff; font-size:1.05rem; }

.timeline-footnote{
  text-align:center;
  color:rgba(255,255,255,.65);
  font-size:.95rem;
  max-width:640px;
  margin:0 auto;
  font-weight:600;
}

/* ==========================================================================
   OPPORTUNITIES (Travel & Gulf Banners)
   ========================================================================== */
.opportunities-section{ padding:100px 0; background:var(--paper-alt); }

.opportunity-banner{
  display:flex; align-items:center; gap:1.3rem;
  border-radius:var(--radius-lg);
  padding:2.2rem;
  height:100%;
  transition:var(--transition);
  box-shadow:var(--shadow-soft);
}
.opportunity-banner:hover{ transform:translateY(-6px); box-shadow:var(--shadow-md); }
.ob-icon{
  width:64px; height:64px;
  border-radius:18px;
  display:flex; align-items:center; justify-content:center;
  font-size:1.6rem;
  flex-shrink:0;
  color:#fff;
}
.banner-gulf{ background:linear-gradient(120deg, rgba(37,99,235,.12), rgba(37,99,235,.03)); border:1px solid rgba(37,99,235,.25); }
.banner-gulf .ob-icon{ background:linear-gradient(135deg, var(--gold), #1A4D8A); }
.banner-travel{ background:linear-gradient(120deg, rgba(var(--teal-rgb),.10), rgba(var(--teal-rgb),.02)); border:1px solid rgba(var(--teal-rgb),.22); }
.banner-travel .ob-icon{ background:linear-gradient(135deg, var(--teal), #0A5450); }

.opportunity-banner p{
  font-weight:700;
  color:var(--navy);
  font-size:1.02rem;
  line-height:1.9;
}

/* ==========================================================================
   AI HIGHLIGHT PANEL
   ========================================================================== */
.ai-section{ padding:0 0 100px; background:var(--paper-alt); }

.ai-panel{
  background:linear-gradient(120deg, var(--navy), var(--ink) 75%);
  border-radius:var(--radius-lg);
  padding:3rem 2.5rem;
  position:relative;
  overflow:hidden;
}
.ai-panel::before{
  content:'';
  position:absolute;
  width:380px; height:380px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(var(--teal-rgb),.28), transparent 70%);
  top:-140px; left:-100px;
}
.ai-panel .section-eyebrow{ margin-bottom:.8rem; }
.ai-panel h2{ color:#fff; font-size:clamp(1.4rem, 2.6vw, 2rem); line-height:1.6; margin-bottom:.8rem; }
.ai-sub{ color:rgba(255,255,255,.7); font-size:1rem; font-weight:600; }

.ai-orb{
  width:100px; height:100px;
  margin:0 auto;
  border-radius:50%;
  background:rgba(var(--teal-rgb),.16);
  border:1px solid rgba(var(--teal-rgb),.45);
  display:flex; align-items:center; justify-content:center;
  font-size:2.4rem;
  color:var(--teal-light);
  animation:iconFloat 3.6s ease-in-out infinite;
  position:relative; z-index:1;
}

/* ==========================================================================
   FINAL CTA
   ========================================================================== */
.final-cta-section{
  position:relative;
  padding:110px 0;
  overflow:hidden;
  background:linear-gradient(120deg, var(--ink), var(--navy) 70%);
  text-align:center;
}
.cta-blob{
  position:absolute;
  width:600px; height:600px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(37,211,102,.2), transparent 70%);
  top:-220px; left:50%;
  transform:translateX(-50%);
  filter:blur(40px);
}
.final-cta-section .container{ position:relative; z-index:2; }

.cta-quote-badge{
  display:inline-flex; align-items:center; gap:.6rem;
  background:rgba(255,255,255,.08);
  border:1px dashed rgba(37,99,235,.5);
  border-radius:100px;
  padding:.5rem 1.2rem;
  color:#fff;
  font-size:.78rem;
  font-weight:700;
  margin-bottom:1.5rem;
}

.final-cta-section h2{
  color:#fff;
  font-size:clamp(1.5rem, 3vw, 2.3rem);
  line-height:1.6;
  max-width:760px;
  margin:0 auto 2.2rem;
}
.btn-cta-whatsapp{
  display:inline-flex; align-items:center; gap:.7rem;
  background:var(--whatsapp);
  color:#fff;
  font-weight:700;
  font-size:1.05rem;
  padding:1.1rem 2.6rem;
  border-radius:100px;
  box-shadow:0 16px 34px rgba(var(--whatsapp-rgb),.4);
  transition:var(--transition);
}
.btn-cta-whatsapp i{ font-size:1.3rem; }
.btn-cta-whatsapp:hover{ transform:translateY(-3px) scale(1.03); box-shadow:0 20px 42px rgba(var(--whatsapp-rgb),.5); color:#fff; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer{ padding:40px 0 20px ; background:var(--footer); color:rgba(255,255,255,.7); }
.footer-brand{ color:#fff; }
.footer-text{ margin-top:1rem; font-size:.92rem; color:rgba(255,255,255,.6); max-width:320px; }
.footer-links{ display:flex; flex-wrap:wrap; gap:1.5rem; justify-content:center; }
.footer-links a{ font-weight:600; font-size:.92rem; color:rgba(255,255,255,.75); transition:var(--transition); }
.footer-links a:hover{ color:#fff; }

.footer-socials{ display:flex; gap:.8rem; justify-content:flex-start; }
.footer-socials a{
  width:42px; height:42px;
  border-radius:12px;
  background:rgba(255,255,255,.08);
  display:flex; align-items:center; justify-content:center;
  transition:var(--transition);
}
.footer-socials a:hover{ background:var(--gold); color:var(--ink); transform:translateY(-4px); }

.site-footer hr{ border-color:rgba(255,255,255,.1); margin:1rem 0 1rem; }
.footer-copy{ text-align:center; font-size:.85rem; color:rgba(255,255,255,.5); }

/* ==========================================================================
   FLOATING WHATSAPP BUTTON
   ========================================================================== */
.whatsapp-float{
  position:fixed; bottom:26px; left:26px;
  width:60px; height:60px;
  background:var(--whatsapp);
  color:#fff;
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:1.7rem;
  box-shadow:0 12px 30px rgba(var(--whatsapp-rgb),.45);
  z-index:1000;
  animation:whatsappPulse 2.4s ease-in-out infinite;
  transition:var(--transition);
}
.whatsapp-float:hover{ color:#fff; transform:scale(1.1); }
@keyframes whatsappPulse{
  0%,100%{ box-shadow:0 12px 30px rgba(var(--whatsapp-rgb),.45); }
  50%{ box-shadow:0 12px 30px rgba(var(--whatsapp-rgb),.2), 0 0 0 12px rgba(var(--whatsapp-rgb),.12); }
}

/* ==========================================================================
   BACK TO TOP
   ========================================================================== */
#backToTop{
  position:fixed; bottom:26px; right:26px;
  width:50px; height:50px;
  border-radius:50%;
  background:var(--navy);
  color:#fff;
  border:none;
  display:flex; align-items:center; justify-content:center;
  font-size:1.05rem;
  box-shadow:var(--shadow-md);
  opacity:0; visibility:hidden;
  transform:translateY(20px);
  transition:var(--transition);
  z-index:1000;
}
#backToTop.show{ opacity:1; visibility:visible; transform:translateY(0); }
#backToTop:hover{ background:var(--gold); color:var(--ink); transform:translateY(-4px); }

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS
   ========================================================================== */
[data-reveal]{
  opacity:0;
  transition:opacity .8s ease, transform .8s cubic-bezier(.4,0,.2,1);
  transition-delay:var(--reveal-delay, 0ms);
}
[data-reveal="fade-up"]{ transform:translateY(40px); }
[data-reveal="fade-left"]{ transform:translateX(-40px); }
[data-reveal="fade-right"]{ transform:translateX(40px); }
[data-reveal="scale"]{ transform:scale(.92); }
[data-reveal].revealed{ opacity:1; transform:translate(0,0) scale(1); }

@media (prefers-reduced-motion: reduce){
  [data-reveal]{ opacity:1 !important; transform:none !important; }
  .hero-blob, .floating-card, .ts-icon, .whatsapp-float, .ai-orb{ animation:none !important; }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width:991.98px){
  .navbar-collapse{
    margin-top:1rem; padding:1.2rem;
    background:#fff; border-radius:var(--radius-md); box-shadow:var(--shadow-md);
  }
  .navbar-nav{ margin-bottom:1rem; }
  .navbar-nav .nav-link::after{ display:none; }
  .btn-nav-cta{ display:inline-flex; justify-content:center; }

  .timeline-track{ grid-template-columns:repeat(2, 1fr); row-gap:3rem; }
  .timeline-track::before{ display:none; }

  .hero-visual{ margin-bottom:2rem; }
  .card-cert, .card-ai{ display:none; }
}

@media (max-width:767.98px){
  .hero-section{ padding:140px 0 70px; }
  .boarding-pass{ padding:1.6rem 1.3rem; }
  .bp-details{ flex-wrap:wrap; }
  .bp-details > div{ flex:1 1 45%; }
  .timeline-track{ grid-template-columns:1fr; }
  .opportunity-banner{ flex-direction:column; text-align:center; }
  .ai-panel{ text-align:center; padding:2.5rem 1.5rem; }
  .whatsapp-float{ width:54px; height:54px; font-size:1.5rem; bottom:18px; left:18px; }
  #backToTop{ width:44px; height:44px; bottom:18px; right:18px; }
  .footer-socials{ justify-content:center; margin-top:1rem; }
  .footer-links{ margin:1.5rem 0; }
}

@media (max-width:575.98px){
  .hero-actions{ flex-direction:column; }
  .btn-hero-primary, .btn-hero-secondary{ width:100%; justify-content:center; }
  .bp-details > div{ flex:1 1 100%; }
}