/* ============================================================
   KHAI RAMBO REAL ESTATE — MAIN STYLESHEET
   ============================================================ */

/* ── Google Fonts loaded inline in HTML ── */

/* ── CSS Custom Properties ── */
:root {
  --navy:        #0d1b2a;
  --navy-mid:    #162336;
  --navy-light:  #1e3250;
  --gold:        #c9a84c;
  --gold-light:  #e5c97a;
  --gold-pale:   #f5e8c0;
  --white:       #ffffff;
  --off-white:   #f8f5ef;
  --light:       #f2f0ec;
  --text-dark:   #1a1a1a;
  --text-muted:  #6b7280;
  --text-light:  #d1d5db;
  --border:      #e5e7eb;
  --propnex-red: #d92321;

  --font-serif:  'Playfair Display', Georgia, serif;
  --font-sans:   'Inter', 'Helvetica Neue', Arial, sans-serif;

  --shadow-sm:   0 1px 3px rgba(0,0,0,.08);
  --shadow-md:   0 4px 20px rgba(0,0,0,.10);
  --shadow-lg:   0 10px 40px rgba(0,0,0,.15);
  --shadow-xl:   0 20px 60px rgba(0,0,0,.20);

  --transition:  all .35s cubic-bezier(.4,0,.2,1);
  --radius:      8px;
  --radius-lg:   16px;
  --max-width:   1200px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; outline: none; }

/* ── Utility ── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 100px 0; }
.section-pad-sm { padding: 70px 0; }

.text-gold    { color: var(--gold); }
.text-navy    { color: var(--navy); }
.text-white   { color: var(--white); }
.text-muted   { color: var(--text-muted); }
.text-center  { text-align: center; }
.text-left    { text-align: left; }

.bg-navy      { background: var(--navy); }
.bg-navy-mid  { background: var(--navy-mid); }
.bg-light     { background: var(--light); }
.bg-off-white { background: var(--off-white); }
.bg-white     { background: var(--white); }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.grid { display: grid; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }
.gap-40 { gap: 40px; }
.gap-48 { gap: 48px; }

.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

/* Scroll-reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-delay-5 { transition-delay: .5s; }

/* ── Typography ── */
.eyebrow {
  font-family: var(--font-sans);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  line-height: 1.2;
  font-weight: 700;
}
h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.05rem; }
p { margin-bottom: 0; }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 20px;
}
.section-title.light { color: var(--white); }
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.7;
}
.section-subtitle.light { color: var(--text-light); }
.section-header { margin-bottom: 60px; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 4px;
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-2px);
}
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--navy);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13,27,42,.25);
}
.btn-wa {
  background: #25D366;
  color: var(--white);
}
.btn-wa:hover {
  background: #1fba57;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,.35);
}
.btn-lg { padding: 18px 44px; font-size: 1rem; }
.btn-sm { padding: 10px 22px; font-size: .8rem; }
.btn-block { width: 100%; justify-content: center; }

/* ─────────────────────────────────────────
   NAVIGATION
───────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}
#navbar.scrolled {
  background: var(--navy);
  padding: 14px 0;
  box-shadow: 0 2px 30px rgba(0,0,0,.25);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.nav-logo-name {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .02em;
  line-height: 1;
}
.nav-logo-tag {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links a {
  padding: 8px 16px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  border-radius: 4px;
  transition: var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-phone {
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-phone:hover { color: var(--gold); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--navy);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--white);
  padding: 12px 32px;
  transition: var(--transition);
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .mobile-close {
  position: absolute;
  top: 24px; right: 24px;
  background: transparent;
  color: var(--white);
  font-size: 1.5rem;
  padding: 8px;
}

/* ─────────────────────────────────────────
   HERO (HOME)
───────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

/* ── Video background ── */
.hero-video-wrapper {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: var(--navy);
  z-index: 0;
}
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
  will-change: transform;
  filter: grayscale(100%);
}
/* YouTube iframe background fallback */
.hero-yt-bg {
  position: absolute;
  inset: -10%;
  width: 120%;
  height: 120%;
  border: none;
  pointer-events: none;
}

