/* ═══════════════════════════════════════════════════════════
   SHREE SHYAM PROPERTY – MAIN STYLESHEET
   Dark + Gold Theme | Glassmorphism | Premium UI
═══════════════════════════════════════════════════════════ */

/* ── 1. CSS CUSTOM PROPERTIES ── */
:root {
  /* Brand Colors */
  --gold:          #c9a84c;
  --gold-light:    #e8c87a;
  --gold-dark:     #a0792b;
  --gold-muted:    #c9a84c33;
  --gold-glow:     #c9a84c55;

  /* Dark Palette */
  --dark-base:     #0d0d1a;
  --dark-900:      #111122;
  --dark-800:      #16162a;
  --dark-700:      #1e1e35;
  --dark-600:      #252540;
  --dark-500:      #2e2e50;
  --dark-400:      #3a3a5c;

  /* Glass Effect */
  --glass-bg:      rgba(255, 255, 255, 0.04);
  --glass-border:  rgba(201, 168, 76, 0.18);
  --glass-blur:    blur(16px);

  /* Text */
  --text-primary:  #f5f0e8;
  --text-secondary:#c8c0b0;
  --text-muted:    #8a8070;

  /* Status Colors */
  --green:         #27ae60;
  --red:           #e74c3c;
  --orange:        #f39c12;
  --blue:          #3498db;

  /* Fonts */
  --font-display:  'Cinzel', serif;
  --font-serif:    'Cormorant Garamond', serif;
  --font-body:     'Inter', sans-serif;

  /* Spacing */
  --sec-pad:       100px 0;
  --radius-sm:     6px;
  --radius-md:     12px;
  --radius-lg:     20px;
  --radius-xl:     32px;

  /* Transitions */
  --trans-fast:    0.2s ease;
  --trans-med:     0.35s ease;
  --trans-slow:    0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  /* Shadows */
  --shadow-gold:   0 0 30px rgba(201, 168, 76, 0.2);
  --shadow-card:   0 8px 32px rgba(0,0,0,0.4);
  --shadow-deep:   0 20px 60px rgba(0,0,0,0.6);
}

/* ── 2. RESET & BASE ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--dark-base);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.modal-open,
body.no-scroll {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--trans-fast);
}

ul { list-style: none; }

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input, select, textarea {
  font-family: var(--font-body);
  font-size: 1rem;
}

/* ── 3. SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark-900); }
::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ── 4. SELECTION ── */
::selection {
  background: var(--gold-muted);
  color: var(--gold-light);
}

/* ── 5. LAYOUT CONTAINER ── */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad { padding: var(--sec-pad); }

/* ── 6. TYPOGRAPHY ── */
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  position: relative;
  padding-left: 40px;
}

.section-eyebrow::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 18px;
}

.section-title em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--gold-light);
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
}

.section-header {
  margin-bottom: 60px;
}

.section-header .section-desc {
  margin-top: 10px;
}

/* ── 7. BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  background-size: 200% 100%;
  background-position: left;
  color: var(--dark-base);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: background-position var(--trans-med), box-shadow var(--trans-med), transform var(--trans-fast);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary:hover {
  background-position: right;
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.35);
  transform: translateY(-2px);
  color: var(--dark-base);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  background: transparent;
  color: var(--gold-light);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border: 1px solid var(--gold);
  border-radius: var(--radius-sm);
  transition: background var(--trans-med), color var(--trans-fast), transform var(--trans-fast), box-shadow var(--trans-med);
}

.btn-outline:hover {
  background: var(--gold-muted);
  color: var(--gold-light);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.2);
  transform: translateY(-2px);
}

.btn-full { width: 100%; justify-content: center; }

/* ── 8. LOADING SCREEN ── */
#loading-screen {
  position: fixed;
  inset: 0;
  background: var(--dark-base);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.loader-logo {
  display: flex;
  align-items: center;
  gap: 16px;
}

.loader-logo img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 50%;
}

.loader-brand {
  text-align: left;
}

