﻿*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* New brand colors: #009E54 green + #F9D932 yellow */
  --logo-grad: linear-gradient(135deg, #009E54 0%, #F9D932 100%);
  --color-green: #009E54;
  --color-yellow: #F9D932;
  --color-orange: #009E54;
  --color-red: #F9D932;
  --color-pink: #009E54;
  --color-purple: #F9D932;
  --color-blue: #009E54;
  --color-linkedin: #0077b5;
  --color-twitter: #1da1f2;
  --color-facebook: #1877f2;
  --color-whatsapp: #25D366;
  --neutral-50: #fafafa;
  --neutral-100: #f5f5f5;
  --neutral-200: #e5e5e5;
  --neutral-400: #a3a3a3;
  --neutral-500: #737373;
  --neutral-600: #525252;
  --neutral-800: #262626;
  --neutral-900: #171717;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--neutral-50);
  color: var(--neutral-900);
  min-height: 100vh;
  overflow-x: hidden;
}

.sr-only {
  position: absolute; left: -9999px; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap;
}
.sr-only:focus {
  position: fixed; left: 1rem; top: 1rem; width: auto; height: auto;
  clip: auto; white-space: normal; z-index: 9999;
  background: #000; color: #fff; padding: .75rem 1.5rem;
  border-radius: 12px; font-weight: 900; text-transform: uppercase;
  letter-spacing: .15em; text-decoration: none;
}

/* ─── NAV ─── */
nav.main-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: #0B1231;
  box-shadow: 0 4px 16px rgba(0,0,0,.3);
}
.nav-inner {
  max-width: 80rem; margin: auto; padding: 0 1rem;
  display: flex; justify-content: space-between; align-items: center;
  height: 5rem;
}
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img { height: 3.2rem; width: auto; max-width: 200px; object-fit: contain; }
.nav-desktop { display: flex; align-items: center; gap: .75rem; }
/* Call Us button in nav */
.nav-call {
  display: inline-flex; align-items: center; gap: .5rem;
  color: #fff; text-decoration: none; font-weight: 700; font-size: .9rem;
  padding: .55rem 1.2rem; border: 2px solid rgba(255,255,255,.35);
  border-radius: .45rem; transition: border-color .2s, background .2s;
  white-space: nowrap;
}
.nav-call:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.nav-call svg { flex-shrink: 0; }
/* WhatsApp button in nav */
.nav-wa {
  display: inline-flex; align-items: center; gap: .5rem;
  background: #25D366; color: #fff; text-decoration: none;
  font-weight: 700; font-size: .9rem;
  padding: .6rem 1.25rem; border-radius: .45rem;
  transition: opacity .2s; white-space: nowrap;
  box-shadow: 0 2px 12px rgba(37,211,102,.35);
}
.nav-wa:hover { opacity: .88; }
.nav-wa svg { flex-shrink: 0; }
.hamburger {
  display: none; background: none; border: none;
  cursor: pointer; padding: .5rem; color: #fff;
}
.mobile-menu {
  display: none; flex-direction: column; gap: 1rem;
  padding: 1.5rem; border-top: 1px solid rgba(255,255,255,.1);
  background: #0B1231;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  display: block; font-size: 1.125rem; font-weight: 900;
  text-transform: uppercase; letter-spacing: .1em; color: #fff; text-decoration: none;
}
.mobile-menu .mob-wa {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  background: #25D366; color: #fff !important;
  padding: 1rem; border-radius: .75rem; font-weight: 900;
}
@media (max-width: 768px) { .nav-desktop { display: none; } .hamburger { display: flex; } }

/* ─── HERO — Dubai skyline bg (swap URL for your own hero-dubai.jpg on the server) ─── */
#hero {
  position: relative;
  padding-top: 8rem;
  padding-bottom: 5rem;
  padding-left: 1rem;
  padding-right: 1rem;
  background-color: #0a1628;
  background-image:
    linear-gradient(115deg, rgba(11, 18, 49, 0.94) 0%, rgba(11, 18, 49, 0.78) 38%, rgba(11, 18, 49, 0.42) 72%, rgba(0, 0, 0, 0.35) 100%),
    url("images/banner.jpeg");
  background-size: cover;
  background-position: center 28%;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}
