/*
Theme Name: Jaryan - Mountain View Luxury Real Estate
Theme URI: https://jaryan.com
Author: Mountain View Egypt
Author URI: https://mountainview.com.eg
Description: Ultra-premium luxury real estate landing page theme for Jaryan by Mountain View. Cinematic design with smooth animations, glassmorphism effects, and full Arabic/English support.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: jaryan
Tags: real-estate, luxury, one-page, rtl-language-support, custom-colors, custom-logo, full-width-template, animation
*/

/* ========================================
   JARYAN LUXURY REAL ESTATE - MAIN STYLES
   Mountain View Egypt
======================================== */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Montserrat:wght@100;200;300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600&family=Cairo:wght@300;400;500;600;700;800&display=swap');

/* --- CSS Variables --- */
:root {
  --gold:           #C9A96E;
  --gold-light:     #E8D5B0;
  --gold-dark:      #9A7A4A;
  --charcoal:       #1A1814;
  --charcoal-mid:   #2A2520;
  --charcoal-light: #3D3830;
  --cream:          #F5F0E8;
  --beige:          #E8DDD0;
  --sand:           #D4C4A8;
  --white:          #FAFAF8;
  --muted:          #8A8480;
  --whatsapp:       #25D366;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-heading: 'Montserrat', Arial, sans-serif;
  --font-body:    'Inter', Arial, sans-serif;
  --font-arabic:  'Cairo', Arial, sans-serif;

  --ease-luxury: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);

  --shadow-gold:   0 0 30px rgba(201,169,110,0.15);
  --shadow-card:   0 40px 80px rgba(0,0,0,0.5);
  --shadow-luxury: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(201,169,110,0.1);
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  background-color: var(--charcoal);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

/* Arabic language support */
:lang(ar) body,
body.rtl {
  font-family: var(--font-arabic);
  direction: rtl;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* --- Custom Scrollbar --- */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--charcoal); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* ========================================
   UTILITY CLASSES
======================================== */

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 1024px) { .container { padding: 0 48px; } }

.section-pad { padding: 112px 0; }
@media (min-width: 1024px) { .section-pad { padding: 160px 0; } }

/* Typography helpers */
.font-display  { font-family: var(--font-display); }
.font-heading  { font-family: var(--font-heading); }
.font-arabic   { font-family: var(--font-arabic); }

.text-gold         { color: var(--gold); }
.text-gold-light   { color: var(--gold-light); }
.text-muted        { color: var(--muted); }
.text-white-70     { color: rgba(250,250,248,0.7); }
.text-white-50     { color: rgba(250,250,248,0.5); }
.text-white-35     { color: rgba(250,250,248,0.35); }

.text-gold-gradient {
  background: linear-gradient(135deg, #E8D5B0 0%, #C9A96E 50%, #9A7A4A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Section label */
.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.section-label span {
  font-family: var(--font-heading);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Section title */
.section-title {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
}
.section-title em { color: var(--gold); font-style: italic; }

/* Glass card */
.glass-card {
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(201,169,110,0.15);
}

/* Gold divider */
.gold-divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 24px 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 16px 32px;
  transition: all 0.4s var(--ease-luxury);
  position: relative;
  overflow: hidden;
}
.btn-gold {
  background: var(--gold);
  color: var(--charcoal);
  font-weight: 600;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: var(--shadow-gold); }

.btn-outline {
  border: 1px solid rgba(201,169,110,0.5);
  color: var(--gold);
}
.btn-outline:hover { background: var(--gold); color: var(--charcoal); border-color: var(--gold); }

.btn-ghost {
  border: 1px solid rgba(250,250,248,0.15);
  color: rgba(250,250,248,0.7);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover { border-color: rgba(201,169,110,0.5); color: var(--gold); }

.btn-whatsapp {
  background: rgba(37,211,102,0.1);
  border: 1px solid rgba(37,211,102,0.3);
  color: var(--whatsapp);
}
.btn-whatsapp:hover { background: var(--whatsapp); color: var(--charcoal); }

/* Arrow icon */
.btn-arrow { font-size: 14px; transition: transform 0.3s; }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-luxury), transform 0.9s var(--ease-luxury);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.9s var(--ease-luxury), transform 0.9s var(--ease-luxury);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.9s var(--ease-luxury), transform 0.9s var(--ease-luxury);
}
.reveal-left.revealed, .reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

/* ========================================
   LOADING SCREEN
======================================== */
#jaryan-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--charcoal);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--ease-luxury), transform 0.8s var(--ease-luxury);
}
#jaryan-loader.hidden {
  opacity: 0;
  transform: translateY(-100%);
  pointer-events: none;
}
.loader-logo {
  text-align: center;
  margin-bottom: 48px;
  animation: fadeUp 0.8s var(--ease-luxury) 0.3s both;
}
.loader-logo-name {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: var(--white);
  display: block;
  line-height: 1;
}
.loader-logo-sub {
  font-family: var(--font-heading);
  font-size: 0.5rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 8px;
  display: block;
}
.loader-bar-track {
  width: 128px;
  height: 1px;
  background: rgba(250,250,248,0.1);
  position: relative;
  overflow: hidden;
}
.loader-bar-fill {
  height: 100%;
  width: 0;
  background: var(--gold);
  animation: loaderFill 2s var(--ease-luxury) 0.5s forwards;
}

