/*
================================================================================
AURA PROPERTIES MUMBAI - COMPLETE CUSTOM CSS STYLESHEET
Theme: Luxury Real Estate & Modern Architecture (Dark Navy & Gold)
Type: Pure HTML5 & CSS3 Standalone Stylesheet
================================================================================
*/

/* -----------------------------------------------------------------------------
   0. GLOBAL VARIABLES & DESIGN SYSTEM
----------------------------------------------------------------------------- */
:root {
  /* Color Palette */
  --primary-navy: #08111F;      /* Deepest Space Navy/Black */
  --secondary-navy: #0F172A;    /* Dark Slate Blue/Navy */
  --luxury-gold: #C9A86A;       /* Classic Metallic Gold */
  --gold-hover: #D8B97F;        /* Brighter Champagne Gold */
  --pure-white: #FFFFFF;        /* Crisp White */
  --light-gray: #E5E7EB;        /* Cool Gray for body texts */
  --text-muted: #9CA3AF;        /* Darker Gray for captions */

  /* Borders & Shadows */
  --glass-bg: rgba(15, 23, 42, 0.55);
  --glass-border: rgba(201, 168, 106, 0.15);
  --glass-border-hover: rgba(201, 168, 106, 0.35);
  --glass-blur: blur(14px);
  --gold-glow: 0 0 25px rgba(201, 168, 106, 0.25);
  --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  --border-radius: 16px;
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* -----------------------------------------------------------------------------
   1. GLOBAL & CORE COMPONENT STYLES
----------------------------------------------------------------------------- */
body {
  background-color: var(--primary-navy);
  color: var(--light-gray);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--primary-navy);
}
::-webkit-scrollbar-thumb {
  background: var(--luxury-gold);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-hover);
}

/* Base Typographical Enhancements */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: var(--pure-white);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.gold-gradient-text {
  background: linear-gradient(135deg, #FFE8B5 0%, #C9A86A 50%, #8F6E35 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Micro-Animations & Effects */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}

@keyframes pulse-gold {
  0% { box-shadow: 0 0 0 0 rgba(201, 168, 106, 0.4); }
  70% { box-shadow: 0 0 0 12px rgba(201, 168, 106, 0); }
  100% { box-shadow: 0 0 0 0 rgba(201, 168, 106, 0); }
}

.aura-float {
  animation: float 6s ease-in-out infinite;
}

/* Premium Buttons */
.btn-gold {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--primary-navy) !important;
  background-color: var(--luxury-gold) !important;
  border: 1px solid var(--luxury-gold) !important;
  padding: 16px 36px;
  border-radius: 100px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(201, 168, 106, 0.2);
}

.btn-gold::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transition: 0.6s;
  z-index: -1;
}

.btn-gold:hover::before {
  left: 100%;
}

.btn-gold:hover {
  background-color: var(--gold-hover) !important;
  border-color: var(--gold-hover) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 168, 106, 0.4);
}

.btn-outline-gold {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--luxury-gold) !important;
  background-color: transparent !important;
  border: 1px solid var(--luxury-gold) !important;
  padding: 16px 36px;
  border-radius: 100px;
  transition: var(--transition-smooth);
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-outline-gold:hover {
  color: var(--primary-navy) !important;
  background-color: var(--luxury-gold) !important;
  transform: translateY(-2px);
  box-shadow: var(--gold-glow);
}

/* Glassmorphism Global Base Class */
.aura-glass {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  box-shadow: var(--card-shadow);
  border-radius: var(--border-radius);
  transition: var(--transition-smooth);
}

/* -----------------------------------------------------------------------------
   SECTION 1: HEADER & NAVIGATION
----------------------------------------------------------------------------- */
.aura-header {
  background: rgba(8, 17, 31, 0.7) !important;
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid rgba(201, 168, 106, 0.1);
  transition: var(--transition-smooth);
  z-index: 9999;
}

/* Sticky Header Class Trigger */
.aura-header.header-sticky {
  background: rgba(8, 17, 31, 0.9) !important;
  border-bottom: 1px solid rgba(201, 168, 106, 0.25);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

/* Menu Item Hover Animation */
.aura-header .nav-menu a {
  font-family: 'Inter', sans-serif !important;
  font-weight: 500 !important;
  letter-spacing: 0.5px !important;
  color: var(--light-gray) !important;
  position: relative !important;
  transition: var(--transition-smooth) !important;
  padding: 10px 0 !important;
  margin: 0 15px !important;
}

.aura-header .nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--luxury-gold);
  transition: var(--transition-smooth);
  transform: translateX(-50%);
}

