/* ============================================================
   PROVENZA REALTY — shared stylesheet
   Multi-page static site. Navy + gold brand identity.
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --navy: #162a41;
  --navy-dark: #0d1e2e;
  --gold: #f4d873;
  --gold-light: #f7e28a;
  --black: #111111;
  --gray: #6b7280;
  --light-gray: #f5f5f0;
  --white: #ffffff;
  --line: #e5e5e5;

  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Montserrat', sans-serif;

  --transition: 0.3s ease;
  --shadow: 0 8px 40px rgba(22,42,65,0.12);
  --shadow-gold: 0 8px 30px rgba(244,216,115,0.25);

  --maxw: 1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- Shared type helpers ---------- */
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.5px;
}
.section-title span { color: var(--gold); }
.section-header { text-align: center; max-width: 620px; margin: 0 auto 64px; }
.section-header .section-title { margin-bottom: 16px; }
.section-desc { font-size: 15px; color: var(--gray); line-height: 1.8; }

/* ---------- Buttons ---------- */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold); color: var(--navy);
  font-size: 13px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 16px 34px; border: 2px solid var(--gold); cursor: pointer;
  transition: var(--transition);
}
.btn-primary:hover { background: transparent; color: var(--navy); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: var(--white);
  font-size: 13px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 15px 34px; border: 2px solid rgba(255,255,255,0.6); cursor: pointer;
  transition: var(--transition);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-white {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--white); color: var(--gold); border: 2px solid var(--white);
  padding: 16px 36px; font-size: 13px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; transition: var(--transition);
}
.btn-white:hover { background: transparent; color: var(--white); }
.btn-outline-white {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.6);
  padding: 16px 36px; font-size: 13px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; transition: var(--transition);
}
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  display: block !important;
  position: sticky; top: 0; z-index: 1000;
  background: var(--navy);
  border-bottom: 1px solid rgba(244,216,115,0.15);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 76px; gap: 16px;
}
.nav-logo img { height: 46px; width: auto; }
.nav-logo .nav-logo-text {
  font-family: var(--font-display); font-weight: 800; font-size: 1.3rem;
  color: var(--white); letter-spacing: 0.5px;
}
.nav-logo .nav-logo-text span { color: var(--gold); }
.nav-menu { display: flex !important; align-items: center; gap: 34px; }
.nav-menu a {
  font-size: 13px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  color: rgba(255,255,255,0.8); transition: var(--transition); position: relative;
}
.nav-menu a:hover, .nav-menu a.active { color: var(--gold); }
.nav-menu a.active::after {
  content: ''; position: absolute; left: 0; bottom: -6px;
  width: 100%; height: 2px; background: var(--gold);
}
.nav-cta {
  background: var(--gold); color: var(--navy) !important;
  padding: 11px 22px; border: 2px solid var(--gold);
}
.nav-cta:hover { background: transparent; color: var(--gold) !important; }
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  color: var(--gold); font-size: 22px;
}

/* ============================================================
   HERO (home)
   ============================================================ */
