/* ============================================================
   Fidelis Global Services — Clone of fidelisglobal.flybirdmedia.online
/* ============================================================
   Fidelis Global Services — Clone of fidelisglobal.flybirdmedia.online
   Colors: Navy #0A1628 | Gold #C9A227 | White #FFFFFF
   Fonts: Playfair Display (headings) + DM Sans (body)
   ============================================================ */

/* ── Variables ── */
:root {
  --navy:        #0b1622;
  --navy-mid:    #122030;
  --navy-deep:   #071018;
  --navy-light:  #1a2a3a;
  --red:         #a12c1c;
  --red-hover:   #8a2518;
  --gold:        #C9A227;
  --white:       #FFFFFF;
  --off-white:   #f8f9fa;
  --text-body:   #333333;
  --text-muted:  #666666;
  --border:      #e5e7eb;
  --shadow-sm:   0 2px 10px rgba(0,0,0,0.05);
  --shadow-md:   0 10px 30px rgba(0,0,0,0.1);
  --shadow-lg:   0 20px 50px rgba(0,0,0,0.15);
  --radius:      8px;
  --radius-sm:   4px;
  --transition:  all 0.3s ease;
  --max-width:   1200px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

/* ── Scroll offset for sticky header (~102px) ── */
#home, #services, #countries, #contact {
  scroll-margin-top: 100px;
}
body {
  font-family: 'Roboto', system-ui, sans-serif;
  color: var(--text-body);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
ul { list-style: none; }

/* ── Container ── */
.container {
  width: min(100% - 40px, var(--max-width));
  margin: 0 auto;
}

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  color: var(--navy);
}
h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 900; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; }
h3 { font-size: 1.4rem; font-weight: 700; }
p  { font-size: 1rem; color: var(--text-muted); }

/* ── Eyebrow / Labels ── */
.eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.eyebrow-dark { color: var(--navy); }
.eyebrow-white { color: var(--white); }

/* ── Section Headings ── */
.section-hd { text-align: center; margin-bottom: 56px; }
.section-hd h2 { font-size: 2.5rem; margin-bottom: 16px; color: var(--navy); }
.section-hd p { font-size: 1.1rem; color: var(--text-light); max-width: 600px; margin: 0 auto; }
.section-hd h2, .section-hd p, .section-hd .eyebrow {
  animation: float-soft 7s ease-in-out infinite;
}
.section-hd p { animation-delay: 1s; }
.section-hd .eyebrow { animation-delay: 0.5s; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn-red {
  background: var(--red);
  color: var(--white);
}
.btn-red:hover { background: var(--red-hover); transform: translateY(-2px); box-shadow: 0 5px 15px rgba(161,44,28,0.3); }
.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline-white:hover { background: var(--white); color: var(--navy); }
.btn-card { padding: 10px 20px; font-size: 0.85rem; }
.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
}
.btn-whatsapp:hover { background: #1ebe5a; transform: translateY(-2px); }
.btn-full { width: 100%; justify-content: center; }

/* ── Sections ── */

/* ── Sections ── */
.section { padding: 96px 0; }
.section-white { background: var(--white); }
.section-off   { background: var(--off-white); }
.section-dark  { background: var(--off-white); color: var(--navy); }
.section-dark h2, .section-dark h3 { color: var(--navy); }
.section-dark p, .section-dark .section-hd p { color: var(--text-muted); }
.section-dark .eyebrow-white { color: var(--red); }

/* ── HEADER ── */
.header-top {
  background: var(--navy);
  color: var(--white);
  padding: 8px 0;
  font-size: 0.85rem;
}
.header-top-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-info {
  display: flex;
  gap: 24px;
}
.top-info a {
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.9;
  transition: var(--transition);
}
.top-info a:hover { opacity: 1; }
.top-socials {
  display: flex;
  gap: 16px;
}
.top-socials a { opacity: 0.8; transition: var(--transition); }
.top-socials a:hover { opacity: 1; transform: scale(1.1); }

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}
.brand {
  display: flex;
  align-items: center;
  width: 108px;
  flex: 0 0 auto;
}
.brand-logo {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 72px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.nav a {
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  padding: 120px 0 140px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.85); /* Light overlay for readability */
  z-index: 1;
}
.hero .container {
  position: relative;
  z-index: 2;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
/* ── Animations ── */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.floating {
  animation: float 4s ease-in-out infinite;
}
.floating-delayed-1 { animation-delay: 1s; }
.floating-delayed-2 { animation-delay: 2s; }

@keyframes float-soft {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(5px, -8px); }
}
.float-soft {
  animation: float-soft 8s ease-in-out infinite;
}