.aura-header .nav-menu a:hover {
  color: var(--luxury-gold) !important;
}

.aura-header .nav-menu a:hover::after,
.aura-header .nav-menu .current-menu-item a::after {
  width: 100%;
}

/* -----------------------------------------------------------------------------
   SECTION 2: HERO SECTION
----------------------------------------------------------------------------- */
.aura-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  overflow: visible; /* Needed for floating stats bar */
}

.aura-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, 
              rgba(8, 17, 31, 0.8) 0%, 
              rgba(8, 17, 31, 0.4) 50%, 
              rgba(8, 17, 31, 0.95) 100%);
  z-index: 1;
}

.aura-hero-content {
  position: relative;
  z-index: 2;
}

.aura-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 20px;
}

.aura-hero p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  max-width: 600px;
  color: var(--light-gray);
  margin-bottom: 35px;
}

/* Floating Stats Bar */
.aura-hero-stats {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  width: 90%;
  max-width: 1200px;
  z-index: 10;
  padding: 30px 40px;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--card-shadow), 0 20px 40px rgba(0, 0, 0, 0.4);
  border-radius: var(--border-radius);
  display: flex;
  justify-content: space-around;
  align-items: center;
  transition: var(--transition-smooth);
}

.aura-hero-stats:hover {
  border-color: var(--glass-border-hover);
  box-shadow: var(--card-shadow), var(--gold-glow);
}

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

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background-color: rgba(201, 168, 106, 0.25);
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--luxury-gold);
  margin-bottom: 5px;
}

.stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--light-gray);
}

/* -----------------------------------------------------------------------------
   SECTION 3: FEATURED PROPERTIES
----------------------------------------------------------------------------- */
.aura-properties {
  padding-top: 120px !important; /* Offset for floating stats bar overlay */
}

.aura-property-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.aura-property-card:hover {
  transform: translateY(-8px);
  border-color: var(--glass-border-hover);
  box-shadow: var(--card-shadow), var(--gold-glow);
}

.property-image-wrap {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.property-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.aura-property-card:hover .property-image-wrap img {
  transform: scale(1.1);
}

.property-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: rgba(8, 17, 31, 0.8);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  color: var(--luxury-gold);
  border: 1px solid var(--luxury-gold);
  font-size: 11px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.property-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.property-price {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--luxury-gold);
  margin-bottom: 5px;
}

.property-title {
  font-size: 20px;
  margin-bottom: 10px;
  transition: color 0.3s;
}

.aura-property-card:hover .property-title {
  color: var(--luxury-gold);
}

.property-location {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
}

.property-location i {
  color: var(--luxury-gold);
}

.property-specs {
  display: flex;
  border-top: 1px solid rgba(201, 168, 106, 0.15);
  padding-top: 15px;
  margin-top: auto;
  gap: 20px;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--light-gray);
}

.spec-item i {
  color: var(--luxury-gold);
}

.property-cta {
  margin-top: 20px;
  width: 100%;
}

/* -----------------------------------------------------------------------------
   SECTION 4: ABOUT US
----------------------------------------------------------------------------- */
.about-image-wrap {
  position: relative;
  padding: 20px;
}

.about-image-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  border: 2px solid var(--luxury-gold);
  border-radius: var(--border-radius);
  z-index: 1;
  transition: var(--transition-smooth);
}

.about-image-wrap img {
  position: relative;
  z-index: 2;
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
  transition: var(--transition-smooth);
}

.about-image-wrap:hover::before {
  transform: translate(15px, 15px);
}

.about-image-wrap:hover img {
  transform: translate(-5px, -5px);
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}

.about-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 15px;
}

.about-list li::before {
  content: '\f00c'; /* FontAwesome Check */
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--luxury-gold);
  font-size: 14px;
}

/* -----------------------------------------------------------------------------
   SECTION 5: WHY CHOOSE US
----------------------------------------------------------------------------- */
.aura-why-card {
  padding: 40px 30px;
  text-align: center;
  height: 100%;
}

.aura-why-card:hover {
  transform: translateY(-6px);
  border-color: var(--glass-border-hover);
  box-shadow: var(--card-shadow), var(--gold-glow);
}