.hero {
  min-height: 90vh; background: var(--navy);
  position: relative; display: flex; align-items: center; overflow: hidden;
}
.hero-bg-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0.22; filter: brightness(0.55) saturate(0.7);
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(105deg, rgba(22,42,65,0.97) 0%, rgba(22,42,65,0.80) 45%, rgba(22,42,65,0.55) 100%);
}
.hero-gold-bar {
  position: absolute; left: 0; top: 0; width: 5px; height: 100%; z-index: 3;
  background: linear-gradient(to bottom, var(--gold), rgba(244,216,115,0.2));
}
.hero-inner {
  position: relative; z-index: 4; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  padding: 100px 0 80px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(244,216,115,0.1); border: 1px solid rgba(244,216,115,0.35);
  color: var(--gold); font-size: 10px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; padding: 8px 18px; margin-bottom: 28px;
}
.hero-badge i { font-size: 9px; }
.hero-title {
  font-family: var(--font-display); font-size: clamp(2.4rem, 4.2vw, 4rem);
  font-weight: 900; color: var(--white); line-height: 1.06; margin-bottom: 26px;
  letter-spacing: -1px;
}
.hero-title em {
  font-style: italic; color: var(--gold); display: block;
  font-weight: 300; letter-spacing: 0;
}
.hero-subtitle {
  font-size: 15px; color: rgba(255,255,255,0.62); line-height: 1.85;
  margin-bottom: 42px; font-weight: 300; max-width: 480px;
}
.hero-subtitle strong { color: var(--gold); font-weight: 600; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-right { display: flex; flex-direction: column; gap: 20px; }
.hero-stats-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(244,216,115,0.15);
  backdrop-filter: blur(6px); padding: 44px 40px; width: 100%;
}
.hero-stats-title {
  font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 32px; display: block;
}
.hero-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px 24px; }
.hero-stat-item { border-left: 2px solid var(--gold); padding-left: 16px; }
.hero-stat-num {
  font-family: var(--font-display); font-size: 2.2rem; font-weight: 800;
  color: var(--white); line-height: 1; margin-bottom: 6px;
}
.hero-stat-num span { color: var(--gold); }
.hero-stat-label {
  font-size: 11px; font-weight: 500; color: rgba(255,255,255,0.48);
  letter-spacing: 1px; text-transform: uppercase;
}
.hero-trust-line { display: flex; align-items: center; gap: 14px; width: 100%; }
.hero-trust-line .line { flex: 1; height: 1px; background: rgba(244,216,115,0.2); }
.hero-trust-line span {
  font-size: 11px; color: rgba(255,255,255,0.35); letter-spacing: 2px;
  text-transform: uppercase; white-space: nowrap;
}
.hero-badges-row { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-micro-badge {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  padding: 10px 16px; font-size: 11px; font-weight: 600;
  color: rgba(255,255,255,0.7); letter-spacing: 0.5px; flex: 1;
}
.hero-micro-badge i { color: var(--gold); font-size: 13px; }

/* ============================================================
   PAGE BANNER (interior pages)
   ============================================================ */
.page-banner {
  background: var(--navy); position: relative; overflow: hidden;
  padding: 90px 0; text-align: center;
}
.page-banner::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, rgba(244,216,115,0.03) 0, rgba(244,216,115,0.03) 1px, transparent 1px, transparent 40px);
}
.page-banner-gold-bar {
  position: absolute; left: 0; top: 0; width: 5px; height: 100%;
  background: linear-gradient(to bottom, var(--gold), rgba(244,216,115,0.2));
}
.page-banner .inner { position: relative; z-index: 1; }
.page-banner .section-label { display: inline-block; }
.page-banner h1 {
  font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800; color: var(--white); letter-spacing: -0.5px; line-height: 1.1;
}
.page-banner h1 span { color: var(--gold); }
.page-banner p {
  color: rgba(255,255,255,0.6); font-size: 15px; max-width: 560px;
  margin: 18px auto 0; line-height: 1.8;
}
.breadcrumb {
  margin-top: 22px; font-size: 12px; letter-spacing: 1px; text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.breadcrumb a { color: var(--gold); }

/* ============================================================
   ABOUT
   ============================================================ */
.about-section { padding: 110px 0; background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-image-wrap { position: relative; }
.about-img-main { width: 100%; height: 540px; object-fit: cover; }
.about-badge-box {
  position: absolute; top: 40px; left: -28px;
  background: var(--gold); color: var(--navy); padding: 24px 28px;
  text-align: center; box-shadow: var(--shadow-gold);
}
.about-badge-num { font-family: var(--font-display); font-size: 2.2rem; font-weight: 900; line-height: 1; }
.about-badge-text { font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-top: 4px; }
.about-content { padding-left: 10px; }
.about-desc { font-size: 15px; color: var(--gray); line-height: 1.9; margin: 20px 0 32px; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 40px; }
.about-feature { display: flex; align-items: flex-start; gap: 12px; }
.about-feature-icon {
  width: 36px; height: 36px; background: rgba(244,216,115,0.12);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px;
}
.about-feature-icon i { color: var(--gold); font-size: 14px; }
.about-feature-text strong { display: block; font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.about-feature-text span { font-size: 12px; color: var(--gray); }
.signature-wrap {
  display: flex; align-items: center; gap: 20px;
  padding-top: 28px; border-top: 1px solid var(--line); margin-top: 28px;
}
.signature-name strong { font-family: var(--font-display); font-size: 16px; color: var(--navy); font-weight: 800; letter-spacing: 0.5px; }
.signature-name span { display: block; font-size: 11px; color: var(--gold); font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; margin-top: 2px; }

/* ============================================================
   SERVICES
   ============================================================ */
.services-section { padding: 110px 0; background: var(--light-gray); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card {
  background: var(--white); padding: 40px 34px; position: relative;
  transition: var(--transition); border-bottom: 3px solid transparent;
  box-shadow: 0 2px 20px rgba(22,42,65,0.06);
}
.service-card:hover { transform: translateY(-6px); border-bottom-color: var(--gold); box-shadow: var(--shadow); }
.service-icon {
  width: 60px; height: 60px; background: rgba(22,42,65,0.05);
  display: flex; align-items: center; justify-content: center; margin-bottom: 24px;
  transition: var(--transition);
}
.service-card:hover .service-icon { background: var(--gold); }
.service-icon i { font-size: 24px; color: var(--navy); transition: var(--transition); }
.service-card:hover .service-icon i { color: var(--white); }
.service-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; letter-spacing: 0.3px; color: var(--navy); margin-bottom: 12px; }
.service-desc { font-size: 14px; color: var(--gray); line-height: 1.8; }
.service-number {
  position: absolute; top: 20px; right: 24px; font-family: var(--font-display);
  font-size: 3.5rem; font-weight: 700; color: rgba(22,42,65,0.05); line-height: 1;
}

/* ============================================================
   STATS BAND
   ============================================================ */
.stats-band { background: var(--navy); padding: 70px 0; position: relative; overflow: hidden; }
.stats-band::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(-45deg, rgba(244,216,115,0.04) 0, rgba(244,216,115,0.04) 1px, transparent 1px, transparent 30px);
}
.stats-band-grid { display: grid; grid-template-columns: repeat(4, 1fr); position: relative; }
.stat-item { text-align: center; padding: 0 30px; border-right: 1px solid rgba(255,255,255,0.1); }
.stat-item:last-child { border-right: none; }
.stat-number { font-family: var(--font-display); font-size: 3.2rem; font-weight: 900; color: var(--gold); line-height: 1; margin-bottom: 10px; }
.stat-label { font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.55); }

/* ============================================================
   WHY US
   ============================================================ */
.why-section { padding: 110px 0; background: var(--white); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-image-stack { position: relative; }
.why-gold-bar { position: absolute; top: 0; left: -6px; width: 5px; height: 100%; z-index: 2; background: linear-gradient(to bottom, var(--gold), rgba(244,216,115,0.2)); }
.why-img-main-wrap { position: relative; overflow: hidden; }
.why-img-full { width: 100%; height: 580px; object-fit: cover; }
.why-img-overlay-badge {
  position: absolute; bottom: 28px; right: 28px; background: var(--gold); color: var(--navy);
  display: flex; align-items: center; gap: 10px; padding: 16px 22px; font-weight: 800;
  font-size: 13px; letter-spacing: 1px; text-transform: uppercase; box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.why-img-overlay-badge i { font-size: 16px; }
.why-list { margin-top: 36px; display: flex; flex-direction: column; }
.why-item { display: flex; align-items: flex-start; gap: 20px; padding: 22px 0; border-bottom: 1px solid #f0f0f0; }
.why-item:last-child { border-bottom: none; }
.why-item-num { font-family: var(--font-display); font-size: 1.6rem; font-weight: 900; color: rgba(244,216,115,0.5); min-width: 50px; line-height: 1; padding-top: 4px; }
.why-item-body strong { display: block; font-size: 14.5px; font-weight: 700; letter-spacing: 0.2px; color: var(--navy); margin-bottom: 5px; }
.why-item-body p { font-size: 13.5px; color: var(--gray); line-height: 1.7; }

/* ============================================================
   WHO WE SERVE
   ============================================================ */
.serve-section { padding: 110px 0; background: var(--navy); position: relative; overflow: hidden; }
.serve-section::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, rgba(244,216,115,0.03) 0, rgba(244,216,115,0.03) 1px, transparent 1px, transparent 40px);
}
.serve-section .section-title { color: var(--white); }
.serve-section .section-desc { color: rgba(255,255,255,0.55); }
.serve-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; margin-top: 56px; position: relative; }
.serve-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  padding: 36px 24px; text-align: center; transition: var(--transition);
}
.serve-card:hover { background: var(--gold); border-color: var(--gold); transform: translateY(-4px); }
.serve-card-icon { font-size: 2rem; color: var(--gold); margin-bottom: 16px; transition: var(--transition); }
.serve-card:hover .serve-card-icon { color: var(--white); }
.serve-card-title { font-size: 13px; font-weight: 700; color: var(--white); letter-spacing: 0.5px; line-height: 1.4; }

