/* ── Base ───────────────────────────────────────────────────── */
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text-dark);
  background: var(--color-white);
}

.container {
  width: 90%;
  max-width: var(--container-max);
  margin-inline: auto;
}
.container--md  { max-width: var(--container-md); }
.container--sm  { max-width: var(--container-sm); }

/* ── Skip Link ──────────────────────────────────────────────── */
.skip-link {
  position: fixed;
  top: -100%;
  left: 1rem;
  padding: 0.5rem 1rem;
  background: var(--color-gold);
  color: var(--color-primary-dark);
  font-weight: 600;
  border-radius: var(--radius-md);
  z-index: var(--z-toast);
  transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--color-text-dark);
}
h1 { font-size: clamp(2.2rem, 5vw, var(--text-7xl)); font-weight: 700; }
h2 { font-size: clamp(1.75rem, 3.5vw, var(--text-5xl)); font-weight: 700; }
h3 { font-size: clamp(1.25rem, 2.5vw, var(--text-3xl)); font-weight: 600; }
h4 { font-size: clamp(1.1rem, 2vw, var(--text-2xl)); font-weight: 600; }

p { line-height: 1.8; color: var(--color-text-mid); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.text-gold   { color: var(--color-gold); }
.text-white  { color: var(--color-white); }
.text-center { text-align: center; }
.text-accent {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.2em;
}

.eyebrow {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-4);
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--color-gold);
  vertical-align: middle;
  margin-right: 10px;
}

.section-label {
  display: block;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-3);
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: var(--transition-base);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}
.btn:hover::after { transform: translateX(100%); }

.btn-primary {
  background: var(--color-gold);
  color: var(--color-primary-dark);
}
.btn-primary:hover {
  background: var(--color-gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  border: 2px solid var(--color-white);
  color: var(--color-white);
  background: transparent;
}
.btn-outline:hover {
  background: var(--color-white);
  color: var(--color-primary-dark);
  transform: translateY(-2px);
}

.btn-outline-gold {
  border: 2px solid var(--color-gold);
  color: var(--color-gold);
  background: transparent;
}
.btn-outline-gold:hover {
  background: var(--color-gold);
  color: var(--color-primary-dark);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.6rem 1.25rem;
  font-size: var(--text-sm);
}
.btn-lg {
  padding: 1.1rem 2.5rem;
  font-size: var(--text-lg);
}

/* ── Gold Divider ───────────────────────────────────────────── */
.gold-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
  border-radius: var(--radius-full);
  margin: var(--space-6) 0;
}
.gold-divider--center { margin-inline: auto; }
.gold-divider--lg { width: 120px; height: 4px; }

/* ── Section Spacing ────────────────────────────────────────── */
.section { padding: var(--space-24) 0; }
.section--sm { padding: var(--space-16) 0; }
.section--lg { padding: var(--space-32) 0; }
.section--dark { background: var(--color-primary); }
.section--darker { background: var(--color-primary-dark); }
.section--off-white { background: var(--color-off-white); }
.section--white { background: var(--color-white); }

.section-header { margin-bottom: var(--space-16); }
.section-header--center { text-align: center; }
.section-header h2 { margin-bottom: var(--space-4); }
.section-subtext {
  font-size: var(--text-lg);
  color: var(--color-text-light);
  max-width: 640px;
}
.section-header--center .section-subtext { margin-inline: auto; }