.why-icon-container {
  width: 70px;
  height: 70px;
  background: rgba(201, 168, 106, 0.1);
  border: 1px solid var(--luxury-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px auto;
  font-size: 26px;
  color: var(--luxury-gold);
  transition: var(--transition-smooth);
  position: relative;
}

.aura-why-card:hover .why-icon-container {
  background: var(--luxury-gold);
  color: var(--primary-navy);
  box-shadow: 0 0 15px rgba(201, 168, 106, 0.4);
  transform: rotateY(180deg);
}

.aura-why-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.aura-why-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* -----------------------------------------------------------------------------
   SECTION 6: SERVICES
----------------------------------------------------------------------------- */
.aura-service-card {
  padding: 40px 30px;
  background: var(--secondary-navy);
  border: 1px solid rgba(201, 168, 106, 0.1);
  border-radius: var(--border-radius);
  transition: var(--transition-smooth);
  height: 100%;
}

.aura-service-card:hover {
  background: rgba(15, 23, 42, 0.8);
  border-color: var(--luxury-gold);
  transform: translateY(-5px);
  box-shadow: var(--card-shadow), var(--gold-glow);
}

.service-icon {
  font-size: 32px;
  color: var(--luxury-gold);
  margin-bottom: 20px;
  transition: var(--transition-smooth);
}

.aura-service-card:hover .service-icon {
  transform: scale(1.15);
  text-shadow: 0 0 10px rgba(201, 168, 106, 0.5);
}

.aura-service-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.aura-service-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-link {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--luxury-gold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-smooth);
}

.service-link i {
  transition: transform 0.3s;
}

.aura-service-card:hover .service-link {
  color: var(--gold-hover);
}

.aura-service-card:hover .service-link i {
  transform: translateX(4px);
}

/* -----------------------------------------------------------------------------
   SECTION 7: PROCESS TIMELINE
----------------------------------------------------------------------------- */
.aura-timeline-wrapper {
  position: relative;
  padding: 60px 0;
}

/* Timeline Horizontal Axis Line */
.aura-timeline-wrapper::before {
  content: '';
  position: absolute;
  top: 92px; /* Center with the circles */
  left: 5%;
  width: 90%;
  height: 2px;
  background: linear-gradient(90deg, 
              rgba(201, 168, 106, 0.05) 0%, 
              rgba(201, 168, 106, 0.5) 50%, 
              rgba(201, 168, 106, 0.05) 100%);
  z-index: 1;
}

.aura-timeline-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  position: relative;
  z-index: 2;
}

.timeline-step {
  text-align: center;
  transition: var(--transition-smooth);
}

.timeline-circle {
  width: 64px;
  height: 64px;
  background: var(--primary-navy);
  border: 2px solid var(--luxury-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px auto;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--luxury-gold);
  transition: var(--transition-smooth);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
  position: relative;
}

.timeline-circle::after {
  content: '';
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  border: 1px dashed rgba(201, 168, 106, 0.25);
  border-radius: 50%;
  transition: var(--transition-smooth);
}

.timeline-step:hover .timeline-circle {
  background: var(--luxury-gold);
  color: var(--primary-navy);
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(201, 168, 106, 0.6);
  animation: pulse-gold 2s infinite;
}

.timeline-step:hover .timeline-circle::after {
  transform: rotate(45deg);
  border-color: var(--luxury-gold);
}

.timeline-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  transition: color 0.3s;
}

.timeline-step:hover .timeline-title {
  color: var(--luxury-gold);
}

.timeline-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 180px;
  margin: 0 auto;
}

/* -----------------------------------------------------------------------------
   SECTION 8: PROJECT SHOWCASE (MASONRY)
----------------------------------------------------------------------------- */
.aura-masonry-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.showcase-item {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: var(--card-shadow);
  height: 400px;
  transition: var(--transition-smooth);
}

.showcase-item.span-6 { grid-column: span 6; }
.showcase-item.span-4 { grid-column: span 4; }
.showcase-item.span-8 { grid-column: span 8; }

.showcase-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.showcase-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(360deg, 
              rgba(8, 17, 31, 0.9) 0%, 
              rgba(8, 17, 31, 0.4) 60%, 
              transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  opacity: 0;
  transition: var(--transition-smooth);
}

.showcase-item:hover {
  transform: translateY(-5px);
  border-color: var(--glass-border-hover);
  box-shadow: var(--card-shadow), var(--gold-glow);
}

.showcase-item:hover img {
  transform: scale(1.08);
}

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

.showcase-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
}