/* ============================================================
   PROCESS
   ============================================================ */
.process-section { padding: 110px 0; background: var(--light-gray); }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 64px; position: relative; }
.process-steps::before {
  content: ''; position: absolute; top: 50px; left: 12.5%; right: 12.5%; height: 1px; z-index: 0;
  background: linear-gradient(to right, var(--gold), rgba(244,216,115,0.2));
}
.process-step { text-align: center; padding: 0 24px; position: relative; z-index: 1; }
.process-step-num {
  width: 100px; height: 100px; background: var(--white); border: 2px solid var(--gold);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px; font-family: var(--font-display); font-size: 1.8rem; font-weight: 800;
  color: var(--gold); transition: var(--transition);
}
.process-step:hover .process-step-num { background: var(--gold); color: var(--white); }
.process-step-title { font-family: var(--font-display); font-size: 1rem; font-weight: 700; letter-spacing: 0.3px; color: var(--navy); margin-bottom: 10px; }
.process-step-desc { font-size: 13px; color: var(--gray); line-height: 1.7; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { padding: 110px 0; background: var(--white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 64px; }
.testimonial-card { padding: 40px 34px; background: var(--light-gray); position: relative; transition: var(--transition); }
.testimonial-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.testimonial-quote { font-size: 3.5rem; color: var(--gold); line-height: 0.8; margin-bottom: 16px; }
.testimonial-text { font-size: 14.5px; color: #555; line-height: 1.85; margin-bottom: 28px; }
.testimonial-stars { color: var(--gold); font-size: 13px; margin-bottom: 20px; letter-spacing: 2px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; padding-top: 20px; border-top: 1px solid var(--line); }
.testimonial-avatar { width: 48px; height: 48px; background: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.testimonial-avatar i { color: var(--gold); font-size: 18px; }
.testimonial-author strong { display: block; font-size: 14px; font-weight: 700; color: var(--navy); }
.testimonial-author span { font-size: 12px; color: var(--gold); font-weight: 500; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-section { padding: 90px 0; background: var(--gold); position: relative; overflow: hidden; }
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(-45deg, rgba(255,255,255,0.03) 0, rgba(255,255,255,0.03) 1px, transparent 1px, transparent 30px);
}
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; position: relative; }
.cta-label { font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.7); display: block; margin-bottom: 10px; }
.cta-title { font-family: var(--font-display); font-size: clamp(1.5rem, 2.8vw, 2.2rem); font-weight: 800; letter-spacing: -0.3px; color: var(--white); line-height: 1.2; }
.cta-actions { display: flex; gap: 16px; flex-shrink: 0; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-section { padding: 110px 0; background: var(--light-gray); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; margin-top: 60px; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid #e0e0e0; }
.faq-question {
  display: flex; justify-content: space-between; align-items: center; padding: 20px 0;
  cursor: pointer; font-size: 15px; font-weight: 600; color: var(--navy); gap: 16px;
  transition: var(--transition);
}
.faq-question:hover { color: var(--gold); }
.faq-question i { font-size: 12px; color: var(--gold); flex-shrink: 0; transition: var(--transition); }
.faq-answer { font-size: 14px; color: var(--gray); line-height: 1.8; padding-bottom: 20px; display: none; }
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-question i { transform: rotate(45deg); }
.faq-contact-box { background: var(--navy); padding: 50px 44px; color: var(--white); }
.faq-contact-box h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; letter-spacing: -0.3px; margin-bottom: 14px; color: var(--white); }
.faq-contact-box p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.8; margin-bottom: 28px; }
.faq-contact-info { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.faq-contact-info a { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,0.75); font-size: 14px; transition: var(--transition); }
.faq-contact-info a:hover { color: var(--gold); }
.faq-contact-info i { color: var(--gold); width: 16px; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section { padding: 110px 0; background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 70px; align-items: start; }
.contact-info-col .section-title { margin-bottom: 24px; }
.contact-info-list { display: flex; flex-direction: column; gap: 26px; margin-top: 36px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 18px; }
.contact-info-icon {
  width: 52px; height: 52px; background: rgba(244,216,115,0.12); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.contact-info-icon i { color: var(--gold); font-size: 18px; }
.contact-info-text strong { display: block; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--navy); margin-bottom: 4px; }
.contact-info-text span, .contact-info-text a { font-size: 14.5px; color: var(--gray); line-height: 1.6; }
.contact-info-text a:hover { color: var(--gold); }

.contact-form-card { background: var(--light-gray); padding: 50px 46px; }
.contact-form-card h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.contact-form-card > p { font-size: 14px; color: var(--gray); margin-bottom: 30px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--navy); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 13px 16px; border: 1px solid var(--line); background: var(--white);
  font-family: var(--font-body); font-size: 14px; color: var(--black); transition: var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 12px; color: var(--gray); margin-top: 14px; }
.form-status {
  display: none; padding: 16px 20px; font-size: 14px; font-weight: 600; margin-bottom: 24px;
  border: 1px solid transparent;
}
.form-status.show { display: block; }
.form-status.success {
  display: block; background: rgba(244,216,115,0.15); border-color: var(--gold); color: var(--navy);
}
.form-status.error {
  display: block; background: rgba(220,53,69,0.08); border-color: #dc3545; color: #8b1e2d;
}
.policy-card {
  background: var(--light-gray); padding: 40px; box-shadow: 0 2px 18px rgba(22,42,65,0.05);
}
.policy-card h2 { font-family: var(--font-display); font-size: 1.7rem; color: var(--navy); margin-bottom: 14px; }
.policy-card p, .policy-card li { font-size: 15px; color: var(--gray); line-height: 1.8; margin-bottom: 12px; }
.policy-card ul { padding-left: 20px; margin: 16px 0; }
.map-wrap { margin-top: 70px; }
.map-wrap iframe { width: 100%; height: 420px; border: 0; display: block; filter: grayscale(0.3); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--navy-dark); color: rgba(255,255,255,0.6); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 60px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.footer-logo img { height: 60px; width: auto; }
.footer-logo .footer-logo-text { font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; color: var(--white); }
.footer-logo .footer-logo-text span { color: var(--gold); }
.footer-tagline { font-size: 13.5px; line-height: 1.8; margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6);
  font-size: 14px; transition: var(--transition);
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }
.footer-col h4 { font-size: 12px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--white); margin-bottom: 22px; position: relative; padding-bottom: 12px; }
.footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 2px; background: var(--gold); }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13.5px; color: rgba(255,255,255,0.55); transition: var(--transition); display: flex; align-items: center; gap: 8px; }
.footer-links a::before { content: ''; width: 5px; height: 1px; background: var(--gold); flex-shrink: 0; }
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact-info { display: flex; flex-direction: column; gap: 16px; }
.footer-contact-info .item { display: flex; align-items: flex-start; gap: 12px; }
.footer-contact-info .item i { color: var(--gold); font-size: 13px; margin-top: 3px; flex-shrink: 0; }
.footer-contact-info .item span { font-size: 13px; line-height: 1.6; }
.footer-bottom { padding: 22px 0; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 12.5px; color: rgba(255,255,255,0.35); }
.footer-bottom span { color: var(--gold); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 12px; color: rgba(255,255,255,0.35); transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--gold); }

