/* =============================================
     DESIGN TOKENS
  ============================================= */
:root {
  --navy: #0d1f2d;
  --gold: #b8963e;
  --gold-lt: #d4af6a;
  --cream: #f9f5ee;
  --white: #ffffff;
  --text: #1a1a1a;
  --muted: #6b6b6b;
  --border: rgba(184, 150, 62, 0.25);
  --font-head: "Cormorant Garamond", Georgia, serif;
  --font-body: "DM Sans", sans-serif;
  --nav-height: 68px;
}

/* =============================================
     RESET & BASE
  ============================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 18px);
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  padding-top: var(--nav-height);
}
body.menu-open {
  overflow: hidden;
}
img {
  background: transparent;
}

/* =============================================
     UTILITY
  ============================================= */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}
.tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border);
  padding: 5px 14px;
  border-radius: 2px;
  margin-bottom: 20px;
}

/* =============================================
     PAGE SWITCHING — only the active page is shown
  ============================================= */
.page {
  display: none;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}
.page.active {
  display: block;
}

/* =============================================
     NAV
  ============================================= */
nav,
.nav-inner,
.nav-links,
.nav-links button,
.nav-cta,
.nav-toggle,
.mobile-nav-panel,
.mobile-nav-links,
.mobile-nav-links button,
.mobile-nav-contact {
  font-family: "DM Sans", sans-serif;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(13, 31, 45, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(184, 150, 62, 0.2);
  padding: 0 32px;
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  padding: 0;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  cursor: pointer;
}
.nav-logo img {
  height: 36px;
  width: auto;
  display: block;
  object-fit: contain;
}
.nav-logo-text {
  color: var(--white);
}
.nav-logo span {
  color: var(--gold);
}
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links button {
  color: rgba(255, 255, 255, 0.75);
  font-size: 13.5px;
  font-weight: 400;
  letter-spacing: 0.02em;
  background: none;
  border: none;
  transition: color 0.2s;
  cursor: pointer;
}
.nav-links button:hover,
.nav-links button.active {
  color: var(--gold-lt);
}
.nav-cta {
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  padding: 10px 24px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: background 0.2s;
}
.nav-cta:hover {
  background: var(--gold-lt);
}
.nav-toggle {
  display: none;
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(184, 150, 62, 0.45);
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  line-height: 1;
}
.mobile-nav-panel {
  position: fixed;
  top: var(--nav-height);
  right: 0;
  left: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 24px 32px;
  background: linear-gradient(
    180deg,
    rgba(13, 31, 45, 0.98) 0%,
    rgba(7, 17, 26, 0.99) 100%
  );
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-16px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    visibility 0.25s ease;
  z-index: 120;
}
.mobile-nav-panel.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mobile-nav-links button {
  display: block;
  width: 100%;
  padding: 12px 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(24px, 7vw, 36px);
  font-family: var(--font-head);
  line-height: 1.1;
  border-bottom: 1px solid rgba(184, 150, 62, 0.16);
  letter-spacing: 0.02em;
  cursor: pointer;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  text-align: left;
}
.mobile-nav-links button:hover,
.mobile-nav-links button.active {
  color: var(--gold-lt);
}
.mobile-nav-contact {
  margin-top: auto;
  width: 100%;
  background: var(--gold);
  color: var(--navy);
  padding: 14px 18px;
  border: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  cursor: pointer;
}

section[id],
[id^="service-"],
[id^="pkg-"],
#articles-list,
#article-1-full,
#article-2-full,
#contact,
#testimonials,
#enquiry-form,
#plan-selected-bar {
  scroll-margin-top: calc(var(--nav-height) + 18px);
}

/* =============================================
     SECTIONS (shared)
  ============================================= */
section {
  padding: 50px 0;
}
.sec-head {
  margin-bottom: 60px;
}
.sec-head h2 {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 500;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 16px;
}
.sec-head p {
  font-size: 16px;
  color: var(--muted);
  max-width: 540px;
  line-height: 1.7;
  font-weight: 300;
}