/* ── Cinematic stage-lighting overlay ── */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  /* Stage spotlight: warm gold radial + dark vignette from left and bottom */
  background:
    radial-gradient(ellipse 55% 65% at 68% 42%, rgba(201,168,76,.10) 0%, transparent 55%),
    linear-gradient(105deg,
      rgba(13,27,42,.97) 0%,
      rgba(13,27,42,.82) 42%,
      rgba(13,27,42,.60) 100%),
    linear-gradient(to top, rgba(13,27,42,.80) 0%, transparent 35%);
}

/* ── Stage spotlight glow behind Khai's photo ── */
.hero-image-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 85%, rgba(201,168,76,.22) 0%, transparent 60%),
    radial-gradient(ellipse 100% 40% at 50% 100%, rgba(201,168,76,.12) 0%, transparent 70%);
  filter: blur(20px);
  pointer-events: none;
  z-index: 0;
  border-radius: var(--radius-lg);
}
.hero-image-card { position: relative; z-index: 1; }
.hero-award-ribbon { z-index: 2; }
.hero-content {
  position: relative;
  z-index: 2;
  padding: 160px 0 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Decorative stage light beams */
.hero-light-beam {
  position: absolute;
  top: -10%;
  width: 2px;
  height: 80%;
  transform-origin: top center;
  opacity: .10;
  z-index: 1;
  pointer-events: none;
  animation: beam-sway 8s ease-in-out infinite;
}
.hero-light-beam::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 100%;
  transform-origin: top center;
  background: linear-gradient(to bottom, rgba(201,168,76,.6) 0%, transparent 100%);
  clip-path: polygon(40% 0%, 60% 0%, 100% 100%, 0% 100%);
  filter: blur(6px);
}
.hero-light-beam-1 { left: 30%; animation-delay: 0s; }
.hero-light-beam-2 { left: 62%; animation-delay: -4s; }
@keyframes beam-sway {
  0%, 100% { transform: rotate(-4deg); opacity: .08; }
  50%       { transform: rotate(4deg);  opacity: .14; }
}

.hero-text {
  animation: hero-text-in 1s cubic-bezier(.22,1,.36,1) .1s both;
}
@keyframes hero-text-in {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0);    }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(201,168,76,.15);
  border: 1px solid rgba(201,168,76,.35);
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 28px;
}
.hero-badge span {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.4); }
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 5.5vw, 4.5rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  font-weight: 700;
}
.hero-title em {
  color: var(--gold);
  font-style: normal;
  display: block;
}
.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,.75);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 40px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.hero-stat-num {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-label {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.55);
  margin-top: 4px;
}
.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  animation: hero-img-in 1.2s cubic-bezier(.22,1,.36,1) .5s both;
}
@keyframes hero-img-in {
  from { opacity: 0; transform: translateY(30px) scale(.97); }
  to   { opacity: 1; transform: translateY(0)  scale(1);    }
}
.hero-image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 420px;
  width: 100%;
  box-shadow:
    var(--shadow-xl),
    0 0 0 1px rgba(201,168,76,.20),
    0 0 60px rgba(201,168,76,.14),
    0 0 120px rgba(201,168,76,.07);
}
.hero-image-card img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: top;
}
.hero-image-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(13,27,42,.90);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(201,168,76,.3);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-image-badge-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 1rem;
  flex-shrink: 0;
}
.hero-image-badge-text {
  flex: 1;
}
.hero-image-badge-text strong {
  display: block;
  font-size: .85rem;
  color: var(--white);
  font-weight: 700;
}
.hero-image-badge-text span {
  font-size: .72rem;
  color: var(--gold);
  letter-spacing: .06em;
}
.hero-award-ribbon {
  position: absolute;
  top: 28px;
  right: -12px;
  background: var(--gold);
  color: var(--navy);
  padding: 8px 20px 8px 14px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: 4px 0 0 4px;
  box-shadow: 0 4px 12px rgba(0,0,0,.2);
}
.hero-scroll-cue {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.45);
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,.45));
}

/* ─────────────────────────────────────────
   TRUST BAR
───────────────────────────────────────── */
.trust-bar {
  background: var(--gold);
  padding: 18px 0;
  overflow: hidden;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.trust-item i { font-size: 1rem; }
.trust-divider {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--navy);
  opacity: .4;
}