@keyframes loaderFill {
  to { width: 100%; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ========================================
   NAVBAR
======================================== */
#jaryan-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: all 0.6s var(--ease-luxury);
  animation: fadeDown 1s var(--ease-luxury) 0.5s both;
}
#jaryan-nav.scrolled {
  background: rgba(26,24,20,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,169,110,0.08);
  padding: 12px 0;
}
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Nav Logo */
.nav-logo { display: flex; flex-direction: column; }
.nav-logo-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--white);
  line-height: 1;
}
.nav-logo-sub {
  font-family: var(--font-heading);
  font-size: 0.5rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 3px;
}

/* Nav Links */
.nav-links {
  display: none;
  list-style: none;
  gap: 32px;
  align-items: center;
}
@media (min-width: 1024px) { .nav-links { display: flex; } }

.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250,250,248,0.65);
  position: relative;
  transition: color 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease-luxury);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

/* Nav Actions */
.nav-actions { display: none; align-items: center; gap: 12px; }
@media (min-width: 1024px) { .nav-actions { display: flex; } }

.nav-call {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250,250,248,0.6);
  transition: color 0.3s;
}
.nav-call:hover { color: var(--gold); }

.nav-wa {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1px solid rgba(201,169,110,0.5);
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: all 0.4s var(--ease-luxury);
}
.nav-wa:hover { background: var(--gold); color: var(--charcoal); border-color: var(--gold); }

/* Mobile Toggle */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
@media (min-width: 1024px) { .nav-toggle { display: none; } }

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--white);
  transition: all 0.35s var(--ease-luxury);
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* Mobile Menu */
.nav-mobile {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(26,24,20,0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s var(--ease-luxury);
}
.nav-mobile.open { opacity: 1; pointer-events: all; }
.nav-mobile a {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--white);
  transition: color 0.3s;
}
.nav-mobile a:hover { color: var(--gold); }
.nav-mobile-actions { display: flex; gap: 12px; margin-top: 16px; }

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

.hero-bg {
  position: absolute;
  inset: 0;
  transform: scale(1.1);
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,24,20,0.55) 0%, rgba(26,24,20,0.15) 50%, rgba(26,24,20,1) 100%);
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(26,24,20,0.65) 0%, transparent 60%);
  z-index: 1;
}

.hero-noise {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.025;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

.hero-line-left {
  position: absolute;
  left: 8%;
  top: 0;
  height: 100%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(201,169,110,0.3), transparent);
  z-index: 3;
}

.hero-content {
  position: relative;
  z-index: 4;
  width: 100%;
  padding: 0 24px;
  animation: heroFadeIn 1.2s var(--ease-luxury) 1s both;
}
@media (min-width: 1024px) { .hero-content { padding: 0 80px; } }
@media (min-width: 1280px) { .hero-content { padding: 0 112px; } }

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
  animation: heroFadeIn 0.9s var(--ease-luxury) 0.8s both;
}
.hero-label::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.hero-label span {
  font-family: var(--font-heading);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -0.02em;
  max-width: 800px;
}
.hero-title-line1 {
  display: block;
  font-size: clamp(3rem, 8vw, 7rem);
  color: var(--white);
  animation: heroFadeIn 1.1s var(--ease-luxury) 1s both;
}
.hero-title-line2 {
  display: block;
  font-size: clamp(3rem, 8vw, 7rem);
  color: var(--gold);
  font-style: italic;
  margin-left: clamp(16px, 3vw, 48px);
  animation: heroFadeIn 1.1s var(--ease-luxury) 1.15s both;
}