/* =============================================
     PAGE 1 — HERO
  ============================================= */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1600&q=80");
  background-size: cover;
  background-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(13, 31, 45, 0.93) 48%,
    rgba(13, 31, 45, 0.55) 100%
  );
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(184, 150, 62, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184, 150, 62, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}
.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-eyebrow::before {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}
.hero-h1 {
  font-family: var(--font-head);
  font-size: clamp(44px, 6vw, 76px);
  font-weight: 500;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.hero-h1 em {
  color: var(--gold);
  font-style: italic;
}
.hero-sub {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.75;
  margin-bottom: 44px;
  max-width: 520px;
  font-weight: 300;
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  padding: 14px 34px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  letter-spacing: 0.04em;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
}
.btn-primary:hover {
  background: var(--gold-lt);
}
.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  padding: 14px 34px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  background: transparent;
  cursor: pointer;
  letter-spacing: 0.04em;
  text-decoration: none;
  display: inline-block;
  transition:
    border-color 0.2s,
    color 0.2s;
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.hero-badges {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.badge {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  display: flex;
  align-items: center;
  gap: 8px;
}
.badge::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* STATS */
.stats-bar {
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 36px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child {
  border-right: none;
}
.stat-num {
  font-family: var(--font-head);
  font-size: 44px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 6px;
}

/* TESTIMONIALS */
#testimonials {
  background: var(--cream);
}
.testi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.testi-card {
  background: var(--white);
  padding: 40px;
  border-left: 3px solid var(--gold);
}
.testi-quote {
  font-family: var(--font-head);
  font-size: 18px;
  font-style: italic;
  color: var(--navy);
  line-height: 1.7;
  margin-bottom: 24px;
}
.testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 12px;
  border: 2px solid var(--border);
}
.testi-author {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
}
.testi-company {
  font-size: 12px;
  color: var(--muted);
  margin-top: 3px;
}

/* CONTACT */
#contact {
  background: var(--navy);
}
.contact-section-head {
  text-align: center;
  margin-bottom: 40px;
}
.contact-section-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 500;
  color: var(--white);
  margin-bottom: 10px;
}
.contact-section-copy {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 300;
}
.contact-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-bottom: 40px;
}
.contact-card {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(184, 150, 62, 0.18);
}
.contact-card--whatsapp {
  background: rgba(37, 211, 102, 0.06);
  border-color: rgba(37, 211, 102, 0.22);
}
.contact-card-label {
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 3px;
}
.contact-card-label--whatsapp {
  color: #25d366;
}
.contact-card-value {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  margin: 0;
}
.enquiry-form {
  border-top: 1px solid rgba(184, 150, 62, 0.2);
  padding-top: 52px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
}
.contact-info h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 500;
  color: var(--white);
  margin-bottom: 20px;
}
.contact-info p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 36px;
}
.contact-form-intro {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}
.form-group textarea {
  height: 120px;
  resize: vertical;
}
.form-group select option {
  background: var(--navy);
}
.form-submit {
  width: 100%;
  background: var(--gold);
  color: var(--navy);
  padding: 14px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s;
}
.form-submit:hover {
  background: var(--gold-lt);
}
.form-note {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  text-align: center;
  margin-top: 10px;
}
.form-note strong {
  color: var(--gold);
}

/* =============================================
     PAGE 2 — SERVICES
  ============================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.svc-card {
  background: var(--cream);
  padding: 44px 36px;
  transition: background 0.25s;
  border-left: 3px solid transparent;
  position: relative;
  overflow: hidden;
}
.svc-img {
  display: none;
}
.svc-card:hover {
  background: var(--cream);
  border-left-color: var(--gold);
}
.svc-num {
  display: none;
}
.svc-title {
  font-size: 18px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 12px;
  transition: color 0.25s;
  font-family: var(--font-body);
}
.svc-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
  transition: color 0.25s;
  font-family: var(--font-body);
}
.svc-details {
  margin-top: 10px;
}
.svc-details summary {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  color: var(--gold);
  font-weight: 500;
  font-size: 14px;
  font-family: var(--font-body);
  list-style: none;
}
.svc-details summary::-webkit-details-marker {
  display: none;
}
.svc-details summary::marker {
  content: "";
}
.svc-details summary::after {
  content: " +";
}
.svc-details[open] summary::after {
  content: " -";
}
.svc-details-copy {
  margin-top: 12px;
}
.svc-details-copy p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 12px;
  font-family: var(--font-body);
}
.svc-action {
  margin-top: 12px;
  width: 100%;
  background: var(--gold);
  color: var(--navy);
  border: none;
  padding: 10px 22px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
}
.svc-action:hover {
  background: var(--gold-lt);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.price-card {
  background: var(--cream);
  padding: 44px 36px;
  position: relative;
}
.price-card.featured {
  background: var(--navy);
}
.price-tag {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.price-name {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.price-card.featured .price-name {
  color: var(--white);
}
.price-amount {
  font-family: var(--font-head);
  font-size: 52px;
  font-weight: 500;
  color: var(--navy);
  line-height: 1;
  margin: 20px 0 8px;
}
.price-card.featured .price-amount {
  color: var(--gold);
}
.price-period {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 28px;
}
.price-card.featured .price-period {
  color: rgba(255, 255, 255, 0.4);
}
.price-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 24px 0;
}
.price-feature {
  font-size: 14px;
  color: var(--muted);
  padding: 7px 0;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.price-card.featured .price-feature {
  color: rgba(255, 255, 255, 0.55);
}
.pf-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 6px;
}
.pkg-select-btn {
  width: 100%;
  margin-top: 16px;
  padding: 11px;
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--gold);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s;
}
.pkg-select-btn:hover {
  background: var(--gold);
  color: var(--navy);
}
.price-card.featured .pkg-select-btn {
  color: var(--white);
  border-color: var(--gold);
}
.price-card.featured .pkg-select-btn:hover {
  background: var(--gold);
  color: var(--navy);
}
.price-card.plan-chosen {
  border-top: 3px solid var(--gold) !important;
  outline: 2px solid var(--gold);
}

/* =============================================
     PAGE 3 — ABOUT
  ============================================= */
