/* ============================================
   PRESTIGE ESTATES - LUXURY REAL ESTATE
   Main Stylesheet
   ============================================ */

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

/* =====================
   CSS VARIABLES
   ===================== */
:root {
  --bg-primary: #0A0A0A;
  --bg-secondary: #111827;
  --bg-card: #0f1520;
  --gold: #D4AF37;
  --gold-light: #E6C87A;
  --gold-dark: #b8942e;
  --white: #FFFFFF;
  --gray-light: #C0C0C0;
  --gray-mid: #6b7280;
  --gray-dark: #374151;
  --glass: rgba(255,255,255,0.05);
  --glass-border: rgba(212,175,55,0.2);
  --glass-hover: rgba(212,175,55,0.08);
  --shadow-gold: 0 0 30px rgba(212,175,55,0.15);
  --shadow-deep: 0 20px 60px rgba(0,0,0,0.5);
  --font-display: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: all 0.2s ease;
}

/* =====================
   RESET & BASE
   ===================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--white);
  overflow-x: hidden;
  cursor: none;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  background: var(--gold);
  color: var(--bg-primary);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul { list-style: none; }

button {
  cursor: none;
  border: none;
  background: none;
  font-family: var(--font-body);
}

input, textarea, select {
  font-family: var(--font-body);
}

/* =====================
   SCROLLBAR
   ===================== */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* =====================
   LOADING SCREEN
   ===================== */
#loading-screen {
  position: fixed;
  inset: 0;
  background: var(--bg-primary);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

#loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-logo {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: pulse-gold 1.5s ease infinite;
}

.loader-bar-wrap {
  width: 200px;
  height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
}

.loader-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  width: 0%;
  transition: width 0.05s ease;
}

.loader-text {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--gray-light);
  text-transform: uppercase;
}

@keyframes pulse-gold {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

/* =====================
   CUSTOM CURSOR
   ===================== */
#cursor-dot {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
}

#cursor-ring {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(212,175,55,0.6);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9997;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease, border-color 0.3s;
}

body.cursor-hover #cursor-dot { width: 12px; height: 12px; background: var(--gold-light); }
body.cursor-hover #cursor-ring { width: 60px; height: 60px; border-color: var(--gold); }

/* =====================
   SCROLL PROGRESS
   ===================== */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  z-index: 9996;
  width: 0%;
  transition: width 0.1s linear;
}

/* =====================
   NAVBAR
   ===================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(20px);
  padding: 1rem 5%;
  border-bottom: 1px solid var(--glass-border);
}

.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.05em;
  line-height: 1;
}

.nav-logo-sub {
  font-size: 0.55rem;
  letter-spacing: 0.35em;
  color: var(--gray-light);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-light);
  position: relative;
  transition: var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-link:hover, .nav-link.active {
  color: var(--gold);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-cta {
  padding: 0.6rem 1.5rem;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  border-radius: 4px;
  font-size: 0.75rem !important;
  letter-spacing: 0.15em;
  transition: var(--transition-fast) !important;
}

.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--bg-primary) !important;
}

.nav-cta::after { display: none !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: var(--transition-fast);
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.98);
  backdrop-filter: blur(30px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-nav.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav-link {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

.mobile-nav-link:hover { color: var(--gold); }

/* =====================
   FLOATING BUTTONS
   ===================== */
.float-btns {
  position: fixed;
  right: 1.5rem;
  bottom: 5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 500;
}

.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-deep);
  font-size: 1.3rem;
  text-decoration: none;
}

.float-btn:hover {
  transform: scale(1.1);
}

.float-whatsapp { background: #25D366; }
.float-call { background: var(--gold); }

#back-to-top {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 44px;
  height: 44px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: none;
  z-index: 500;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition-fast);
  color: var(--gold);
  font-size: 1.2rem;
}

#back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

#back-to-top:hover {
  background: var(--gold);
  color: var(--bg-primary);
}