.loader-title {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.loader-sub {
  display: block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-top: 4px;
}

.loader-bar-wrap {
  width: 240px;
  height: 2px;
  background: var(--dark-600);
  border-radius: 2px;
  overflow: hidden;
}

.loader-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  animation: loadProgress 1.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes loadProgress {
  0%   { width: 0%; }
  60%  { width: 75%; }
  100% { width: 100%; }
}

.loader-tagline {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-family: var(--font-body);
}

.hero-static{

    min-height:100vh;

    display:flex;

    align-items:center;

    justify-content:center;

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;

    position:relative;

}

.hero-content{

    position:relative;

    z-index:5;

    max-width:850px;

    text-align:center;

}

.hero-highlights{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:15px;

    margin:35px 0;

}

.hero-highlights span{

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.15);

    backdrop-filter:blur(12px);

    padding:12px 20px;

    border-radius:40px;

    color:#fff;

    font-size:15px;

    font-weight:600;

}

.hero-highlights i{

    color:#d4af37;

    margin-right:8px;

}

.btn-whatsapp{

    display:inline-flex;

    align-items:center;

    gap:8px;

    background:#25D366;

    color:#fff;

    padding:16px 32px;

    border-radius:50px;

    font-weight:600;

    text-decoration:none;

    transition:.3s;

}

.btn-whatsapp:hover{

    transform:translateY(-4px);

}

/* ── 9. TOAST NOTIFICATIONS ── */
#toast-container {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9998;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  pointer-events: none;
}

.toast {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  background: var(--dark-700);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 0.9rem;
  min-width: 280px;
  max-width: 420px;
  box-shadow: var(--shadow-deep);
  animation: toastIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  pointer-events: all;
}

.toast.removing {
  animation: toastOut 0.3s ease forwards;
}

.toast.success { border-left: 3px solid var(--green); }
.toast.error   { border-left: 3px solid var(--red); }
.toast.info    { border-left: 3px solid var(--gold); }

.toast i { font-size: 1.1rem; }
.toast.success i { color: var(--green); }
.toast.error   i { color: var(--red); }
.toast.info    i { color: var(--gold); }

@keyframes toastIn {
  from { opacity: 0; transform: translateY(20px) scale(0.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes toastOut {
  from { opacity: 1; transform: translateY(0); }
  to   { opacity: 0; transform: translateY(-12px); }
}

/* ── 10. FLOATING BUTTONS ── */
.float-btn {
  position: fixed;
  right: 24px;
  z-index: 990;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: transform var(--trans-fast), box-shadow var(--trans-med);
  text-decoration: none;
}

.float-whatsapp {
  bottom: 100px;
  background: #25D366;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

.float-call {
  bottom: 28px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--dark-base);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.4);
}

.float-btn:hover {
  transform: translateX(-4px) scale(1.04);
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}

.float-btn i { font-size: 1.2rem; }

.float-label {
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  transition: max-width var(--trans-med);
}

.float-btn:hover .float-label { max-width: 100px; }

/* ── 11. NAVBAR ── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 970;
  padding: 20px 0;
  transition: background var(--trans-med), padding var(--trans-med), box-shadow var(--trans-med), backdrop-filter var(--trans-med);
}

#navbar.scrolled {
  background: rgba(13, 13, 26, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.5);
  border-bottom: 1px solid var(--glass-border);
}

.nav-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
}

.nav-brand {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-brand-main {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.03em;
}

.nav-brand-sub {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: color var(--trans-fast), background var(--trans-fast);
  position: relative;
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--trans-med);
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold-light);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 60%;
}

.nav-admin-link {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--gold);
  border-radius: var(--radius-sm);
}

.nav-admin-link:hover {
  background: var(--gold-muted);
  color: var(--gold-light);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--dark-base);
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  transition: box-shadow var(--trans-med), transform var(--trans-fast);
  white-space: nowrap;
}

.nav-cta:hover {
  box-shadow: var(--shadow-gold);
  transform: translateY(-1px);
  color: var(--dark-base);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform var(--trans-fast), opacity var(--trans-fast);
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── 12. HERO SECTION ── */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-slider {
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease;
  display: flex;
  align-items: center;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13, 13, 26, 0.82) 0%,
    rgba(13, 13, 26, 0.55) 50%,
    rgba(13, 13, 26, 0.35) 100%
  );
}

.slide-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  padding-top: 80px;
  width: 100%;
}

.slide-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.slide-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 20px;
  max-width: 700px;
}

.slide-headline em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--gold-light);
  display: block;
}