#about {
  background: var(--navy);
  padding: 0;
}
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.about-photo-side {
  position: relative;
  overflow: hidden;
}
.about-photo-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(15%) brightness(0.85);
}
.about-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, var(--navy) 100%);
}
.about-text-side {
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow-y: auto;
}
.about-text-side h2 {
  font-family: var(--font-head);
  font-size: clamp(30px, 3.5vw, 46px);
  font-weight: 500;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 24px;
}

#markets {
  background: var(--cream);
}
.markets-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.market-card {
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
  transition:
    border-color 0.2s,
    transform 0.2s;
}
.market-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.market-img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
  filter: grayscale(10%);
}
.market-body {
  padding: 20px 22px;
}
.market-name {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.market-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  font-weight: 300;
}

/* =============================================
     PAGE 4 — WHY AURIVA
  ============================================= */

#why-home {
  position: relative;
  padding: 0;
}

/* Content container */
.why-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 64px;
}

/* Heading */
.why-content h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 500;
  color: var(--white);
  margin-bottom: 32px;
  line-height: 1.2;
}

/* Items */
.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
  max-width: 700px;
}

.why-icon {
  width: 34px;
  height: 34px;
  background: rgba(184, 150, 62, 0.12);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0; /* prevents mobile break */
}

.why-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-item-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 4px;
}

.why-item-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  font-weight: 300;
}

/* =============================================
   MOBILE
============================================= */

@media (max-width: 768px) {
  .why-content {
    padding: 48px 24px;
  }

  .why-item {
    gap: 12px;
  }

  .why-icon {
    width: 30px;
    height: 30px;
  }

  .why-icon svg {
    width: 16px;
    height: 16px;
  }

  .why-item-title {
    font-size: 13px;
  }

  .why-item-desc {
    font-size: 13px;
  }
}

/* Keep all service copy visually consistent */
#page-services .svc-desc,
#page-services .svc-card p,
#page-services .svc-card li,
#page-services .svc-card button,
#page-services .svc-card summary {
  font-family: var(--font-body) !important;
}

/* =============================================
     FOOTER
  ============================================= */
footer {
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  max-width: 100%;
  overflow-x: hidden;
}
.site-footer {
  margin-top: 0;
  background: linear-gradient(180deg, #09131c 0%, #050b11 100%);
  border-top: 1px solid rgba(184, 150, 62, 0.18);
}
.site-footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 40px;
  padding-top: 52px;
  padding-bottom: 40px;
}
.site-footer-kicker,
.site-footer-title {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.site-footer-brand h3 {
  font-family: var(--font-head);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 500;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 14px;
  margin-top: 10px;
}
.site-footer-brand p,
.site-footer-contact p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  font-weight: 300;
}
.site-footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}
.site-footer-socials a,
.site-footer-links button,
.site-footer-contact a,
.site-footer-contact button {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}
.site-footer-socials a,
.site-footer-contact button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(184, 150, 62, 0.28);
  background: transparent;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    color 0.2s ease,
    background 0.2s ease;
}
.site-footer-socials a:hover,
.site-footer-links button:hover,
.site-footer-contact a:hover,
.site-footer-contact button:hover {
  color: var(--gold-lt);
  border-color: rgba(212, 175, 106, 0.5);
}
.site-footer-links,
.site-footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.site-footer-links button {
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  margin-bottom: 12px;
  transition: color 0.2s ease;
}
.site-footer-contact a {
  margin-bottom: 10px;
  transition: color 0.2s ease;
}
.site-footer-contact button {
  margin-top: 16px;
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}
.site-footer-contact button:hover {
  color: var(--navy);
  background: var(--gold-lt);
}
.site-footer-bottom {
  border-top: 1px solid rgba(184, 150, 62, 0.14);
  padding: 16px 0 22px;
}
.site-footer-bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.38);
}