/* =====================
   HERO SECTION
   ===================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-fallback {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1f2e 40%, #0d1117 100%);
  position: relative;
  overflow: hidden;
}

.hero-fallback::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(212,175,55,0.08) 0%, transparent 70%),
              radial-gradient(ellipse at 70% 30%, rgba(212,175,55,0.05) 0%, transparent 60%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.3) 0%,
    rgba(10,10,10,0.5) 50%,
    rgba(10,10,10,0.85) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 2rem;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.5s forwards;
}

.hero-eyebrow::before, .hero-eyebrow::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.8s forwards;
}

.hero-title .gold { color: var(--gold); }
.hero-title .italic { font-style: italic; }

.hero-tagline {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  font-weight: 300;
  color: var(--gray-light);
  letter-spacing: 0.1em;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  animation: fadeUp 1s ease 1.1s forwards;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp 1s ease 1.4s forwards;
}

.btn-primary {
  padding: 0.9rem 2rem;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  color: var(--bg-primary);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.btn-primary:hover::before { transform: translateX(0); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(212,175,55,0.3); }

.btn-outline {
  padding: 0.9rem 2rem;
  border: 1px solid rgba(212,175,55,0.5);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: var(--transition-fast);
  backdrop-filter: blur(10px);
  background: var(--glass);
}

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

.btn-ghost {
  padding: 0.9rem 2rem;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-ghost:hover { gap: 0.8rem; }

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeIn 1s ease 2s forwards;
}

.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 1px solid rgba(212,175,55,0.4);
  border-radius: 12px;
  position: relative;
}

.scroll-mouse::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollDot 1.5s ease infinite;
}

@keyframes scrollDot {
  0% { transform: translateX(-50%) translateY(0); opacity: 1; }
  100% { transform: translateX(-50%) translateY(12px); opacity: 0; }
}

.scroll-text {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gray-mid);
}

/* =====================
   STATS SECTION
   ===================== */
.stats-band {
  background: linear-gradient(135deg, rgba(212,175,55,0.08), rgba(212,175,55,0.03));
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  padding: 3rem 5%;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 40px;
  width: 1px;
  background: var(--glass-border);
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.stat-suffix {
  color: var(--gold-light);
  font-size: 0.8em;
}

.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-top: 0.4rem;
}

/* =====================
   SECTION STYLES
   ===================== */
section {
  padding: 6rem 5%;
}

.section-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-eyebrow::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.section-title .gold { color: var(--gold); }
.section-title .italic { font-style: italic; }

.section-subtitle {
  font-size: 0.95rem;
  color: var(--gray-light);
  max-width: 550px;
  line-height: 1.8;
}

.section-header-center {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header-center .section-eyebrow { justify-content: center; }
.section-header-center .section-eyebrow::before { display: none; }
.section-header-center .section-subtitle { margin: 0 auto; }

.section-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 1.5rem 0;
}

.section-divider-center {
  margin: 1.5rem auto;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* =====================
   ABOUT SECTION
   ===================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-image-wrap {
  position: relative;
}

.about-img-main {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.about-img-accent {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 4px solid var(--bg-primary);
}

.about-badge {
  position: absolute;
  top: 1.5rem;
  left: -1.5rem;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--bg-primary);
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  text-align: center;
}

.about-badge-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  display: block;
}

.about-badge-text {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}

.trust-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--gray-light);
}

.trust-icon {
  width: 36px;
  height: 36px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* =====================
   SERVICES SECTION
   ===================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card:hover {
  background: var(--glass-hover);
  border-color: rgba(212,175,55,0.35);
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold);
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(212,175,55,0.15), rgba(212,175,55,0.05));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  transition: var(--transition-fast);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, rgba(212,175,55,0.25), rgba(212,175,55,0.1));
  border-color: var(--gold);
}

.service-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--white);
}

.service-desc {
  font-size: 0.85rem;
  color: var(--gray-mid);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.service-list li {
  font-size: 0.8rem;
  color: var(--gray-light);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-list li::before {
  content: '▸';
  color: var(--gold);
  font-size: 0.7rem;
}

/* =====================
   FEATURED PROJECTS
   ===================== */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.project-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold);
  border-color: rgba(212,175,55,0.3);
}

.project-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.project-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.project-card:hover .project-img-wrap img {
  transform: scale(1.05);
}

