/* CSS reset and base */
* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --red-primary: #8B0000;
  --red-mid: #B22222;
  --red-dark: #5C0000;
  --red-shadow: #2C0000;
  --white: #FFFFFF;
  --off-white: #FDF5F5;
  --light-grey: #F4EEEE;
  --text-dark: #1A0000;
  --text-mid: #4A1010;
  --text-muted: #888888;
  --border: rgba(139,0,0,0.20);
  --red-glow: 0 4px 24px rgba(139,0,0,0.18);
  
  --font-heading: 'Cormorant Garamond', serif;
  --font-nav: 'Montserrat', sans-serif;
  --font-body: 'Lato', sans-serif;
}
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); color: var(--red-primary); }
a { text-decoration: none; }
ul { list-style: none; }
.btn {
  font-family: var(--font-nav); display: inline-block; text-align: center; cursor: pointer;
  border-radius: 6px; transition: all 0.3s ease; font-weight: 600; padding: 12px 24px;
  font-size: 13px; border: 1px solid transparent;
}
.btn-red-solid { background-color: var(--red-primary); color: var(--white); border-color: var(--red-primary); }
.btn-red-solid:hover { background-color: var(--red-mid); border-color: var(--red-mid); }
.btn-red-outline { background-color: transparent; color: var(--red-primary); border-color: var(--red-primary); }
.btn-red-outline:hover { background-color: var(--red-primary); color: var(--white); }
.mt-20 { margin-top: 20px; }
.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.bg-white { background-color: var(--white) !important; }
.bg-light { background-color: var(--off-white); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 5%; }
.section-title { font-size: 44px; font-weight: 700; margin-bottom: 20px; }
.section-divider { width: 60px; height: 3px; background-color: var(--red-primary); margin: 0 auto 50px auto; }
.section-divider.center { margin-left: auto; margin-right: auto; }
.section-divider-left { width: 60px; height: 3px; background-color: var(--red-primary); margin: 0 0 30px 0; }

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--white);
  border-bottom: 2px solid var(--red-primary);
  z-index: 1000;
  transition: box-shadow 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 5%;
}
.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(139,0,0,0.10);
}
.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.nav-logo img {
  height: auto;
  max-height: 120px;
  display: block;
}
.logo-text-1 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--red-primary);
  line-height: 1;
}
.logo-text-2 {
  font-family: var(--font-nav);
  font-size: 11px;
  color: var(--red-dark);
  letter-spacing: 4px;
}

/* Navbar Logo Image */
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo-img { width: 256px; height: auto; object-fit: contain; flex-shrink: 0; }
.nav-logo-text { display: none; }
@media (max-width: 768px) {
  .nav-logo-img { width: 144px; height: auto; }
}

.nav-links {
  display: flex;
  gap: 30px;
}
.nav-links a {
  font-family: var(--font-nav);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-dark);
  position: relative;
  font-weight: 500;
  padding-bottom: 5px;
  transition: color 0.3s ease;
}
.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--red-primary);
  transition: width 0.3s ease;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--red-primary);
}
.nav-links a:hover::after, .nav-links a.active::after {
  width: 100%;
}
.nav-links a.active {
  font-weight: 700;
}
.nav-ctas {
  display: flex;
  gap: 15px;
}
.hamburger {
  display: none;
  font-size: 24px;
  color: var(--red-primary);
  cursor: pointer;
}

/* Mobile Nav Overlay */
.mobile-nav-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background-color: var(--white); z-index: 1001; display: flex; flex-direction: column; justify-content: center; align-items: center; transform: translateX(100%); transition: transform 0.4s ease; }
.mobile-nav-overlay.open { transform: translateX(0); }
.mobile-nav-overlay a { font-family: var(--font-nav); font-size: 20px; color: var(--red-primary); margin: 15px 0; text-transform: uppercase; letter-spacing: 2px; }
.mobile-nav-close { position: absolute; top: 25px; right: 5%; font-size: 30px; color: var(--red-primary); cursor: pointer; }

/* Aura Hero */
.aura-hero {
  position: relative; margin-top: 100px; min-height: 85vh; display: flex; align-items: center;
}
.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; background-size: cover; background-position: center; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 2; background: linear-gradient(to right, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 100%); }
.hero-container { position: relative; z-index: 3; max-width: 1300px; margin: 0 auto; padding: 0 5%; display: flex; justify-content: space-between; align-items: center; width: 100%; gap: 40px; }
.hero-text-col { flex: 1; color: var(--white); }
.hero-badge { display: inline-block; background-color: var(--red-primary); color: var(--white); font-family: var(--font-nav); font-size: 11px; font-weight: 700; padding: 6px 12px; border-radius: 4px; letter-spacing: 1px; margin-bottom: 20px; }
.hero-text-col h1 { font-size: 64px; color: var(--white); font-weight: 700; line-height: 1.1; margin-bottom: 15px; text-shadow: 0 2px 10px rgba(0,0,0,0.5); }
.hero-sub { font-size: 20px; color: rgba(255,255,255,0.9); margin-bottom: 40px; font-weight: 300; }
.hero-highlights { display: flex; gap: 20px; flex-wrap: wrap; }
.hl-box { background: rgba(255,255,255,0.1); border-left: 4px solid var(--red-primary); padding: 15px 20px; backdrop-filter: blur(5px); display: flex; flex-direction: column; min-width: 140px; }
.hl-val { font-family: var(--font-heading); font-size: 28px; font-weight: 700; color: var(--white); line-height: 1.2; }
.hl-lbl { font-family: var(--font-nav); font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.7); }