.hero-subtitle {
  margin-top: 32px;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  color: rgba(250,250,248,0.55);
  max-width: 420px;
  line-height: 1.8;
  letter-spacing: 0.03em;
  animation: heroFadeIn 0.9s var(--ease-luxury) 1.3s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 40px;
  animation: heroFadeIn 0.8s var(--ease-luxury) 1.5s both;
}

.hero-stats {
  position: absolute;
  bottom: 80px;
  left: 24px;
  right: 24px;
  z-index: 4;
  display: flex;
  gap: 40px;
  animation: heroFadeIn 1s var(--ease-luxury) 1.8s both;
}
@media (min-width: 1024px) {
  .hero-stats { left: 80px; gap: 64px; }
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--gold);
  font-weight: 300;
  display: block;
}
.hero-stat-label {
  font-family: var(--font-heading);
  font-size: 0.5rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250,250,248,0.35);
  margin-top: 4px;
  display: block;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  right: 32px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  text-decoration: none;
}
@media (min-width: 1024px) { .hero-scroll { right: 64px; } }

.hero-scroll-text {
  font-family: var(--font-heading);
  font-size: 0.5rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(250,250,248,0.3);
  writing-mode: vertical-rl;
  transition: color 0.3s;
}
.hero-scroll:hover .hero-scroll-text { color: var(--gold); }
.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(201,169,110,0.6), transparent);
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(10px); }
}

/* ========================================
   ABOUT SECTION
======================================== */
#about {
  background: var(--charcoal);
  position: relative;
}
#about::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(201,169,110,0.03) 0%, transparent 60%);
  pointer-events: none;
}
#about::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,169,110,0.25), transparent);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: center;
}
@media (min-width: 1024px) {
  .about-grid { grid-template-columns: 1fr 1fr; gap: 96px; }
}

.about-images {
  position: relative;
}
.about-img-main {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-luxury);
}
.about-img-main:hover img { transform: scale(1.05); }
.about-img-main::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,24,20,0.6), transparent);
}

.about-img-secondary {
  position: absolute;
  top: -32px;
  left: -24px;
  width: 40%;
  aspect-ratio: 1;
  overflow: hidden;
  border: 4px solid var(--charcoal);
}
@media (min-width: 1024px) { .about-img-secondary { left: -40px; } }
.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease-luxury); }
.about-img-secondary:hover img { transform: scale(1.1); }

.about-floating-card {
  position: absolute;
  bottom: -32px;
  right: -24px;
  padding: 24px;
  max-width: 180px;
}
@media (min-width: 1024px) { .about-floating-card { right: -48px; } }
.about-floating-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  font-weight: 300;
  display: block;
}
.about-floating-label {
  font-family: var(--font-heading);
  font-size: 0.5rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250,250,248,0.45);
  margin-top: 4px;
  display: block;
}

.about-text { }
.about-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 32px;
}
.about-title em { color: var(--gold); font-style: italic; }

.about-desc {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: rgba(250,250,248,0.55);
  line-height: 1.9;
  margin-bottom: 16px;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  border-top: 1px solid rgba(250,250,248,0.06);
  padding-top: 40px;
  margin-top: 48px;
}
.about-stat-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--gold);
  font-weight: 300;
  display: block;
  margin-bottom: 6px;
}
.about-stat-label {
  font-family: var(--font-heading);
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250,250,248,0.35);
}

.about-cta {
  margin-top: 40px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid rgba(201,169,110,0.3);
  padding-bottom: 4px;
  transition: all 0.3s;
}
.about-cta:hover { border-color: var(--gold); gap: 20px; }

/* ========================================
   PROJECTS SECTION
======================================== */
#projects {
  background: var(--charcoal-mid);
  position: relative;
}
#projects::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(201,169,110,0.025) 0%, transparent 60%);
  pointer-events: none;
}