.slide-sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.slide-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-prev,
.hero-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  color: var(--gold-light);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--trans-fast), transform var(--trans-fast), box-shadow var(--trans-med);
}

.hero-prev { left: 24px; }
.hero-next { right: 24px; }

.hero-prev:hover,
.hero-next:hover {
  background: var(--gold-muted);
  box-shadow: var(--shadow-gold);
  transform: translateY(-50%) scale(1.08);
}

.hero-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.35);
  border: 1px solid var(--gold);
  transition: background var(--trans-fast), width var(--trans-med);
}

.hero-dot.active {
  background: var(--gold);
  width: 28px;
  border-radius: 4px;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  right: 40px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.scroll-mouse {
  width: 22px;
  height: 36px;
  border: 1px solid var(--text-muted);
  border-radius: 11px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-wheel {
  width: 3px;
  height: 6px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollPulse 1.6s ease infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: translateY(0); }
  50%       { opacity: 0; transform: translateY(8px); }
}

/* ── 13. STATS BAR ── */
.stats-bar {
  background: linear-gradient(135deg, var(--dark-800), var(--dark-700));
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  padding: 40px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 24px;
  border-right: 1px solid var(--glass-border);
}

.stat-item:last-child { border-right: none; }

.stat-icon {
  font-size: 2rem;
  color: var(--gold);
  flex-shrink: 0;
}

.stat-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}

.stat-plus {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 600;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── 14. ABOUT SECTION ── */
.about-section {
  background: var(--dark-900);
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--gold-muted) 0%, transparent 70%);
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-images {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-deep);
}

.about-img-main img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform var(--trans-slow);
}

.about-img-main:hover img {
  transform: scale(1.04);
}

.about-img-secondary {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 220px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 3px solid var(--dark-800);
  box-shadow: var(--shadow-deep);
}

.about-img-secondary img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.3);
  text-align: center;
  gap: 2px;
}

.about-badge i { font-size: 1.4rem; color: var(--dark-base); }
.about-badge span {
  font-family: var(--font-display);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark-base);
  line-height: 1.3;
}

.about-lead {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--text-primary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.about-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 14px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 28px 0;
}

.about-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.about-feat i {
  color: var(--gold);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.about-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: box-shadow var(--trans-med), transform var(--trans-fast);
}

.btn-social:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(253, 29, 29, 0.3);
  color: #fff;
}

/* ── 15. SEARCH & FILTER BAR ── */
.search-filter-bar {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  margin-bottom: 48px;
}

.search-box {
  flex: 1;
  min-width: 200px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--dark-700);
  border: 1px solid var(--dark-500);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  transition: border-color var(--trans-fast);
}

.search-box:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-muted);
}

.search-box i { color: var(--text-muted); font-size: 0.9rem; flex-shrink: 0; }

.search-box input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--text-primary);
  font-size: 0.9rem;
}

.search-box input::placeholder { color: var(--text-muted); }

.filter-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.filter-select {
  background: var(--dark-700);
  border: 1px solid var(--dark-500);
  color: var(--text-secondary);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  outline: none;
  cursor: pointer;
  transition: border-color var(--trans-fast);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23c9a84c'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.filter-select:focus { border-color: var(--gold); }

.btn-filter-reset {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 11px 18px;
  background: transparent;
  border: 1px solid var(--dark-500);
  color: var(--text-muted);
  font-size: 0.85rem;
  border-radius: var(--radius-md);
  transition: color var(--trans-fast), border-color var(--trans-fast);
}

.btn-filter-reset:hover {
  border-color: var(--gold-dark);
  color: var(--gold);
}

/* ── 16. PROPERTIES SECTION ── */
.properties-section { background: var(--dark-base); }

.properties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  min-height: 200px;
}

.prop-loading {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px;
  color: var(--text-muted);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.prop-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px;
  color: var(--text-muted);
}

.prop-empty i { font-size: 3rem; margin-bottom: 16px; color: var(--dark-500); display: block; }

/* ── 17. PROPERTY CARD ── */
.prop-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--trans-med), box-shadow var(--trans-med), border-color var(--trans-med);
  cursor: pointer;
  position: relative;
}

.prop-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold), var(--shadow-deep);
  border-color: var(--gold-dark);
}

