/* ===================================================
   Prime Rise Property — Main Stylesheet
   =================================================== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,600&family=Raleway:wght@300;400;500;600;700&display=swap');

/* ===== CSS Variables ===== */
:root {
  --black:       #0a0a0a;
  --black-light: #111111;
  --black-card:  #161616;
  --black-border:#242424;
  --gold:        #c9a84c;
  --gold-light:  #e2c678;
  --gold-dark:   #9a7a2e;
  --gold-pale:   #f0e0a0;
  --white:       #ffffff;
  --text-primary:#f0ece0;
  --text-muted:  #9a9080;
  --text-dim:    #5a5550;
  --font-head:   'Playfair Display', Georgia, serif;
  --font-body:   'Raleway', Arial, sans-serif;
  --radius:      4px;
  --radius-lg:   8px;
  --shadow:      0 4px 30px rgba(0,0,0,0.6);
  --shadow-gold: 0 0 30px rgba(201,168,76,0.15);
  --transition:  0.35s ease;
  --max-w:       1200px;
}

/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background-color: var(--black);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); border: none; outline: none; }

/* ===== Typography ===== */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  color: var(--text-primary);
  line-height: 1.25;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.15rem; font-weight: 600; }
p  { color: var(--text-muted); font-size: 1rem; }

/* ===== Utility ===== */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.section-pad { padding: 100px 0; }
.section-pad-sm { padding: 70px 0; }
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.divider {
  display: block; width: 70px; height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
  margin: 1.2rem auto;
}
.divider-left { margin: 1.2rem 0; }

.section-label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.6rem;
}
.section-title { margin-bottom: 1rem; }
.section-desc {
  max-width: 600px;
  margin: 0 auto 3rem;
  font-size: 1.05rem;
  line-height: 1.8;
}

/* ===== Gold Button ===== */
.btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}
.btn:hover::before { opacity: 1; }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  color: var(--black);
  box-shadow: 0 4px 20px rgba(201,168,76,0.35);
}
.btn-gold:hover {
  color: var(--black);
  box-shadow: 0 6px 30px rgba(201,168,76,0.55);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}

