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

:root {
  --navy:      #0C2460;
  --blue:      #1557C8;
  --blue-mid:  #1E74D8;
  --blue-light:#4AABFF;
  --steel:     #4F6B8A;
  --grey-dark: #152242;
  --grey-mid:  #6B7A8D;
  --grey-light:#D8E4F4;
  --grey-bg:   #B0B7C3;
  --grey-section: #BAC0CB;
  --white:     #FFFFFF;
  --text:      #1A2640;
  --text-muted:#5B6E8A;
  --green:     #4AE38B;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

/* ── NAVBAR ─────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 40px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s ease, box-shadow 0.4s ease, height 0.4s ease;
  background: #ffffff;
  box-shadow: 0 1px 24px rgba(0,0,0,0.09);
}
nav.scrolled {
  background: #ffffff;
  box-shadow: 0 2px 32px rgba(0,0,0,0.12);
  height: 68px;
}
nav.solid {
  background: #ffffff;
  box-shadow: 0 2px 20px rgba(0,0,0,0.10);
}
.nav-logo {
  display: flex; align-items: center;
  text-decoration: none;
}
.nav-logo-img {
  height: 44px; width: auto; display: block;
  transition: opacity 0.2s ease;
}
.nav-logo:hover .nav-logo-img { opacity: 0.8; }

.footer-logo-img {
  height: 58px; width: auto; display: block;
}

.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
  text-decoration: none; font-size: 14px; font-weight: 600;
  color: var(--navy); letter-spacing: 0.2px;
  transition: color 0.2s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--blue);
  transform: scaleX(0); transition: transform 0.25s ease; transform-origin: left;
}
.nav-links a:hover { color: var(--blue); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--blue); }
.nav-links a.active::after { transform: scaleX(1); }

.nav-cta {
  background: linear-gradient(135deg, var(--blue-light), var(--blue)) !important;
  color: white !important; padding: 10px 22px; border-radius: 8px;
  font-weight: 700 !important; box-shadow: 0 4px 16px rgba(59,158,255,0.35);
  transition: opacity 0.2s, transform 0.2s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { opacity: 0.9; transform: translateY(-1px) !important; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; background: none; border: none;
}
.hamburger span { display: block; width: 24px; height: 2.5px; background: var(--navy); border-radius: 2px; transition: all 0.3s ease; }
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-menu {
  display: none; position: fixed; inset: 0;
  background: rgba(12,36,96,0.98); z-index: 99;
  flex-direction: column; align-items: center; justify-content: center; gap: 32px;
  opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a { color: white; text-decoration: none; font-size: 22px; font-weight: 700; transition: color 0.2s; }
.mobile-menu a:hover { color: var(--blue-light); }
.mobile-menu-group { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.mobile-menu-group > a { font-size: 22px; font-weight: 700; }
.mobile-menu-sub { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.mobile-menu-sub a { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.55); }

/* ── PAGE HERO (subpages) ────────────────────────────── */
.page-hero {
  position: relative; padding: 160px 40px 80px;
  background: linear-gradient(135deg, #0C2460 0%, #1557C8 55%, #1E74D8 100%);
  overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(59,158,255,0.22) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero::after {
  content: ''; position: absolute; bottom: -60px; left: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.page-hero-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
}
.page-hero-breadcrumb a { color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.2s; }
.page-hero-breadcrumb a:hover { color: white; }
.page-hero-breadcrumb span { color: rgba(255,255,255,0.3); }
.page-hero-breadcrumb strong { color: rgba(255,255,255,0.85); font-weight: 600; }
.page-hero h1 {
  font-size: clamp(36px, 5vw, 58px); font-weight: 800; color: white;
  letter-spacing: -1.2px; line-height: 1.1; margin-bottom: 18px; max-width: 700px;
}
.page-hero h1 em { font-style: normal; color: var(--blue-light); }
.page-hero p {
  font-size: 18px; color: rgba(255,255,255,0.72); line-height: 1.65;
  max-width: 560px; font-weight: 400;
}

/* ── SECTION HEADERS ─────────────────────────────────── */
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; color: var(--blue);
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 14px;
}
.section-label::before { display: none; }
.section-title {
  font-size: clamp(26px, 3.2vw, 42px); font-weight: 800; color: var(--navy);
  letter-spacing: -0.8px; line-height: 1.15; margin-bottom: 16px;
}
.section-subtitle {
  font-size: 17px; color: var(--text-muted); line-height: 1.7; max-width: 560px;
}

/* ── BUTTONS ─────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--blue-light) 0%, var(--blue) 100%);
  color: white; text-decoration: none; font-size: 15px; font-weight: 700;
  padding: 16px 32px; border-radius: 12px;
  box-shadow: 0 8px 32px rgba(59,158,255,0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 42px rgba(59,158,255,0.55); }
.btn-primary svg { width: 18px; height: 18px; }

.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  border: 2px solid var(--blue); color: var(--blue); background: transparent;
  text-decoration: none; font-size: 15px; font-weight: 700;
  padding: 14px 30px; border-radius: 12px;
  transition: background 0.25s, color 0.25s, transform 0.25s;
}
.btn-outline:hover { background: var(--blue); color: white; transform: translateY(-2px); }

.btn-white {
  display: inline-flex; align-items: center; gap: 10px;
  background: white; color: var(--navy);
  text-decoration: none; font-size: 15px; font-weight: 700;
  padding: 16px 32px; border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 14px 42px rgba(0,0,0,0.3); }

/* ── USP STRIP ───────────────────────────────────────── */
.usp-strip {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%);
  padding: 20px 40px;
  display: flex; align-items: center; justify-content: center;
  gap: 48px; flex-wrap: wrap;
}
.usp-item {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.92); font-size: 13.5px; font-weight: 600; white-space: nowrap;
}
.usp-item svg { width: 18px; height: 18px; stroke: rgba(255,255,255,0.9); fill: none; flex-shrink: 0; }
.usp-sep { width: 4px; height: 4px; background: rgba(255,255,255,0.3); border-radius: 50%; }