.showcase-category {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: var(--luxury-gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* -----------------------------------------------------------------------------
   SECTION 9: TESTIMONIALS
----------------------------------------------------------------------------- */
.aura-testimonial-card {
  padding: 40px;
  height: 100%;
}

.aura-testimonial-card:hover {
  border-color: var(--glass-border-hover);
  transform: translateY(-4px);
  box-shadow: var(--card-shadow), var(--gold-glow);
}

.testimonial-rating {
  color: var(--luxury-gold);
  font-size: 15px;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.testimonial-quote {
  font-size: 15px;
  line-height: 1.7;
  color: var(--light-gray);
  font-style: italic;
  margin-bottom: 25px;
  position: relative;
}

.testimonial-quote::before {
  content: '“';
  font-family: 'Playfair Display', serif;
  font-size: 70px;
  color: rgba(201, 168, 106, 0.12);
  position: absolute;
  top: -30px;
  left: -20px;
  line-height: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--luxury-gold);
  object-fit: cover;
}

.author-name {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 2px;
}

.author-title {
  font-size: 12px;
  color: var(--text-muted);
}

/* -----------------------------------------------------------------------------
   SECTION 10: FAQ
----------------------------------------------------------------------------- */
.aura-accordion .faq-item {
  background: var(--secondary-navy) !important;
  border: 1px solid rgba(201, 168, 106, 0.1) !important;
  border-radius: var(--border-radius) !important;
  margin-bottom: 15px !important;
  overflow: hidden !important;
  transition: var(--transition-smooth) !important;
}

.aura-accordion .faq-item:hover {
  border-color: var(--glass-border-hover) !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.aura-accordion .faq-title {
  padding: 22px 30px !important;
  font-family: 'Playfair Display', serif !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  color: var(--pure-white) !important;
  background: transparent !important;
  transition: var(--transition-smooth) !important;
}

.aura-accordion .faq-item.active .faq-title {
  color: var(--luxury-gold) !important;
  border-bottom: 1px solid rgba(201, 168, 106, 0.15) !important;
}

.aura-accordion .faq-title .faq-icon {
  color: var(--luxury-gold) !important;
  font-size: 14px;
}

.aura-accordion .faq-content {
  padding: 25px 30px !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 14.5px !important;
  line-height: 1.6 !important;
  color: var(--text-muted) !important;
  background: transparent !important;
}

/* -----------------------------------------------------------------------------
   SECTION 11: CTA BANNER
----------------------------------------------------------------------------- */
.aura-cta-banner {
  background-size: cover;
  background-position: center;
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);
  overflow: hidden;
  position: relative;
  padding: 80px 60px;
}

.aura-cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, 
              rgba(8, 17, 31, 0.95) 0%, 
              rgba(15, 23, 42, 0.75) 100%);
  z-index: 1;
}

.aura-cta-content {
  position: relative;
  z-index: 2;
}

.aura-cta-banner h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 15px;
}

.aura-cta-banner p {
  font-size: 16px;
  color: var(--light-gray);
  max-width: 600px;
  margin-bottom: 30px;
}

/* -----------------------------------------------------------------------------
   SECTION 12: CONTACT
----------------------------------------------------------------------------- */
.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  background: rgba(201, 168, 106, 0.1);
  border: 1px solid var(--luxury-gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--luxury-gold);
  font-size: 16px;
}

.contact-info-text h4 {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--luxury-gold);
  margin-bottom: 4px;
}

.contact-info-text p {
  font-size: 15px;
  margin: 0;
  color: var(--light-gray);
}

/* Luxury Form Styles */
.aura-contact-form .form-group {
  margin-bottom: 20px;
}

.aura-contact-form .form-field {
  background: rgba(15, 23, 42, 0.4) !important;
  border: 1px solid rgba(201, 168, 106, 0.15) !important;
  border-radius: 8px !important;
  color: var(--pure-white) !important;
  padding: 16px 20px !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 14px !important;
  transition: var(--transition-smooth) !important;
}

.aura-contact-form .form-field::placeholder {
  color: var(--text-muted);
  opacity: 0.7;
}

.aura-contact-form .form-field:focus {
  border-color: var(--luxury-gold) !important;
  box-shadow: 0 0 10px rgba(201, 168, 106, 0.2) !important;
  background: rgba(15, 23, 42, 0.7) !important;
}

.aura-contact-form textarea.form-field {
  min-height: 120px;
}

.google-map-placeholder {
  width: 100%;
  height: 350px;
  border-radius: var(--border-radius);
  border: 1px solid var(--glass-border);
  overflow: hidden;
  filter: grayscale(1) invert(0.9) contrast(1.2); /* Sleek architectural dark map style */
}

/* -----------------------------------------------------------------------------
   SECTION 13: FOOTER
----------------------------------------------------------------------------- */
.aura-footer {
  background-color: #040912;
  border-top: 1px solid rgba(201, 168, 106, 0.15);
  color: var(--text-muted);
}