/* ===== NAVBAR ===== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.4rem 0;
  transition: all var(--transition);
  background: transparent;
}
#navbar.scrolled {
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--black-border);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-img {
  height: 56px;
  width: auto;
  object-fit: contain;
  transition: opacity var(--transition), filter var(--transition);
  filter: drop-shadow(0 2px 8px rgba(201,168,76,0.25));
}
#navbar.scrolled .nav-logo-img {
  height: 48px;
}
.nav-logo:hover .nav-logo-img {
  opacity: 0.88;
  filter: drop-shadow(0 2px 16px rgba(201,168,76,0.45));
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}
.nav-links a {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-primary);
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { margin-left: 1rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--gold);
  transition: all var(--transition);
  border-radius: 2px;
}
.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 */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10,10,10,0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-head);
  font-size: 1.8rem;
  color: var(--text-primary);
  letter-spacing: 0.05em;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .mobile-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  font-size: 2rem;
  color: var(--text-muted);
  background: none;
  padding: 0.5rem;
  line-height: 1;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  min-height: 40vh;
  background: linear-gradient(135deg, #0a0a0a 0%, #161200 50%, #0a0a0a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 1.5rem 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(201,168,76,0.08) 0%, transparent 70%);
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { margin-bottom: 0.8rem; }
.breadcrumb {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: var(--text-muted); margin: 0 0.5rem; }

/* ===== HERO (homepage) ===== */
#hero {
  min-height: 100vh;
  background:
    linear-gradient(135deg, #0a0a0a 0%, #0e1a2e 35%, #111a08 65%, #0a0a0a 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
#hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--black), transparent);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 750px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border: 1px solid rgba(201,168,76,0.4);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.8rem;
  background: rgba(201,168,76,0.06);
  backdrop-filter: blur(4px);
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold);
}
.hero-title {
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 1.4rem;
  color: #fff;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
  display: block;
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(240,236,224,0.75);
  margin-bottom: 2.5rem;
  font-weight: 400;
  line-height: 1.75;
  max-width: 560px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero-scroll svg { color: var(--gold); }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== MARQUEE ===== */
.marquee-strip {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-dark));
  overflow: hidden;
  padding: 0.9rem 0;
}
.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 0 2rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
}
.marquee-item::before {
  content: '◆';
  font-size: 0.5rem;
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== HERO PATTERN OVERLAY ===== */
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(201,168,76,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 80% 30%, rgba(201,168,76,0.04) 0%, transparent 50%);
  pointer-events: none;
}
/* Geometric city-skyline silhouette via CSS */
#hero .hero-skyline {
  position: absolute;
  bottom: 120px; right: 0;
  width: 55%; height: 65%;
  background:
    linear-gradient(to top, rgba(201,168,76,0.04), transparent);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 400'%3E%3Cpolygon points='0,400 0,300 50,300 50,200 80,200 80,150 110,150 110,100 140,100 140,250 170,250 170,180 200,180 200,120 230,120 230,80 260,80 260,200 290,200 290,160 320,160 320,260 360,260 360,220 400,220 400,300 800,300 800,400' fill='%23c9a84c'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 400'%3E%3Cpolygon points='0,400 0,300 50,300 50,200 80,200 80,150 110,150 110,100 140,100 140,250 170,250 170,180 200,180 200,120 230,120 230,80 260,80 260,200 290,200 290,160 320,160 320,260 360,260 360,220 400,220 400,300 800,300 800,400' fill='%23c9a84c'/%3E%3C/svg%3E");
  mask-size: cover;
  -webkit-mask-size: cover;
  opacity: 0.18;
  pointer-events: none;
}

/* ===== ABOUT CARD (replaces image) ===== */
.about-cred-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}
.about-cred-card::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.12);
}
.about-cred-card::after {
  content: '';
  position: absolute;
  bottom: -40px; left: -40px;
  width: 140px; height: 140px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.08);
}
.cred-logo-wrap {
  display: flex;
  justify-content: center;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--black-border);
}
.cred-logo-wrap img {
  height: 120px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 16px rgba(201,168,76,0.3));
}
.cred-tagline {
  text-align: center;
  font-family: var(--font-head);
  font-size: 1rem;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.05em;
}
.cred-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--black-border);
  border: 1px solid var(--black-border);
  border-radius: var(--radius);
  overflow: hidden;
  flex: 1;
}
.cred-stat {
  background: #0f0f0f;
  padding: 1.4rem 1rem;
  text-align: center;
  transition: background var(--transition);
}
.cred-stat:hover { background: #1a1400; }
.cred-stat-num {
  font-family: var(--font-head);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.cred-stat-lbl {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-top: 0.3rem;
}
.cred-award {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.2rem;
  background: rgba(201,168,76,0.06);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
}
.cred-award-icon { font-size: 1.4rem; flex-shrink: 0; }
.cred-award-text { font-size: 0.83rem; color: var(--text-muted); line-height: 1.5; }
.cred-award-text strong { color: var(--gold); font-size: 0.85rem; display: block; }

/* ===== WHY-CARD (replaces why-us image) ===== */
.why-highlights-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
  height: 520px;
  justify-content: center;
}
.why-highlights-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 20%, rgba(201,168,76,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.why-card-header {
  text-align: center;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--black-border);
  position: relative;
}
.why-card-header img {
  height: 88px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 12px rgba(201,168,76,0.3));
  margin: 0 auto 0.8rem;
  display: block;
}
.why-card-header p {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--gold);
}
.why-metric {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1rem 1.2rem;
  background: #0f0f0f;
  border: 1px solid var(--black-border);
  border-radius: var(--radius);
  transition: border-color var(--transition);
}
.why-metric:hover { border-color: rgba(201,168,76,0.3); }
.why-metric-num {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold);
  min-width: 70px;
  line-height: 1;
}
.why-metric-label { font-size: 0.85rem; color: var(--text-muted); line-height: 1.5; }
.why-metric-label strong { color: var(--text-primary); display: block; font-size: 0.9rem; }