.projects-header {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 64px;
}
@media (min-width: 1024px) {
  .projects-header { flex-direction: row; align-items: flex-end; justify-content: space-between; }
}

.projects-all-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(201,169,110,0.6);
  border-bottom: 1px solid rgba(201,169,110,0.2);
  padding-bottom: 4px;
  transition: all 0.3s;
  white-space: nowrap;
}
.projects-all-link:hover { color: var(--gold); border-color: var(--gold); gap: 14px; }

.projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px)  { .projects-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .projects-grid { grid-template-columns: repeat(4, 1fr); } }

.project-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.project-card-img {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.project-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-luxury);
}
.project-card:hover .project-card-img img { transform: scale(1.1); }
.project-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,24,20,1) 0%, rgba(26,24,20,0.4) 50%, rgba(26,24,20,0.1) 100%);
  transition: opacity 0.5s;
}
.project-card:hover .project-card-img::after { opacity: 0.65; }

.project-card-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  font-family: var(--font-heading);
  font-size: 0.5rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 12px;
}
.tag-gold   { background: var(--gold); color: var(--charcoal); }
.tag-new    { background: rgba(250,250,248,0.1); border: 1px solid rgba(250,250,248,0.25); color: var(--white); }
.tag-limit  { background: rgba(185,28,28,0.3); border: 1px solid rgba(239,68,68,0.3); color: #fca5a5; }
.tag-avail  { background: rgba(20,83,45,0.3); border: 1px solid rgba(34,197,94,0.3); color: #86efac; }

.project-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  z-index: 2;
}
.project-type {
  font-family: var(--font-heading);
  font-size: 0.52rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.project-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 4px;
}
.project-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 0.6rem;
  color: rgba(250,250,248,0.45);
  margin-bottom: 12px;
}
.project-price {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 300;
  margin-bottom: 10px;
}
.project-info {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
}
.project-info-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 0.58rem;
  color: rgba(250,250,248,0.45);
}
.project-payment {
  font-family: var(--font-heading);
  font-size: 0.5rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(201,169,110,0.55);
  border-top: 1px solid rgba(250,250,248,0.07);
  padding-top: 10px;
  margin-bottom: 0;
}

.project-cta {
  display: none;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: var(--gold);
  color: var(--charcoal);
  font-family: var(--font-heading);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 12px;
  transition: background 0.3s;
}
.project-card:hover .project-cta { display: flex; animation: fadeUp 0.3s var(--ease-luxury) both; }
.project-cta:hover { background: var(--gold-light); }

/* ========================================
   LIFESTYLE SECTION
======================================== */
#lifestyle { background: var(--charcoal); }

.lifestyle-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 96px 24px 48px;
  max-width: 1280px;
  margin: 0 auto;
}
@media (min-width: 1024px) { .lifestyle-header { padding: 96px 48px 48px; } }

.lifestyle-block {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 70vh;
}
@media (min-width: 1024px) { .lifestyle-block { grid-template-columns: 1fr 1fr; } }

.lifestyle-img {
  position: relative;
  overflow: hidden;
  min-height: 50vw;
}
@media (min-width: 1024px) { .lifestyle-img { min-height: 0; } }

.lifestyle-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-luxury);
}
.lifestyle-block:hover .lifestyle-img img { transform: scale(1.05); }
.lifestyle-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(26,24,20,0.3), transparent);
}

.lifestyle-img-right::after {
  background: linear-gradient(270deg, rgba(26,24,20,0.3), transparent);
}

.lifestyle-content {
  background: var(--charcoal);
  display: flex;
  align-items: center;
  padding: 64px 32px;
}
@media (min-width: 1024px) { .lifestyle-content { padding: 96px 64px; } }
@media (min-width: 1280px) { .lifestyle-content { padding: 96px 80px; } }

.lifestyle-content-inner { max-width: 500px; }

