/* 
  LUXURY HYDERABAD REAL ESTATE - DESIGN SYSTEM
  Inspired by My Home Bhooja, Aparna Zenon, Prestige High Fields & Ramky Estates
  Palette:
  - Deep Navy: #0B1F38
  - Warm White: #FFFFFF
  - Sand Beige: #F7F2EB
  - Copper Gold: #B78628 (Gold Glow: #D49D34)
  - Slate Gray: #5A5A5A
*/

:root {
  --primary-navy: #0B1F38;
  --navy-dark: #061224;
  --navy-light: #152E4F;
  --copper-gold: #B78628;
  --gold-light: #D49D34;
  --gold-hover: #9E711E;
  --gold-glow: rgba(183, 134, 40, 0.25);
  --sand-beige: #F7F2EB;
  --beige-dark: #EAE2D5;
  --warm-white: #FFFFFF;
  --slate-gray: #5A5A5A;
  --light-gray: #F0F2F5;
  --border-gray: #E2E8F0;
  
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  
  --shadow-sm: 0 4px 6px -1px rgba(11, 31, 56, 0.05);
  --shadow-md: 0 10px 25px -5px rgba(11, 31, 56, 0.1);
  --shadow-lg: 0 20px 40px -10px rgba(11, 31, 56, 0.18);
  --shadow-gold: 0 10px 30px rgba(183, 134, 40, 0.3);
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--sand-beige);
  color: var(--primary-navy);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--primary-navy);
  line-height: 1.2;
  font-weight: 700;
}

p {
  color: var(--slate-gray);
  font-size: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

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

/* Utilities */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-gold {
  color: var(--copper-gold) !important;
}

.bg-navy {
  background-color: var(--primary-navy) !important;
  color: var(--warm-white);
}

.bg-beige {
  background-color: var(--sand-beige) !important;
}

.bg-white {
  background-color: var(--warm-white) !important;
}

.section-padding {
  padding: 96px 0;
}

.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 60px auto;
}

.section-subtitle {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--copper-gold);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 18px;
  color: var(--primary-navy);
}

.section-description {
  font-size: 1.1rem;
  color: var(--slate-gray);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.5px;
}

.btn-gold {
  background: linear-gradient(135deg, var(--copper-gold), var(--gold-light));
  color: var(--warm-white);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--copper-gold));
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(183, 134, 40, 0.4);
}

.btn-navy {
  background-color: var(--primary-navy);
  color: var(--warm-white);
}

.btn-navy:hover {
  background-color: var(--navy-light);
  transform: translateY(-2px);
}

.btn-outline-gold {
  background-color: transparent;
  border-color: var(--copper-gold);
  color: var(--copper-gold);
}

.btn-outline-gold:hover {
  background-color: var(--copper-gold);
  color: var(--warm-white);
  transform: translateY(-2px);
}

.btn-outline-white {
  background-color: transparent;
  border-color: var(--warm-white);
  color: var(--warm-white);
}

.btn-outline-white:hover {
  background-color: var(--warm-white);
  color: var(--primary-navy);
}

.btn-whatsapp {
  background-color: #25D366;
  color: #FFFFFF;
  font-weight: 700;
}

.btn-whatsapp:hover {
  background-color: #1DA851;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
  transform: translateY(-2px);
}