.project-status {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.status-available { background: rgba(16,185,129,0.9); color: #fff; }
.status-limited { background: rgba(245,158,11,0.9); color: #fff; }
.status-soldout { background: rgba(239,68,68,0.9); color: #fff; }
.status-upcoming { background: rgba(99,102,241,0.9); color: #fff; }

.project-body {
  padding: 1.5rem;
}

.project-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.project-location {
  font-size: 0.8rem;
  color: var(--gray-mid);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-bottom: 1rem;
}

.project-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--glass-border);
}

.project-price {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
}

.project-plots {
  font-size: 0.75rem;
  color: var(--gray-mid);
}

.project-card .btn-ghost {
  padding: 0.5rem 0;
  font-size: 0.75rem;
}

/* =====================
   TESTIMONIALS
   ===================== */
.testimonials-section {
  background: var(--bg-secondary);
}

.testimonials-slider {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.testimonial-track {
  overflow: hidden;
}

.testimonial-slide {
  display: none;
  animation: fadeIn 0.5s ease;
}

.testimonial-slide.active {
  display: block;
}

.testimonial-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 3rem;
  text-align: center;
  position: relative;
}

.testimonial-quote {
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.3;
  font-family: var(--font-display);
  line-height: 1;
  position: absolute;
  top: 1.5rem;
  left: 2rem;
}

.testimonial-stars {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
  color: var(--gold);
  font-size: 1rem;
}

.testimonial-text {
  font-size: 1rem;
  color: var(--gray-light);
  line-height: 1.9;
  font-style: italic;
  margin-bottom: 2rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.testimonial-photo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}

.testimonial-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
}

.testimonial-project {
  font-size: 0.75rem;
  color: var(--gold);
  text-align: left;
}

.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.slider-btn {
  width: 44px;
  height: 44px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  cursor: none;
  transition: var(--transition-fast);
}

.slider-btn:hover {
  background: var(--gold);
  color: var(--bg-primary);
}

.slider-dots {
  display: flex;
  gap: 0.5rem;
}

.slider-dot {
  width: 6px;
  height: 6px;
  background: var(--gray-dark);
  border-radius: 50%;
  cursor: none;
  transition: var(--transition-fast);
}

.slider-dot.active {
  background: var(--gold);
  width: 20px;
  border-radius: 3px;
}

/* =====================
   PAGE HERO (inner pages)
   ===================== */
.page-hero {
  min-height: 45vh;
  display: flex;
  align-items: flex-end;
  padding: 6rem 5% 3rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1f2e 100%);
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(212,175,55,0.07) 0%, transparent 60%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.page-hero-title .gold { color: var(--gold); }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--gray-mid);
}

.breadcrumb a { color: var(--gray-mid); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep { color: var(--gold); }

/* =====================
   GLASS CARD
   ===================== */
.glass-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
}

/* =====================
   LAYOUT CARDS
   ===================== */
.layouts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1300px;
  margin: 0 auto;
}

.layout-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  cursor: none;
}

.layout-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold);
  border-color: rgba(212,175,55,0.3);
}

.layout-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.layout-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.layout-card:hover .layout-img img { transform: scale(1.05); }

.layout-body { padding: 1.5rem; }

.layout-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.layout-location {
  font-size: 0.8rem;
  color: var(--gray-mid);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-bottom: 1rem;
}

.layout-info-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.layout-info-item {
  background: var(--glass);
  border-radius: 8px;
  padding: 0.6rem 0.75rem;
}

.layout-info-label {
  font-size: 0.65rem;
  color: var(--gray-mid);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.2rem;
}

.layout-info-val {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
}

.layout-price {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
}

.layout-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--glass-border);
}

/* =====================
   SEARCH & FILTER BAR
   ===================== */
.filter-bar {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}

.filter-bar input, .filter-bar select {
  background: var(--bg-primary);
  border: 1px solid var(--glass-border);
  color: var(--white);
  padding: 0.7rem 1rem;
  border-radius: 8px;
  font-size: 0.85rem;
  transition: border-color 0.2s;
  flex: 1;
  min-width: 150px;
}

.filter-bar input:focus, .filter-bar select:focus {
  outline: none;
  border-color: var(--gold);
}

.filter-bar input::placeholder { color: var(--gray-mid); }
.filter-bar select option { background: var(--bg-secondary); }

.filter-btn {
  padding: 0.7rem 1.5rem;
  background: var(--gold);
  color: var(--bg-primary);
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  transition: var(--transition-fast);
  cursor: none;
  white-space: nowrap;
}

.filter-btn:hover { background: var(--gold-light); }

/* =====================
   MODAL
   ===================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--bg-secondary);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.95) translateY(20px);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal {
  transform: scale(1) translateY(0);
}

.modal-header {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
}

.modal-close {
  width: 36px;
  height: 36px;
  background: var(--glass);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-light);
  cursor: none;
  transition: var(--transition-fast);
  font-size: 1.1rem;
}

.modal-close:hover { background: var(--gold); color: var(--bg-primary); }

.modal-body { padding: 2rem; }

.modal-img-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 0.5rem;
  margin-bottom: 2rem;
  border-radius: var(--radius);
  overflow: hidden;
  height: 300px;
}

.modal-img-main { height: 100%; object-fit: cover; }
.modal-img-secondary { display: flex; flex-direction: column; gap: 0.5rem; }
.modal-img-secondary img { flex: 1; width: 100%; object-fit: cover; }

.modal-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.modal-detail-group h4 {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.modal-detail-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.modal-detail-list li {
  font-size: 0.85rem;
  color: var(--gray-light);
  display: flex;
  gap: 0.5rem;
}

.modal-detail-list li::before { content: '✓'; color: var(--gold); font-size: 0.8rem; }

/* =====================
   CREW SECTION
   ===================== */