@media (min-width: 769px) {
  #hero { min-height: min(90vh, 52rem); }
}
.hero-grid {
  max-width: 80rem; margin: auto;
  width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
}
@media (max-width: 1024px) { .hero-grid { grid-template-columns: 1fr; } }
.section-badge {
  display: inline-block; background: var(--logo-grad); color: #fff;
  font-size: .625rem; font-weight: 900; text-transform: uppercase;
  letter-spacing: .2em; padding: .375rem 1rem; border-radius: 9999px; margin-bottom: 1.5rem;
}
h1.hero-h1 {
  font-size: clamp(3rem, 8vw, 4.5rem); font-weight: 900; line-height: .9;
  text-transform: uppercase; letter-spacing: -.04em; margin-bottom: 2rem;
  color: #fff;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}
.hero-h1 .highlight { color: #F9D932; display: block; text-shadow: 0 2px 20px rgba(0, 0, 0, 0.45); }
.hero-desc {
  font-size: 1.125rem; color: rgba(255, 255, 255, 0.9); margin-bottom: 2.5rem;
  max-width: 32rem; line-height: 1.625; font-weight: 500;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4);
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 1rem; position: relative; z-index: 10; }
.btn-primary {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: 1.25rem 2.5rem; background: #F9D932; color: #0B1231;
  border-radius: .75rem; text-decoration: none; font-weight: 800;
  font-size: 1rem; transition: opacity .2s;
  box-shadow: 0 4px 20px rgba(249,217,50,.3);
}
.btn-primary:hover { opacity: .88; }
.btn-hero-wa {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: 1.25rem 2.5rem; background: #25D366; color: #fff;
  border-radius: .75rem; text-decoration: none; font-weight: 800;
  font-size: 1rem; transition: opacity .2s;
  box-shadow: 0 4px 20px rgba(37,211,102,.3);
}
.btn-hero-wa:hover { opacity: .88; }
.btn-secondary { display: none; }
.hero-form-col { position: relative; z-index: 1; }
.hero-form-card {
  background: #fff; border-radius: 1.5rem; padding: 1.75rem 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,.15);
  border: 1px solid var(--neutral-200);
}
.hero-form-eyebrow {
  font-size: .625rem; font-weight: 900; text-transform: uppercase;
  letter-spacing: .15em; color: #009E54; margin-bottom: .35rem;
}
.hero-form-title {
  font-size: 1.35rem; font-weight: 900; color: #0B1231;
  letter-spacing: -.02em; margin-bottom: 1.25rem; line-height: 1.2;
}
.hero-form-card .form-group { margin-bottom: .9rem; }
.hero-form-card label {
  display: block; font-size: .55rem; font-weight: 900;
  text-transform: uppercase; letter-spacing: .15em;
  color: var(--neutral-500); margin-bottom: .35rem;
}
.hero-form-card input,
.hero-form-card select,
.hero-form-card textarea {
  width: 100%; padding: .75rem 1rem; border-radius: .75rem;
  border: 2px solid var(--neutral-100); background: var(--neutral-50);
  font-family: 'Inter', sans-serif; font-size: .9rem; font-weight: 500;
  outline: none; transition: border-color .2s; color: var(--neutral-900);
}
.hero-form-card input:focus,
.hero-form-card select:focus,
.hero-form-card textarea:focus { border-color: #0B1231; }
.hero-form-card textarea { min-height: 72px; resize: vertical; }
.hero-form-card .btn-hero-submit {
  width: 100%; margin-top: .25rem; padding: 1rem; background: #0B1231; color: #fff;
  border: none; border-radius: .75rem; cursor: pointer; font-family: 'Inter', sans-serif;
  font-weight: 900; font-size: .7rem; text-transform: uppercase; letter-spacing: .12em;
  transition: background .2s;
}
.hero-form-card .btn-hero-submit:hover { background: #1a2550; }
.hero-form-card .err-msg { margin-top: .25rem; }
.phone-row {
  display: grid;
  grid-template-columns: 145px 1fr;
  gap: .6rem;
  align-items: end;
}
.phone-row .form-group {
  margin-bottom: .9rem;
}
@media (max-width: 560px) {
  .phone-row { grid-template-columns: 1fr; gap: 0; }
}
.hero-form-thanks {
  display: none; text-align: center; padding: 1.5rem .5rem;
}
.hero-form-thanks.show { display: block; }
.hero-form-thanks svg { width: 3rem; height: 3rem; color: #16a34a; margin: 0 auto .75rem; }
.hero-form-thanks h4 {
  font-size: 1.15rem; font-weight: 900; color: #0B1231; margin-bottom: .5rem;
}
.hero-form-thanks p { font-size: .875rem; color: var(--neutral-600); line-height: 1.5; }

/* ─── SERVICES ─── */
#services { padding: 5rem 1rem; background: #fff; }
.section-center { text-align: center; max-width: 48rem; margin: 0 auto 3rem; }
.section-center h2 {
  font-size: clamp(1.875rem, 5vw, 2.5rem); font-weight: 900;
  color: #0B1231; letter-spacing: -.02em; margin-bottom: .5rem;
  position: relative; display: inline-block;
}
.section-center h2::before,
.section-center h2::after {
  content: ''; position: absolute; top: 50%; width: 60px; height: 2px;
  background: #cbd5e1; transform: translateY(-50%);
}
.section-center h2::before { right: calc(100% + 1rem); }
.section-center h2::after  { left:  calc(100% + 1rem); }
.section-center p { color: var(--neutral-600); font-weight: 500; }

/* New card style — Image 2 inspired */
.services-grid {
  max-width: 72rem; margin: auto;
  display: flex; flex-wrap: wrap; gap: 1.5rem; justify-content: center;
}
.service-card {
  flex: 1 1 320px; max-width: 500px;
  border-radius: 1rem; overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
  transition: transform .3s, box-shadow .3s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,.12); }
.svc-header {
  background: #0B1231; padding: 1rem 1.5rem;
  display: flex; align-items: center; gap: .75rem;
}
.svc-header svg { color: #F9D932; flex-shrink: 0; }
.svc-header h3 {
  color: #fff; font-size: 1rem; font-weight: 700;
  letter-spacing: .01em; margin: 0;
}
.svc-body { background: #fff; padding: 1.5rem; display: flex; gap: 1.5rem; align-items: flex-start; }
.svc-list { flex: 1; list-style: none; }
.svc-list li {
  display: flex; align-items: flex-start; gap: .6rem;
  font-size: .9rem; color: #334155; font-weight: 500;
  margin-bottom: .75rem; line-height: 1.4;
}
.svc-list li::before {
  content: '✓'; color: #009E54; font-weight: 900;
  font-size: .85rem; margin-top: .05rem; flex-shrink: 0;
}
@media (max-width: 640px) { .service-card { flex: 1 1 100%; max-width: 100%; } }

/* ─── WHY CHOOSE US (below services) ─── */
#why-choose {
  padding: 5rem 1rem;
  background: #f7f8f6;
}
#why-choose .section-center { margin-bottom: 2.75rem; }
#why-choose .why-choose-grid {
  max-width: 72rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.35rem;
  align-items: stretch;
}
#why-choose .wcu-card {
  background: #fff;
  border-radius: 1rem;
  padding: 2rem 1.35rem;
  text-align: center;
  box-shadow: 0 4px 22px rgba(11, 18, 49, 0.07);
  border: 1px solid #e8eaef;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
#why-choose .wcu-card:hover {
  box-shadow: 0 14px 36px rgba(11, 18, 49, 0.11);
  transform: translateY(-4px);
}
#why-choose .wcu-icon-wrap {
  width: 4.5rem;
  height: 4.5rem;
  margin: 0 auto 1.35rem;
  border-radius: 50%;
  background: #0B1231;
  display: flex;
  align-items: center;
  justify-content: center;
}
#why-choose .wcu-icon-wrap svg {
  width: 1.85rem;
  height: 1.85rem;
  color: #fff;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}
#why-choose .wcu-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #0B1231;
  margin: 0;
  line-height: 1.35;
  letter-spacing: -0.02em;
}
@media (max-width: 900px) {
  #why-choose .why-choose-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  #why-choose .why-choose-grid { grid-template-columns: 1fr; max-width: 22rem; }
}