/* ===== TEAM AVATAR (replaces photos) ===== */
.team-avatar-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.team-avatar-card:hover { border-color: rgba(201,168,76,0.3); transform: translateY(-4px); box-shadow: var(--shadow-gold); }
.team-avatar-visual {
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, #0e1a2e 0%, #111111 60%, #1a1200 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.team-avatar-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 40%, rgba(201,168,76,0.1) 0%, transparent 70%);
}
.team-initials {
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.85;
  position: relative;
  z-index: 1;
  letter-spacing: 0.05em;
}
.team-avatar-ring {
  position: absolute;
  width: 110px; height: 110px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.3);
  z-index: 0;
}

/* ===== ABOUT SNIPPET ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-main {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--black-border);
}
.about-img-accent {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 55%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 4px solid var(--black);
  outline: 1px solid var(--black-border);
}
.about-badge-float {
  position: absolute;
  top: 2rem; left: -2rem;
  background: var(--gold);
  color: var(--black);
  padding: 1.2rem 1.5rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
  min-width: 100px;
}
.about-badge-float .num {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
  display: block;
}
.about-badge-float .lbl {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-top: 0.2rem;
}
.about-text { }
.about-list {
  margin: 1.8rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}
.about-list li::before {
  content: '◆';
  color: var(--gold);
  font-size: 0.5rem;
  margin-top: 0.55rem;
  flex-shrink: 0;
}

/* ===== STATS ===== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--black-border);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.stat-item {
  background: var(--black-card);
  padding: 3rem 2rem;
  text-align: center;
  transition: background var(--transition);
}
.stat-item:hover { background: #1a1500; }
.stat-num {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.service-card:hover { border-color: rgba(201,168,76,0.3); transform: translateY(-4px); box-shadow: var(--shadow-gold); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px; height: 56px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
  transition: all var(--transition);
}
.service-card:hover .service-icon {
  background: rgba(201,168,76,0.2);
  border-color: var(--gold);
}
.service-card h3 { font-size: 1.15rem; margin-bottom: 0.75rem; color: var(--text-primary); }
.service-card p  { font-size: 0.9rem; line-height: 1.75; }

/* ===== WHY US ===== */
#why-us { background: var(--black-light); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.why-features {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}
.why-feature {
  display: flex;
  gap: 1.2rem;
  padding: 1.5rem;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.why-feature:hover {
  border-color: rgba(201,168,76,0.25);
  box-shadow: var(--shadow-gold);
}
.why-feature-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.why-feature h4 { margin-bottom: 0.3rem; font-size: 1rem; }
.why-feature p { font-size: 0.88rem; }

.why-visual {
  position: relative;
  height: 520px;
}
.why-img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--black-border);
}
.why-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(10,10,10,0.85));
  border-radius: var(--radius-lg);
}