/* ============================================================
   FLOATING BUTTONS
   ============================================================ */
.float-btn {
  position: fixed; width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.3); z-index: 9999; transition: var(--transition);
}
.float-btn:hover { transform: scale(1.1); }
.float-call { bottom: 100px; left: 24px; background: var(--navy); color: var(--gold); font-size: 22px; }
.float-wa { bottom: 24px; left: 24px; background: #25d366; color: var(--white); font-size: 26px; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .about-grid, .why-grid, .faq-grid { gap: 50px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 900px) {
  .nav-menu {
    display: flex; flex-wrap: wrap; justify-content: flex-end; align-items: center;
    gap: 10px; padding: 0; background: transparent; border-left: none;
    position: static; width: auto; height: auto; transform: none;
  }
  .nav-menu a {
    width: auto; padding: 4px 8px; border-bottom: none; font-size: 11px;
  }
  .nav-menu a.active::after { display: none; }
  .nav-cta { margin-top: 0; text-align: center; justify-content: center; }
  .nav-toggle { display: none; }

  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 70px 0 60px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-image-wrap { max-width: 560px; margin: 0 auto; }
  .about-badge-box { left: 0; }
  .about-content { padding-left: 0; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-band-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .stat-item { border-right: none; padding: 0; }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.1); padding-right: 20px; }
  .why-grid { grid-template-columns: 1fr; }
  .why-img-full { height: 380px; }
  .why-gold-bar { display: none; }
  .serve-grid { grid-template-columns: repeat(3, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-steps::before { display: none; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
  .faq-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .container { padding: 0 16px; }
  .about-section, .services-section, .why-section, .serve-section,
  .process-section, .testimonials-section, .faq-section, .contact-section { padding: 70px 0; }
  .hero-actions { flex-direction: column; }
  .hero-actions a { width: 100%; justify-content: center; }
  .hero-stats-card { padding: 28px 22px; }
  .about-img-main { height: 320px; }
  .about-features { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-band-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .stat-item { border-right: none !important; padding: 0; }
  .serve-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .process-steps { grid-template-columns: 1fr; }
  .process-step-num { width: 72px; height: 72px; font-size: 1.4rem; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; width: 100%; }
  .cta-actions a { width: 100%; justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-card { padding: 34px 26px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .section-header { margin-bottom: 40px; }
}
@media (max-width: 380px) {
  .serve-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats-grid { gap: 18px 12px; }
}