/* ─── TESTIMONIALS ─── */
#testimonials { padding: 6rem 1rem; background: var(--neutral-50); overflow: hidden; }
.testi-hd { text-align: center; margin-bottom: 4rem; }
.testi-hd h2 {
  font-size: clamp(1.875rem, 5vw, 3rem); font-weight: 900;
  text-transform: uppercase; letter-spacing: -.04em; margin-bottom: 1rem;
}
.testi-hd p {
  font-size: .625rem; font-weight: 900; text-transform: uppercase;
  letter-spacing: .1em; color: var(--neutral-500);
}
.testi-wrap { max-width: 56rem; margin: auto; position: relative; }
.testi-card {
  background: #fff; border-radius: 3rem; padding: 2rem 4rem;
  box-shadow: 0 20px 40px rgba(0,0,0,.07); border: 1px solid var(--neutral-100);
  display: flex; gap: 2.5rem; align-items: center;
  transition: opacity .4s, transform .4s;
}
@media (max-width: 768px) { .testi-card { flex-direction: column; padding: 2rem; } }
.testi-avatar {
  flex-shrink: 0; width: 8rem; height: 8rem; border-radius: 1.5rem;
  overflow: hidden; border: 4px solid var(--neutral-50);
  box-shadow: 0 4px 16px rgba(0,0,0,.1);
}
.testi-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testi-body { flex: 1; }
.quote-svg { width: 2.5rem; height: 2.5rem; color: var(--neutral-200); margin-bottom: 1.5rem; }
.testi-body blockquote {
  font-size: 1.25rem; font-style: italic; font-weight: 500;
  color: var(--neutral-800); line-height: 1.625; margin-bottom: 2rem;
}
.testi-name { font-size: 1.125rem; font-weight: 900; text-transform: uppercase; letter-spacing: -.02em; }
.testi-role {
  font-size: .875rem; font-weight: 900; text-transform: uppercase;
  letter-spacing: .1em; color: var(--color-blue); margin-top: .25rem;
}
.testi-controls { display: flex; justify-content: flex-end; gap: 1rem; margin-top: 2.5rem; }
.testi-btn {
  width: 3rem; height: 3rem; border-radius: 50%; border: 1px solid var(--neutral-200);
  background: #fff; display: flex; align-items: center; justify-content: center;
  cursor: pointer; box-shadow: 0 1px 3px rgba(0,0,0,.06);
  transition: background .2s, color .2s;
}
.testi-btn:hover { background: #000; color: #fff; }
.testi-dots { display: flex; justify-content: center; gap: .5rem; margin-top: 2rem; }
.testi-dot {
  height: .375rem; border-radius: 9999px; background: var(--neutral-200);
  border: none; cursor: pointer; width: .5rem;
  transition: width .3s, background .3s;
}
.testi-dot.active { width: 2rem; background: var(--logo-grad); }

/* ─── ABOUT / AUTHORIZED PARTNERS CAROUSEL ─── */
#about {
  padding: 6rem 1rem;
  background: #000;
  color: #fff;
  overflow: hidden;
  position: relative;
}
#about .about-wrap {
  max-width: 80rem;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