.lifestyle-subtitle {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.lifestyle-subtitle::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.lifestyle-subtitle span {
  font-family: var(--font-heading);
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

.lifestyle-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
  white-space: pre-line;
  margin-bottom: 32px;
}

.lifestyle-desc {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: rgba(250,250,248,0.5);
  line-height: 1.9;
  margin-bottom: 40px;
}

.lifestyle-num {
  font-family: var(--font-heading);
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(201,169,110,0.4);
  border-top: 1px solid rgba(250,250,248,0.05);
  padding-top: 32px;
}
.lifestyle-num strong { color: var(--gold); }

/* ========================================
   AMENITIES SECTION
======================================== */
#amenities {
  background: var(--charcoal-mid);
  position: relative;
  overflow: hidden;
}
#amenities::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(30deg, rgba(201,169,110,0.025) 1px, transparent 1px),
    linear-gradient(120deg, rgba(201,169,110,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
#amenities::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--charcoal-mid), transparent, var(--charcoal-mid));
  pointer-events: none;
}

.amenities-header { text-align: center; margin-bottom: 80px; }
.amenities-header .section-label { justify-content: center; }
.amenities-header .section-label::before { display: none; }
.amenities-header .section-label::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.amenities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px)  { .amenities-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .amenities-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; } }

.amenity-card {
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.5s, background 0.5s;
  cursor: default;
}
@media (min-width: 1024px) { .amenity-card { padding: 32px; } }

.amenity-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(201,169,110,0.04);
  opacity: 0;
  transition: opacity 0.5s;
}
.amenity-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.5s;
}
.amenity-card:hover { border-color: rgba(201,169,110,0.35) !important; }
.amenity-card:hover::before { opacity: 1; }
.amenity-card:hover::after  { opacity: 1; }

.amenity-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  position: relative;
}
.amenity-icon svg {
  width: 18px;
  height: 18px;
  stroke: rgba(201,169,110,0.55);
  fill: none;
  stroke-width: 1.5;
  transition: stroke 0.3s;
}
.amenity-card:hover .amenity-icon svg { stroke: var(--gold); }

.amenity-title {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(250,250,248,0.75);
  margin-bottom: 8px;
  transition: color 0.3s;
}
.amenity-card:hover .amenity-title { color: var(--white); }

.amenity-desc {
  font-family: var(--font-body);
  font-size: 0.65rem;
  color: rgba(250,250,248,0.3);
  line-height: 1.6;
  transition: color 0.3s;
}
.amenity-card:hover .amenity-desc { color: rgba(250,250,248,0.5); }

/* ========================================
   MASTERPLAN SECTION
======================================== */
#masterplan { background: var(--charcoal); }

.masterplan-header {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 64px;
}
@media (min-width: 1024px) {
  .masterplan-header { flex-direction: row; align-items: flex-end; justify-content: space-between; }
}

.zoom-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}
.zoom-btn {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201,169,110,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(201,169,110,0.6);
  transition: all 0.3s;
  font-size: 18px;
  line-height: 1;
}
.zoom-btn:hover { border-color: var(--gold); color: var(--gold); }
.zoom-level {
  font-family: var(--font-heading);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: rgba(250,250,248,0.35);
  min-width: 42px;
  text-align: center;
}

.masterplan-container {
  border: 1px solid rgba(201,169,110,0.1);
  overflow: hidden;
  position: relative;
  min-height: 60vh;
}

.masterplan-map {
  position: relative;
  overflow: hidden;
  transition: transform 0.5s var(--ease-luxury);
  transform-origin: center center;
}
.masterplan-map img {
  width: 100%;
  display: block;
  filter: saturate(0.3) contrast(1.2);
}
.masterplan-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,24,20,0.55);
  mix-blend-mode: multiply;
}
.masterplan-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(26,24,20,0.35));
}

.masterplan-pin {
  position: absolute;
  cursor: pointer;
  z-index: 2;
  transform: translate(-50%, -50%);
}
.pin-dot {
  width: 12px;
  height: 12px;
  background: var(--gold);
  border-radius: 50%;
  position: relative;
  z-index: 2;
}
.pin-dot::before {
  content: '';
  position: absolute;
  inset: -4px;
  background: rgba(201,169,110,0.25);
  border-radius: 50%;
  animation: pinPulse 2s ease-in-out infinite;
}
@keyframes pinPulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.8); opacity: 0; }
}