.prop-card-img-wrap {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.prop-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--trans-slow);
}

.prop-card:hover .prop-card-img-wrap img {
  transform: scale(1.06);
}

.prop-card-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.badge {
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  backdrop-filter: var(--glass-blur);
}

.badge-available { background: rgba(39, 174, 96, 0.85); color: #fff; }
.badge-sold      { background: rgba(231, 76, 60, 0.85); color: #fff; }
.badge-booking   { background: rgba(201, 168, 76, 0.85); color: var(--dark-base); }
.badge-featured  { background: linear-gradient(135deg, var(--gold-dark), var(--gold-light)); color: var(--dark-base); }
.badge-residential { background: rgba(52, 152, 219, 0.85); color: #fff; }
.badge-commercial  { background: rgba(142, 68, 173, 0.85); color: #fff; }
.badge-agricultural { background: rgba(39, 174, 96, 0.75); color: #fff; }

.prop-card-body {
  padding: 20px;
}

.prop-card-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
  line-height: 1.3;
}

.prop-card-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.prop-card-location i { color: var(--gold); font-size: 0.75rem; }

.prop-card-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 16px;
  padding: 14px;
  background: rgba(255,255,255,0.02);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.05);
}

.prop-spec {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.prop-spec-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  font-weight: 600;
}

.prop-spec-val {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
}

.prop-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
}

.prop-price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold-light);
}

.prop-price-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  display: block;
  font-weight: 400;
  font-family: var(--font-body);
}

.prop-view-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  background: var(--gold-muted);
  border: 1px solid var(--gold-dark);
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: background var(--trans-fast), color var(--trans-fast), box-shadow var(--trans-med);
}

.prop-view-btn:hover {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--dark-base);
  box-shadow: var(--shadow-gold);
}

/* ── 18. PAGINATION ── */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.page-btn {
  min-width: 40px;
  height: 40px;
  padding: 0 14px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: background var(--trans-fast), color var(--trans-fast), border-color var(--trans-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-btn:hover,
.page-btn.active {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--dark-base);
  border-color: var(--gold);
  font-weight: 700;
}

.page-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* ── 19. PROPERTY MODAL ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9990;
  background: rgba(13, 13, 26, 0.88);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--trans-med), visibility var(--trans-med);
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  background: var(--dark-800);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  max-width: 960px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-deep);
  transform: scale(0.95) translateY(20px);
  transition: transform var(--trans-med);
}

.modal-overlay.open .modal-box {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: sticky;
  top: 16px;
  float: right;
  margin: 16px 16px 0 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--dark-700);
  border: 1px solid var(--glass-border);
  color: var(--text-secondary);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: background var(--trans-fast), color var(--trans-fast);
}

.modal-close:hover {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}

.modal-gallery {
  clear: both;
  padding: 0 24px 0;
}

.modal-main-img-wrap {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--dark-700);
}

.modal-main-img-wrap img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.modal-status-badge {
  position: absolute;
  top: 12px;
  left: 12px;
}

.modal-gal-prev,
.modal-gal-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(13,13,26,0.7);
  border: 1px solid var(--glass-border);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: background var(--trans-fast);
}

.modal-gal-prev { left: 12px; }
.modal-gal-next { right: 12px; }
.modal-gal-prev:hover, .modal-gal-next:hover { background: var(--gold-muted); }

.modal-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.modal-thumb {
  width: 68px;
  height: 52px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color var(--trans-fast);
  flex-shrink: 0;
}

.modal-thumb.active { border-color: var(--gold); }
.modal-thumb img { width: 100%; height: 100%; object-fit: cover; }

.modal-content-area {
  padding: 24px;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.modal-title {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.modal-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.modal-location i { color: var(--gold); }

.modal-price-wrap { text-align: right; }

.modal-price {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}

.modal-price-unit {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
  display: block;
}

.modal-specs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 20px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  margin-bottom: 24px;
}

.modal-spec-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  text-align: center;
  padding: 8px;
}

.modal-spec-icon {
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 4px;
}

.modal-spec-val {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.modal-spec-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  font-weight: 600;
}

.modal-desc-wrap,
.modal-amenities-wrap,
.modal-video-wrap,
.modal-map-wrap {
  margin-bottom: 28px;
}