/* ===== TESTIMONIALS ===== */
#testimonials { background: var(--black); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.8rem;
  position: relative;
  transition: all var(--transition);
}
.testimonial-card:hover {
  border-color: rgba(201,168,76,0.25);
  transform: translateY(-3px);
}
.quote-mark {
  font-family: var(--font-head);
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.25;
  line-height: 0.8;
  margin-bottom: 1rem;
  display: block;
}
.testimonial-text {
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--black);
  font-size: 1rem;
  flex-shrink: 0;
}
.author-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-primary);
  display: block;
}
.author-role {
  font-size: 0.75rem;
  color: var(--text-dim);
  display: block;
}
.stars {
  margin-bottom: 0.8rem;
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background:
    linear-gradient(135deg, #0a0a0a 0%, #141000 50%, #0a0a0a 100%);
  text-align: center;
  padding: 100px 1.5rem;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(201,168,76,0.12) 0%, transparent 70%);
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 { margin-bottom: 1rem; color: #fff; }
.cta-banner p  { max-width: 520px; margin: 0 auto 2.5rem; font-size: 1.05rem; }
.cta-actions   { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===== FOOTER ===== */
#footer {
  background: #080808;
  border-top: 1px solid var(--black-border);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--black-border);
}
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.8;
  margin: 1.2rem 0;
  max-width: 300px;
}
.footer-logo-img {
  display: block;
  margin-bottom: 0.2rem;
}
.footer-logo-img img {
  height: 72px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 10px rgba(201,168,76,0.2));
}
.social-links {
  display: flex;
  gap: 0.7rem;
  margin-top: 1.2rem;
}
.social-link {
  width: 36px; height: 36px;
  border: 1px solid var(--black-border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: all var(--transition);
}
.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.08);
}
.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.8rem;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 28px; height: 1px;
  background: var(--gold);
}
.footer-links { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-links a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-links a::before {
  content: '›';
  color: var(--gold);
  font-size: 1rem;
}
.footer-links a:hover { color: var(--gold); }

.footer-contact-items { display: flex; flex-direction: column; gap: 1rem; }
.footer-contact-item {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
}
.fc-icon {
  font-size: 0.9rem;
  color: var(--gold);
  margin-top: 0.15rem;
  flex-shrink: 0;
  width: 16px;
}
.fc-text { font-size: 0.87rem; color: var(--text-muted); line-height: 1.6; }
.fc-text a { color: var(--text-muted); }
.fc-text a:hover { color: var(--gold); }

.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 0.8rem;
  color: var(--text-dim);
}
.footer-copy a { color: var(--text-dim); }
.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}
.footer-bottom-links a {
  font-size: 0.78rem;
  color: var(--text-dim);
}
.footer-bottom-links a:hover { color: var(--gold); }