.pin-tooltip {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(26,24,20,0.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(201,169,110,0.2);
  padding: 10px 14px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
  transform: translateX(-50%) translateY(4px);
}
.masterplan-pin:hover .pin-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.pin-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: rgba(201,169,110,0.2);
}
.pin-title {
  font-family: var(--font-heading);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 2px;
}
.pin-desc {
  font-family: var(--font-body);
  font-size: 0.55rem;
  color: rgba(250,250,248,0.45);
}

.masterplan-legend {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.legend-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.legend-label {
  font-family: var(--font-heading);
  font-size: 0.5rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(250,250,248,0.35);
}

/* ========================================
   GALLERY SECTION
======================================== */
#gallery { background: var(--charcoal-mid); }

.gallery-header {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 64px;
}
@media (min-width: 1024px) {
  .gallery-header { flex-direction: row; align-items: flex-end; justify-content: space-between; }
}

.masonry-grid {
  column-count: 1;
  column-gap: 10px;
}
@media (min-width: 640px)  { .masonry-grid { column-count: 2; } }
@media (min-width: 1024px) { .masonry-grid { column-count: 3; } }

.masonry-item {
  break-inside: avoid;
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.masonry-item img {
  width: 100%;
  display: block;
  transition: transform 1s var(--ease-luxury);
}
.masonry-item:hover img { transform: scale(1.1); }

.masonry-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,24,20,0);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: background 0.5s;
}
.masonry-item:hover .masonry-item-overlay { background: rgba(26,24,20,0.5); }
.masonry-item-overlay svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.4s var(--ease-luxury);
}
.masonry-item-label {
  font-family: var(--font-heading);
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.4s var(--ease-luxury) 0.05s;
}
.masonry-item:hover .masonry-item-overlay svg,
.masonry-item:hover .masonry-item-label { opacity: 1; transform: none; }

.masonry-corners::before,
.masonry-corners::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  border-color: transparent;
  border-style: solid;
  opacity: 0;
  transition: opacity 0.4s, border-color 0.4s;
}
.masonry-corners::before {
  top: 12px; left: 12px;
  border-top-width: 1px; border-left-width: 1px;
}
.masonry-corners::after {
  bottom: 12px; right: 12px;
  border-bottom-width: 1px; border-right-width: 1px;
}
.masonry-item:hover .masonry-corners::before,
.masonry-item:hover .masonry-corners::after {
  opacity: 1;
  border-color: rgba(201,169,110,0.6);
}

/* Lightbox */
#lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(26,24,20,0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
#lightbox.open { opacity: 1; pointer-events: all; }
#lightbox img {
  max-width: 100%;
  max-height: 88vh;
  object-fit: contain;
  border: 1px solid rgba(201,169,110,0.1);
  transform: scale(0.92);
  transition: transform 0.5s var(--ease-luxury);
}
#lightbox.open img { transform: scale(1); }
#lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(250,250,248,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(250,250,248,0.5);
  font-size: 18px;
  transition: all 0.3s;
  cursor: pointer;
}
#lightbox-close:hover { border-color: var(--gold); color: var(--gold); }

/* ========================================
   TESTIMONIALS SECTION
======================================== */
#testimonials { background: var(--charcoal); position: relative; }
#testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(201,169,110,0.03) 0%, transparent 70%);
  pointer-events: none;
}

.testimonials-header { text-align: center; margin-bottom: 80px; }

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

.testimonial-card {
  padding: 48px;
  position: relative;
  overflow: hidden;
  min-height: 280px;
}
@media (min-width: 1024px) { .testimonial-card { padding: 64px; } }

.testimonial-quote-icon {
  position: absolute;
  top: 32px;
  right: 32px;
  opacity: 0.08;
}
.testimonial-quote-icon svg {
  width: 64px;
  height: 64px;
  fill: var(--gold);
}

.testimonial-stars { display: flex; gap: 4px; margin-bottom: 32px; }
.testimonial-stars svg {
  width: 12px;
  height: 12px;
  fill: var(--gold);
  stroke: none;
}

.testimonial-quote {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 300;
  color: rgba(250,250,248,0.8);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 40px;
}

.testimonial-author { display: flex; align-items: center; gap: 16px; }
.testimonial-avatar {
  width: 48px;
  height: 48px;
  background: rgba(201,169,110,0.15);
  border: 1px solid rgba(201,169,110,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  flex-shrink: 0;
}
.testimonial-name {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--white);
  display: block;
  margin-bottom: 4px;
}
.testimonial-role {
  font-family: var(--font-body);
  font-size: 0.65rem;
  color: rgba(250,250,248,0.35);
}

