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

:root {
  --navy:        #0D1B2A;
  --navy-light:  #1A2F45;
  --gold:        #C9A84C;
  --gold-light:  #E2C97A;
  --gold-dark:   #A88830;
  --white:       #FFFFFF;
  --off-white:   #FAF9F6;
  --light:       #F3F4F6;
  --slate:       #4B5563;
  --gray-400:    #9CA3AF;
  --border:      #E5E7EB;
  --green:       #10B981;

  /* Backwards-compat aliases used throughout page-specific styles */
  --charcoal:    var(--navy);
  --charcoal-2:  var(--navy-light);
  --orange:      var(--gold);
  --orange-dark: var(--gold-dark);

  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --radius:     6px;
  --radius-lg:  12px;
  --shadow-sm:  0 1px 3px rgba(0,0,0,.08);
  --shadow:     0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:  0 12px 40px rgba(0,0,0,.15);
  --transition: all .25s ease;
  --nav-h:      68px;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea, select {
  font: inherit;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: .75rem 1rem;
  width: 100%;
  transition: border-color .2s;
  background: var(--white);
  color: var(--navy);
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,.15);
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }
p  { color: var(--slate); line-height: 1.75; }

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(13,27,42,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  border-bottom: 1px solid rgba(201,168,76,.15);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-icon {
  width: 42px; height: 42px;
  background: var(--gold);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-icon svg { width: 24px; height: 24px; fill: var(--navy); }
.logo-text { display: flex; flex-direction: column; gap: 1px; }
.logo-text span:first-child {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .01em;
}
.logo-text span:last-child {
  font-size: .65rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.nav-links { display: flex; align-items: center; gap: .25rem; }
.nav-links a {
  color: rgba(255,255,255,.8);
  font-size: .875rem;
  font-weight: 500;
  padding: .5rem .85rem;
  border-radius: var(--radius);
  transition: var(--transition);
  text-decoration: none;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,.08);
}
.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  border-radius: var(--radius) !important;
  padding: .5rem 1.1rem !important;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--gold-dark) !important; }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  padding: .85rem 2rem;
  border-radius: var(--radius);
  font-size: .95rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  display: inline-flex; align-items: center; gap: .5rem;
  border: none; cursor: pointer; font-family: inherit;
  white-space: nowrap;
}
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-1px); box-shadow: var(--shadow); }

.btn-outline {
  border: 2px solid rgba(255,255,255,.35);
  color: var(--white);
  padding: .85rem 2rem;
  border-radius: var(--radius);
  font-size: .95rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  display: inline-flex; align-items: center; gap: .5rem;
}
.btn-outline:hover { background: var(--white); color: var(--navy); }

.btn-dark {
  background: var(--navy);
  color: var(--white);
  padding: .85rem 2rem;
  border-radius: var(--radius);
  font-size: .95rem;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
  display: inline-flex; align-items: center; gap: .5rem;
}
.btn-dark:hover { background: var(--navy-light); transform: translateY(-1px); box-shadow: var(--shadow); }

.btn-white {
  background: var(--white);
  color: var(--navy);
  padding: .85rem 2rem;
  border-radius: var(--radius);
  font-size: .95rem;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
  display: inline-flex; align-items: center; gap: .5rem;
}
.btn-white:hover { background: var(--off-white); transform: translateY(-1px); }

.btn-outline-white {
  border: 2px solid rgba(255,255,255,.7);
  color: var(--white);
  padding: .85rem 2rem;
  border-radius: var(--radius);
  font-size: .95rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  display: inline-flex; align-items: center; gap: .5rem;
}
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,.12); }

.btn-outline-gold {
  border: 2px solid var(--gold);
  color: var(--gold);
  padding: .85rem 2rem;
  border-radius: var(--radius);
  font-size: .95rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  display: inline-flex; align-items: center; gap: .5rem;
}
.btn-outline-gold:hover { background: var(--gold); color: var(--navy); }

/* ── LAYOUT ── */
.container { max-width: 1200px; margin: 0 auto; }
section { padding: 5rem 5%; }
.section-label {
  display: block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--navy);
}
.section-sub { font-size: 1rem; color: var(--slate); line-height: 1.75; max-width: 560px; }
.section-header { margin-bottom: 52px; }
.section-header.center { text-align: center; }
.section-header.center .section-label { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }

/* ── PAGE HERO ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: calc(var(--nav-h) + 4rem) 5% 4rem;
  position: relative; overflow: hidden;
}
.page-hero::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='%23C9A84C' fill-opacity='0.04'%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-hero .container { position: relative; z-index: 1; }
.page-hero-label {
  display: block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}
.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: .75rem;
}
.page-hero h1 em { color: var(--gold); font-style: normal; }
.page-hero p { font-size: 1.05rem; color: rgba(255,255,255,.7); max-width: 560px; line-height: 1.75; }

/* ── BREADCRUMB ── */
.breadcrumb { display: flex; align-items: center; gap: .5rem; margin-bottom: 1.5rem; }
.breadcrumb a { color: var(--gold-light); font-size: .8rem; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,.4); font-size: .8rem; }
.breadcrumb .sep { color: rgba(255,255,255,.25); }

/* ── TRUST BAR ── */
.trust-bar { background: var(--gold); padding: 1.25rem 5%; }
.trust-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; color: var(--navy); font-size: 14px; font-weight: 600; }
.trust-item svg { width: 20px; height: 20px; fill: var(--navy); opacity: .7; flex-shrink: 0; }
.trust-divider { width: 1px; height: 28px; background: rgba(13,27,42,.2); }

