/* ============================================================
   AQUA CARE RO — GLOBAL STYLESHEET
   assets/css/global.css
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;600;700;800&family=DM+Sans:wght@400;500;600&display=swap');

/* ── RESET & ROOT ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #0a1f44;
  --deep:       #0d2d5e;
  --blue:       #1565c0;
  --cyan:       #00b8d9;
  --cyan-light: #e0f7fa;
  --white:      #ffffff;
  --off:        #f4f8fd;
  --text:       #1a2b4a;
  --muted:      #5c728a;
  --border:     #d0e4f7;
  --gold:       #f5a623;
  --green:      #00c853;
  --r:          14px;
}

html  { scroll-behavior: smooth; }
body  { font-family: 'DM Sans', sans-serif; color: var(--text); background: var(--white); overflow-x: hidden; }
h1, h2, h3, h4, h5 { font-family: 'Sora', sans-serif; }
img   { max-width: 100%; display: block; }
a     { color: inherit; }

/* ── NAVIGATION ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  background: rgba(10,31,68,0.97);
  backdrop-filter: blur(12px);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
  border-bottom: 1px solid rgba(0,184,217,0.2);
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: linear-gradient(135deg, #00b8d9, #1565c0);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.nav-logo-text { color: white; }
.nav-logo-text span { font-family: 'Sora', sans-serif; font-weight: 800; font-size: 17px; display: block; line-height: 1; }
.nav-logo-text small { font-size: 11px; color: var(--cyan); letter-spacing: 1px; text-transform: uppercase; }
/* Logo image (replaces icon+text) */
.nav-logo-img {
  height: 42px; width: auto; max-width: 180px;
  object-fit: contain;
  filter: brightness(0) invert(1); /* white on dark nav */
  transition: opacity .2s;
}
.nav-logo:hover .nav-logo-img { opacity: .85; }

.nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
.nav-links a {
  color: rgba(255,255,255,0.8); text-decoration: none;
  font-size: 14px; font-weight: 500; transition: color .2s;
  padding-bottom: 3px; border-bottom: 2px solid transparent;
}
.nav-links a:hover         { color: var(--cyan); border-bottom-color: var(--cyan); }
.nav-links a.active        { color: white;       border-bottom-color: var(--cyan); }

.nav-cta {
  background: linear-gradient(135deg, #00b8d9, #1565c0);
  color: white; border: none; padding: 10px 22px; border-radius: 8px;
  font-family: 'Sora', sans-serif; font-weight: 600; font-size: 14px;
  cursor: pointer; text-decoration: none; transition: opacity .2s; white-space: nowrap;
}
.nav-cta:hover { opacity: .88; }

/* mobile hamburger */
.nav-ham {
  display: none; background: none; border: none; cursor: pointer; padding: 4px;
  flex-direction: column; gap: 5px;
}
.nav-ham span { display: block; width: 24px; height: 2px; background: white; border-radius: 2px; transition: .3s; }
.mob-menu {
  display: none; position: fixed; top: 68px; left: 0; right: 0; z-index: 998;
  background: rgba(10,31,68,0.98); padding: 16px 5% 24px;
  border-bottom: 1px solid rgba(0,184,217,0.15);
  flex-direction: column; gap: 4px;
}
.mob-menu.open { display: flex; }
.mob-menu a {
  display: block; color: rgba(255,255,255,0.8); text-decoration: none;
  font-size: 15px; font-weight: 500; padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mob-menu a.active { color: var(--cyan); }

/* ── TRUST BAR ── */
.trust-bar { background: var(--cyan); padding: 20px 5%; }
.trust-inner {
  max-width: 1200px; margin: auto;
  display: flex; justify-content: space-around; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.trust-item { display: flex; align-items: center; gap: 10px; }
.trust-item .ti-emoji { font-size: 20px; }
.trust-item p     { font-family: 'Sora', sans-serif; font-size: 14px; font-weight: 700; color: var(--navy); }
.trust-item small { font-size: 12px; color: rgba(10,31,68,0.65); display: block; }

/* ── FOOTER ── */
footer {
  background: var(--navy); padding: 60px 5% 28px;
  border-top: 1px solid rgba(0,184,217,0.15);
}
.footer-inner   { max-width: 1200px; margin: auto; }
.footer-top     { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7; margin: 14px 0 22px; }
.footer-social  { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; text-decoration: none; transition: background .2s;
}
.social-btn:hover { background: rgba(0,184,217,0.2); }
.footer-col h4  { font-family: 'Sora', sans-serif; font-size: 14px; font-weight: 700; color: white; margin-bottom: 18px; }
.footer-col ul  { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.5); text-decoration: none; transition: color .2s; }
.footer-col ul li a:hover { color: var(--cyan); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.4); }

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 9999;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; box-shadow: 0 6px 24px rgba(37,211,102,0.5);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; text-decoration: none;
  animation: waBounce 2.5s infinite;
}
@keyframes waBounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }

/* ── SHARED UTILITIES ── */
.section-tag {
  display: inline-block; font-size: 12px; font-weight: 700;
  color: var(--cyan); background: rgba(0,184,217,0.1);
  border: 1px solid rgba(0,184,217,0.25);
  padding: 5px 14px; border-radius: 100px;
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: 14px;
}
.section-title      { font-size: clamp(28px, 4vw, 42px); font-weight: 800; color: var(--navy); margin-bottom: 12px; }
.section-title em   { font-style: normal; color: var(--blue); }
.section-sub        { font-size: 16px; color: var(--muted); line-height: 1.7; }
.section-header     { text-align: center; margin-bottom: 60px; }
.section-header .section-sub { max-width: 560px; margin: 0 auto; }

.btn-primary {
  background: linear-gradient(135deg, #00b8d9, #1565c0);
  color: white; padding: 14px 32px; border-radius: 10px;
  font-family: 'Sora', sans-serif; font-weight: 700; font-size: 15px;
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 8px 30px rgba(0,184,217,0.3);
  border: none; cursor: pointer;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(0,184,217,0.4); }

.btn-ghost {
  border: 1.5px solid rgba(255,255,255,0.3); color: white;
  padding: 13px 28px; border-radius: 10px;
  font-family: 'Sora', sans-serif; font-weight: 600; font-size: 15px;
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  transition: border-color .2s, background .2s;
}
.btn-ghost:hover { border-color: var(--cyan); background: rgba(0,184,217,0.08); }

.btn-navy {
  background: var(--navy); color: white; padding: 13px 28px; border-radius: 10px;
  font-family: 'Sora', sans-serif; font-weight: 700; font-size: 15px;
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  transition: opacity .2s; border: none; cursor: pointer;
}
.btn-navy:hover { opacity: .85; }

/* PAGE HERO (inner pages) */
.page-hero {
  background: var(--navy); padding: 130px 5% 80px;
  position: relative; overflow: hidden; text-align: center;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 25% 50%, rgba(0,184,217,0.1) 0%, transparent 60%),
    radial-gradient(ellipse at 75% 50%, rgba(21,101,192,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 2; max-width: 720px; margin: auto; }
.page-hero h1   { font-size: clamp(32px, 5vw, 52px); font-weight: 800; color: white; line-height: 1.15; margin-bottom: 16px; }
.page-hero h1 em { font-style: normal; color: var(--cyan); }
.page-hero p    { font-size: 17px; color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: 32px; }
.breadcrumb     { display: flex; justify-content: center; align-items: center; gap: 8px; margin-bottom: 20px; }
.breadcrumb a   { font-size: 13px; color: rgba(255,255,255,0.5); text-decoration: none; transition: color .2s; }
.breadcrumb a:hover { color: var(--cyan); }
.breadcrumb span    { font-size: 13px; color: rgba(255,255,255,0.3); }
.breadcrumb strong  { font-size: 13px; color: rgba(255,255,255,0.75); font-weight: 500; }

/* ── RESPONSIVE GLOBAL ── */
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-ham { display: flex; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-top { grid-template-columns: 1fr; }
  .trust-inner { justify-content: flex-start; gap: 12px; }
}