.crew-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  max-width: 1300px;
  margin: 0 auto;
}

.crew-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.crew-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0;
  background: linear-gradient(to top, rgba(212,175,55,0.08), transparent);
  transition: height 0.4s ease;
}

.crew-card:hover {
  border-color: rgba(212,175,55,0.3);
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}

.crew-card:hover::before { height: 60%; }

.crew-photo-wrap {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
}

.crew-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--glass-border);
  transition: border-color 0.3s;
}

.crew-card:hover .crew-photo { border-color: var(--gold); }

.crew-online {
  position: absolute;
  bottom: 3px;
  right: 3px;
  width: 12px;
  height: 12px;
  background: #10b981;
  border-radius: 50%;
  border: 2px solid var(--bg-card);
}

.crew-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.crew-role {
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.crew-exp {
  font-size: 0.7rem;
  color: var(--gray-mid);
  margin-bottom: 0.75rem;
}

.crew-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  justify-content: center;
}

.crew-skill-tag {
  font-size: 0.6rem;
  padding: 0.2rem 0.5rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  color: var(--gray-light);
}

/* =====================
   CONTACT PAGE
   ===================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-info-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.contact-info-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.contact-info-sub {
  font-size: 0.85rem;
  color: var(--gray-mid);
  margin-bottom: 2rem;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(212,175,55,0.15), rgba(212,175,55,0.05));
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-item-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.contact-item-val {
  font-size: 0.9rem;
  color: var(--white);
  line-height: 1.5;
}

.contact-item-val a { color: var(--white); transition: color 0.2s; }
.contact-item-val a:hover { color: var(--gold); }

.contact-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 2rem;
}

.social-btn {
  width: 40px;
  height: 40px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-light);
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.social-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg-primary);
}

/* =====================
   FORM STYLES
   ===================== */
.contact-form {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.form-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.form-sub {
  font-size: 0.85rem;
  color: var(--gray-mid);
  margin-bottom: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.form-group label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-light);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-primary);
  border: 1px solid var(--gray-dark);
  color: var(--white);
  padding: 0.85rem 1rem;
  border-radius: 8px;
  font-size: 0.85rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(212,175,55,0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #ef4444;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-mid); }

.form-group select option { background: var(--bg-secondary); }
.form-group textarea { resize: vertical; min-height: 120px; }

.field-error {
  font-size: 0.72rem;
  color: #ef4444;
  display: none;
}

.field-error.visible { display: block; }

.form-success {
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.3);
  border-radius: 8px;
  padding: 1rem 1.5rem;
  color: #10b981;
  font-size: 0.85rem;
  display: none;
  margin-top: 1rem;
}

.form-success.visible { display: block; }

/* =====================
   GALLERY PAGE
   ===================== */
.gallery-filters {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.gallery-filter-btn {
  padding: 0.6rem 1.5rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 30px;
  color: var(--gray-light);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  cursor: none;
  transition: var(--transition-fast);
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg-primary);
}

.masonry-grid {
  columns: 3;
  column-gap: 1rem;
  max-width: 1300px;
  margin: 0 auto;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: none;
}

.masonry-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

.masonry-item:hover img { transform: scale(1.03); }

.masonry-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}

.masonry-item:hover .masonry-item-overlay { opacity: 1; }

.masonry-item-title {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.lightbox.active { opacity: 1; pointer-events: all; }

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
  animation: lightboxIn 0.3s ease;
}

@keyframes lightboxIn {
  from { transform: scale(0.95); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  cursor: none;
  font-size: 1.3rem;
  transition: var(--transition-fast);
}

.lightbox-close:hover { background: var(--gold); color: var(--bg-primary); }

/* =====================
   ADMIN STYLES
   ===================== */
.admin-login {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-primary);
  padding: 2rem;
}

.admin-login-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 3rem;
  max-width: 420px;
  width: 100%;
}

.admin-login-logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.25rem;
  text-align: center;
}

.admin-login-sub {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-mid);
  text-align: center;
  margin-bottom: 2.5rem;
}

.admin-wrap {
  display: flex;
  min-height: 100vh;
  background: var(--bg-primary);
}

.admin-sidebar {
  width: 280px;
  background: var(--bg-secondary);
  border-right: 1px solid var(--glass-border);
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  overflow-y: auto;
  z-index: 100;
}

.admin-sidebar-logo {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--glass-border);
}

.admin-sidebar-logo-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
}

.admin-sidebar-sub {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--gray-mid);
  text-transform: uppercase;
}