/* ─────────────────────────────────────────
   ABOUT PREVIEW (HOME)
───────────────────────────────────────── */
.about-preview {
  background: var(--white);
}
.about-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-preview-image {
  position: relative;
}
.about-preview-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-preview-img-main img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  object-position: top;
}
.about-preview-img-accent {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 200px;
  height: 200px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 6px solid var(--white);
  box-shadow: var(--shadow-md);
}
.about-preview-img-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-preview-caption {
  position: absolute;
  top: 28px;
  left: -20px;
  background: var(--gold);
  color: var(--navy);
  padding: 12px 20px;
  border-radius: var(--radius);
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  box-shadow: var(--shadow-md);
}
.about-preview-content {
  padding-right: 20px;
}
.about-preview-content p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}
.about-grid-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}
.about-stat-card {
  background: var(--light);
  border-radius: var(--radius);
  padding: 20px;
  border-left: 3px solid var(--gold);
}
.about-stat-card .num {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.about-stat-card .label {
  font-size: .78rem;
  color: var(--text-muted);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* ─────────────────────────────────────────
   SERVICES SECTION (HOME)
───────────────────────────────────────── */
.services-home {
  background: var(--off-white);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: var(--transition);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .35s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.4rem;
  margin-bottom: 24px;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: var(--gold);
  color: var(--navy);
}
.service-card h3 {
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 12px;
}
.service-card p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.service-card .read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gold);
  transition: var(--transition);
}
.service-card .read-more:hover { gap: 10px; }

/* ─────────────────────────────────────────
   WHY CHOOSE (HOME)
───────────────────────────────────────── */
.why-choose {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.why-choose::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,.08) 0%, transparent 70%);
}
.why-choose::after {
  content: '';
  position: absolute;
  bottom: -200px; left: -200px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,.06) 0%, transparent 70%);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  position: relative;
  z-index: 1;
}
.why-card {
  padding: 48px 32px;
  border-right: 1px solid rgba(255,255,255,.06);
  transition: var(--transition);
  position: relative;
}
.why-card:last-child { border-right: none; }
.why-card:hover { background: rgba(255,255,255,.03); }
.why-num {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 700;
  color: rgba(201,168,76,.12);
  line-height: 1;
  margin-bottom: 20px;
  transition: var(--transition);
}
.why-card:hover .why-num { color: rgba(201,168,76,.25); }
.why-card h4 {
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 12px;
}
.why-card p {
  font-size: .87rem;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
}
.why-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(201,168,76,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 20px;
}

/* ─────────────────────────────────────────
   TESTIMONIALS
───────────────────────────────────────── */
.testimonials { background: var(--white); }
.testimonials-slider {
  position: relative;
  padding: 10px 0 50px;
}
.testimonials-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  transition: var(--transition);
  border: 1px solid var(--border);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-pale);
}
.testimonial-quote {
  font-size: 2.5rem;
  color: var(--gold);
  font-family: Georgia, serif;
  line-height: 1;
  margin-bottom: 20px;
  opacity: .6;
}
.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}
.testimonial-stars i { color: var(--gold); font-size: .9rem; }
.testimonial-card p {
  font-size: .92rem;
  color: var(--text-muted);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 24px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: .9rem;
  font-weight: 700;
  font-family: var(--font-serif);
  flex-shrink: 0;
}
.testimonial-name {
  font-weight: 700;
  color: var(--navy);
  font-size: .9rem;
}
.testimonial-role {
  font-size: .76rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: 2px;
}

/* ─────────────────────────────────────────
   AWARDS SECTION
───────────────────────────────────────── */
.awards-section { background: var(--navy-mid); }
.awards-subtitle { color: rgba(255,255,255,.55); }
.awards-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 48px;
}
.award-pill {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: 50px;
  padding: 10px 22px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  transition: var(--transition);
}
.award-pill:hover {
  background: rgba(201,168,76,.1);
  border-color: var(--gold);
}
.awards-years {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 60px;
}
.award-year-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}
.award-year-card:hover {
  border-color: rgba(201,168,76,.3);
  background: rgba(201,168,76,.05);
}
.award-year-card .year {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
}
.award-year-card .award-name {
  font-size: .8rem;
  color: var(--white);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 6px;
}
.award-year-card .award-detail {
  font-size: .74rem;
  color: rgba(255,255,255,.45);
}