/* ── SERVICE PHOTO CARDS ─────────────────────────────── */
.service-card {
  position: relative; border-radius: 18px; overflow: hidden; cursor: pointer;
  text-decoration: none; display: block;
}
.service-card-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  transition: transform 0.6s ease;
}
.service-card:hover .service-card-bg { transform: scale(1.07); }
.service-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(12,36,96,0.08) 0%, rgba(12,36,96,0.75) 70%, rgba(12,36,96,0.92) 100%);
  transition: background 0.3s ease;
}
.service-card:hover .service-card-overlay {
  background: linear-gradient(180deg, rgba(12,36,96,0.15) 0%, rgba(19,87,190,0.65) 55%, rgba(12,36,96,0.9) 100%);
}
.service-card-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 28px; }
.service-card-icon {
  width: 42px; height: 42px; background: rgba(255,255,255,0.15); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px; transition: background 0.3s;
}
.service-card:hover .service-card-icon { background: rgba(59,158,255,0.4); border-color: rgba(59,158,255,0.5); }
.service-card-icon svg { width: 20px; height: 20px; stroke: white; fill: none; stroke-width: 2; }
.service-card h3 { font-size: 19px; font-weight: 800; color: white; margin-bottom: 6px; letter-spacing: -0.3px; }
.service-card p {
  font-size: 13.5px; color: rgba(255,255,255,0.72); line-height: 1.55;
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease, opacity 0.3s ease; opacity: 0;
}
.service-card:hover p { max-height: 80px; opacity: 1; }
.service-card-arrow {
  position: absolute; top: 20px; right: 20px;
  width: 36px; height: 36px; background: rgba(255,255,255,0.1); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s, transform 0.3s;
}
.service-card:hover .service-card-arrow { background: var(--blue); transform: translate(3px,-3px); }
.service-card-arrow svg { width: 16px; height: 16px; stroke: white; fill: none; }