/* =============================================
     WHATSAPP FLOAT
  ============================================= */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 99999;
  background: #25d366;
  color: #fff;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  box-shadow:
    0 4px 20px rgba(37, 211, 102, 0.45),
    0 2px 10px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s;
}
.wa-float:hover {
  transform: scale(1.12);
}
.wa-float svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  pointer-events: none;
}
.wa-pulse {
  position: absolute;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.35);
  animation: waPulse 2.2s ease-out infinite;
  pointer-events: none;
}
@keyframes waPulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.75);
    opacity: 0;
  }
}

/* =============================================
     ANIMATIONS
  ============================================= */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-up {
  opacity: 0;
  animation: fadeUp 0.7s ease forwards;
}
.fade-up.d1 {
  animation-delay: 0.1s;
}
.fade-up.d2 {
  animation-delay: 0.25s;
}
.fade-up.d3 {
  animation-delay: 0.4s;
}
.fade-up.d4 {
  animation-delay: 0.55s;
}

/* =============================================
     RESPONSIVE
  ============================================= */
@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .about-split,
  .why-split,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .about-photo-side,
  .why-img {
    min-height: 300px;
  }
  .about-text-side,
  .why-content {
    padding: 48px 32px;
  }
  .markets-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  nav {
    padding: 0 20px;
  }
  .nav-links {
    font-family: "Segoe UI";
  }
  .nav-links,
  .nav-cta {
    display: none;
  }
  .nav-toggle {
    display: inline-block;
  }
  .nav-logo-text {
    font-size: 20px;
  }
  .site-footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .contact-strip {
    grid-template-columns: 1fr 1fr;
  }
  [style*="grid-template-columns:1fr 1fr;min-height:520px"] {
    grid-template-columns: 1fr !important;
  }
  [style*="grid-template-columns:1.2fr 1fr 1.4fr 1.2fr"] {
    grid-template-columns: 1fr 1fr !important;
    gap: 20px !important;
  }
  [style*="padding:72px 64px"],
  [style*="padding:80px 64px"] {
    padding: 40px 24px !important;
  }
  #why-home .why-item,
  #why .why-item {
    min-height: auto;
  }
}
@media (max-width: 768px) {
  #why-home div[style*="padding:72px 64px"] {
    padding: 48px 24px !important;
  }

  .why-item {
    gap: 12px;
  }

  .why-icon svg {
    width: 20px;
    height: 20px;
  }

  .why-item-title {
    font-size: 15px;
  }

  .why-item-desc {
    font-size: 14px;
    line-height: 1.5;
  }

  .container {
    padding: 0 20px;
  }
  .hero-content {
    max-width: 100%;
  }
  .hero-h1 {
    font-size: clamp(32px, 8vw, 56px);
  }
  .hero-sub {
    font-size: 15px;
  }
  .hero-btns {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-badges {
    flex-direction: column;
    gap: 16px;
  }
  .sec-head h2 {
    font-size: clamp(24px, 5vw, 36px);
  }
  .why-content,
  .about-text-side {
    padding: 32px 24px;
  }
  .mobile-nav-panel {
    padding: 24px 20px 28px;
  }
}
/* Uniform service description font */
.svc-desc,
.svc-title {
  font-family: var(--font-body) !important;
}
.svc-desc {
  font-size: 14px !important;
  line-height: 1.7 !important;
  font-weight: 300 !important;
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr !important;
  }
  .contact-strip {
    grid-template-columns: 1fr;
  }
  [style*="grid-template-columns:repeat(3,1fr)"] {
    grid-template-columns: 1fr !important;
  }
  [style*="grid-template-columns:1.2fr 1fr 1.4fr 1.2fr"] {
    grid-template-columns: 1fr !important;
  }
  [style*="display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:8px;"] {
    justify-content: center !important;
    text-align: center !important;
  }
}
@media (max-width: 480px) {
  :root {
    --nav-height: 64px;
  }
  .hero-eyebrow {
    font-size: 10px;
  }
  .hero-h1 {
    font-size: clamp(28px, 9vw, 44px);
    margin-bottom: 20px;
  }
  .hero-sub {
    font-size: 14px;
    margin-bottom: 32px;
  }
  .btn-primary,
  .btn-outline {
    padding: 12px 28px;
    font-size: 13px;
  }
  .stats-bar {
    padding: 24px 0;
  }
  .stat-num {
    font-size: 32px;
  }
  .stat-label {
    font-size: 11px;
  }
  section {
    padding: 50px 0;
  }
  .svc-card {
    padding: 32px 24px;
  }
  .svc-title {
    font-size: 16px;
  }
  .svc-desc {
    font-size: 14px;
  }
  .why-item {
    flex-direction: column;
    text-align: center;
  }
  .why-icon {
    margin-bottom: 12px;
  }
  .site-footer-brand h3 {
    font-size: 30px;
  }
  .site-footer-socials {
    flex-direction: column;
    align-items: stretch;
  }
  .site-footer-socials a,
  .site-footer-contact button {
    width: 100%;
  }
}
