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

:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-dark: #9A7A2E;
  --navy: #0D1B2A;
  --navy-mid: #162535;
  --navy-light: #1E3448;
  --cream: #F5EFE0;
  --cream-light: #FAF6EE;
  --white: #FFFFFF;
  --text-dark: #0D1B2A;
  --text-mid: #3A5068;
  --text-light: #7A96AD;
  --border: rgba(201,168,76,0.2);
  --shadow: 0 8px 40px rgba(13,27,42,0.18);
  --radius: 4px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream-light);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(13,27,42,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
  transition: var(--transition);
}

.nav-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}

.nav-logo-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 18px; font-weight: 900;
  color: var(--navy);
}

.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 18px; font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}
.nav-logo-text span { color: var(--gold); }

.nav-links {
  display: flex; align-items: center; gap: 8px;
  list-style: none;
}

.nav-links a {
  font-size: 13.5px; font-weight: 500;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: var(--transition);
  letter-spacing: 0.02em;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--gold);
  background: rgba(201,168,76,0.08);
}

.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  font-weight: 600 !important;
  padding: 9px 20px !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }

.hamburger {
  display: none;
  flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 8px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: var(--transition);
}

/* ── PAGE HERO ── */
.page-hero {
  background: var(--navy);
  padding: 140px 5% 80px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(201,168,76,0.08) 0%, transparent 70%);
}
.page-hero-label {
  display: inline-block;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  padding: 6px 16px; border-radius: 100px;
  margin-bottom: 20px;
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 700; color: var(--white);
  line-height: 1.15; max-width: 700px;
}
.page-hero h1 em { color: var(--gold); font-style: normal; }
.page-hero p {
  color: rgba(255,255,255,0.6);
  font-size: 17px; max-width: 540px;
  margin-top: 18px;
}

/* ── SECTIONS ── */
.section { padding: 90px 5%; }
.section-alt { background: var(--cream); }

.section-label {
  display: inline-block;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700; color: var(--navy);
  line-height: 1.2;
}
.section-title em { color: var(--gold); font-style: normal; }
.section-sub {
  color: var(--text-mid); font-size: 16px;
  max-width: 560px; margin-top: 14px;
}

.divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 18px 0;
}

/* ── GRID CARDS ── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px; margin-top: 48px;
}

.card {
  background: var(--white);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: 8px;
  padding: 36px 32px;
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0); transform-origin: left;
  transition: var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card:hover::before { transform: scaleX(1); }

.card-icon {
  width: 52px; height: 52px;
  background: rgba(201,168,76,0.08);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 20px;
}
.card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px; font-weight: 700;
  color: var(--navy); margin-bottom: 12px;
}
.card p {
  color: var(--text-mid); font-size: 14.5px; line-height: 1.7;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px; font-weight: 600;
  letter-spacing: 0.02em;
  padding: 14px 28px;
  border-radius: var(--radius);
  cursor: pointer; text-decoration: none;
  transition: var(--transition);
  border: none;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--navy);
}

.btn-white {
  background: var(--white);
  color: var(--navy);
}
.btn-white:hover { background: var(--cream); transform: translateY(-1px); }

.btn-wa {
  background: #25D366;
  color: var(--white);
}
.btn-wa:hover { background: #1ebe5a; }

/* ── FOOTER ── */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.6);
  padding: 64px 5% 32px;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px; margin-bottom: 48px;
}

.footer-brand p {
  font-size: 14px; line-height: 1.8;
  margin-top: 16px; max-width: 280px;
}

.footer-col h4 {
  font-family: 'Playfair Display', serif;
  font-size: 15px; font-weight: 700;
  color: var(--white); margin-bottom: 18px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.55);
  text-decoration: none; font-size: 14px;
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); }

.footer-contact p {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13.5px; margin-bottom: 10px;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13px;
}

.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  text-decoration: none; font-size: 15px;
  transition: var(--transition);
}
.social-links a:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

