@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;800;900&family=Nunito:wght@300;400;500;600;700;800&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Nunito', sans-serif; background: #fff; color: #111827; overflow-x: hidden; line-height: 1.65; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
input, textarea, select, button { font-family: 'Nunito', sans-serif; }

:root {
  --navy: #0D1F5C;
  --navy2: #162880;
  --blue: #3B82C4;
  --blue2: #5B9BD5;
  --sky: #A8CCEC;
  --white: #FFFFFF;
  --offwhite: #F4F8FC;
  --text: #111827;
  --mid: #4B5563;
  --light: #9CA3AF;
  --border: #D1E3F4;
  --gold: #F59E0B;
}

/* ─── NAVBAR ─── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 76px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  background: var(--navy);
  box-shadow: 0 4px 24px rgba(13,31,92,0.35);
  transition: background 0.3s;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { width: 46px; height: 46px; object-fit: contain; border-radius: 50%; background: white; padding: 3px; }
.nav-logo-txt strong { display: block; font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 800; color: white; line-height: 1.2; }
.nav-logo-txt span { font-size: 0.65rem; font-weight: 600; color: var(--sky); letter-spacing: 2px; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  font-size: 0.83rem; font-weight: 700; color: rgba(255,255,255,0.78);
  padding: 8px 14px; border-radius: 6px;
  transition: all 0.22s; letter-spacing: 0.3px;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: white; background: rgba(255,255,255,0.12); }
.nav-cta-btn {
  background: var(--blue) !important;
  color: white !important;
  padding: 9px 20px !important;
  border-radius: 6px !important;
  font-weight: 800 !important;
  box-shadow: 0 4px 14px rgba(59,130,196,0.45) !important;
  transition: transform 0.2s, background 0.2s !important;
}
.nav-cta-btn:hover { background: #2d6fab !important; transform: translateY(-2px) !important; box-shadow: 0 6px 20px rgba(59,130,196,0.55) !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; border: none; background: none; padding: 4px; }
.hamburger span { display: block; width: 26px; height: 2.5px; background: white; border-radius: 3px; transition: 0.3s; }
.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;
  top: 76px; left: 0; right: 0; z-index: 999;
  background: var(--navy);
  flex-direction: column;
  padding: 12px 5% 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 16px 40px rgba(13,31,92,0.4);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 13px 0; font-weight: 700; color: rgba(255,255,255,0.8); border-bottom: 1px solid rgba(255,255,255,0.08); font-size: 0.95rem; }
.mobile-menu a:last-child { border: none; color: var(--sky); }
.mobile-menu a:hover { color: white; }

/* ─── PAGE WRAPPER ─── */
.page-wrap { padding-top: 76px; }

/* ─── PAGE BANNER (inner pages) ─── */
.page-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
  padding: 64px 5%;
  text-align: center;
  position: relative; overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-banner .breadcrumb { font-size: 0.78rem; color: var(--sky); margin-bottom: 10px; font-weight: 600; letter-spacing: 1px; }
.page-banner .breadcrumb a { color: rgba(255,255,255,0.5); }
.page-banner .breadcrumb a:hover { color: var(--sky); }
.page-banner h1 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; color: white; }
.page-banner h1 span { color: var(--sky); }

/* ─── SECTIONS ─── */
section { padding: 90px 5%; }
.sec-tag { display: inline-block; font-size: 0.7rem; font-weight: 800; letter-spacing: 3px; text-transform: uppercase; color: var(--blue); background: rgba(59,130,196,0.1); padding: 5px 14px; border-radius: 40px; margin-bottom: 14px; }
.sec-title { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 3.5vw, 2.9rem); font-weight: 900; color: var(--navy); line-height: 1.12; }
.sec-title span { color: var(--blue); }
.sec-sub { font-size: 1rem; color: var(--mid); max-width: 540px; margin-top: 12px; }
.sec-header { margin-bottom: 56px; }
.sec-header.center { text-align: center; }
.sec-header.center .sec-sub { margin: 12px auto 0; }