/* ─────────────────────────────────────────
   CTA SECTION
───────────────────────────────────────── */
.cta-section {
  position: relative;
  overflow: hidden;
  background: var(--navy);
}
.cta-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/cta-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: .15;
}
.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.cta-content h2 {
  color: var(--white);
  margin-bottom: 20px;
}
.cta-content p {
  color: rgba(255,255,255,.65);
  font-size: 1.05rem;
  margin-bottom: 40px;
}
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ─────────────────────────────────────────
   PAGE HERO (Inner pages)
───────────────────────────────────────── */
.page-hero {
  background: var(--navy);
  padding: 160px 0 90px;
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .18;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(13,27,42,.8), rgba(13,27,42,.95));
}
.page-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.page-hero-content h1 {
  color: var(--white);
  margin-bottom: 16px;
}
.page-hero-content p {
  color: rgba(255,255,255,.65);
  font-size: 1.1rem;
  max-width: 580px;
  margin: 0 auto;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.breadcrumb a { color: rgba(255,255,255,.45); transition: var(--transition); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }
.breadcrumb i { color: rgba(255,255,255,.3); font-size: .7rem; }

/* ─────────────────────────────────────────
   SERVICES PAGE
───────────────────────────────────────── */
.service-full-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid var(--border);
}
.service-full-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}
.service-full-img {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.service-full-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.service-full-card:hover .service-full-img img {
  transform: scale(1.06);
}
.service-full-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(13,27,42,.7));
}
.service-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: var(--navy);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.service-full-body {
  padding: 36px 28px;
}
.service-full-body h3 {
  color: var(--navy);
  margin-bottom: 12px;
  font-size: 1.25rem;
}
.service-full-body p {
  color: var(--text-muted);
  font-size: .9rem;
  line-height: 1.75;
  margin-bottom: 24px;
}
.service-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .87rem;
  color: var(--text-muted);
}
.service-feature i {
  color: var(--gold);
  font-size: .85rem;
  flex-shrink: 0;
}
.services-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* Process Steps */
.process-section { background: var(--navy); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 60px;
  right: 60px;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  z-index: 0;
}
.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.process-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 0 0 8px rgba(201,168,76,.15);
  transition: var(--transition);
}
.process-step:hover .process-num {
  transform: scale(1.1);
  box-shadow: 0 0 0 12px rgba(201,168,76,.2);
}
.process-step h4 {
  color: var(--white);
  margin-bottom: 10px;
  font-size: 1rem;
}
.process-step p {
  color: rgba(255,255,255,.5);
  font-size: .85rem;
  line-height: 1.65;
}

/* ─────────────────────────────────────────
   ABOUT PAGE
───────────────────────────────────────── */
.about-bio-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.about-bio-image {
  position: sticky;
  top: 120px;
}
.about-bio-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.about-bio-img img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: top;
}
.about-badges {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}
.about-badge-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--light);
  border-radius: var(--radius);
  padding: 14px 18px;
  border-left: 3px solid var(--gold);
}
.about-badge-item i {
  color: var(--gold);
  font-size: 1rem;
  width: 20px;
  text-align: center;
}
.about-badge-item span {
  font-size: .85rem;
  color: var(--text-dark);
  font-weight: 600;
}
.about-bio-text p {
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 20px;
  font-size: 1rem;
}
.about-principles {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 36px;
  margin-top: 36px;
}
.about-principles h4 {
  color: var(--navy);
  margin-bottom: 24px;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.principle-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.principle-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.principle-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: .85rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.principle-item h5 {
  font-size: .9rem;
  color: var(--navy);
  margin-bottom: 2px;
}
.principle-item p {
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Timeline */
.timeline-section { background: var(--navy); }
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), rgba(201,168,76,.1));
  transform: translateX(-50%);
}
.timeline-item {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 24px;
  align-items: start;
  margin-bottom: 48px;
}
.timeline-item:nth-child(even) .timeline-item-content { grid-column: 3; }
.timeline-item:nth-child(even) .timeline-item-empty { grid-column: 1; order: -1; }
.timeline-dot {
  grid-column: 2;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
  padding-top: 6px;
}
.timeline-dot-inner {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--navy);
  box-shadow: 0 0 0 4px rgba(201,168,76,.3);
}
.timeline-item-content {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 24px;
  transition: var(--transition);
}
.timeline-item-content:hover {
  border-color: rgba(201,168,76,.3);
  background: rgba(201,168,76,.04);
}
.timeline-year {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
}
.timeline-item-content h4 {
  color: var(--white);
  margin-bottom: 8px;
  font-size: .95rem;
}
.timeline-item-content p {
  color: rgba(255,255,255,.5);
  font-size: .85rem;
  line-height: 1.65;
}