/* ── WHATSAPP BUTTON ─────────────────────────────────── */
.whatsapp-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
}
.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(37,211,102,0.55);
}
.whatsapp-btn svg {
  width: 30px;
  height: 30px;
  fill: white;
}

/* ── CTA BANNER ──────────────────────────────────────── */
.cta-banner {
  background: var(--grey-bg); padding: 80px 40px;
}
.cta-banner-inner {
  max-width: 1200px; margin: 0 auto;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  border-radius: 24px; padding: 60px 72px;
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
  flex-wrap: wrap; position: relative; overflow: hidden;
}
.cta-banner-inner::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(59,158,255,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner-text { position: relative; z-index: 1; }
.cta-banner-text h2 { font-size: clamp(24px, 3vw, 36px); font-weight: 800; color: white; letter-spacing: -0.5px; margin-bottom: 10px; }
.cta-banner-text p { font-size: 16px; color: rgba(255,255,255,0.72); }
.cta-banner-actions { display: flex; gap: 16px; flex-wrap: wrap; position: relative; z-index: 1; }

/* ── VCA BADGE ───────────────────────────────────────── */
.vca-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(21,87,200,0.06); border: 1px solid rgba(21,87,200,0.15);
  border-radius: 8px; padding: 8px 14px; font-size: 12px; font-weight: 700;
  color: var(--text-muted); align-self: flex-start;
}
.vca-badge svg { width: 16px; height: 16px; stroke: var(--green); fill: none; }

/* ── FOOTER ──────────────────────────────────────────── */
footer { background: white; color: var(--text-muted); border-top: 2px solid var(--grey-bg); }
.footer-main {
  max-width: 1200px; margin: 0 auto; padding: 72px 40px 48px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 48px;
}
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-brand-logo { display: flex; align-items: center; gap: 10px; }
.footer-brand p { font-size: 13.5px; line-height: 1.7; max-width: 280px; color: var(--text-muted); }
.footer-col h4 {
  font-size: 13px; font-weight: 700; color: var(--navy);
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { color: var(--text-muted); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--blue); }
.footer-bottom {
  border-top: 1px solid var(--grey-bg);
  max-width: 1200px; margin: 0 auto; padding: 20px 40px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
}
.footer-bottom p { font-size: 12.5px; color: var(--blue); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: var(--blue); text-decoration: none; font-size: 12.5px; transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--navy); }

/* ── PRIVACY MODAL ───────────────────────────────────── */
.privacy-overlay {
  position: fixed; inset: 0; z-index: 600;
  background: rgba(0,0,0,0.72);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.privacy-overlay.open { opacity: 1; pointer-events: all; }

.privacy-panel {
  background: white;
  border-radius: 20px;
  width: 100%; max-width: 760px;
  max-height: 88vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(24px) scale(0.98);
  transition: transform 0.32s cubic-bezier(0.34,1.4,0.64,1);
  scrollbar-width: thin; scrollbar-color: var(--grey-light) transparent;
}
.privacy-overlay.open .privacy-panel { transform: translateY(0) scale(1); }

.privacy-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  padding: 36px 48px 32px;
  border-radius: 20px 20px 0 0;
  position: relative;
}
.privacy-header h2 {
  font-size: 26px; font-weight: 800;
  color: white; letter-spacing: -0.4px;
  margin-bottom: 6px;
}
.privacy-header p {
  font-size: 13.5px; color: rgba(255,255,255,0.72);
}
.privacy-close {
  position: absolute; top: 16px; right: 16px;
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.25);
  color: white; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background 0.2s;
}
.privacy-close:hover { background: rgba(255,255,255,0.28); }
.privacy-close svg { width: 16px; height: 16px; stroke: white; fill: none; stroke-width: 2.5; }