/* ===== CONTACT PAGE ===== */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}
.contact-info { }
.contact-info-items { margin: 2rem 0; display: flex; flex-direction: column; gap: 1.5rem; }
.ci-item {
  display: flex;
  gap: 1.2rem;
  padding: 1.2rem 1.5rem;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius);
  transition: border-color var(--transition);
}
.ci-item:hover { border-color: rgba(201,168,76,0.3); }
.ci-icon {
  font-size: 1.2rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.ci-content h4 { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.2rem; }
.ci-content p, .ci-content a { font-size: 0.9rem; color: var(--text-muted); }
.ci-content a:hover { color: var(--gold); }

/* Contact Form */
.contact-form-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: 3rem;
}
.contact-form-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.contact-form-card > p {
  font-size: 0.9rem;
  margin-bottom: 2rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.form-group {
  margin-bottom: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-group label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-group label .req { color: var(--gold); margin-left: 2px; }
.form-group input,
.form-group select,
.form-group textarea {
  background: #0f0f0f;
  border: 1px solid var(--black-border);
  border-radius: var(--radius);
  padding: 0.85rem 1.1rem;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-dim); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(201,168,76,0.5);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.08);
}
.form-group select option { background: #111; color: var(--text-primary); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-submit { width: 100%; padding: 1rem; font-size: 0.88rem; }
.form-note {
  font-size: 0.78rem;
  color: var(--text-dim);
  text-align: center;
  margin-top: 1rem;
  line-height: 1.6;
}
.form-note a { color: var(--gold); }

/* Alert messages */
.alert {
  padding: 1rem 1.2rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  display: none;
}
.alert.success {
  background: rgba(40,180,80,0.1);
  border: 1px solid rgba(40,180,80,0.3);
  color: #5de08a;
  display: block;
}
.alert.error {
  background: rgba(220,60,60,0.1);
  border: 1px solid rgba(220,60,60,0.3);
  color: #e07070;
  display: block;
}

/* ===== ABOUT PAGE ===== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.value-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.8rem;
  text-align: center;
  transition: all var(--transition);
}
.value-card:hover { border-color: rgba(201,168,76,0.3); transform: translateY(-3px); }
.value-icon { font-size: 2rem; margin-bottom: 1.2rem; display: block; }
.value-card h3 { font-size: 1.1rem; margin-bottom: 0.6rem; }
.value-card p { font-size: 0.88rem; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.team-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.team-card:hover { border-color: rgba(201,168,76,0.25); transform: translateY(-3px); }
.team-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  filter: grayscale(20%);
  transition: filter var(--transition);
}
.team-card:hover .team-photo { filter: grayscale(0%); }
.team-info { padding: 1.2rem; }
.team-info h4 { font-size: 1rem; margin-bottom: 0.2rem; }
.team-info p { font-size: 0.8rem; }

/* ===== SERVICES PAGE ===== */
.services-detailed .service-card {
  padding: 2.8rem 2.2rem;
}
.service-list {
  margin: 1.2rem 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.service-list li {
  font-size: 0.87rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.service-list li::before {
  content: '▸';
  color: var(--gold);
  font-size: 0.65rem;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 40px; left: 10%;
  width: 80%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--black-border), var(--gold-dark), var(--black-border), transparent);
}
.process-step {
  text-align: center;
  padding: 1rem 1.5rem;
  position: relative;
}
.step-num {
  width: 80px; height: 80px;
  border: 1px solid var(--gold-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  background: var(--black);
  position: relative;
  z-index: 1;
  transition: all var(--transition);
}
.process-step:hover .step-num {
  background: rgba(201,168,76,0.12);
  box-shadow: var(--shadow-gold);
}
.process-step h4 { margin-bottom: 0.5rem; }
.process-step p { font-size: 0.85rem; }

/* ===== SCROLL ANIMATIONS ===== */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal-delay="2"] { transition-delay: 0.2s; }
[data-reveal-delay="3"] { transition-delay: 0.3s; }
[data-reveal-delay="4"] { transition-delay: 0.4s; }
[data-reveal-delay="5"] { transition-delay: 0.5s; }
[data-reveal-delay="6"] { transition-delay: 0.6s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-grid      { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-wrap  { max-width: 500px; }
  .about-img-accent{ display: none; }
  .about-badge-float{ left: 0; }
  .why-grid        { grid-template-columns: 1fr; }
  .why-visual      { height: 380px; }
  .stats-grid      { grid-template-columns: repeat(2,1fr); }
  .services-grid   { grid-template-columns: repeat(2,1fr); }
  .testimonials-grid{ grid-template-columns: repeat(2,1fr); }
  .footer-grid     { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .team-grid       { grid-template-columns: repeat(2,1fr); }
  .values-grid     { grid-template-columns: repeat(2,1fr); }
  .process-steps   { grid-template-columns: repeat(2,1fr); }
  .process-steps::before { display: none; }
}
@media (max-width: 768px) {
  .section-pad     { padding: 70px 0; }
  .nav-links, .nav-cta { display: none; }
  .hamburger       { display: flex; }
  .services-grid   { grid-template-columns: 1fr; }
  .testimonials-grid{ grid-template-columns: 1fr; }
  .stats-grid      { grid-template-columns: repeat(2,1fr); }
  .footer-grid     { grid-template-columns: 1fr; }
  .contact-wrap    { grid-template-columns: 1fr; }
  .contact-form-card{ padding: 2rem 1.5rem; }
  .form-row        { grid-template-columns: 1fr; }
  .values-grid     { grid-template-columns: 1fr; }
  .team-grid       { grid-template-columns: 1fr 1fr; }
  .process-steps   { grid-template-columns: 1fr 1fr; }
  .footer-bottom   { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; }
  .hero-actions    { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .stats-grid  { grid-template-columns: 1fr 1fr; }
  .team-grid   { grid-template-columns: 1fr; }
}
