/* ============================================================
   styles.css — eWebPro Shared Styles
   ============================================================ */

:root {
  --navy:       #0B1D3A;
  --blue:       #1A6BFF;
  --blue-dark:  #1558D6;
  --white:      #FFFFFF;
  --off-white:  #F8FAFC;
  --gray-100:   #F1F5F9;
  --gray-300:   #CBD5E1;
  --gray-500:   #64748B;
  --gray-600:   #475569;
  --text:       #1E293B;
  --transition: 0.2s ease;
  --radius:     10px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

h1, h2 {
  font-family: 'Syne', system-ui, sans-serif;
  line-height: 1.2;
  font-weight: 700;
}

h3, h4 {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 500;
  line-height: 1.3;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ── Utilities ─────────────────────────────────────────── */
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header h2 {
  font-size: clamp(28px, 4vw, 40px);
  color: var(--navy);
  margin-bottom: 12px;
}

.section-header p {
  font-size: 17px;
  color: var(--gray-600);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ── Buttons ───────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: var(--white);
  padding: 13px 26px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(26, 107, 255, 0.28);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  padding: 12px 26px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  border: 2px solid rgba(255, 255, 255, 0.38);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
}

.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.07);
}

/* ── Trust Badges ──────────────────────────────────────── */
.trust-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 36px;
  justify-content: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
}

.badge svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ── Navigation ────────────────────────────────────────── */
header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--navy);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  display: flex;
  align-items: center;
  background: var(--white);
  border-radius: 7px;
  padding: 4px 10px;
  flex-shrink: 0;
}

.nav-logo {
  height: 32px;
  width: auto;
  display: block;
}

.footer-logo-img {
  height: 38px;
  width: auto;
  display: block;
  background: var(--white);
  padding: 4px 10px;
  border-radius: 7px;
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: #FFFFFF;
  transition: color var(--transition);
}

.nav-links a:hover,
.nav-links a.active { color: var(--white); }

.nav-cta {
  background: var(--blue) !important;
  color: var(--white) !important;
  padding: 8px 20px;
  border-radius: 7px;
  font-weight: 600 !important;
  transition: background var(--transition), transform var(--transition) !important;
}

.nav-cta:hover {
  background: var(--blue-dark) !important;
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 6px;
  line-height: 1;
}

/* ── Page Hero (inner pages) ───────────────────────────── */
.page-hero {
  background: var(--navy);
  padding: 80px 24px 72px;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(30px, 5vw, 50px);
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 18px;
  color: #FFFFFF;
  font-weight: 400;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ── Footer ────────────────────────────────────────────── */
footer {
  background: var(--navy);
  padding: 52px 24px 28px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.footer-logo {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
}

.footer-logo span { color: var(--blue); }

.footer-tagline {
  font-size: 14px;
  color: #FFFFFF;
  font-weight: 400;
  font-style: italic;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 6px;
}

.footer-links a {
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 400;
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--white); }

.footer-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 400;
  margin-top: 8px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  width: 100%;
  text-align: center;
}

/* ── WhatsApp Float ────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  background: #25D366;
  color: var(--white);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-float:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg { width: 30px; height: 30px; }

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 768px) {
  h1 { font-size: clamp(1.6rem, 8vw, 2.2rem); }

  .hamburger { display: flex; }

  .nav-links {
    display: none;
    flex-direction: column;
    gap: 0;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--navy);
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    padding: 12px 0 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  }

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

  .nav-links a {
    display: block;
    padding: 13px 24px;
    width: 100%;
  }

  .nav-cta {
    display: block !important;
    margin: 8px 24px 0 !important;
    text-align: center;
    border-radius: 8px !important;
    padding: 11px 20px !important;
  }
}
