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

:root {
  --primary: #0b67b2;
  --primary-dark: #063b75;
  --primary-deep: #052f5d;
  --secondary: #0aa6a6;
  --accent: #f7bb38;
  --ink: #17253a;
  --muted: #627087;
  --surface: #ffffff;
  --surface-soft: #f4f9fd;
  --surface-blue: #eaf5ff;
  --border: #dbe8f2;
  --success: #159b68;
  --danger: #d64a4a;
  --shadow-sm: 0 8px 24px rgba(5, 47, 93, 0.08);
  --shadow-md: 0 16px 42px rgba(5, 47, 93, 0.13);
  --shadow-lg: 0 28px 70px rgba(5, 47, 93, 0.18);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --container: 1180px;
  --transition: 220ms ease;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
ul { padding: 0; margin: 0; list-style: none; }
h1,h2,h3,h4,p { margin-top: 0; }
h1,h2,h3,h4 { line-height: 1.18; color: var(--primary-deep); }
p { color: var(--muted); }

.container { width: min(calc(100% - 32px), var(--container)); margin-inline: auto; }
.section { padding: 80px 0; position: relative; }
.section-soft { background: var(--surface-soft); }

.skip-link {
  position: fixed; left: 16px; top: -60px; z-index: 9999;
  padding: 10px 16px; background: var(--primary-deep); color: #fff;
  border-radius: 0 0 10px 10px; transition: top .2s;
}
.skip-link:focus { top: 0; }

.topbar { background: var(--primary-deep); color: #fff; font-size: 13px; }
.topbar-inner { min-height: 42px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.topbar-list { display: flex; flex-wrap: wrap; gap: 22px; align-items: center; }
.topbar a { opacity: .92; }
.topbar a:hover { opacity: 1; color: var(--accent); }
.topbar i { margin-right: 7px; color: var(--accent); }

.site-header {
  position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(219,232,242,.78); backdrop-filter: blur(14px);
  transition: box-shadow var(--transition), transform var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.navbar {justify-content: space-between; min-height: 82px; display: flex; align-items: center; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand img { height: 58px; width: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1.25; }
.brand-text strong { font-size: 21px; font-weight: 800; letter-spacing: -.01em; color: var(--primary-deep); }
.brand-text small { font-size: 12.5px; font-weight: 700; color: var(--primary); }
.nav-links { margin-left: auto; display: flex; align-items: center; gap: 6px; }
.nav-links > li > a {
  display: block; padding: 12px 14px; border-radius: 10px; font-weight: 700;
  color: #29415d; font-size: 15px; transition: color var(--transition), background var(--transition);
}
.nav-links > li > a:hover,.nav-links > li > a.active { color: var(--primary); background: var(--surface-blue); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.menu-toggle {
  width: 46px; height: 46px; border: 0; background: var(--surface-blue); border-radius: 12px;
  display: none; align-items: center; justify-content: center; color: var(--primary-deep); font-size: 20px;
}

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 50px; padding: 12px 22px; border: 1px solid transparent; border-radius: 13px;
  font-weight: 800; line-height: 1.2; transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--primary), #0a84c8); color: #fff; box-shadow: 0 12px 28px rgba(11,103,178,.22); }
.btn-primary:hover { box-shadow: 0 16px 34px rgba(11,103,178,.32); }
.btn-accent { background: var(--accent); color: #17253a; box-shadow: 0 12px 28px rgba(247,187,56,.28); }
.btn-accent:hover { background: #ffc952; }
.btn-outline { border-color: var(--primary); color: var(--primary); background: #fff; }
.btn-outline:hover { color: #fff; background: var(--primary); }
.btn-light { background: #fff; color: var(--primary-deep); }
.btn-sm { min-height: 43px; padding: 10px 17px; font-size: 14px; }
.btn-block { width: 100%; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 14px;
  color: var(--primary); font-size: 13px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
}
.eyebrow::before { content: ''; width: 28px; height: 3px; border-radius: 10px; background: var(--accent); }
.section-heading { max-width: 720px; margin-bottom: 42px; }
.section-heading.center { text-align: center; margin-inline: auto; }
.section-heading h2 { font-size: clamp(31px, 4vw, 48px); margin-bottom: 16px; letter-spacing: -.03em; }
.section-heading p { font-size: 17px; margin-bottom: 0; }

.page-hero {
  padding: 56px 0 44px; text-align: center; background:
    radial-gradient(circle at 80% 16%, rgba(10,166,166,.16), transparent 25%),
    radial-gradient(circle at 15% 25%, rgba(11,103,178,.14), transparent 28%),
    linear-gradient(135deg, #f8fcff 0%, #edf7ff 55%, #f2fcfa 100%);
}
.page-hero .eyebrow { justify-content: center; }
.page-hero h1 { font-size: clamp(36px, 5vw, 54px); letter-spacing: -.03em; margin-bottom: 12px; }
.page-hero p { max-width: 620px; margin: 0 auto; font-size: 16px; }

.legal-content { max-width: 860px; margin: 0 auto; }
.legal-content .updated-note {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 34px; padding: 10px 16px;
  border-radius: 999px; background: var(--surface-blue); color: var(--primary-deep); font-weight: 700; font-size: 13px;
}
.legal-content h2 { font-size: 24px; margin: 38px 0 12px; letter-spacing: -.01em; }
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content p { margin-bottom: 14px; font-size: 15.5px; }
.legal-content ul { display: grid; gap: 9px; margin: 14px 0 18px; }
.legal-content ul li { position: relative; padding-left: 24px; color: var(--muted); font-size: 15.5px; }
.legal-content ul li::before { content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; left: 0; top: 2px; color: var(--success); font-size: 12px; }
.legal-content .contact-block {
  margin-top: 10px; padding: 22px 24px; border: 1px solid var(--border); border-radius: var(--radius-md);
  background: var(--surface-soft);
}
.legal-content .contact-block p { margin-bottom: 4px; }
.legal-content .contact-block p:last-child { margin-bottom: 0; }

.site-footer { background: #042a52; color: #fff; padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.35fr .75fr .9fr 1fr; gap: 42px; }
.footer-brand img { height: 92px; width: auto; background: #fff; border-radius: 11px; padding: 10px; }
.footer-brand p { color: rgba(255,255,255,.7); font-size: 14px; margin: 19px 0; }
.socials { display: flex; gap: 9px; }
.socials a { width: 39px; height: 39px; border-radius: 10px; display: grid; place-items: center; background: rgba(255,255,255,.1); color: #fff; }
.socials a:hover { background: var(--accent); color: var(--primary-deep); }
.footer-col h3 { color: #fff; font-size: 17px; margin-bottom: 20px; }
.footer-links { display: grid; gap: 11px; }
.footer-links a { color: rgba(255,255,255,.7); font-size: 14px; }
.footer-links a:hover { color: var(--accent); }
.footer-contact { display: grid; gap: 13px; }
.footer-contact li { display: flex; gap: 10px; color: rgba(255,255,255,.72); font-size: 13px; }
.footer-contact i { color: var(--accent); margin-top: 5px; }
.footer-bottom { margin-top: 52px; border-top: 1px solid rgba(255,255,255,.12); padding: 20px 0; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.footer-bottom p { color: rgba(255,255,255,.62); font-size: 12px; margin: 0; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 17px; }
.footer-legal a { color: rgba(255,255,255,.62); font-size: 12px; }
.footer-legal a:hover { color: var(--accent); }

.floating-actions { position: fixed; z-index: 1100; right: 18px; bottom: 20px; display: grid; gap: 10px; }
.float-btn { width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; color: #fff; box-shadow: var(--shadow-md); font-size: 20px; transition: transform var(--transition); }
.float-btn:hover { transform: translateY(-3px) scale(1.03); }
.float-btn.whatsapp { background: #25d366; }
.float-btn.call { background: var(--primary); }
.back-to-top { opacity: 0; visibility: hidden; border: 0; background: var(--primary-deep); }
.back-to-top.show { opacity: 1; visibility: visible; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible {     margin-bottom: 10px; opacity: 1; transform: translateY(0); }

@media (max-width: 1060px) {
  .nav-links { position: fixed; inset: 82px 0 auto; padding: 18px 16px 24px; background: #fff; display: grid; gap: 2px; transform: translateY(-120%); opacity: 0; visibility: hidden; transition: all .3s ease; border-bottom: 1px solid var(--border); box-shadow: var(--shadow-md); }
  .nav-links.open { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav-links > li > a { padding: 13px 15px; }
  .menu-toggle { display: inline-flex; }
  .nav-actions .btn { display: none; }
  .footer-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 820px) {
  .topbar-list:last-child { display: none; }
  .topbar-inner { justify-content: center; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 600px) {
  .section { padding: 48px 0; }
  .navbar { min-height: 72px; }
  .brand img { height: 46px; }
  .brand-text strong { font-size: 16px; }
  .brand-text small { font-size: 10.5px; }
  .nav-links { inset: 72px 0 auto; }
  .topbar { display: none; }
  .page-hero { padding: 42px 0 32px; }
  .legal-content .contact-block { padding: 18px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid { gap: 32px; text-align: center; justify-items: center; }
  .footer-brand { display: flex; flex-direction: column; align-items: center; }
  .socials { justify-content: center; }
  .footer-links { justify-items: center; }
  .footer-contact li { justify-content: center; text-align: left; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
  .footer-legal { justify-content: center; }
  .floating-actions { right: 12px; bottom: 14px; }
  .float-btn { width: 48px; height: 48px; }
}

.enquiry-popup { position: fixed; inset: 0; z-index: 4000; display: none; align-items: center; justify-content: center; padding: 24px; }
.enquiry-popup.open { display: flex; }
.enquiry-popup-overlay { position: absolute; inset: 0; background: rgba(3,21,39,.6); backdrop-filter: blur(2px); animation: popupFade 220ms ease; }
.enquiry-popup-panel {
  position: relative; width: 100%; max-width: 480px; max-height: 90vh; overflow-y: auto;
  background: #fff; border-radius: var(--radius-md); box-shadow: var(--shadow-lg); padding: 34px;
  animation: popupPop 260ms cubic-bezier(.2,.8,.3,1.2);
}
.enquiry-popup-close {
  position: absolute; top: 16px; right: 16px; width: 38px; height: 38px; border: 0; border-radius: 50%;
  background: var(--surface-blue); color: var(--primary-deep); font-size: 16px; display: grid; place-items: center; cursor: pointer;
}
.enquiry-popup-close:hover { background: var(--border); }
.enquiry-popup-head { margin-bottom: 22px; }
.enquiry-popup-head h3 { font-size: 24px; letter-spacing: -.02em; margin: 8px 0; }
.enquiry-popup-head p { margin-bottom: 0; font-size: 14px; }
.enquiry-popup-form .form-group { margin-bottom: 15px; }
.enquiry-popup-form .form-group label { display: block; margin-bottom: 7px; color: var(--primary-deep); font-weight: 800; font-size: 13px; }
.enquiry-popup-form .form-control { width: 100%; min-height: 50px; border: 1px solid #cfdde8; border-radius: 11px; padding: 11px 13px; color: var(--ink); background: #fbfdff; outline: none; transition: border-color var(--transition), box-shadow var(--transition); }
.enquiry-popup-form .form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(11,103,178,.11); }
.enquiry-popup-form textarea.form-control { min-height: 90px; resize: vertical; }
.enquiry-popup-form .form-check { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 18px; }
.enquiry-popup-form .form-check input { margin-top: 6px; }
.enquiry-popup-form .form-check label { color: var(--muted); font-size: 12px; }
.enquiry-popup-form .hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.form-status { display: none; margin-top: 14px; padding: 12px 14px; border-radius: 10px; font-size: 13px; font-weight: 700; }
.form-status.show { display: block; }
.form-status.success { color: #0d704b; background: #e4f7ef; border: 1px solid #b9ead6; }
.form-status.error { color: #9f3030; background: #fdecec; border: 1px solid #f5caca; }
body.popup-open { overflow: hidden; }
@keyframes popupFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes popupPop { from { opacity: 0; transform: translateY(14px) scale(.97); } to { opacity: 1; transform: translateY(0) scale(1); } }
@media (max-width: 560px) {
  .enquiry-popup-panel { padding: 26px 20px; }
}

.enquiry-popup-success { text-align: center; padding: 20px 6px 6px; }
.enquiry-popup-success .success-icon { font-size: 56px; color: var(--success); margin-bottom: 16px; }
.enquiry-popup-success h3 { font-size: 23px; letter-spacing: -.02em; margin-bottom: 10px; }
.enquiry-popup-success p { font-size: 14px; margin-bottom: 0; }