.aura-footer h4 {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--luxury-gold);
  margin-bottom: 25px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition-smooth);
}

.footer-links a:hover {
  color: var(--luxury-gold);
  padding-left: 5px;
}

.social-icons-row {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 106, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 15px;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.social-icon-circle:hover {
  color: var(--primary-navy);
  background: var(--luxury-gold);
  border-color: var(--luxury-gold);
  transform: translateY(-3px);
  box-shadow: 0 0 12px rgba(201, 168, 106, 0.4);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 50px;
  padding-top: 25px;
  font-size: 12px;
}

/* -----------------------------------------------------------------------------
   RESPONSIVE DESIGN BREAKPOINTS
----------------------------------------------------------------------------- */

/* ==============================================
   TABLET RESPONSIVENESS (Max-width: 1024px)
   ============================================== */
@media (max-width: 1024px) {
  /* Floating Stats Bar */
  .aura-hero-stats {
    padding: 20px 30px;
    width: 92%;
  }

  .stat-item:not(:last-child)::after {
    height: 60%;
  }

  /* Process Timeline */
  .aura-timeline-wrapper::before {
    top: 77px;
  }

  .timeline-circle {
    width: 50px;
    height: 50px;
    font-size: 15px;
  }

  /* Masonry Showcase */
  .showcase-item {
    height: 320px;
  }

  .showcase-item.span-4 { grid-column: span 6; }
  .showcase-item.span-8 { grid-column: span 12; }
  .showcase-item.span-6 { grid-column: span 12; }
}

/* ==============================================
   MOBILE RESPONSIVENESS (Max-width: 767px)
   ============================================== */
@media (max-width: 767px) {
  /* Global Spacing overrides */
  .btn-gold, .btn-outline-gold {
    padding: 14px 28px;
    font-size: 12px;
  }

  /* Header sticky offsets */
  .aura-header.header-sticky {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }

  /* Floating Stats Bar - Switch to 2x2 Grid or stack */
  .aura-hero-stats {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    width: 100%;
    margin-top: -30px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 25px 20px;
  }

  .aura-properties {
    padding-top: 60px !important; /* Reset offset since stats are relative now */
  }

  .stat-item {
    text-align: center;
    border-right: none;
  }

  .stat-item:not(:last-child)::after {
    display: none; /* Hide vertical lines on mobile */
  }

  /* About Us */
  .about-image-wrap {
    padding: 10px;
    margin-bottom: 25px;
  }
  .about-image-wrap::before {
    display: none; /* Clean up layout for small screen viewports */
  }

  /* Why Choose Us Cards */
  .aura-why-card {
    padding: 30px 20px;
  }

  /* Process Timeline - Transition to Vertical Axis Layout */
  .aura-timeline-wrapper {
    padding: 20px 0;
  }

  .aura-timeline-wrapper::before {
    top: 0;
    bottom: 0;
    left: 35px; /* Vertical axis line on left side */
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, 
                rgba(201, 168, 106, 0.05) 0%, 
                rgba(201, 168, 106, 0.5) 50%, 
                rgba(201, 168, 106, 0.05) 100%);
  }

  .aura-timeline-grid {
    grid-template-columns: 1fr; /* Stacked layout */
    gap: 30px;
  }

  .timeline-step {
    display: flex;
    text-align: left;
    align-items: flex-start;
    gap: 20px;
  }

  .timeline-circle {
    margin: 0; /* Align with flex layout */
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    font-size: 14px;
  }

  .timeline-desc {
    max-width: 100%;
    margin: 0;
  }

  /* Showcase (Grid layout fallback) */
  .aura-masonry-grid {
    grid-template-columns: 1fr;
  }

  .showcase-item {
    grid-column: span 12 !important;
    height: 280px;
  }

  /* FAQ Accordion */
  .aura-accordion .faq-title {
    padding: 16px 20px !important;
    font-size: 16px !important;
  }

  .aura-accordion .faq-content {
    padding: 18px 20px !important;
  }

  /* CTA Banner */
  .aura-cta-banner {
    padding: 40px 25px;
  }

  /* Footer Columns Alignment */
  .aura-footer {
    text-align: center;
  }

  .aura-footer h4 {
    margin-top: 20px;
    margin-bottom: 15px;
  }

  .social-icons-row {
    justify-content: center;
  }

  .footer-links a:hover {
    padding-left: 0; /* Reset left padding movement on mobile */
  }
}