/* Glassmorphism */
.glass-panel {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(183, 134, 40, 0.2);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.glass-panel-dark {
  background: rgba(11, 31, 56, 0.88);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(183, 134, 40, 0.3);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  color: var(--warm-white);
}

/* Header & Top Bar */
.top-bar {
  background-color: var(--navy-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 10px 0;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(183, 134, 40, 0.2);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-info {
  display: flex;
  gap: 24px;
  align-items: center;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-bar-item i {
  color: var(--copper-gold);
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(11, 31, 56, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(183, 134, 40, 0.2);
  transition: var(--transition);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 84px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--warm-white);
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.brand-emblem {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--copper-gold), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-navy);
  font-size: 1.2rem;
  font-weight: 800;
  box-shadow: var(--shadow-gold);
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-link {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 0;
  position: relative;
  cursor: pointer;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--copper-gold);
  transition: var(--transition);
}

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

.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--warm-white);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Mobile Nav Drawer */
.mobile-nav-drawer {
  display: none;
  position: fixed;
  top: 84px;
  left: 0;
  width: 100%;
  background: var(--navy-dark);
  border-bottom: 2px solid var(--copper-gold);
  padding: 24px;
  z-index: 999;
}

.mobile-nav-drawer.active {
  display: block;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-nav-link {
  color: var(--warm-white);
  font-size: 1.1rem;
  font-weight: 600;
  display: block;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

/* Page Views Container */
.page-view {
  display: none;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}

.page-view.active {
  display: block;
  opacity: 1;
}

/* Split Hero Section */
.hero-split {
  background-color: var(--primary-navy);
  position: relative;
  overflow: hidden;
  padding: 60px 0 100px 0;
}

.hero-split::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(183, 134, 40, 0.15) 0%, rgba(11, 31, 56, 0) 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero-visual-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(183, 134, 40, 0.3);
}

.hero-visual-img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 8s ease;
}

.hero-visual-wrapper:hover .hero-visual-img {
  transform: scale(1.08);
}

.hero-badge-top {
  position: absolute;
  top: 24px;
  left: 24px;
  background: rgba(11, 31, 56, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--copper-gold);
  color: var(--copper-gold);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-badge-bottom {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(11, 31, 56, 0.9);
  backdrop-filter: blur(12px);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  justify-content: space-around;
  color: var(--warm-white);
  text-align: center;
}

.hero-stat-item h4 {
  color: var(--copper-gold);
  font-size: 1.5rem;
  font-weight: 800;
}

.hero-stat-item p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Floating Hero Enquiry Panel */
.hero-enquiry-card {
  padding: 36px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  border: 2px solid var(--copper-gold);
}

.hero-enquiry-card h3 {
  font-size: 1.8rem;
  color: var(--primary-navy);
  margin-bottom: 8px;
}

.hero-enquiry-card p {
  margin-bottom: 24px;
  font-size: 0.92rem;
}

.form-group {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  font-size: 0.95rem;
  border: 1px solid var(--border-gray);
  border-radius: var(--radius-sm);
  background-color: var(--warm-white);
  color: var(--primary-navy);
  outline: none;
  transition: var(--transition);
  font-family: var(--font-body);
}

.form-control:focus {
  border-color: var(--copper-gold);
  box-shadow: 0 0 0 3px rgba(183, 134, 40, 0.15);
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23B78628' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-disclaimer {
  font-size: 0.75rem;
  color: var(--slate-gray);
  margin-top: 12px;
  text-align: center;
}

/* Stat Counter Bar */
.stat-bar {
  background-color: var(--navy-dark);
  padding: 40px 0;
  border-bottom: 1px solid rgba(183, 134, 40, 0.2);
}

.stat-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-box {
  padding: 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-box:last-child {
  border-right: none;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--copper-gold);
  margin-bottom: 4px;
}

.stat-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Zigzag Content Sections */
.zigzag-section {
  padding: 100px 0;
}

.zigzag-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 100px;
}

.zigzag-row:last-child {
  margin-bottom: 0;
}

.zigzag-row.reverse {
  direction: rtl;
}

.zigzag-row.reverse > * {
  direction: ltr;
}

.zigzag-image-container {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(183, 134, 40, 0.2);
}

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

.zigzag-image-container:hover .zigzag-img {
  transform: scale(1.05);
}

.zigzag-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--copper-gold);
  color: var(--warm-white);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.zigzag-content {
  padding: 20px;
}

.zigzag-tag {
  color: var(--copper-gold);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
  display: block;
}

.zigzag-title {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: var(--primary-navy);
}

.zigzag-text {
  font-size: 1.05rem;
  color: var(--slate-gray);
  margin-bottom: 24px;
}

.zigzag-features-list {
  list-style: none;
  margin-bottom: 30px;
}

.zigzag-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.98rem;
  color: var(--primary-navy);
  font-weight: 500;
}

.zigzag-features-list i {
  color: var(--copper-gold);
  font-size: 1.1rem;
  margin-top: 3px;
}

/* Floor Plans Section */
.floorplans-section {
  background-color: var(--primary-navy);
  color: var(--warm-white);
  padding: 100px 0;
}

.floorplans-section .section-title {
  color: var(--warm-white);
}

.floorplans-section .section-description {
  color: rgba(255, 255, 255, 0.7);
}