.modal-desc-wrap h3,
.modal-amenities-wrap h3,
.modal-video-wrap h3,
.modal-map-wrap h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold-light);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--glass-border);
}

.modal-desc-wrap p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.modal-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.amenity-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.amenity-tag i { color: var(--gold); font-size: 0.8rem; }

.modal-video-frame,
.modal-map-frame {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--dark-700);
}

.modal-video-frame iframe,
.modal-map-frame iframe {
  width: 100%;
  height: 300px;
  border: none;
}

.modal-map-link {
  display: inline-flex;
  margin-top: 12px;
}

.modal-contact-wrap {
  display: flex;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--glass-border);
}

.modal-cta-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform var(--trans-fast), box-shadow var(--trans-med);
}

.modal-cta-btn:hover { transform: translateY(-2px); }

.modal-cta-call {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--dark-base);
}

.modal-cta-call:hover { box-shadow: var(--shadow-gold); color: var(--dark-base); }

.modal-cta-wa {
  background: #25D366;
  color: #fff;
}

.modal-cta-wa:hover { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3); color: #fff; }

/* ── 20. WHY SECTION ── */
.why-section {
  background: linear-gradient(180deg, var(--dark-900) 0%, var(--dark-base) 100%);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.why-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: transform var(--trans-med), box-shadow var(--trans-med), border-color var(--trans-med), background var(--trans-med);
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
  border-color: var(--gold-dark);
  background: rgba(201, 168, 76, 0.05);
}

.why-icon {
  width: 68px;
  height: 68px;
  background: linear-gradient(135deg, var(--dark-700), var(--dark-600));
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  color: var(--gold);
  transition: background var(--trans-med), box-shadow var(--trans-med);
}

.why-card:hover .why-icon {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  box-shadow: 0 0 24px rgba(201, 168, 76, 0.3);
  color: var(--dark-base);
}

.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.why-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── 21. GALLERY SECTION ── */
.gallery-section { background: var(--dark-900); }

.gallery-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.gal-filter-btn {
  padding: 9px 22px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: 50px;
  transition: background var(--trans-fast), color var(--trans-fast), border-color var(--trans-fast);
}

.gal-filter-btn.active,
.gal-filter-btn:hover {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--dark-base);
  border-color: var(--gold);
  font-weight: 700;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  grid-auto-rows: 250px;
}

.gal-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  cursor: pointer;
}

.gal-item.gal-wide { grid-column: span 2; }
.gal-item.gal-tall { grid-row: span 2; }

.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--trans-slow);
}

.gal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,13,26,0.7) 0%, rgba(201,168,76,0.2) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  transition: opacity var(--trans-med);
}

.gal-item:hover .gal-overlay { opacity: 1; }
.gal-item:hover img { transform: scale(1.06); }

.gal-zoom {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.85);
  border: none;
  color: var(--dark-base);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--trans-fast);
}

.gal-zoom:hover { transform: scale(1.1); }

.gal-overlay span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  background: rgba(13,13,26,0.5);
  padding: 4px 14px;
  border-radius: 50px;
  backdrop-filter: var(--glass-blur);
}

/* ── 22. LIGHTBOX ── */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 9995;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--trans-med), visibility var(--trans-med);
}

.lightbox-overlay.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: background var(--trans-fast);
}

.lightbox-close:hover { background: var(--red); }

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--trans-fast);
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-prev:hover, .lightbox-next:hover { background: var(--gold-muted); }

.lightbox-img-wrap {
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.lightbox-img-wrap img {
  max-width: 90vw;
  max-height: 78vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  border: 1px solid var(--glass-border);
}

#lightbox-caption {
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-align: center;
}

/* ── 23. TESTIMONIALS ── */
.testimonials-section {
  background: var(--dark-base);
  overflow: hidden;
}

.testimonials-slider {
  position: relative;
}

.testi-track {
  display: flex;
  gap: 24px;
  transition: transform var(--trans-slow);
}

.testi-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  min-width: calc(33.33% - 16px);
  flex-shrink: 0;
  transition: border-color var(--trans-med), box-shadow var(--trans-med);
}

.testi-card:hover {
  border-color: var(--gold-dark);
  box-shadow: var(--shadow-gold);
}

.testi-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 0.9rem;
}