/* ── COMPARISON TABLE ── */
.compare-table {
  width: 100%; border-collapse: collapse;
  margin-top: 40px;
  background: var(--white);
  border-radius: 8px; overflow: hidden;
  box-shadow: 0 4px 24px rgba(13,27,42,0.08);
}
.compare-table th {
  background: var(--navy);
  color: var(--white);
  font-size: 14px; font-weight: 600;
  padding: 18px 24px; text-align: left;
}
.compare-table th:first-child { color: var(--gold); }
.compare-table td {
  padding: 16px 24px;
  font-size: 14px; color: var(--text-mid);
  border-bottom: 1px solid rgba(201,168,76,0.1);
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:nth-child(even) td { background: rgba(245,239,224,0.5); }
.compare-check { color: var(--gold); font-size: 17px; }
.compare-cross { color: #CBD5E1; font-size: 17px; }

/* ── STEPS ── */
.steps { display: flex; gap: 32px; margin-top: 48px; flex-wrap: wrap; }
.step {
  flex: 1; min-width: 220px;
  display: flex; gap: 20px; align-items: flex-start;
}
.step-num {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 18px; font-weight: 700;
}
.step-content h4 {
  font-family: 'Playfair Display', serif;
  font-size: 17px; font-weight: 700;
  color: var(--navy); margin-bottom: 8px;
}
.step-content p { color: var(--text-mid); font-size: 14.5px; }

/* ── CTA BAND ── */
.cta-band {
  background: var(--navy);
  padding: 72px 5%;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.07) 0%, transparent 70%);
}
.cta-band h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700; color: var(--white);
  margin-bottom: 14px; position: relative;
}
.cta-band p { color: rgba(255,255,255,0.6); font-size: 16px; margin-bottom: 32px; position: relative; }
.cta-band .btn-group { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ── UTILITY ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.two-col.reverse .col-text { order: 2; }
.two-col.reverse .col-visual { order: 1; }

.col-visual {
  background: var(--navy);
  border-radius: 12px;
  padding: 48px;
  position: relative; overflow: hidden;
}
.col-visual::before {
  content: '';
  position: absolute; top: -30%; right: -20%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
}

.highlight-box {
  background: rgba(201,168,76,0.05);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: 0 6px 6px 0;
  padding: 20px 24px;
  margin: 24px 0;
}
.highlight-box p {
  font-family: 'Playfair Display', serif;
  font-size: 18px; font-style: italic;
  color: var(--navy); line-height: 1.6;
}

.pill-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.pill {
  font-size: 13px; font-weight: 500;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  color: var(--gold-dark);
  padding: 6px 16px; border-radius: 100px;
}

/* ── CONTACT FORM ── */
.contact-form {
  background: var(--white);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 12px;
  padding: 48px;
  box-shadow: 0 4px 32px rgba(13,27,42,0.06);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--text-dark); letter-spacing: 0.03em; }
.form-group input,
.form-group textarea,
.form-group select {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  padding: 13px 16px;
  border: 1.5px solid rgba(201,168,76,0.2);
  border-radius: 6px;
  outline: none;
  background: var(--cream-light);
  color: var(--text-dark);
  transition: var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}
.form-group textarea { resize: vertical; min-height: 140px; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .two-col.reverse .col-text { order: 1; }
  .two-col.reverse .col-visual { order: 2; }
  .compare-table { display: block; overflow-x: auto; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 72px; left: 0; right: 0;
    background: var(--navy);
    padding: 24px 5%;
    border-top: 1px solid var(--border);
    gap: 4px;
  }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}

/* ── PAGE FADE IN ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fadeUp 0.6s ease forwards; }
.fade-in-2 { animation: fadeUp 0.6s 0.15s ease forwards; opacity: 0; }
.fade-in-3 { animation: fadeUp 0.6s 0.3s ease forwards; opacity: 0; }