.hero-form-col { width: 380px; flex-shrink: 0; }
.lead-form-box { background-color: var(--white); padding: 40px 30px; border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.3); border-top: 5px solid var(--red-primary); }
.lead-form-box h3 { font-size: 28px; margin-bottom: 5px; color: var(--text-dark); text-align: center; }
.lead-form-box p { font-size: 14px; color: var(--text-muted); text-align: center; margin-bottom: 25px; }
.lead-form-box input { width: 100%; padding: 14px 15px; margin-bottom: 15px; border: 1px solid var(--border); border-radius: 4px; font-family: var(--font-body); font-size: 14px; outline: none; }
.lead-form-box input:focus { border-color: var(--red-primary); }
.form-note { font-size: 11px !important; color: var(--text-muted) !important; margin-top: 15px !important; margin-bottom: 0 !important; }

/* Overview Section */
.aura-overview { padding: 100px 0; background-color: var(--off-white); }
.overview-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.ov-text p { font-size: 16px; color: var(--text-mid); line-height: 1.8; margin-bottom: 30px; }
.ov-list { display: flex; flex-direction: column; gap: 15px; margin-bottom: 30px; }
.ov-list li { font-family: var(--font-nav); font-size: 14px; font-weight: 500; display: flex; align-items: center; gap: 10px; color: var(--text-dark); }
.ov-icon { color: var(--red-primary); font-size: 16px; }
.ov-image img { width: 100%; border-radius: 8px; box-shadow: 0 10px 30px rgba(139,0,0,0.1); display: block; object-fit: cover; height: 450px; }

/* Features */
.aura-features { padding: 100px 0; background-color: #222; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.feat-card { background-color: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); padding: 40px 30px; border-radius: 8px; text-align: center; transition: transform 0.3s; }
.feat-card:hover { transform: translateY(-5px); border-color: var(--red-primary); background-color: rgba(139,0,0,0.1); }
.feat-icon { font-size: 40px; margin-bottom: 20px; }
.feat-card h4 { font-family: var(--font-nav); font-size: 16px; color: var(--white); margin-bottom: 15px; letter-spacing: 1px; }
.feat-card p { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.6; }

/* Amenities */
.aura-amenities { padding: 100px 0; background-color: var(--white); }
.am-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.am-item { border: 1px solid var(--border); padding: 30px 15px; border-radius: 6px; text-align: center; transition: all 0.3s; background-color: var(--off-white); }
.am-item:hover { border-color: var(--red-primary); transform: translateY(-5px); box-shadow: var(--red-glow); }
.am-icon { font-size: 40px; display: block; margin-bottom: 15px; }
.am-text { font-family: var(--font-nav); font-size: 13px; font-weight: 600; color: var(--text-dark); }

/* Floor Plans */
.aura-floorplans { padding: 100px 0; background-color: var(--off-white); }
.fp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.fp-blur-card { position: relative; border-radius: 8px; overflow: hidden; height: 350px; cursor: pointer; border: 2px solid var(--border); }
.fp-blur-card:hover { border-color: var(--red-primary); }
.blur-img { width: 100%; height: 100%; object-fit: cover; filter: blur(4px); transition: filter 0.3s; }
.fp-blur-card:hover .blur-img { filter: blur(6px); }
.fp-blur-card.single-slide { height: auto; aspect-ratio: 16/9; max-width: 1000px; margin: 0 auto; border: 4px solid var(--white); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
@media (max-width: 768px) {
  .fp-blur-card.single-slide { aspect-ratio: 4/3; }
}
.fp-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: flex; justify-content: center; align-items: center; background: rgba(255,255,255,0.2); }

/* Gallery */
.aura-gallery { padding: 100px 0; background-color: var(--white); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gal-img { border-radius: 8px; overflow: hidden; height: 250px; cursor: pointer; }
.gal-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.gal-img:hover img { transform: scale(1.08); }

/* Location */
.aura-location { padding: 100px 0; background-color: var(--off-white); }
.loc-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 50px; align-items: center; }
.loc-map img { width: 100%; height: 500px; object-fit: cover; border-radius: 8px; border: 4px solid var(--white); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.loc-landmarks { display: flex; flex-direction: column; gap: 20px; }
.landmark-item { display: flex; align-items: center; gap: 20px; background-color: var(--white); padding: 20px; border-radius: 8px; border: 1px solid var(--border); transition: transform 0.3s; }
.landmark-item:hover { transform: translateX(10px); border-color: var(--red-primary); }
.lm-icon { font-size: 30px; }
.lm-info h5 { font-family: var(--font-nav); font-size: 15px; color: var(--text-dark); margin-bottom: 5px; }
.lm-info p { font-size: 13px; color: var(--red-primary); font-weight: 700; margin: 0; }

/* Modal */
.modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.7); z-index: 2000; display: none; justify-content: center; align-items: center; }
.modal-overlay.open { display: flex; }
.modal-card { background-color: var(--white); padding: 40px; border-radius: 8px; border-top: 5px solid var(--red-primary); width: 90%; max-width: 400px; position: relative; }
.modal-close { position: absolute; top: 15px; right: 20px; font-size: 24px; color: var(--text-muted); cursor: pointer; }