/* ── CTA BANNER ── */
.cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  text-align: center;
  padding: 5rem 5%;
  position: relative; overflow: hidden;
}
.cta::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='%23C9A84C' fill-opacity='0.04'%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");
}
.cta h2 { font-family: var(--font-head); font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 700; color: var(--white); margin-bottom: 1rem; position: relative; }
.cta p { font-size: 1rem; color: rgba(255,255,255,.7); margin-bottom: 2.25rem; max-width: 520px; margin-left: auto; margin-right: auto; position: relative; }
.cta-btns { display: flex; gap: .85rem; justify-content: center; flex-wrap: wrap; position: relative; }

/* ── INLINE CTA STRIP ── */
.cta-strip { background: var(--navy); padding: 2.25rem 5%; border-top: 1px solid rgba(201,168,76,.15); }
.cta-strip-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.cta-strip h3 { font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; color: var(--white); }
.cta-strip p { font-size: 14px; color: rgba(255,255,255,.55); margin-top: 4px; }

/* ── FOOTER ── */
footer {
  background: var(--navy);
  color: rgba(255,255,255,.55);
  padding: 4rem 5% 2rem;
  border-top: 1px solid rgba(201,168,76,.15);
}
.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
  margin-bottom: 2rem;
}
.footer-brand p { font-size: .9rem; line-height: 1.75; margin-top: .875rem; margin-bottom: 1.25rem; max-width: 280px; }
.footer-social { display: flex; gap: .75rem; }
.social-btn {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  color: rgba(255,255,255,.5);
  transition: var(--transition);
}
.social-btn:hover { border-color: var(--gold); color: var(--gold); }
.social-btn svg { width: 16px; height: 16px; fill: currentColor; }
footer h4 { color: var(--white); font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1.25rem; font-family: var(--font-body); }
footer ul { display: flex; flex-direction: column; gap: .6rem; }
footer ul li a { color: rgba(255,255,255,.55); font-size: .9rem; transition: color .2s; }
footer ul li a:hover { color: var(--gold); }
.footer-contact-item { display: flex; align-items: flex-start; gap: .75rem; font-size: .9rem; margin-bottom: .75rem; }
.footer-contact-item svg { width: 16px; height: 16px; fill: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-bottom { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .75rem; }
.footer-bottom p { font-size: .8rem; }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: rgba(255,255,255,.4); font-size: .8rem; }
.footer-bottom-links a:hover { color: var(--gold); }

/* ── FORM STYLES ── */
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: .875rem; font-weight: 600; color: var(--navy); margin-bottom: .4rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: .75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius); font-size: .9rem;
  font-family: inherit; color: var(--navy);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,.12); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-success { display: none; background: rgba(16,185,129,.08); border: 1.5px solid rgba(16,185,129,.3); border-radius: var(--radius); padding: 1.25rem 1.5rem; text-align: center; }
.form-success.show { display: block; }
.form-success h3 { color: var(--green); font-size: 1.05rem; margin-bottom: .4rem; }
.form-success p { color: #065f46; font-size: .875rem; }
.form-error { display: none; background: rgba(239,68,68,.08); border: 1.5px solid rgba(239,68,68,.3); border-radius: var(--radius); padding: .75rem 1rem; font-size: .875rem; color: #dc2626; margin-bottom: 1rem; }
.form-error.show { display: block; }
.form-hint { font-size: .8rem; color: var(--gray-400); margin-top: .3rem; }
.required { color: var(--gold); }

/* ── TESTIMONIALS ── */
.testimonials { background: var(--off-white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  position: relative;
  transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.testimonial-card::before {
  content: '"';
  font-family: var(--font-head);
  font-size: 5rem;
  color: var(--gold);
  opacity: .2;
  position: absolute;
  top: .5rem;
  left: 1.25rem;
  line-height: 1;
}
.stars { display: flex; gap: 3px; margin-bottom: .875rem; }
.stars svg { width: 18px; height: 18px; fill: var(--gold); }
.testimonial-card p { font-size: .9rem; color: var(--navy); line-height: 1.75; margin-bottom: 1.25rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: .75rem; }
.author-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 1rem; font-weight: 700;
  flex-shrink: 0;
}
.author-name { font-size: .9rem; font-weight: 700; color: var(--navy); }
.author-location { font-size: .75rem; color: var(--gray-400); }

/* ── BADGE ── */
.badge { display: inline-flex; align-items: center; gap: 6px; font-size: .7rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: .25rem .65rem; border-radius: 100px; }
.badge-orange { background: rgba(201,168,76,.1); color: var(--gold-dark); }
.badge-green { background: rgba(16,185,129,.1); color: #065f46; }
.badge-gray { background: var(--light); color: var(--slate); }

/* ── GOLD ACCENT LINE ── */
.gold-line {
  width: 60px; height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 1rem 0 1.5rem;
}
.gold-line-center { margin: 1rem auto 1.5rem; }

/* ── CARDS ── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.card-icon {
  width: 52px; height: 52px;
  background: rgba(201,168,76,.1);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--gold);
}

/* ── ANIMATE ON SCROLL ── */
.aos {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.aos.visible { opacity: 1; transform: none; }
.aos-delay-1 { transition-delay: .1s; }
.aos-delay-2 { transition-delay: .2s; }
.aos-delay-3 { transition-delay: .3s; }

/* ── UTILITY ── */
.bg-off-white { background: var(--off-white); }
.bg-navy { background: var(--navy); }
.bg-light { background: var(--light); }
.text-gold { color: var(--gold); }
.text-white { color: var(--white); }
.text-navy { color: var(--navy); }
.hidden { display: none !important; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  section { padding: 3.5rem 5%; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-btns { flex-direction: column; align-items: center; }
  .cta-strip-inner { flex-direction: column; gap: 16px; }
}
@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
}