.why-us-content h2 { margin-bottom: 24px; color: var(--navy); }
.why-us-content p { color: var(--text-light); margin-bottom: 32px; font-size: 1.05rem; }
.why-us-content h2, .why-us-content p, .why-us-content .eyebrow {
  animation: float-soft 8s ease-in-out infinite;
}
.why-us-content p { animation-delay: 1.5s; }
.why-us-content .eyebrow { animation-delay: 0.75s; }
.hero-text h1 {
  margin-bottom: 24px;
  color: var(--navy);
}
.hero-text h1 span {
  color: var(--red);
}
.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 32px;
  color: var(--text-muted);
}
.hero-text h1, .hero-text p, .hero-text .eyebrow {
  animation: float 5s ease-in-out infinite;
}
.hero-text p { animation-delay: 1s; }
.hero-text .eyebrow { animation-delay: 0.5s; }
.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
}
.hero-stats {
  display: flex;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.hstat strong {
  display: block;
  font-size: 1.8rem;
  color: var(--navy);
  font-family: 'Playfair Display', serif;
}
.hstat span {
  font-size: 0.9rem;
  color: var(--text-muted);
}
.hero-image {
  position: relative;
}
.hero-image img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
/* ── Rating & Features ── */
.hero-rating {
  display: none;
  margin-top: 40px;
  align-items: center;
  gap: 20px;
  background: var(--white);
  padding: 15px 25px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  width: fit-content;
}
.rating-num {
  font-size: 3rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}
.rating-stars {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stars { color: #facc15; font-size: 1.2rem; }
.rating-text { font-size: 0.8rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; }

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.hero-image {
  position: relative;
  z-index: 2;
  animation: float 6s ease-in-out infinite;
}
.hero-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 5px solid var(--white);
}
.hero-image:hover {
  animation-play-state: paused;
  transform: translateY(-10px) scale(1.02);
  transition: var(--transition);
}

/* ── SERVICES ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}
.scard {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}
.scard::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--red);
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}
.scard:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}
.scard:hover::before {
  transform: scaleX(1);
}
.scard-img {
  width: 100%;
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.scard-icon-wrap {
  position: absolute;
  bottom: -25px;
  left: 20px;
  width: 50px;
  height: 50px;
  background: var(--red);
  color: var(--white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: var(--shadow-md);
  z-index: 2;
}
.scard-body {
  padding: 40px 25px 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.scard-body h3 {
  margin-bottom: 12px;
  font-size: 1.3rem;
  color: var(--navy);
}
.scard-body p {
  font-size: 0.95rem;
  margin-bottom: 24px;
  flex: 1;
}
.scard-body a {
  align-self: flex-start;
  color: var(--red);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.scard-body a:hover {
  color: var(--navy);
  transform: translateX(5px);
}

/* ── COUNTRIES ── */
.countries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.country-group + .country-group { margin-top: 60px; }
.country-group-title {
  border-bottom: 2px solid var(--red);
  margin-bottom: 30px;
  padding-bottom: 10px;
}
.country-group-title span {
  color: var(--navy);
  font-size: 1.2rem;
  font-weight: 700;
}
.country-group-title p {
  font-size: 0.95rem;
  color: var(--text-muted);
}
.ccard {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.ccard:hover {
  border-color: var(--red);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.cflag {
  width: 50px;
  height: 35px;
  object-fit: cover;
  border-radius: 2px;
  border: 1px solid var(--border);
}
.ccard-info h3 {
  font-size: 1.1rem;
  margin-bottom: 2px;
}
.ccard-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.countries-grid-compact {
  grid-template-columns: repeat(4, 1fr);
}

/* ── WHY CHOOSE US ── */
.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.why-us-content h2 { margin-bottom: 16px; }
.why-us-content > p { margin-bottom: 28px; }
.trust-list { display: flex; flex-direction: column; gap: 12px; }
.trust-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.6;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.fg { display: flex; flex-direction: column; gap: 6px; }
.fg label { font-size: 0.88rem; font-weight: 600; color: var(--navy); }
.finput {
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--off-white);
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
  color: var(--navy);
}
.finput:focus { border-color: var(--gold); background: var(--white); box-shadow: 0 0 0 3px rgba(201,162,39,0.12); }
.ftextarea { min-height: 120px; resize: vertical; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: 0.8rem; color: var(--text-muted); margin-top: 4px; }

/* Contact Info */
.contact-info-card {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 40px 36px;
  color: var(--white);
}
.contact-info-card h3 { color: var(--white); margin-bottom: 28px; font-size: 1.3rem; }
.ci-items { display: flex; flex-direction: column; gap: 20px; margin-bottom: 28px; }
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-form h3 { margin-bottom: 10px; }
.fg { display: flex; flex-direction: column; gap: 8px; }
.fg label { font-size: 0.9rem; font-weight: 700; color: var(--navy); }
.finput {
  padding: 14px 18px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-size: 1rem;
  transition: var(--transition);
  outline: none;
}
.finput:focus { border-color: var(--red); }
.ftextarea { min-height: 140px; resize: vertical; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.contact-info-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.ci-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 25px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: var(--transition);
}
.ci-card:hover { border-color: var(--red); box-shadow: var(--shadow-md); }
.ci-icon {
  width: 50px;
  height: 50px;
  background: var(--off-white);
  color: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.ci-content h4 { font-size: 1.1rem; margin-bottom: 5px; }
.ci-content p { font-size: 0.95rem; margin: 0; }
.btn-whatsapp-large {
  background: #25D366;
  color: var(--white);
  padding: 18px 30px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
  font-size: 1.1rem;
}
.btn-whatsapp-large:hover { background: #1ebe5a; transform: translateY(-3px); box-shadow: 0 10px 20px rgba(37,211,102,0.3); }

/* ── FOOTER ── */
.footer {
  background: var(--navy);
  color: var(--white);
  padding: 80px 0 30px;
}
.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}
.footer-brand .brand {
  background: rgba(255,255,255,0.98);
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(0,0,0,0.14);
  padding: 12px 14px;
  width: 132px;
  margin-bottom: 20px;
}
.footer-brand .brand-logo {
  max-height: 86px;
}
.footer-brand p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}
.footer-col h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
  color: var(--white);
  font-family: 'Playfair Display', serif;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--red);
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col ul li a {
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
  font-size: 0.95rem;
}
.footer-col ul li a:hover {
  color: var(--white);
  transform: translateX(5px);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 30px;
  margin-top: 60px;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
}
.footer-bottom-inner a {
  color: var(--white);
  font-weight: 600;
}
.page-hero {
  position: relative;
  padding: 120px 0 80px;
  background: var(--navy-deep);
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: center;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.25;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(18,62,114,0.78) 0%, rgba(38,98,164,0.58) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.page-hero-content h1 { color: var(--white); margin: 16px 0 20px; }
.page-hero-content p { font-size: 1.05rem; color: rgba(219,224,244,0.8); margin-bottom: 32px; }
.page-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── PROCESS ── */
.process-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.process-track::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(to right, var(--gold) 0%, rgba(201,162,39,0.2) 100%);
  z-index: 0;
}
.pstep {
  text-align: center;
  position: relative;
  z-index: 1;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 20px;
  box-shadow: var(--shadow-sm);
}
.pnum {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  border: 3px solid var(--gold-pale);
}
.pstep h3 { font-size: 1rem; margin-bottom: 8px; }
.pstep p { font-size: 0.85rem; }

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(201,162,39,0.06);
}
.cta-banner h2 { color: var(--white); margin-bottom: 14px; }
.cta-banner p { color: rgba(219,224,244,0.75); max-width: 560px; margin: 0 auto 32px; font-weight: 700; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-actions .btn { font-weight: 700; }

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  transition: var(--transition);
  animation: wa-pulse 2.5s infinite;
}
.wa-float:hover { transform: scale(1.10); }
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.45); }
  50%        { box-shadow: 0 6px 40px rgba(37,211,102,0.65); }
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.page-hero-content h1 { color: var(--white); margin: 16px 0 20px; }
.page-hero-content p { font-size: 1.05rem; color: rgba(219,224,244,0.8); margin-bottom: 32px; }
.page-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── PROCESS ── */
.process-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.process-track::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(to right, var(--gold) 0%, rgba(201,162,39,0.2) 100%);
  z-index: 0;
}
.pstep {
  text-align: center;
  position: relative;
  z-index: 1;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 20px;
  box-shadow: var(--shadow-sm);
}
.pnum {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  border: 3px solid var(--gold-pale);
}
.pstep h3 { font-size: 1rem; margin-bottom: 8px; }
.pstep p { font-size: 0.85rem; }

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(201,162,39,0.06);
}
.cta-banner h2 { color: var(--white); margin-bottom: 14px; }
.cta-banner p { color: rgba(219,224,244,0.75); max-width: 560px; margin: 0 auto 32px; font-weight: 700; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-actions .btn { font-weight: 700; }

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  transition: var(--transition);
  animation: wa-pulse 2.5s infinite;
}
.wa-float:hover { transform: scale(1.10); }
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.45); }
  50%        { box-shadow: 0 6px 40px rgba(37,211,102,0.65); }
}

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }
.reveal-delay-4 { transition-delay: 0.48s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero-text { max-width: 800px; margin: 0 auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-image { max-width: 600px; margin: 0 auto; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .countries-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1.5fr 1fr; }
}

@media (max-width: 768px) {
  .header-top { display: none; }
  .nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px;
    gap: 10px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
  }
  .nav.open { display: flex; }
  .nav a {
    padding: 12px;
    font-size: 1rem;
    border-radius: var(--radius-sm);
  }
  .nav a:hover { background: var(--off-white); }
  .nav-toggle { display: flex; }
  .action-group { display: none; }
  .brand { width: 88px; }
  .brand-logo { max-height: 58px; }

  .hero { padding: 60px 0; min-height: auto; }
  .hstat strong { font-size: 1.5rem; }

  .why-us-grid { grid-template-columns: 1fr; }
  .why-us-stats { grid-template-columns: 1fr 1fr; }

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

  .footer-main { grid-template-columns: 1fr 1fr; gap: 30px; }
}

@media (max-width: 480px) {
  .services-grid, .countries-grid, .footer-main { grid-template-columns: 1fr; }
  .why-us-stats { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.2rem; }
  .footer-bottom-inner { flex-direction: column; gap: 10px; text-align: center; }
}