.admin-nav {
  padding: 1rem 0;
  flex: 1;
}

.admin-nav-section {
  padding: 0.5rem 1.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-dark);
  margin-top: 0.5rem;
}

.admin-nav-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  color: var(--gray-mid);
  font-size: 0.85rem;
  cursor: none;
  transition: var(--transition-fast);
  border-left: 2px solid transparent;
}

.admin-nav-item:hover,
.admin-nav-item.active {
  background: var(--glass-hover);
  color: var(--gold);
  border-left-color: var(--gold);
}

.admin-nav-icon { font-size: 1rem; }

.admin-main {
  margin-left: 280px;
  flex: 1;
  padding: 2rem;
  min-height: 100vh;
}

.admin-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--glass-border);
}

.admin-page-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
}

.admin-logout-btn {
  padding: 0.6rem 1.5rem;
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.3);
  border-radius: 8px;
  color: #ef4444;
  font-size: 0.8rem;
  cursor: none;
  transition: var(--transition-fast);
}

.admin-logout-btn:hover { background: rgba(239,68,68,0.2); }

.admin-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.admin-stat-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.admin-stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
}

.admin-stat-label {
  font-size: 0.8rem;
  color: var(--gray-mid);
  margin-top: 0.25rem;
}

.admin-panel {
  display: none;
}

.admin-panel.active { display: block; }

.admin-table-wrap {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.admin-table-header {
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--glass-border);
}

.admin-table-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table th {
  padding: 0.75rem 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: left;
  border-bottom: 1px solid var(--glass-border);
  background: rgba(212,175,55,0.03);
}

.admin-table td {
  padding: 0.9rem 1rem;
  font-size: 0.85rem;
  color: var(--gray-light);
  border-bottom: 1px solid rgba(255,255,255,0.03);
}

.admin-table tr:last-child td { border-bottom: none; }

.admin-action-btn {
  padding: 0.3rem 0.75rem;
  border-radius: 6px;
  font-size: 0.75rem;
  cursor: none;
  transition: var(--transition-fast);
  margin-right: 0.25rem;
}

.admin-action-btn.edit {
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.2);
  color: var(--gold);
}

.admin-action-btn.delete {
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.2);
  color: #ef4444;
}

.admin-action-btn:hover { opacity: 0.8; }

.admin-form {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

/* =====================
   FOOTER
   ===================== */
footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--glass-border);
  padding: 4rem 5% 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--glass-border);
}

.footer-brand-text {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.footer-brand-sub {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 1rem;
}

.footer-about {
  font-size: 0.85rem;
  color: var(--gray-mid);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.footer-heading {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-link {
  font-size: 0.85rem;
  color: var(--gray-mid);
  transition: color 0.2s, padding-left 0.2s;
}

.footer-link:hover { color: var(--gold); padding-left: 0.25rem; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--gray-mid);
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.footer-contact-icon { color: var(--gold); margin-top: 0.1rem; flex-shrink: 0; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--gray-dark);
}

.footer-copy span { color: var(--gold); }

/* =====================
   SERVICES PAGE
   ===================== */
.services-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.services-main-img {
  border-radius: var(--radius-lg);
  height: 450px;
  object-fit: cover;
  width: 100%;
}

.process-timeline {
  position: relative;
  padding-left: 2rem;
  max-width: 700px;
  margin: 0 auto;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

.process-step {
  position: relative;
  padding-left: 2rem;
  padding-bottom: 2.5rem;
}

.process-step::before {
  content: '';
  position: absolute;
  left: -0.35rem;
  top: 0.4rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px rgba(212,175,55,0.5);
}

.process-step-num {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

.process-step-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.process-step-desc {
  font-size: 0.85rem;
  color: var(--gray-mid);
  line-height: 1.7;
}

/* =====================
   MAP EMBED
   ===================== */
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  height: 400px;
  max-width: 1100px;
  margin: 0 auto;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(80%) invert(90%);
}

/* =====================
   NOTIFICATION TOAST
   ===================== */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--bg-secondary);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  font-size: 0.85rem;
  color: var(--white);
  z-index: 5000;
  transition: transform 0.3s ease;
  white-space: nowrap;
}

.toast.show { transform: translateX(-50%) translateY(0); }
.toast.success { border-left: 3px solid #10b981; }
.toast.error { border-left: 3px solid #ef4444; }

/* =====================
   UTILITY CLASSES
   ===================== */
.text-gold { color: var(--gold); }
.text-gray { color: var(--gray-mid); }
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.hidden { display: none !important; }
.visible { display: block !important; }

.no-results {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--gray-mid);
  font-size: 0.9rem;
}

.no-results-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0.3;
}