.testi-text {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 22px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testi-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--dark-base);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testi-author strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-primary);
  font-weight: 600;
}

.testi-author span {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.testi-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 36px;
}

.testi-prev, .testi-next {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--gold-light);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--trans-fast), box-shadow var(--trans-med);
}

.testi-prev:hover, .testi-next:hover {
  background: var(--gold-muted);
  box-shadow: var(--shadow-gold);
}

.testi-dots {
  display: flex;
  gap: 6px;
}

.testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--dark-500);
  border: 1px solid var(--dark-400);
  cursor: pointer;
  transition: background var(--trans-fast), width var(--trans-med);
}

.testi-dot.active {
  background: var(--gold);
  border-color: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* ── 24. FAQ SECTION ── */
.faq-section { background: var(--dark-900); }

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--trans-fast);
}

.faq-item.open {
  border-color: var(--gold-dark);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  font-family: var(--font-body);
  transition: color var(--trans-fast);
}

.faq-question:hover { color: var(--gold-light); }

.faq-icon {
  font-size: 0.85rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform var(--trans-med);
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
  padding: 0 24px;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 24px 20px;
}

.faq-answer p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ── 25. CONTACT SECTION ── */
.contact-section { background: var(--dark-base); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  margin-bottom: 60px;
  align-items: start;
}

.contact-info-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
}

.contact-info-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--glass-border);
}

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.ci-icon {
  width: 40px;
  height: 40px;
  background: var(--gold-muted);
  border: 1px solid var(--gold-dark);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.ci-text { display: flex; flex-direction: column; gap: 4px; }

.ci-text span:first-child {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  font-weight: 600;
}

.ci-text a, .ci-text span:last-child {
  font-size: 0.92rem;
  color: var(--text-secondary);
  transition: color var(--trans-fast);
  line-height: 1.5;
}

.ci-text a:hover { color: var(--gold-light); }

.contact-socials {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--glass-border);
}

.csoc-btn {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: transform var(--trans-fast), box-shadow var(--trans-med);
  color: #fff;
}

.csoc-btn:hover { transform: translateY(-3px); }

.csoc-wa   { background: #25D366; box-shadow: 0 4px 12px rgba(37,211,102,0.3); }
.csoc-ig   { background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045); box-shadow: 0 4px 12px rgba(253,29,29,0.3); }
.csoc-call { background: linear-gradient(135deg, var(--gold-dark), var(--gold)); color: var(--dark-base); box-shadow: var(--shadow-gold); }

/* Contact Form */
.contact-form {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
}

.contact-form h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--glass-border);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
  text-transform: uppercase;
}

.form-group label span { color: var(--gold); }

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--dark-700);
  border: 1px solid var(--dark-500);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--text-primary);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--trans-fast), box-shadow var(--trans-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-muted);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }

.form-group select option { background: var(--dark-800); }

.form-group textarea { resize: vertical; min-height: 100px; }

.field-error {
  font-size: 0.78rem;
  color: var(--red);
  min-height: 16px;
  display: block;
}

/* Map Section */
.map-section { text-align: center; }

.map-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 20px;
}

.map-frame-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  margin-bottom: 20px;
}

.map-directions-btn {
  margin: 0 auto;
}

/* ── 26. FOOTER ── */
.site-footer {
  background: var(--dark-base);
  border-top: 1px solid var(--glass-border);
}

.footer-top {
  padding: 80px 0 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  text-decoration: none;
}

.footer-logo img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
}

.footer-brand-main {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
}

.footer-brand-sub {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-family: var(--font-body);
  margin-top: 2px;
}

.footer-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--gold-light);
  margin-bottom: 12px;
}

.footer-desc {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: var(--text-secondary);
  transition: background var(--trans-fast), color var(--trans-fast), border-color var(--trans-fast);
}

.footer-socials a:hover {
  background: var(--gold-muted);
  color: var(--gold-light);
  border-color: var(--gold-dark);
}

.footer-nav-col h4,
.footer-prop-col h4,
.footer-contact-col h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--glass-border);
}

.footer-nav-col ul li,
.footer-prop-col ul li {
  margin-bottom: 10px;
}

.footer-nav-col ul li a,
.footer-prop-col ul li a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.87rem;
  color: var(--text-muted);
  transition: color var(--trans-fast), gap var(--trans-fast);
}