/* CTA Banner */
.cta-banner { background-color: var(--red-dark); padding: 80px 5%; text-align: center; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: repeating-linear-gradient(45deg, rgba(255,255,255,0.04) 0px, rgba(255,255,255,0.04) 2px, transparent 2px, transparent 15px); }
.cta-content { position: relative; z-index: 2; }
.cta-banner h2 { font-size: 44px; color: var(--white); margin-bottom: 15px; }
.cta-banner p { font-size: 16px; color: rgba(255,255,255,0.80); margin-bottom: 30px; }
.cta-btns { display: flex; justify-content: center; gap: 15px; }
@media (max-width: 768px) {
  .cta-banner h2 { font-size: 36px; }
  .cta-btns { flex-direction: column; }
}

/* Footer */
.footer { background-color: var(--red-shadow); color: var(--white); border-top: 4px solid var(--red-primary); }
.footer-top { padding: 60px 5%; display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; }
.footer-col h4 { font-family: var(--font-nav); font-size: 12px; color: var(--red-mid); letter-spacing: 3px; margin-bottom: 20px; }
.footer-brand .logo-text-1 { color: var(--white); }
.footer-brand .logo-text-2 { color: var(--red-mid); }
.footer-tagline { font-family: var(--font-heading); font-size: 16px; font-style: italic; margin-top: 10px; margin-bottom: 15px; }
.footer-desc { font-size: 13px; color: rgba(255,255,255,0.65); margin-bottom: 20px; line-height: 1.6; }
.social-links { display: flex; gap: 15px; }
.social-links a { color: var(--white); font-size: 13px; font-family: var(--font-nav); transition: color 0.3s; }
.social-links a:hover { color: var(--red-mid); }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul a, .footer-col .contact-info p, .footer-col .contact-info a { font-size: 14px; color: var(--white); transition: color 0.3s; }
.footer-col ul a:hover, .footer-col .contact-info a:hover { color: var(--red-mid); }
.contact-info p { margin-bottom: 12px; display: flex; align-items: flex-start; gap: 10px; }
.footer-bottom { background-color: var(--text-dark); padding: 20px 5%; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 12px; color: var(--text-muted); }
.footer-links a { font-size: 12px; color: var(--red-mid); margin-left: 15px; }
.footer-links a:hover { color: var(--white); }

.fab-container { position: fixed; bottom: 30px; right: 30px; display: flex; flex-direction: column; gap: 12px; z-index: 1000; }
.fab { width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 20px; box-shadow: 0 4px 16px rgba(139,0,0,0.40); transition: transform 0.3s ease; }
.fab:hover { transform: scale(1.10); }
.fab-call { background-color: var(--red-primary); }
.fab-wa { background-color: var(--red-mid); }
.pulse-ring { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border-radius: 50%; border: 2px solid var(--red-mid); animation: pulse 2s infinite; }
@keyframes pulse { 0% { transform: scale(1); opacity: 0.8; } 100% { transform: scale(1.5); opacity: 0; } }

/* Responsive */
@media (max-width: 1024px) {
  .hero-container { flex-direction: column; text-align: center; justify-content: center; }
  .hero-highlights { justify-content: center; }
  .overview-grid { grid-template-columns: 1fr; }
  .section-divider-left { margin: 0 auto 30px auto; }
  .ov-text { text-align: center; }
  .ov-list li { justify-content: center; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .am-grid { grid-template-columns: repeat(3, 1fr); }
  .fp-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .loc-grid { grid-template-columns: 1fr; }
  .loc-map img { height: 350px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-ctas { display: none; }
  .hamburger { display: block; }
  .hero-text-col h1 { font-size: 44px; }
  .features-grid { grid-template-columns: 1fr; }
  .am-grid { grid-template-columns: repeat(2, 1fr); }
  .fp-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-form-col { width: 100%; max-width: 400px; }
  .footer-top { grid-template-columns: 1fr; }
}