/* ─── BUTTONS ─── */
.btn { display: inline-flex; align-items: center; gap: 9px; padding: 15px 32px; border-radius: 6px; font-weight: 800; font-size: 0.9rem; cursor: pointer; border: none; transition: all 0.25s; letter-spacing: 0.3px; }
.btn-navy { background: var(--navy); color: white; box-shadow: 0 6px 20px rgba(13,31,92,0.3); }
.btn-navy:hover { background: var(--navy2); transform: translateY(-3px); box-shadow: 0 10px 28px rgba(13,31,92,0.4); }
.btn-blue { background: var(--blue); color: white; box-shadow: 0 6px 20px rgba(59,130,196,0.35); }
.btn-blue:hover { background: #2d6fab; transform: translateY(-3px); box-shadow: 0 10px 28px rgba(59,130,196,0.5); }
.btn-outline-white { background: transparent; color: white; border: 2.5px solid rgba(255,255,255,0.6); }
.btn-outline-white:hover { background: white; color: var(--navy); transform: translateY(-2px); }
.btn-outline-navy { background: transparent; color: var(--navy); border: 2.5px solid var(--navy); }
.btn-outline-navy:hover { background: var(--navy); color: white; transform: translateY(-2px); }

/* ─── REVEAL ANIMATION ─── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.1s; } .d2 { transition-delay: 0.2s; } .d3 { transition-delay: 0.3s; } .d4 { transition-delay: 0.4s; }

/* ─── CARDS ─── */
.card { background: white; border-radius: 12px; border: 1px solid var(--border); transition: transform 0.3s, box-shadow 0.3s; }
.card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(13,31,92,0.1); }

/* ─── FLOATING BTNS ─── */
.wa-float {
  position: fixed; bottom: 28px; right: 24px; z-index: 1001;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
  animation: waPulse 2.5s infinite;
  transition: transform 0.25s;
}
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 30px; height: 30px; fill: white; }
@keyframes waPulse { 0%,100%{box-shadow:0 6px 24px rgba(37,211,102,0.5)} 50%{box-shadow:0 6px 40px rgba(37,211,102,0.75)} }

#scrollTop {
  position: fixed; bottom: 96px; right: 24px; z-index: 1001;
  width: 46px; height: 46px; border-radius: 6px;
  background: var(--navy); color: white; border: none; cursor: pointer;
  font-size: 1.1rem; display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s, transform 0.2s;
  box-shadow: 0 4px 16px rgba(13,31,92,0.3);
}
#scrollTop.visible { opacity: 1; pointer-events: all; }
#scrollTop:hover { background: var(--blue); transform: translateY(-3px); }

/* ─── FOOTER ─── */
.footer { background: var(--navy); color: rgba(255,255,255,0.65); padding: 64px 5% 28px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-logo img { width: 42px; height: 42px; border-radius: 50%; background: white; padding: 3px; object-fit: contain; }
.footer-logo-txt strong { display: block; font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 800; color: white; }
.footer-logo-txt span { font-size: 0.65rem; color: var(--sky); letter-spacing: 2px; text-transform: uppercase; }
.footer-brand p { font-size: 0.855rem; line-height: 1.8; max-width: 250px; }
.footer-col h4 { font-size: 0.72rem; font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase; color: white; margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 0.855rem; transition: color 0.25s; }
.footer-col ul li a:hover { color: var(--sky); }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.08); margin-bottom: 24px; }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; font-size: 0.8rem; }

/* ─── FORM ─── */
.fg { margin-bottom: 16px; }
.fg label { display: block; font-size: 0.75rem; font-weight: 800; color: var(--mid); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 7px; }
.fg input, .fg textarea, .fg select {
  width: 100%; background: var(--offwhite);
  border: 1.5px solid var(--border);
  border-radius: 7px; padding: 13px 15px;
  font-size: 0.9rem; color: var(--text); outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  -webkit-appearance: none;
}
.fg input:focus, .fg textarea:focus, .fg select:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(59,130,196,0.15); background: white; }
.fg textarea { height: 110px; resize: none; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-btn { width: 100%; padding: 15px; background: var(--navy); color: white; border: none; border-radius: 7px; font-size: 0.95rem; font-weight: 800; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 9px; transition: background 0.25s, transform 0.2s; }
.form-btn:hover { background: var(--blue); transform: translateY(-2px); }

/* ─── RESPONSIVE ─── */
@media(max-width:1024px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media(max-width:768px) {
  section { padding: 64px 5%; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .form-row { grid-template-columns: 1fr; }
}
@media(max-width:480px) { .btn { padding: 13px 22px; font-size: 0.85rem; } }

/* ─── WHATSAPP SVG ─── */
.wa-svg { width: 28px; height: 28px; fill: white; }
