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

:root {
  --navy: #0D1B2A;
  --navy-mid: #162436;
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-bg: rgba(201,168,76,0.08);
  --white: #FFFFFF;
  --text: #1A2B3C;
  --text-muted: #6B7A8D;
  --bg-light: #F5F7FA;
  --border: #E2E8F0;
  --radius: 8px;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; color: var(--navy); line-height: 1.25; }
p { color: var(--text-muted); line-height: 1.75; }
a { text-decoration: none; }

/* ---- UTILITIES ---- */
.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 5rem 0; }
.section-alt { background: var(--bg-light); }
.section-label { font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); font-weight: 600; display: block; margin-bottom: 0.5rem; font-family: 'Inter', sans-serif; }
.section-title { font-size: 2rem; margin-bottom: 1rem; }
.section-sub { font-size: 15px; max-width: 560px; margin-bottom: 2.5rem; }

/* ---- BUTTONS ---- */
.btn { display: inline-block; padding: 12px 26px; border-radius: 4px; font-size: 14px; font-weight: 600; transition: opacity 0.2s, transform 0.15s; cursor: pointer; border: none; }
.btn:hover { opacity: 0.9; transform: translateY(-1px); }
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-outline { border: 1.5px solid rgba(255,255,255,0.35); color: var(--white); background: transparent; }
.btn-outline-dark { border: 1.5px solid var(--gold); color: var(--gold); background: transparent; }
.btn-wa { background: #25D366; color: white; display: inline-flex; align-items: center; gap: 8px; }

/* ---- NAVBAR ---- */
.navbar {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo-icon {
  width: 40px; height: 40px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700; color: var(--navy); font-size: 15px;
}
.nav-brand { font-family: 'Playfair Display', serif; color: var(--white); font-size: 17px; font-weight: 600; line-height: 1.2; }
.nav-brand small { display: block; font-family: 'Inter', sans-serif; font-weight: 400; font-size: 10px; color: var(--gold-light); letter-spacing: 1.5px; text-transform: uppercase; }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a { color: rgba(255,255,255,0.7); font-size: 14px; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--gold-light); }
.nav-cta { background: var(--gold); color: var(--navy); padding: 9px 20px; border-radius: 4px; font-size: 13px; font-weight: 600; }

/* ---- PAGE HERO (for inner pages) ---- */
.page-hero {
  background: var(--navy);
  padding: 4rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  right: -80px; top: -80px;
  width: 350px; height: 350px;
  border-radius: 50%;
  border: 70px solid rgba(201,168,76,0.07);
}
.page-hero-tag { display: inline-block; background: rgba(201,168,76,0.15); color: var(--gold-light); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; padding: 5px 14px; border-radius: 2px; margin-bottom: 1rem; border-left: 3px solid var(--gold); }
.page-hero h1 { color: var(--white); font-size: 2.8rem; max-width: 640px; margin-bottom: 1rem; }
.page-hero h1 em { color: var(--gold); font-style: normal; }
.page-hero p { color: rgba(255,255,255,0.65); font-size: 16px; max-width: 560px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 1.5rem; }
.breadcrumb a { color: var(--gold-light); font-size: 13px; }
.breadcrumb span { color: rgba(255,255,255,0.3); font-size: 13px; }
.breadcrumb .current { color: rgba(255,255,255,0.5); font-size: 13px; }

/* ---- TRUST BAR ---- */
.trust-bar { background: var(--gold); padding: 0.8rem 0; overflow: hidden; }
.trust-bar .container { display: flex; gap: 2rem; align-items: center; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 600; color: var(--navy); white-space: nowrap; }
.trust-dot { width: 5px; height: 5px; background: var(--navy); border-radius: 50%; opacity: 0.35; }

/* ---- CARDS ---- */
.card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; transition: border-color 0.2s, transform 0.2s; }
.card:hover { border-color: var(--gold); transform: translateY(-3px); }
.card-icon { width: 48px; height: 48px; background: var(--gold-bg); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 1rem; }

/* ---- CTA STRIP ---- */
.cta-strip { background: var(--navy); padding: 4rem 0; text-align: center; position: relative; overflow: hidden; }
.cta-strip::before { content: ''; position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); width: 500px; height: 500px; border-radius: 50%; border: 90px solid rgba(201,168,76,0.04); }
.cta-strip h2 { color: var(--white); font-size: 2rem; margin-bottom: 0.75rem; position: relative; }
.cta-strip p { color: rgba(255,255,255,0.6); font-size: 15px; margin-bottom: 2rem; position: relative; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ---- FOOTER ---- */
.footer { background: var(--navy); padding: 3rem 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 2rem; margin-bottom: 2.5rem; }
.footer-brand { font-family: 'Playfair Display', serif; color: var(--white); font-size: 18px; margin-bottom: 0.5rem; }
.footer-tagline { color: rgba(255,255,255,0.45); font-size: 13px; line-height: 1.7; margin-bottom: 1.25rem; max-width: 260px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 34px; height: 34px; border: 1px solid rgba(255,255,255,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); font-size: 13px; transition: border-color 0.2s, color 0.2s; }
.footer-social a:hover { border-color: var(--gold); color: var(--gold-light); }
.footer-col h4 { color: var(--white); font-size: 13px; font-family: 'Inter', sans-serif; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a { color: rgba(255,255,255,0.45); font-size: 13px; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 0.75rem; }
.footer-contact-icon { font-size: 15px; margin-top: 2px; }
.footer-contact-text { color: rgba(255,255,255,0.45); font-size: 13px; line-height: 1.6; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; }
.footer-copy { color: rgba(255,255,255,0.3); font-size: 12px; }
.footer-bottom-links { display: flex; gap: 16px; }
.footer-bottom-links a { color: rgba(255,255,255,0.3); font-size: 12px; }

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 3.5rem 0; }
  .page-hero h1 { font-size: 2rem; }
}