.footer-nav-col ul li a:hover,
.footer-prop-col ul li a:hover {
  color: var(--gold-light);
  gap: 12px;
}

.footer-nav-col ul li a i,
.footer-prop-col ul li a i {
  font-size: 0.7rem;
  color: var(--gold-dark);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-contact-item i {
  color: var(--gold);
  font-size: 0.9rem;
  margin-top: 3px;
  flex-shrink: 0;
  width: 16px;
}

.footer-contact-item a,
.footer-contact-item span {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.5;
  transition: color var(--trans-fast);
}

.footer-contact-item a:hover { color: var(--gold-light); }

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid var(--glass-border);
  background: var(--dark-900);
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ── 27. BACK TO TOP ── */
#back-to-top {
  position: fixed;
  bottom: 180px;
  right: 24px;
  z-index: 980;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--dark-700);
  border: 1px solid var(--glass-border);
  color: var(--gold);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity var(--trans-med), visibility var(--trans-med), transform var(--trans-med), background var(--trans-fast);
}

#back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#back-to-top:hover {
  background: var(--gold-muted);
  border-color: var(--gold-dark);
  box-shadow: var(--shadow-gold);
}

/* ── 28. RESPONSIVE – TABLET ── */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }

  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-images { max-width: 560px; margin: 0 auto; }

  .properties-grid { grid-template-columns: repeat(2, 1fr); }

  .why-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }

  .testi-card { min-width: calc(50% - 12px); }

  .modal-specs { grid-template-columns: repeat(2, 1fr); }

  .contact-grid { grid-template-columns: 1fr; }
}

/* ── 29. RESPONSIVE – MOBILE ── */
@media (max-width: 768px) {
  :root { --sec-pad: 70px 0; }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13, 13, 26, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transform: translateX(-100%);
    transition: transform var(--trans-med);
    z-index: 9991;
  }

  .nav-links.mobile-open { transform: translateX(0); }

  .nav-link {
    font-size: 1.2rem;
    padding: 12px 24px;
  }

  .nav-hamburger { display: flex; z-index: 9992; position: relative; }

  .nav-cta { display: none; }

  .hero-section { height: 100svh; }

  .slide-headline { font-size: clamp(1.8rem, 7vw, 3rem); }

  .hero-scroll-indicator { display: none; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  .about-img-secondary { display: none; }
  .about-badge { width: 70px; height: 70px; }

  .properties-grid { grid-template-columns: 1fr; }

  .search-filter-bar { flex-direction: column; }
  .search-box { width: 100%; }
  .filter-group { width: 100%; }
  .filter-select { flex: 1; min-width: 100px; }

  .why-grid { grid-template-columns: 1fr; }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }

  .gal-item.gal-wide { grid-column: span 2; }

  .testi-card { min-width: calc(100%); }

  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }

  .footer-bottom .container { flex-direction: column; text-align: center; }

  .float-btn { padding: 13px 16px; }
  .float-whatsapp { bottom: 92px; }
  .float-call { bottom: 24px; }

  .modal-box { max-height: 95vh; border-radius: var(--radius-lg); }
  .modal-gallery { padding: 0 16px; }
  .modal-main-img-wrap img { height: 240px; }
  .modal-content-area { padding: 16px; }
  .modal-specs { grid-template-columns: repeat(2, 1fr); }
  .modal-contact-wrap { flex-direction: column; }
}

@media (max-width: 480px) {
  .slide-actions { flex-direction: column; }
  .slide-actions .btn-primary,
  .slide-actions .btn-outline { width: 100%; justify-content: center; }

  .about-features { grid-template-columns: 1fr; }

  .gallery-grid { grid-template-columns: 1fr; }
  .gal-item.gal-wide { grid-column: span 1; }

  .stat-item { border-right: none; padding: 0; }

  .stats-grid { gap: 20px; }
}

/* ── 30. REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}


@media screen and (min-width:1200px){

.hero-content{
    max-width:1000px;
    margin:auto;
    text-align:center;
}

.slide-headline{
    font-size:4.6rem;
    line-height:1.1;
}

.slide-sub{
    max-width:750px;
    margin:0 auto 35px;
}

.hero-highlights{
    justify-content:center;
}

.slide-actions{
    justify-content:center;
}

}