.tab-nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.tab-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(183, 134, 40, 0.3);
  color: rgba(255, 255, 255, 0.8);
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.tab-btn:hover, .tab-btn.active {
  background: var(--copper-gold);
  color: var(--warm-white);
  border-color: var(--copper-gold);
  box-shadow: var(--shadow-gold);
}

.floorplan-display {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(183, 134, 40, 0.25);
  border-radius: var(--radius-lg);
  padding: 40px;
  align-items: center;
}

.floorplan-blueprint {
  background: var(--navy-dark);
  border: 1px dashed var(--copper-gold);
  border-radius: var(--radius-md);
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 380px;
  position: relative;
}

.blueprint-svg {
  width: 100%;
  max-width: 380px;
  height: auto;
}

.floorplan-details h3 {
  color: var(--copper-gold);
  font-size: 2rem;
  margin-bottom: 12px;
}

.floorplan-spec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 24px 0 32px 0;
}

.spec-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--copper-gold);
}

.spec-item span {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  margin-bottom: 2px;
}

.spec-item strong {
  font-size: 1.1rem;
  color: var(--warm-white);
}

/* ROI Investment Calculator Section */
.calculator-section {
  background-color: var(--warm-white);
  padding: 100px 0;
}

.calculator-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  background: var(--sand-beige);
  border: 1px solid rgba(183, 134, 40, 0.2);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-md);
}

.calc-inputs h3 {
  font-size: 1.6rem;
  margin-bottom: 24px;
}

.range-group {
  margin-bottom: 28px;
}

.range-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 0.95rem;
}

.range-slider {
  width: 100%;
  height: 8px;
  border-radius: 5px;
  background: var(--border-gray);
  outline: none;
  accent-color: var(--copper-gold);
  cursor: pointer;
}

.calc-results {
  background: var(--primary-navy);
  color: var(--warm-white);
  border-radius: var(--radius-md);
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--copper-gold);
}

.calc-result-box {
  margin-bottom: 24px;
}

.calc-result-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 6px;
}

.calc-result-val {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--copper-gold);
}

.calc-cagr-badge {
  display: inline-block;
  background: rgba(183, 134, 40, 0.2);
  color: var(--copper-gold);
  border: 1px solid var(--copper-gold);
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.85rem;
}

/* Location Connectivity Section */
.location-section {
  padding: 100px 0;
  background-color: var(--sand-beige);
}

.location-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 40px;
  align-items: start;
}

.location-categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.loc-cat-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: var(--warm-white);
  border: 1px solid var(--border-gray);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--primary-navy);
  cursor: pointer;
  transition: var(--transition);
  text-align: left;
}

.loc-cat-btn:hover, .loc-cat-btn.active {
  border-color: var(--copper-gold);
  background: var(--primary-navy);
  color: var(--warm-white);
  box-shadow: var(--shadow-sm);
}

.loc-cat-btn.active i {
  color: var(--copper-gold);
}

.location-items-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.loc-card {
  background: var(--warm-white);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--border-gray);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.loc-card:hover {
  transform: translateY(-4px);
  border-color: var(--copper-gold);
  box-shadow: var(--shadow-md);
}

.loc-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.loc-icon {
  width: 42px;
  height: 42px;
  background: rgba(183, 134, 40, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--copper-gold);
  font-size: 1.1rem;
}

.loc-card h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.loc-card p {
  font-size: 0.85rem;
  color: var(--slate-gray);
}

.loc-time-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--sand-beige);
  color: var(--copper-gold);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 4px 10px;
  border-radius: 12px;
  margin-top: 10px;
}

/* Projects Showcase Page Grid */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
}

.project-card {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-gray);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--copper-gold);
}

.project-img-wrapper {
  position: relative;
  height: 280px;
  overflow: hidden;
}

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

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

.project-status-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--primary-navy);
  color: var(--copper-gold);
  border: 1px solid var(--copper-gold);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.project-body {
  padding: 28px;
}

.project-location {
  color: var(--copper-gold);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.project-title {
  font-size: 1.6rem;
  margin-bottom: 12px;
  color: var(--primary-navy);
}

.project-specs-row {
  display: flex;
  gap: 20px;
  border-top: 1px solid var(--border-gray);
  border-bottom: 1px solid var(--border-gray);
  padding: 14px 0;
  margin: 16px 0 20px 0;
  font-size: 0.85rem;
  color: var(--slate-gray);
}

.project-spec-point {
  display: flex;
  align-items: center;
  gap: 6px;
}

.project-spec-point i {
  color: var(--copper-gold);
}

.project-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.project-price-val {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary-navy);
}