/* ── Page Hero (inner pages) ────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
  padding: calc(var(--nav-height) + 4rem) 0 5rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero h1 { color: var(--color-white); margin-bottom: var(--space-4); }
.page-hero p  { color: rgba(255,255,255,0.75); font-size: var(--text-xl); max-width: 640px; margin-inline: auto; }

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.6);
  margin-bottom: var(--space-4);
}
.breadcrumb a { color: var(--color-gold-light); }
.breadcrumb a:hover { color: var(--color-gold); }
.breadcrumb span { color: var(--color-white); }

/* ── Navbar ─────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-nav);
  height: var(--nav-height);
  display: flex;
  align-items: center;
  padding: 0 clamp(1.5rem, 5%, 4rem);
  transition: background 0.4s ease, height 0.3s ease, box-shadow 0.3s ease;
}
.navbar.transparent { background: transparent; }
.navbar.scrolled {
  background: var(--color-primary-dark);
  height: var(--nav-height-scrolled);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}
.navbar.solid { background: var(--color-primary-dark); }

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
}

.navbar__logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
  transition: var(--transition-base);
}
.navbar.scrolled .navbar__logo img { height: 44px; }

.navbar__links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2rem);
}
.navbar__links a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  letter-spacing: 0.04em;
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.2s;
}
.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: width 0.3s ease;
}
.navbar__links a:hover,
.navbar__links a.active { color: var(--color-gold); }
.navbar__links a:hover::after,
.navbar__links a.active::after { width: 100%; }

.navbar__cta {
  background: var(--color-gold);
  color: var(--color-primary-dark) !important;
  padding: 0.65rem 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: var(--text-sm) !important;
  letter-spacing: 0.02em;
  white-space: nowrap;
  flex-shrink: 0;
  transition: var(--transition-base) !important;
}
.navbar__cta:hover {
  background: var(--color-gold-light) !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}
.navbar__cta::after { display: none !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  z-index: var(--z-overlay);
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: var(--transition-base);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--color-primary-dark);
  z-index: calc(var(--z-nav) - 1);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.mobile-nav.open {
  display: flex;
  opacity: 1;
}
.mobile-nav a {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  color: var(--color-white);
  font-weight: 700;
  transition: color 0.2s;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease, color 0.2s;
}
.mobile-nav.open a {
  opacity: 1;
  transform: translateY(0);
}
.mobile-nav a:hover { color: var(--color-gold); }
.mobile-nav__cta {
  background: var(--color-gold);
  color: var(--color-primary-dark) !important;
  padding: 1rem 2.5rem;
  border-radius: var(--radius-md);
  font-size: var(--text-2xl) !important;
  font-weight: 700 !important;
}

/* ── CTA Section ────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 60%, var(--color-primary-light) 100%);
  padding: var(--space-24) 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-section__deco {
  position: absolute;
  width: 300px;
  height: 300px;
  border: 2px solid rgba(201,168,76,0.15);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  animation: spinSlow 20s linear infinite;
}
.cta-section__deco--left  { left: -100px; }
.cta-section__deco--right { right: -100px; }
@keyframes spinSlow { to { transform: translateY(-50%) rotate(360deg); } }

.cta-section .eyebrow { color: var(--color-gold-light); }
.cta-section h2 { color: var(--color-white); margin-bottom: var(--space-4); }
.cta-section p  { color: rgba(255,255,255,0.75); font-size: var(--text-lg); max-width: 640px; margin-inline: auto; margin-bottom: var(--space-8); }
.cta-section__btns {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Footer ─────────────────────────────────────────────────── */
.footer {
  background: var(--color-primary-dark);
  color: rgba(255,255,255,0.75);
  padding: var(--space-24) 0 0;
}
/* Override global p color inside footer */
.footer p { color: rgba(255,255,255,0.65); margin: 0; }
.footer li { color: rgba(255,255,255,0.65); }
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-12);
  padding-bottom: var(--space-16);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer__brand img {
  height: 52px;
  margin-bottom: var(--space-4);
  filter: brightness(1.1);
}
.footer__brand p { font-size: var(--text-sm); line-height: 1.8; color: rgba(255,255,255,0.65); }
.footer__col h4 {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-5);
}
.footer__col ul li { margin-bottom: var(--space-3); color: rgba(255,255,255,0.65); font-size: var(--text-sm); }
.footer__col ul a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.footer__col ul a:hover { color: var(--color-gold); }
.footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: var(--space-4);
  font-size: var(--text-sm);
}
.footer__contact i { color: var(--color-gold); margin-top: 2px; flex-shrink: 0; }
.footer__contact a { color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer__contact a:hover { color: var(--color-gold); }

.footer__bottom {
  padding: var(--space-5) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
}
.footer__bottom p { font-size: var(--text-xs); color: rgba(255,255,255,0.55); margin: 0; }
.footer__bottom .credit { color: rgba(255,255,255,0.5); }

.social-icons {
  display: flex;
  gap: var(--space-4);
}
.social-icons a {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: var(--text-sm);
  transition: var(--transition-base);
}
.social-icons a:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  transform: translateY(-3px);
}

/* ── Sticky Mobile Buttons ──────────────────────────────────── */
.sticky-btns {
  display: none;
  position: fixed;
  bottom: var(--space-5);
  left: 0;
  right: 0;
  justify-content: space-between;
  padding: 0 var(--space-4);
  z-index: var(--z-sticky);
  pointer-events: none;
}
.sticky-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 700;
  pointer-events: all;
  box-shadow: var(--shadow-lg);
  transform: translateY(80px);
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1), box-shadow 0.2s;
}
.sticky-btn.visible { transform: translateY(0); }
.sticky-btn:active  { transform: scale(0.96); }
.sticky-btn--whatsapp { background: #25D366; color: #fff; }
.sticky-btn--call     { background: var(--color-gold); color: var(--color-primary-dark); }
.sticky-btn i { font-size: var(--text-lg); }

/* ── Trust Badges ───────────────────────────────────────────── */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-top: var(--space-6);
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.8);
}
.trust-badge i { color: var(--color-gold); }

/* ── Checklist ──────────────────────────────────────────────── */
.checklist { margin: var(--space-6) 0; }
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: var(--space-3);
  font-size: var(--text-base);
  color: var(--color-text-mid);
}
.checklist li i { color: var(--color-gold); margin-top: 3px; flex-shrink: 0; }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--space-8); }
}
@media (max-width: 768px) {
  .navbar__links { display: none; }
  .hamburger { display: flex; }
  .sticky-btns { display: flex; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .section { padding: var(--space-16) 0; }
  .section--lg { padding: var(--space-20) 0; }
  h1 { font-size: clamp(1.9rem, 7vw, 3rem); }
  h2 { font-size: clamp(1.5rem, 5vw, 2.25rem); }
}

/* ── Accessibility ──────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
}
