*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --dark:    #0D1B2A;
  --amber:   #F5A623;
  --bg:      #F8F8F8;
  --text:    #1A1A1A;
  --muted:   #6B7280;
  --white:   #FFFFFF;
  --border:  #E5E7EB;
}

body { font-family: 'Segoe UI', Arial, sans-serif; background: var(--bg); color: var(--text); }

/* ── TOP ANNOUNCEMENT BAR ── */
.top-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0 1rem;
  height: 44px;
  text-decoration: none;
  transition: background .2s;
}
.top-bar:hover { background: #1ebe5d; }
.top-bar-icon { font-size: 1.2rem; flex-shrink: 0; }
.top-bar-text {
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  white-space: nowrap;
}
.top-bar-text strong { font-weight: 800; }
.top-bar-cta {
  background: rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.2rem 0.7rem;
  border-radius: 20px;
  white-space: nowrap;
  border: 1px solid rgba(255,255,255,0.35);
  flex-shrink: 0;
}
@media (max-width: 480px) {
  .top-bar-cta { display: none; }
  .top-bar-text { font-size: 0.8rem; }
}

/* ── NAV ── */
nav {
  background: linear-gradient(135deg, #0a2463 0%, #1e3a8a 60%, #1d4ed8 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 68px;
  position: sticky;
  top: 44px;
  z-index: 100;
}
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.logo img {
  height: 42px;
  width: auto;
  display: block;
  object-fit: contain;
}
.footer-brand .logo img { height: 36px; }
nav ul { list-style: none; display: flex; gap: 2rem; }
nav ul a { color: rgba(255,255,255,0.75); text-decoration: none; font-size: 0.9rem; letter-spacing: 0.3px; transition: color .2s; }
nav ul a:hover, nav ul a.active { color: var(--amber); }

/* Dropdown */
.has-dropdown { position: relative; }
.has-dropdown > a::after { content: ' ▾'; font-size: 0.7rem; opacity: 0.7; }
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  min-width: 230px;
  padding: 0.5rem 0;
  padding-top: 16px;
  list-style: none;
  display: none;
  z-index: 300;
}
.has-dropdown:hover .nav-dropdown { display: block; }
.nav-dropdown::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 16px; background: transparent; }
.nav-dropdown li a {
  display: block;
  padding: 0.65rem 1.4rem;
  color: #1a1a1a !important;
  font-size: 0.87rem;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: background .15s, color .15s;
  letter-spacing: 0;
}
.nav-dropdown li a:hover { background: #f0f5ff; color: #1d4ed8 !important; }
.nav-dropdown li:not(:last-child) a { border-bottom: 1px solid #f3f4f6; }

/* Service card grid */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding: 60px 5%;
  background: #0d1b2a;
}
.svc-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  display: block;
  aspect-ratio: 3 / 4;
  background: #1e3a8a;
}
.svc-card-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .4s ease;
}
.svc-card:hover .svc-card-img { transform: scale(1.06); }
.svc-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
}
.svc-card-body { position: absolute; bottom: 0; left: 0; right: 0; }
.svc-card-body h3 {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 800;
  padding: 0 1.2rem 0.7rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
  line-height: 1.3;
}
.svc-read-more {
  display: block;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(4px);
  color: #fff;
  text-align: center;
  padding: 0.75rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border-top: 1px solid rgba(255,255,255,0.15);
  transition: background .2s;
}
.svc-card:hover .svc-read-more { background: rgba(29,78,216,0.75); }
@media (max-width: 900px) { .svc-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; } }
@media (max-width: 480px) { .svc-grid { grid-template-columns: 1fr; padding: 40px 5%; } }
.nav-cta {
  background: var(--amber);
  color: var(--dark);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.5rem 1.2rem;
  border-radius: 4px;
  text-decoration: none;
  transition: opacity .2s;
}
.nav-cta:hover { opacity: 0.88; }
.nav-lang {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 0.45rem 0.9rem;
  border-radius: 20px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.3);
  transition: background .2s;
  white-space: nowrap;
}
.nav-lang:hover { background: rgba(255,255,255,0.25); }
.nav-hamburger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; }
.mobile-menu {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: var(--dark);
  padding: 1.5rem 5%;
  flex-direction: column;
  gap: 1rem;
  z-index: 99;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { color: rgba(255,255,255,0.8); text-decoration: none; font-size: 1rem; padding: 0.4rem 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.mobile-menu a:last-child { border-bottom: none; color: #93c5fd; font-weight: 700; }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--amber);
  color: var(--dark);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.8rem 2rem;
  border-radius: 5px;
  text-decoration: none;
  transition: opacity .2s, transform .15s;
  display: inline-block;
}
.btn-primary:hover { opacity: 0.9; transform: translateY(-1px); }
.btn-ghost {
  color: var(--dark);
  font-size: 0.95rem;
  padding: 0.8rem 1.6rem;
  border-radius: 5px;
  text-decoration: none;
  border: 1.5px solid var(--dark);
  transition: border-color .2s, background .2s;
  display: inline-block;
}
.btn-ghost:hover { background: var(--dark); color: var(--white); }
.btn-ghost-light {
  color: var(--white);
  font-size: 0.95rem;
  padding: 0.8rem 1.6rem;
  border-radius: 5px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.25);
  transition: border-color .2s;
  display: inline-block;
}
.btn-ghost-light:hover { border-color: rgba(255,255,255,0.6); }

/* ── SECTION LABELS ── */
.section-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.5rem;
}
.section-title {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 1rem;
}
.section-subtitle {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 540px;
  margin-bottom: 2.5rem;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, #0a2463 0%, #1e3a8a 60%, #1d4ed8 100%);
  padding: 60px 5%;
  color: var(--white);
}
.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 0.6rem;
}
.page-hero h1 em { color: #93c5fd; font-style: normal; }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1rem; max-width: 500px; line-height: 1.65; }
.breadcrumb { font-size: 0.82rem; color: rgba(255,255,255,0.5); margin-bottom: 1rem; }
.breadcrumb a { color: #93c5fd; text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--amber);
  display: flex;
  justify-content: center;
}
.trust-item {
  flex: 1;
  max-width: 260px;
  text-align: center;
  padding: 1.4rem 1rem;
  border-right: 1px solid rgba(13,27,42,0.12);
}
.trust-item:last-child { border-right: none; }
.trust-item strong { display: block; font-size: 1.7rem; font-weight: 800; color: var(--dark); }
.trust-item span { font-size: 0.82rem; font-weight: 600; color: rgba(13,27,42,0.7); letter-spacing: 0.3px; text-transform: uppercase; }

/* ── FOOTER ── */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.65);
  padding: 3rem 5% 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.footer-brand .logo { font-size: 1.4rem; display: block; margin-bottom: 0.8rem; }