#about h2 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
  text-align: center;
}
#about .about-sub {
  text-align: center;
  color: rgba(255,255,255,.72);
  margin-bottom: 2.5rem;
  font-weight: 500;
}
.partners-carousel {
  overflow: hidden;
  border-radius: 1.25rem;
  border: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  backdrop-filter: blur(2px);
  padding: 1rem 0;
}
.partners-track {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: max-content;
  animation: partnersScroll 30s linear infinite;
  will-change: transform;
}
.partner-slide {
  width: 220px;
  height: 110px;
  border-radius: .85rem;
  background: #fff;
  border: 1px solid #e7eaf0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: .8rem;
  flex: 0 0 auto;
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
}
.partner-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
#about:hover .partners-track { animation-play-state: paused; }
@keyframes partnersScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (max-width: 768px) {
  .partner-slide { width: 180px; height: 92px; }
}
/* ─── CONTACT ─── */
#contact { padding: 6rem 1rem; background: #fff; }
.contact-card {
  max-width: 80rem; margin: auto; background: #000; color: #fff;
  border-radius: 3rem; padding: 5rem; position: relative; overflow: hidden;
}
@media (max-width: 768px) { .contact-card { padding: 2.5rem 1.5rem; } }
.contact-deco {
  position: absolute; top: -6rem; right: -6rem; width: 20rem; height: 20rem;
  border-radius: 50%; background: var(--logo-grad); opacity: .1;
}
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
  position: relative; z-index: 1;
}
@media (max-width: 1024px) { .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; } }
.contact-card h2 {
  font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900;
  text-transform: uppercase; letter-spacing: -.04em; margin-bottom: 2rem;
}
.contact-desc { color: var(--neutral-400); font-size: 1.125rem; font-weight: 500; line-height: 1.625; margin-bottom: 3rem; }
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.ci-row { display: flex; align-items: center; gap: 1.5rem; }
.ci-icon {
  width: 3rem; height: 3rem; border-radius: .75rem; background: rgba(255,255,255,.05);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.ci-icon svg { width: 1.5rem; height: 1.5rem; }
.ci-row span { font-weight: 700; }
.form-box { background: #fff; border-radius: 2.5rem; padding: 2.5rem; color: #000; }
.form-group { margin-bottom: 1.25rem; }
label {
  display: block; font-size: .625rem; font-weight: 900;
  text-transform: uppercase; letter-spacing: .2em;
  color: var(--neutral-400); margin-bottom: .5rem;
}
input, select, textarea {
  width: 100%; padding: 1rem 1.5rem; border-radius: 1rem;
  border: 2px solid var(--neutral-100); background: var(--neutral-50);
  font-family: 'Inter', sans-serif; font-size: .95rem; font-weight: 500;
  outline: none; transition: border-color .2s; color: var(--neutral-900);
}
input:focus, select:focus, textarea:focus { border-color: #000; }
.input-error { border-color: #ef4444 !important; background: #fef2f2 !important; }
.err-msg {
  display: none; color: #ef4444; font-size: .625rem;
  font-weight: 900; text-transform: uppercase; letter-spacing: .1em; margin-top: .4rem;
}
.err-msg.show { display: flex; align-items: center; gap: .25rem; }
.btn-submit {
  width: 100%; padding: 1.25rem; background: #000; color: #fff; border: none;
  border-radius: 1rem; cursor: pointer; font-family: 'Inter', sans-serif;
  font-weight: 900; font-size: .75rem; text-transform: uppercase; letter-spacing: .2em;
  display: flex; align-items: center; justify-content: center; gap: .75rem;
  box-shadow: 0 20px 25px -5px rgba(0,0,0,.15); transition: background .2s;
}
.btn-submit:hover { background: #262626; }
.btn-submit:disabled { opacity: .5; cursor: not-allowed; }
.success-box { display: none; text-align: center; padding: 3rem 1rem; }
.success-box.show { display: block; }
.success-icon {
  width: 6rem; height: 6rem; border-radius: 50%; background: #dcfce7; color: #16a34a;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 2rem;
}
.success-icon svg { width: 3rem; height: 3rem; }
.success-box h3 {
  font-size: 2rem; font-weight: 900; text-transform: uppercase;
  letter-spacing: -.04em; margin-bottom: .75rem;
}
.success-box p { color: var(--neutral-500); font-weight: 500; margin-bottom: 2rem; }
.btn-reset {
  background: none; border: none; cursor: pointer; font-weight: 900;
  font-size: .875rem; text-transform: uppercase; letter-spacing: .1em; text-decoration: underline;
}

/* ─── FOOTER ─── */
/* ─── CTA BANNER ─── */
.cta-banner {
  background: #0B1231; text-align: center;
  padding: 4rem 1rem; position: relative; overflow: hidden;
}
.cta-banner::before, .cta-banner::after {
  content: ''; position: absolute; top: 50%; width: 30%; height: 1px;
  background: rgba(255,255,255,.15);
}
.cta-banner::before { left: 2%; }
.cta-banner::after  { right: 2%; }
.cta-banner h2 {
  color: #fff; font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 800; margin-bottom: 2rem; letter-spacing: -.01em;
}
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-call {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .9rem 2rem; border: 2px solid #fff; border-radius: .6rem;
  color: #fff; font-weight: 700; font-size: .95rem; text-decoration: none;
  transition: background .2s, color .2s;
}
.btn-call:hover { background: #fff; color: #0B1231; }
.btn-wa {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .9rem 2rem; background: #25D366; border: 2px solid #25D366;
  border-radius: .6rem; color: #fff; font-weight: 700; font-size: .95rem;
  text-decoration: none; transition: opacity .2s;
}
.btn-wa:hover { opacity: .88; }

/* ─── FOOTER ─── */
footer {
  padding: 2rem 1rem 2.5rem; background: #0a0f2a;
  border-top: 1px solid rgba(255,255,255,.08); text-align: center;
}
.footer-logo {
  display: inline-flex; align-items: center; margin-bottom: 1rem;
  text-decoration: none; color: inherit;
}
.footer-logo img { height: 2.5rem; width: auto; max-width: 160px; object-fit: contain; }
.footer-nav { display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; margin-bottom: .75rem; }
.footer-nav a {
  color: rgba(255,255,255,.6); text-decoration: none; font-size: .8rem;
  font-weight: 500; transition: color .2s;
}
.footer-nav a:hover { color: #fff; }
footer .copy { color: rgba(255,255,255,.5); font-size: .75rem; margin-bottom: .4rem; }
footer .copy-email { color: rgba(255,255,255,.5); font-size: .75rem; margin-bottom: 1.25rem; }
footer .copy-email a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
footer .copy-email a:hover { color: #fff; }
.social-row { display: flex; justify-content: center; gap: .6rem; }
.social-btn {
  width: 2.25rem; height: 2.25rem; border-radius: 50%;
  background: rgba(255,255,255,.12); color: rgba(255,255,255,.8);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; transition: background .2s, color .2s;
}
.social-btn:hover { background: var(--logo-grad); color: #fff; }

/* ─── FLOATING ─── */
.whatsapp-fab {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 50;
  width: 4rem; height: 4rem; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; box-shadow: 0 8px 25px rgba(37,211,102,.4);
  transition: transform .2s; overflow: visible;
}
.whatsapp-fab:hover { transform: scale(1.1); }
.whatsapp-fab svg { width: 2rem; height: 2rem; }
.whatsapp-tooltip {
  position: absolute; right: 110%; top: 50%; transform: translateY(-50%);
  background: #fff; color: #000; padding: .4rem 1rem; border-radius: .75rem;
  font-size: .625rem; font-weight: 900; text-transform: uppercase; letter-spacing: .1em;
  white-space: nowrap; box-shadow: 0 4px 16px rgba(0,0,0,.12);
  opacity: 0; pointer-events: none; transition: opacity .2s;
}
.whatsapp-fab:hover .whatsapp-tooltip { opacity: 1; }
/* Call FAB */
.call-fab {
  position: fixed; bottom: 7rem; right: 2rem; z-index: 50;
  width: 4rem; height: 4rem; border-radius: 50%;
  background: #009E54; color: #fff;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; box-shadow: 0 8px 25px rgba(0,158,84,.4);
  transition: transform .2s; overflow: visible;
}
.call-fab:hover { transform: scale(1.1); }
.call-fab svg { width: 2rem; height: 2rem; }
.call-tooltip {
  position: absolute; right: 110%; top: 50%; transform: translateY(-50%);
  background: #fff; color: #000; padding: .4rem 1rem; border-radius: .75rem;
  font-size: .625rem; font-weight: 900; text-transform: uppercase; letter-spacing: .1em;
  white-space: nowrap; box-shadow: 0 4px 16px rgba(0,0,0,.12);
  opacity: 0; pointer-events: none; transition: opacity .2s;
}
.call-fab:hover .call-tooltip { opacity: 1; }
.back-top {
  position: fixed; bottom: 12rem; right: 2rem; z-index: 50;
  width: 3rem; height: 3rem; border-radius: 50%;
  background: #fff; border: 1px solid var(--neutral-100);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; box-shadow: 0 10px 15px -3px rgba(0,0,0,.1);
  opacity: 0; transform: translateY(20px); pointer-events: none;
  transition: opacity .3s, transform .3s, background .2s;
}
.back-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-top:hover { background: var(--neutral-50); }
.back-top svg { width: 1.25rem; height: 1.25rem; }

/* ─── POPUP ─── */
.popup-overlay {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(0,0,0,.6); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center; padding: 1rem;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.popup-overlay.open { opacity: 1; pointer-events: auto; }
.popup-card {
  background: #fff; border-radius: 3rem; max-width: 32rem; width: 100%;
  overflow: hidden; box-shadow: 0 25px 50px -12px rgba(0,0,0,.4);
  position: relative; transform: scale(.9) translateY(20px); transition: transform .3s;
}
.popup-overlay.open .popup-card { transform: scale(1) translateY(0); }
.popup-header {
  height: 8rem; background: var(--logo-grad);
  display: flex; align-items: center; justify-content: center; color: #fff;
}
.popup-header svg { width: 3rem; height: 3rem; }
.popup-body { padding: 2.5rem; text-align: center; }
.popup-body h3 {
  font-size: 1.875rem; font-weight: 900; text-transform: uppercase;
  letter-spacing: -.04em; margin-bottom: 1rem;
}
.popup-body p { color: var(--neutral-500); font-weight: 500; line-height: 1.625; margin-bottom: 2rem; }
.btn-download {
  width: 100%; padding: 1.25rem; border: none; cursor: pointer;
  background: var(--logo-grad); color: #fff; border-radius: 1rem;
  font-family: 'Inter', sans-serif; font-weight: 900; font-size: .875rem;
  text-transform: uppercase; letter-spacing: .2em;
  display: flex; align-items: center; justify-content: center; gap: .75rem;
  box-shadow: 0 4px 20px rgba(0,0,0,.1); transition: opacity .2s;
}
.btn-download:hover { opacity: .9; }
.popup-note { font-size: .625rem; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; color: var(--neutral-400); margin-top: 1rem; }
.popup-close {
  position: absolute; top: 1.5rem; right: 1.5rem; background: none; border: none;
  cursor: pointer; color: var(--neutral-400); transition: color .2s; z-index: 10;
}
.popup-close:hover { color: #000; }
.popup-close svg { width: 1.5rem; height: 1.5rem; }

@keyframes spin { to { transform: rotate(360deg); } }
.spin { animation: spin .7s linear infinite; }

/* ══════════════════════════════════
   RESPONSIVE — MOBILE FIRST
══════════════════════════════════ */

/* Hero section mobile */
@media (max-width: 768px) {
  #hero { padding-top: 6rem; padding-bottom: 3rem; }
  h1.hero-h1 { font-size: 2.5rem; }
  .hero-desc { font-size: 1rem; }
  .hero-btns { flex-direction: column; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; padding: 1rem 1.5rem; }
  .hero-form-col { margin-bottom: 2rem; }
  .hero-form-col .hero-form-card { padding: 1.35rem 1.15rem; }
}

/* Testimonials mobile */
@media (max-width: 768px) {
  .testi-card { flex-direction: column; padding: 2rem 1.5rem; border-radius: 2rem; text-align: center; }
  .testi-avatar { width: 6rem; height: 6rem; margin: 0 auto; }
  .testi-body blockquote { font-size: 1rem; }
  .testi-controls { justify-content: center; }
  .quote-svg { margin: 0 auto 1rem; }
}

/* About partners mobile */
@media (max-width: 768px) {
  #about h2 { font-size: 2rem; margin-bottom: 1rem; }
  #about .about-sub { margin-bottom: 1.5rem; }
}

/* Contact mobile */
@media (max-width: 768px) {
  #contact h2 { font-size: 2rem; }
  .contact-desc { font-size: 1rem; }
  .form-box { padding: 1.5rem; border-radius: 1.5rem; }
}

/* Section padding mobile */
@media (max-width: 768px) {
  #services, #why-choose, #testimonials, #about, #blog, #contact { padding: 4rem 1rem; }
  .section-center { margin-bottom: 3rem; }
  .section-center h2 { font-size: 2rem; }
}

/* Footer mobile */
@media (max-width: 768px) {
  footer { padding: 3rem 1rem; }
  .footer-nav { gap: 1.5rem; flex-wrap: wrap; justify-content: center; }
}

/* Nav mobile refinements */
@media (max-width: 768px) {
  .nav-inner { height: 4rem; }
  .nav-logo img { height: 2.5rem; }
}

/* Small phones */
@media (max-width: 400px) {
  h1.hero-h1 { font-size: 2rem; }
  .contact-card { padding: 2rem 1rem; border-radius: 1.5rem; }
}

/* Tablet fixes */
@media (min-width: 769px) and (max-width: 1023px) {
  .hero-grid { gap: 2rem; }
  h1.hero-h1 { font-size: 3rem; }
  .contact-card { padding: 3rem 2rem; }
  
}

/* WhatsApp & back-to-top on small screens */
@media (max-width: 480px) {
  .whatsapp-fab { width: 3rem; height: 3rem; bottom: 1rem; right: 1rem; }
  .whatsapp-fab svg { width: 1.5rem; height: 1.5rem; }
  .back-top { bottom: 5.5rem; right: 1rem; }
}