/* Construction Milestone Tracker */
.timeline-tracker {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 0;
}

.timeline-tracker::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--border-gray);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 0 40px;
  margin-bottom: 40px;
}

.timeline-item.left {
  left: 0;
  text-align: right;
}

.timeline-item.right {
  left: 50%;
  text-align: left;
}

.timeline-dot {
  position: absolute;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--warm-white);
  border: 4px solid var(--copper-gold);
  box-shadow: 0 0 0 4px rgba(183, 134, 40, 0.2);
}

.timeline-item.left .timeline-dot {
  right: -10px;
}

.timeline-item.right .timeline-dot {
  left: -10px;
}

.timeline-content {
  background: var(--warm-white);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--border-gray);
  box-shadow: var(--shadow-sm);
}

.timeline-date {
  font-weight: 800;
  color: var(--copper-gold);
  font-size: 0.9rem;
  margin-bottom: 6px;
}

/* Testimonials Carousel */
.testimonials-section {
  background-color: var(--primary-navy);
  color: var(--warm-white);
  padding: 100px 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(183, 134, 40, 0.25);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-quote {
  font-style: italic;
  font-size: 0.98rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 14px;
}

.user-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--copper-gold);
  background-color: var(--navy-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--copper-gold);
  font-size: 1.1rem;
}

.user-info h5 {
  color: var(--warm-white);
  font-size: 1.05rem;
}

.user-info p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
}

.star-rating {
  color: var(--copper-gold);
  font-size: 0.85rem;
  margin-bottom: 12px;
}

/* FAQ Section */
.faq-section {
  padding: 100px 0;
  background-color: var(--warm-white);
}

.faq-accordion {
  max-width: 840px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border-gray);
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  overflow: hidden;
  background: var(--sand-beige);
}

.faq-question {
  padding: 20px 24px;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--primary-navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.faq-question i {
  color: var(--copper-gold);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 24px 20px 24px;
  display: none;
  color: var(--slate-gray);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  display: block;
}

/* Blogs Section */
.blogs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-card {
  background: var(--warm-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-gray);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.blog-content {
  padding: 24px;
}

.blog-date {
  font-size: 0.8rem;
  color: var(--copper-gold);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.blog-title {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--primary-navy);
}

/* Sticky WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  width: 62px;
  height: 62px;
  background-color: #25D366;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  cursor: pointer;
  transition: transform 0.3s ease;
  animation: pulse-green 2s infinite;
}

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

@keyframes pulse-green {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Modal Popup Windows */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(11, 31, 56, 0.8);
  backdrop-filter: blur(8px);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-backdrop.active {
  display: flex;
}

.modal-content-box {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  max-width: 600px;
  width: 100%;
  padding: 40px;
  position: relative;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--copper-gold);
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--primary-navy);
  cursor: pointer;
}

/* Footer */
footer {
  background-color: var(--navy-dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 80px 0 30px 0;
  border-top: 2px solid var(--copper-gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-col h4 {
  color: var(--warm-white);
  font-size: 1.2rem;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--copper-gold);
}

.footer-links {
  list-style: none;
}

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

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

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-contact-item i {
  color: var(--copper-gold);
  font-size: 1.1rem;
  margin-top: 3px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .hero-grid, .zigzag-row, .floorplan-display, .calculator-card, .location-grid, .projects-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .zigzag-row.reverse {
    direction: ltr;
  }

  .stat-bar-grid, .testimonials-grid, .blogs-grid, .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline-tracker::before {
    left: 20px;
  }

  .timeline-item {
    width: 100%;
    padding-left: 50px;
    padding-right: 0;
  }

  .timeline-item.left, .timeline-item.right {
    left: 0;
    text-align: left;
  }

  .timeline-item.left .timeline-dot, .timeline-item.right .timeline-dot {
    left: 10px;
  }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .stat-bar-grid, .testimonials-grid, .blogs-grid, .footer-grid, .location-items-list {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 2rem;
  }
  
  .hero-split {
    padding: 30px 0 60px 0;
  }
  
  .hero-visual-img {
    height: 380px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}