/* Slider slides */
.testimonial-slide {
  display: none;
  animation: testimonialFade 0.5s var(--ease-luxury);
}
.testimonial-slide.active { display: block; }
@keyframes testimonialFade {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Slider controls */
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 32px;
}
.slider-dots { display: flex; gap: 8px; align-items: center; }
.slider-dot {
  height: 4px;
  border-radius: 2px;
  background: rgba(250,250,248,0.2);
  transition: all 0.3s;
  cursor: pointer;
  width: 8px;
}
.slider-dot.active { width: 24px; background: var(--gold); }

.slider-arrows { display: flex; gap: 8px; }
.slider-arrow {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(250,250,248,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(250,250,248,0.4);
  transition: all 0.3s;
  font-size: 16px;
}
.slider-arrow:hover { border-color: var(--gold); color: var(--gold); }

/* ========================================
   CONTACT SECTION
======================================== */
#contact {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.contact-bg {
  position: absolute;
  inset: 0;
}
.contact-bg img { width: 100%; height: 100%; object-fit: cover; }
.contact-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26,24,20,0.85);
}
.contact-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--charcoal) 0%, rgba(26,24,20,0.6) 50%, transparent 100%);
  z-index: 1;
}

.contact-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: start;
}
@media (min-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr 1fr; gap: 96px; }
}

.contact-info-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}
.contact-info-title em { color: var(--gold); font-style: italic; }

.contact-info-desc {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: rgba(250,250,248,0.5);
  line-height: 1.9;
  margin-bottom: 48px;
}

.contact-info-items { margin-bottom: 48px; }
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  text-decoration: none;
}
.contact-info-icon {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(250,250,248,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
}
.contact-info-item:hover .contact-info-icon { border-color: var(--gold); background: rgba(201,169,110,0.1); }
.contact-info-icon svg { width: 14px; height: 14px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.contact-info-meta { flex: 1; }
.contact-info-label {
  font-family: var(--font-heading);
  font-size: 0.5rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250,250,248,0.3);
  display: block;
  margin-bottom: 4px;
}
.contact-info-value {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(250,250,248,0.65);
  transition: color 0.3s;
}
.contact-info-item:hover .contact-info-value { color: var(--white); }

/* Form */
.contact-form-card { padding: 40px; }
@media (min-width: 1024px) { .contact-form-card { padding: 48px; } }

.contact-form-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 32px;
}

.form-group { margin-bottom: 16px; }
.form-input,
.form-select {
  width: 100%;
  background: rgba(250,250,248,0.03);
  border: 1px solid rgba(250,250,248,0.1);
  color: var(--white);
  padding: 16px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.3s;
  appearance: none;
  -webkit-appearance: none;
}
.form-input::placeholder { color: rgba(250,250,248,0.3); }
.form-input:focus,
.form-select:focus { border-color: rgba(201,169,110,0.5); }

.form-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A96E' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; cursor: pointer; }
.form-select option { background: var(--charcoal); color: var(--white); }

.form-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background: var(--gold);
  color: var(--charcoal);
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 600;
  transition: all 0.4s var(--ease-luxury);
  margin-top: 8px;
  cursor: pointer;
  border: none;
}
.form-submit:hover { background: var(--gold-light); }
.form-submit svg { width: 12px; height: 12px; stroke: var(--charcoal); fill: none; stroke-width: 2; transition: transform 0.3s; }
.form-submit:hover svg { transform: translateX(4px); }

.form-note {
  font-family: var(--font-body);
  font-size: 0.6rem;
  color: rgba(250,250,248,0.2);
  text-align: center;
  margin-top: 12px;
}

.form-success {
  text-align: center;
  padding: 48px 0;
  display: none;
}
.form-success.show { display: block; }
.success-icon {
  width: 64px;
  height: 64px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 24px;
}
.success-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 8px;
}
.success-msg { font-family: var(--font-body); font-size: 0.85rem; color: rgba(250,250,248,0.45); }