.privacy-body { padding: 40px 48px 48px; }

.privacy-section { margin-bottom: 32px; }
.privacy-section:last-child { margin-bottom: 0; }
.privacy-section h3 {
  font-size: 15px; font-weight: 800;
  color: var(--navy); margin-bottom: 10px;
  display: flex; align-items: center; gap: 10px;
}
.privacy-section h3::before {
  content: '';
  display: inline-block;
  width: 4px; height: 16px;
  background: linear-gradient(180deg, var(--blue-light), var(--blue));
  border-radius: 2px; flex-shrink: 0;
}
.privacy-section p, .privacy-section li {
  font-size: 14.5px; color: var(--text-muted);
  line-height: 1.8;
}
.privacy-section ul {
  list-style: none; margin-top: 8px;
  display: flex; flex-direction: column; gap: 6px;
}
.privacy-section ul li {
  display: flex; align-items: flex-start; gap: 8px;
}
.privacy-section ul li::before {
  content: '–';
  color: var(--blue); font-weight: 700; flex-shrink: 0;
}
.privacy-divider {
  height: 1px; background: var(--grey-light);
  margin: 28px 0;
}
.privacy-contact-box {
  background: var(--grey-section);
  border-radius: 12px;
  padding: 20px 24px;
  margin-top: 12px;
}
.privacy-contact-box p {
  font-size: 14px; color: var(--text); line-height: 1.7;
}
.privacy-contact-box a { color: var(--blue); text-decoration: none; font-weight: 600; }
.privacy-contact-box a:hover { text-decoration: underline; }

@media (max-width: 600px) {
  .privacy-header { padding: 28px 20px 24px; }
  .privacy-header h2 { font-size: 21px; }
  .privacy-body { padding: 28px 20px 36px; }
  .privacy-overlay { padding: 0; align-items: flex-end; }
  .privacy-panel { border-radius: 20px 20px 0 0; max-height: 92vh; }
}

/* ── ANIMATIONS ──────────────────────────────────────── */
.fade-up   { opacity: 0; transform: translateY(40px); }
.fade-left  { opacity: 0; transform: translateX(-40px); }
.fade-right { opacity: 0; transform: translateX(40px); }

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-main { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 768px) {
  nav { padding: 0 16px; height: 68px; }
  .nav-links, .nav-cta-wrap { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }
  .page-hero { padding: 120px 16px 56px; }
  .page-hero h1 { font-size: clamp(28px, 8vw, 44px); }
  .page-hero p { font-size: 16px; }
  .usp-strip { padding: 14px 16px; gap: 12px; flex-wrap: wrap; }
  .usp-sep { display: none; }
  .usp-item { font-size: 12px; white-space: normal; }
  .section-title { font-size: clamp(22px, 6vw, 34px); }
  .section-subtitle { font-size: 15px; }
  .cta-banner { padding: 48px 16px; }
  .cta-banner-inner { padding: 32px 24px; flex-direction: column; }
  .cta-banner-text h2 { font-size: clamp(20px, 6vw, 28px); }
  .footer-main { grid-template-columns: 1fr 1fr; padding: 48px 16px 32px; gap: 28px; }
  .footer-brand { grid-column: span 2; }
  .footer-bottom { padding: 16px; flex-direction: column; align-items: flex-start; gap: 8px; }
  .footer-bottom p, .footer-bottom-links { font-size: 12px; }
}
@media (max-width: 480px) {
  nav { padding: 0 14px; }
  .nav-logo-img { height: 36px; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .page-hero h1 { font-size: 26px; letter-spacing: -0.5px; }
  .usp-strip { gap: 8px; }
  .usp-item { font-size: 11.5px; }
  .btn-primary, .btn-outline, .btn-white { font-size: 14px; padding: 13px 22px; }
}