.footer-brand p { font-size: 0.87rem; line-height: 1.65; max-width: 280px; }
footer h4 { color: var(--white); font-size: 0.9rem; font-weight: 700; margin-bottom: 1rem; }
footer ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
footer ul a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.87rem; transition: color .2s; }
footer ul a:hover { color: var(--amber); }
.footer-contact p { font-size: 0.87rem; margin-bottom: 0.5rem; }
.footer-contact a { color: var(--amber); text-decoration: none; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ── CARDS ── */
.card {
  background: var(--white);
  border-radius: 8px;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  border: 1px solid var(--border);
  transition: box-shadow .2s, border-color .2s, transform .15s;
}
.card:hover {
  box-shadow: 0 8px 24px rgba(13,27,42,0.09);
  border-color: var(--amber);
  transform: translateY(-2px);
}
.card-icon {
  width: 46px;
  height: 46px;
  background: rgba(245,166,35,0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
.card h3 { font-size: 1rem; font-weight: 700; color: var(--dark); }
.card p { font-size: 0.85rem; color: var(--muted); line-height: 1.55; }
.card-link { font-size: 0.82rem; font-weight: 600; color: var(--amber); text-decoration: none; margin-top: auto; }
.card-link:hover { text-decoration: underline; }
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.2rem; }

/* ── REVIEW CARD ── */
.review-stars { color: var(--amber); font-size: 1rem; letter-spacing: 2px; margin-bottom: 0.5rem; }
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.review-card p { font-size: 0.9rem; color: var(--text); line-height: 1.6; font-style: italic; }
.review-card .reviewer { font-size: 0.82rem; color: var(--muted); font-style: normal; font-weight: 600; }

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  display: none !important;
  background: #25D366;
  color: var(--white);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  z-index: 200;
  transition: transform .2s;
}
.wa-float:hover { transform: scale(1.1); }

@media (max-width: 768px) {
  nav ul, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .trust-bar { flex-wrap: wrap; }
  .trust-item { flex: 0 0 50%; border-right: none; border-bottom: 1px solid rgba(13,27,42,0.12); }
  .footer-grid { grid-template-columns: 1fr; }
}