/* ─────────────────────────────────────────
   CONTACT PAGE
───────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: start;
}
.contact-info-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  position: sticky;
  top: 100px;
}
.contact-info-card h3 {
  color: var(--white);
  margin-bottom: 8px;
}
.contact-info-card > p {
  color: rgba(255,255,255,.55);
  margin-bottom: 36px;
  font-size: .9rem;
  line-height: 1.7;
}
.contact-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-item-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(201,168,76,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-item-body strong {
  display: block;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.4);
  margin-bottom: 3px;
}
.contact-item-body a,
.contact-item-body span {
  color: var(--white);
  font-size: .95rem;
  font-weight: 500;
  transition: var(--transition);
}
.contact-item-body a:hover { color: var(--gold); }
.social-links-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.social-link {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: .95rem;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,.08);
}
.social-link:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  transform: translateY(-3px);
}
.contact-form-wrapper {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 52px 48px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.contact-form-wrapper h3 {
  color: var(--navy);
  margin-bottom: 8px;
}
.contact-form-wrapper > p {
  color: var(--text-muted);
  margin-bottom: 36px;
  font-size: .9rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: .92rem;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
  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: 130px;
}
.form-group select { appearance: none; cursor: pointer; }
.form-privacy {
  font-size: .78rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}
.form-privacy a { color: var(--gold); text-decoration: underline; }
.form-success {
  display: none;
  background: #dcfce7;
  border: 1px solid #86efac;
  border-radius: var(--radius);
  padding: 16px 20px;
  color: #166534;
  font-size: .9rem;
  margin-top: 16px;
}
.form-success.show { display: flex; align-items: center; gap: 10px; }

/* ─────────────────────────────────────────
   WHATSAPP FORM WIDGET
───────────────────────────────────────── */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes wa-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,.5); }
  70%  { box-shadow: 0 0 0 12px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
.wa-widget {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 9000;
  font-family: var(--font-sans);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.wa-widget-btn {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #25D366;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: background .25s, transform .25s;
  animation: float 3s ease-in-out infinite, wa-pulse 2.5s ease-in-out infinite;
  flex-shrink: 0;
}
.wa-widget-btn:hover {
  background: #1fba57;
  transform: scale(1.08);
  animation: none;
  box-shadow: 0 8px 28px rgba(37,211,102,.6);
}
.wa-icon-close { display: none; }
.wa-widget.open .wa-icon-open { display: none; }
.wa-widget.open .wa-icon-close { display: block; }
.wa-widget.open .wa-widget-btn {
  background: var(--navy);
  animation: none;
  box-shadow: 0 4px 16px rgba(0,0,0,.3);
}
/* Panel */
.wa-widget-panel {
  position: absolute;
  bottom: 76px;
  right: 0;
  width: 360px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 12px 48px rgba(0,0,0,.18), 0 2px 8px rgba(0,0,0,.08);
  overflow: hidden;
  opacity: 0;
  transform: translateY(16px) scale(.97);
  pointer-events: none;
  transition: opacity .28s ease, transform .28s ease;
  transform-origin: bottom right;
}
.wa-widget.open .wa-widget-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}
/* Header */
.wa-widget-header {
  background: linear-gradient(135deg, #25D366, #1aad54);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wa-widget-header-left {
  display: flex;
  align-items: center;
  gap: 13px;
}
.wa-widget-avatar {
  position: relative;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,.7);
  flex-shrink: 0;
}
.wa-widget-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.wa-online-dot {
  position: absolute;
  bottom: 1px;
  right: 1px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #25D366;
}
.wa-widget-name {
  color: #fff;
  font-weight: 700;
  font-size: .92rem;
  line-height: 1.2;
}
.wa-widget-role {
  color: rgba(255,255,255,.8);
  font-size: .72rem;
  margin-top: 1px;
}
.wa-widget-header-icon {
  color: rgba(255,255,255,.55);
  font-size: 1.7rem;
}
/* Body */
.wa-widget-body {
  padding: 18px 20px 20px;
  max-height: 500px;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.wa-widget-body::-webkit-scrollbar { width: 4px; }
.wa-widget-body::-webkit-scrollbar-track { background: transparent; }
.wa-widget-body::-webkit-scrollbar-thumb { background: #ddd; border-radius: 4px; }
.wa-recipient-group { display:flex; gap:8px; margin-top:2px; }
.wa-recipient-option { flex:1; cursor:pointer; }
.wa-recipient-option input[type="radio"] { display:none; }
.wa-recipient-card {
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:3px;
  padding:10px 8px;
  border:1.5px solid #e2e8f0;
  border-radius:10px;
  background:#fafafa;
  text-align:center;
  transition:border-color .2s, background .2s, box-shadow .2s;
  cursor:pointer;
}
.wa-recipient-card i { font-size:1.3rem; color:#25D366; }
.wa-recipient-name { font-size:.78rem; font-weight:700; color:#222; line-height:1.2; }
.wa-recipient-role { font-size:.68rem; color:#888; line-height:1.3; }
.wa-recipient-option input:checked + .wa-recipient-card {
  border-color:#25D366;
  background:#f0fdf4;
  box-shadow:0 0 0 3px rgba(37,211,102,.12);
}
.wa-recipient-option input:checked + .wa-recipient-card .wa-recipient-name { color:#1aad54; }
.wa-widget-intro {
  font-size: .82rem;
  color: #666;
  margin-bottom: 16px;
  line-height: 1.6;
  padding: 10px 12px;
  background: #f0fdf4;
  border-left: 3px solid #25D366;
  border-radius: 0 6px 6px 0;
}
/* Form fields */
.wa-form-group {
  margin-bottom: 11px;
}
.wa-form-group > label {
  display: block;
  font-size: .75rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
  letter-spacing: .02em;
}
.wa-req { color: #e53e3e; }
.wa-optional { color: #999; font-weight: 400; }
.wa-form-group input,
.wa-form-group select,
.wa-form-group textarea {
  width: 100%;
  padding: 8px 11px;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  font-size: .83rem;
  font-family: var(--font-sans);
  color: #222;
  background: #fafafa;
  transition: border-color .2s, background .2s;
  box-sizing: border-box;
}
.wa-form-group input:focus,
.wa-form-group select:focus,
.wa-form-group textarea:focus {
  outline: none;
  border-color: #25D366;
  background: #fff;
}
.wa-form-group textarea {
  resize: vertical;
  min-height: 68px;
  line-height: 1.5;
}
/* Phone input */
.wa-phone-wrap {
  display: flex;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  overflow: hidden;
  background: #fafafa;
  transition: border-color .2s;
}
.wa-phone-wrap:focus-within { border-color: #25D366; }
.wa-phone-prefix {
  padding: 8px 10px;
  font-size: .83rem;
  font-weight: 600;
  color: #555;
  background: #edf2f7;
  border-right: 1.5px solid #e2e8f0;
  white-space: nowrap;
  display: flex;
  align-items: center;
}
.wa-phone-wrap input {
  border: none;
  border-radius: 0;
  background: transparent;
  flex: 1;
  min-width: 0;
}
.wa-phone-wrap input:focus { background: transparent; }
/* File upload */
.wa-file-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1.5px dashed #cbd5e0;
  border-radius: 8px;
  padding: 10px;
  text-align: center;
  font-size: .8rem;
  color: #718096;
  cursor: pointer;
  transition: border-color .2s, color .2s;
}
.wa-file-label:hover { border-color: #25D366; color: #25D366; }
.wa-file-input { display: none; }
.wa-file-name {
  display: block;
  font-size: .75rem;
  color: #25D366;
  margin-top: 5px;
  font-weight: 600;
}
/* Submit button */
.wa-submit-btn {
  width: 100%;
  background: #25D366;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: .88rem;
  font-weight: 700;
  font-family: var(--font-sans);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background .2s, transform .15s;
  margin-top: 6px;
}
.wa-submit-btn:hover {
  background: #1aad54;
  transform: translateY(-1px);
}
.wa-submit-btn:active { transform: translateY(0); }
.wa-submit-btn i { font-size: 1.1rem; }
/* Error message */
.wa-error-msg {
  display: none;
  font-size: .78rem;
  color: #e53e3e;
  margin-top: 8px;
  text-align: center;
  background: #fff5f5;
  border: 1px solid #fed7d7;
  border-radius: 6px;
  padding: 7px 10px;
}
/* Responsive */
@media (max-width: 480px) {
  .wa-widget { bottom: 20px; right: 16px; }
  .wa-widget-panel { width: calc(100vw - 32px); right: -16px; }
}

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
footer {
  background: var(--navy);
  padding-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-brand {}
.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.footer-logo-tag {
  font-size: .7rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-brand p {
  color: rgba(255,255,255,.45);
  font-size: .87rem;
  line-height: 1.8;
  max-width: 300px;
  margin-bottom: 24px;
}
.footer-socials {
  display: flex;
  gap: 8px;
}
.footer-social {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.5);
  font-size: .9rem;
  transition: var(--transition);
}
.footer-social:hover {
  background: var(--gold);
  color: var(--navy);
}
.footer-col h5 {
  color: var(--white);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 20px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul li a {
  color: rgba(255,255,255,.45);
  font-size: .87rem;
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.45);
  font-size: .85rem;
  margin-bottom: 12px;
}
.footer-contact-item a {
  color: rgba(255,255,255,.45);
  transition: var(--transition);
}
.footer-contact-item a:hover { color: var(--gold); }
.footer-contact-item i { color: var(--gold); width: 16px; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  color: rgba(255,255,255,.3);
  font-size: .78rem;
}
.footer-bottom p a { color: rgba(255,255,255,.45); transition: var(--transition); }
.footer-bottom p a:hover { color: var(--gold); }
.rea-badge {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 8px 16px;
  font-size: .72rem;
  color: rgba(255,255,255,.4);
  letter-spacing: .05em;
}
.rea-badge strong { color: rgba(255,255,255,.7); margin-right: 4px; }

/* ─────────────────────────────────────────
   COOKIE / PROPNEX DISCLAIMER
───────────────────────────────────────── */
.disclaimer-bar {
  background: rgba(13,27,42,.95);
  border-top: 1px solid rgba(201,168,76,.2);
  padding: 10px 24px;
  text-align: center;
  font-size: .7rem;
  color: rgba(255,255,255,.3);
}

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 60px; }
  .hero-image-wrapper { display: none; }
  .hero-subtitle { max-width: 100%; }
  .about-preview-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-preview-image { display: none; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .services-page-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .why-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,.06); }
  .why-card:nth-child(2), .why-card:nth-child(4) { border-bottom: none; }
  .awards-years { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }
  .about-bio-grid { grid-template-columns: 1fr; }
  .about-bio-image { position: static; display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-track { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info-card { position: static; }
}

@media (max-width: 768px) {
  .section-pad { padding: 70px 0; }
  .section-pad-sm { padding: 50px 0; }
  .section-header { margin-bottom: 40px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .services-page-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .awards-years { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .testimonials-track { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrapper { padding: 32px 24px; }
  .wa-widget { bottom: 20px; right: 16px; }
  .wa-widget-panel { width: calc(100vw - 32px); right: -16px; }
  .trust-bar-inner { gap: 24px; }
  .trust-divider { display: none; }
  .about-badges { display: none; }
}

@media (max-width: 560px) {
  .hero { min-height: 100svh; }
  .hero-content { padding: 130px 0 80px; }
  .awards-years { grid-template-columns: 1fr; }
  .page-hero { padding: 130px 0 70px; }
  .about-grid-stats { grid-template-columns: 1fr; }
}

/* ===========================
   CONTACT CHANNEL CARDS
   =========================== */
.contact-channels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.contact-channel-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-decoration: none;
  transition: var(--transition);
}
.contact-channel-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-pale);
}
.channel-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.channel-detail h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.channel-detail p {
  font-size: .86rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 14px;
}
.channel-cta {
  font-size: .82rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .08em;
  display: flex;
  align-items: center;
  gap: 6px;
}
.channel-cta i { transition: transform .2s; }
.contact-channel-card:hover .channel-cta i { transform: translateX(4px); }

@media (max-width: 1024px) {
  .contact-channels { grid-template-columns: 1fr; }
  .contact-channel-card { padding: 24px 20px; }
}