/* ========================================
   FOOTER
======================================== */
#jaryan-footer {
  background: var(--charcoal);
  border-top: 1px solid rgba(250,250,248,0.04);
  position: relative;
  overflow: hidden;
}
#jaryan-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(201,169,110,0.03) 0%, transparent 60%);
  pointer-events: none;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  padding: 80px 0 64px;
  border-bottom: 1px solid rgba(250,250,248,0.04);
  position: relative;
}
@media (min-width: 1024px) {
  .footer-top { grid-template-columns: 4fr 5fr 3fr; gap: 0; }
}

.footer-brand { }
.footer-logo-name {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--white);
  display: block;
  line-height: 1;
}
.footer-logo-sub {
  font-family: var(--font-heading);
  font-size: 0.5rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 6px;
  display: block;
}
.footer-brand-desc {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(250,250,248,0.3);
  line-height: 1.8;
  margin-top: 24px;
  max-width: 260px;
}
.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 32px;
}
.footer-social {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(250,250,248,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(250,250,248,0.3);
  transition: all 0.3s;
  font-size: 13px;
  text-decoration: none;
}
.footer-social:hover { border-color: rgba(201,169,110,0.5); color: var(--gold); }
.footer-social svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 1.5; }

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
@media (min-width: 640px) { .footer-links-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .footer-links-grid { padding: 0 32px; } }

.footer-links-col { }
.footer-links-title {
  font-family: var(--font-heading);
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-links-col ul { list-style: none; }
.footer-links-col li { margin-bottom: 12px; }
.footer-links-col a {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: rgba(250,250,248,0.3);
  transition: color 0.3s;
  text-decoration: none;
}
.footer-links-col a:hover { color: rgba(250,250,248,0.65); }

.footer-contact { }
@media (min-width: 1024px) { .footer-contact { padding-left: 32px; } }
.footer-contact-title {
  font-family: var(--font-heading);
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  text-decoration: none;
}
.footer-contact-icon {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(250,250,248,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.3s;
}
.footer-contact-item:hover .footer-contact-icon { border-color: var(--gold); }
.footer-contact-icon svg { width: 11px; height: 11px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.footer-contact-text {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: rgba(250,250,248,0.35);
  transition: color 0.3s;
}
.footer-contact-item:hover .footer-contact-text { color: rgba(250,250,248,0.65); }

.footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(201,169,110,0.3);
  color: var(--gold);
  padding: 12px 20px;
  font-family: var(--font-heading);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 24px;
  transition: all 0.4s var(--ease-luxury);
  text-decoration: none;
}
.footer-cta:hover { background: var(--gold); color: var(--charcoal); }
.footer-cta svg { width: 11px; height: 11px; stroke: currentColor; fill: none; stroke-width: 2; transition: transform 0.3s; }
.footer-cta:hover svg { transform: translate(2px, -2px); }

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 32px 0;
  position: relative;
}
@media (min-width: 640px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }

.footer-copy,
.footer-location {
  font-family: var(--font-body);
  font-size: 0.62rem;
  color: rgba(250,250,248,0.18);
}

/* ========================================
   FLOATING WHATSAPP
======================================== */
#wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--whatsapp);
  color: white;
  padding: 12px 20px;
  box-shadow: 0 8px 32px rgba(37,211,102,0.35);
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s var(--ease-luxury);
  animation: waFloat 0.6s var(--ease-luxury) 3s forwards;
}
@keyframes waFloat {
  to { opacity: 1; transform: translateY(0); }
}
#wa-float:hover { background: #20ba5a; transform: translateY(-2px); box-shadow: 0 12px 40px rgba(37,211,102,0.4); }
#wa-float svg { width: 18px; height: 18px; fill: white; flex-shrink: 0; }
#wa-float span { display: none; }
@media (min-width: 480px) { #wa-float span { display: block; } }

/* ========================================
   RESPONSIVE FIXES
======================================== */
@media (max-width: 639px) {
  .hero-stats { gap: 24px; }
  .hero-stat-num { font-size: 1.4rem; }
  .about-img-secondary { display: none; }
  .about-floating-card { right: 0; bottom: -24px; }
}

/* ========================================
   PRINT STYLES
======================================== */
@media print {
  #jaryan-nav, #wa-float, #jaryan-loader { display: none; }
  body { background: white; color: black; }
}
