/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Noto+Sans+Marathi:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* CSS Custom Variables for Luxury Design System */
:root {
  --primary: #d4af37; /* Soft Premium Gold */
  --primary-rgb: 212, 175, 55;
  --primary-dark: #b89326;
  --primary-light: #f3e5ab;
  
  --bg-dark: #0f1115; /* Sleek Deep Charcoal */
  --bg-dark-rgb: 15, 17, 21;
  --bg-dark-card: #171a21;
  --bg-dark-card-hover: #1e222c;
  
  --text-light: #f8f9fa; /* Warm White */
  --text-muted-light: #a0aab2;
  
  --border-color-dark: rgba(212, 175, 55, 0.15);
  --border-color-dark-hover: rgba(212, 175, 55, 0.4);
  
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --font-heading: 'Outfit', 'Noto Sans Marathi', sans-serif;
  --font-body: 'Inter', 'Noto Sans Marathi', sans-serif;
  
  --glow-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

/* Global Reset & Box Model */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Typography base styles */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

p {
  color: var(--text-muted-light);
  font-weight: 300;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Premium Layout & Container */
.container {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header & Frosted Glass Navigation */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background-color: rgba(var(--bg-dark-rgb), 0.75);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition-smooth);
}

.main-header.scrolled {
  background-color: rgba(var(--bg-dark-rgb), 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  padding: 0.5rem 0;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  transition: var(--transition-smooth);
}

.main-header.scrolled .nav-wrapper {
  height: 65px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  font-family: var(--font-heading);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 1px;
  color: var(--text-light);
  line-height: 1;
}

.logo-sub {
  font-size: 0.65rem;
  text-transform: uppercase;
  color: var(--primary);
  letter-spacing: 2px;
  font-weight: 500;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--text-light);
  opacity: 0.8;
  position: relative;
  padding: 0.5rem 0;
  transition: var(--transition-smooth);
}

.nav-links a:hover {
  opacity: 1;
  color: var(--primary);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition-smooth);
}

.nav-links a:hover::after {
  width: 100%;
}

/* Controls Wrapper: Language Toggle & Menu Trigger */
.nav-controls {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Language Toggle Button styling */
.lang-toggle-container {
  position: relative;
  display: flex;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  padding: 3px;
  width: 130px;
  height: 38px;
  cursor: pointer;
  user-select: none;
}

.lang-btn-slider {
  position: absolute;
  top: 3px;
  left: 3px;
  width: calc(50% - 3px);
  height: calc(100% - 6px);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: var(--transition-smooth);
}

.lang-toggle-container.active-mr .lang-btn-slider {
  left: calc(50%);
}

.lang-label {
  flex: 1;
  text-align: center;
  z-index: 2;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 30px;
  color: var(--text-light);
  transition: var(--transition-smooth);
}

.lang-toggle-container.active-mr .lang-label.en {
  opacity: 0.6;
}

.lang-toggle-container:not(.active-mr) .lang-label.mr {
  opacity: 0.6;
}

/* Mobile Menu Button */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-nav-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--text-light);
  margin-bottom: 5px;
  transition: var(--transition-smooth);
}

.mobile-nav-toggle span:last-child {
  margin-bottom: 0;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4) contrast(1.1);
  transform: scale(1.02);
  transition: transform 10s ease-out;
}

.hero-section:hover .hero-background img {
  transform: scale(1.05);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 30%, rgba(var(--bg-dark-rgb), 0.2), rgba(var(--bg-dark-rgb), 0.95));
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 6px 16px;
  border-radius: 30px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--primary);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease-out;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(0,0,0,0.4);
  animation: fadeInUp 1s ease-out;
}

.hero-title span {
  display: block;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: 2.5rem;
  max-width: 600px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
  animation: fadeInUp 1.2s ease-out;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  animation: fadeInUp 1.4s ease-out;
}

/* General Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 4px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #000;
  border: none;
  box-shadow: var(--glow-shadow);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--text-light);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-3px);
}

/* Quick Stats Ribbon */
.quick-stats-ribbon {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to right, rgba(var(--bg-dark-rgb), 0.95), rgba(var(--bg-dark-rgb), 0.7));
  border-top: 1px solid var(--border-color-dark);
  z-index: 4;
  padding: 1.5rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  position: relative;
}

.stat-item::after {
  content: '';
  position: absolute;
  right: -1rem;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(212, 175, 55, 0.15);
}

.stat-item:last-child::after {
  display: none;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.1;
}

.stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted-light);
  margin-top: 4px;
}

/* Section Header Structure */
.section {
  padding: 100px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 4rem auto;
}

.section-subtitle {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
  display: block;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-light);
}

.section-title span {
  font-weight: 300;
  color: var(--text-muted-light);
}

/* Project Highlights / About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-visual {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-color-dark);
}

.about-visual img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.about-visual:hover img {
  transform: scale(1.03);
}

.about-info h3 {
  font-size: 1.75rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.about-description {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.stakeholders {
  display: flex;
  gap: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
}

.stakeholder-card h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted-light);
  margin-bottom: 0.5rem;
}

.stakeholder-card p {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-light);
}

/* Configurations & Interactive Floor Plan Section */
.config-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  min-height: 600px;
}

.floor-tabs {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.floor-tab-btn {
  background: var(--bg-dark-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-muted-light);
  padding: 1.25rem 1.5rem;
  border-radius: 4px;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1rem;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.floor-tab-btn::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 3px;
  background-color: var(--primary);
  transform: scaleY(0);
  transition: var(--transition-smooth);
}

.floor-tab-btn:hover {
  background: var(--bg-dark-card-hover);
  color: var(--text-light);
  border-color: rgba(212, 175, 55, 0.2);
}

.floor-tab-btn.active {
  background: rgba(212, 175, 55, 0.05);
  border-color: var(--border-color-dark-hover);
  color: var(--primary);
}

.floor-tab-btn.active::before {
  transform: scaleY(1);
}

.floor-tab-btn-sub {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted-light);
  margin-top: 3px;
  font-weight: 300;
}

.floor-tab-btn.active .floor-tab-btn-sub {
  color: var(--text-light);
  opacity: 0.8;
}

.floor-content-pane {
  background: var(--bg-dark-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 2.5rem;
  display: none;
  animation: fadeIn 0.5s ease-out forwards;
}

.floor-content-pane.active {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.floor-plan-viewer {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.05);
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floor-plan-viewer img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: var(--transition-smooth);
  cursor: zoom-in;
}

.floor-plan-viewer:hover img {
  transform: scale(1.02);
}

.viewer-hint {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0,0,0,0.7);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.7rem;
  color: var(--text-muted-light);
  letter-spacing: 0.5px;
  pointer-events: none;
  display: flex;
  align-items: center;
  gap: 5px;
  border: 1px solid rgba(255,255,255,0.1);
}

.floor-details-info {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.floor-title-block {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding-bottom: 1.25rem;
}

.floor-details-title {
  font-size: 1.75rem;
  color: var(--text-light);
  margin-bottom: 0.25rem;
}

.floor-details-desc {
  font-size: 0.95rem;
}

/* Floor Units Selector */
.units-selection-title {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary);
  margin-bottom: 1rem;
}

.units-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.unit-selector-btn {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  color: var(--text-light);
  padding: 10px 5px;
  font-family: var(--font-heading);
  font-weight: 500;
  border-radius: 4px;
  cursor: pointer;
  text-align: center;
  transition: var(--transition-smooth);
}

.unit-selector-btn:hover {
  border-color: rgba(212, 175, 55, 0.4);
  background: rgba(212, 175, 55, 0.03);
}

.unit-selector-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #000;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
}

/* Floor Plan Specific Specs Card */
.spec-display-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  padding: 1.5rem;
  margin-top: auto;
  position: relative;
  overflow: hidden;
}

.spec-display-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 4px;
  height: 100%;
  background: var(--primary);
}

.spec-row {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.spec-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.spec-row:first-child {
  padding-top: 0;
}

.spec-label {
  color: var(--text-muted-light);
  font-size: 0.9rem;
}

.spec-val-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.spec-value {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text-light);
  font-size: 1rem;
}

.spec-value-secondary {
  font-size: 0.75rem;
  color: var(--text-muted-light);
  margin-top: 2px;
}

/* 3D Flat Render Section */
.isometric-view-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.iso-render-container {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-color-dark);
  background: #14161d;
  padding: 1rem;
}

.iso-render-container img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  cursor: zoom-in;
  transition: var(--transition-smooth);
}

.iso-render-container:hover img {
  transform: scale(1.01);
}

.iso-features h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.iso-features p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.iso-highlights-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  list-style: none;
}

.iso-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.iso-highlight-icon {
  color: var(--primary);
  font-size: 1.25rem;
  line-height: 1;
  margin-top: 2px;
}

.iso-highlight-title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 2px;
}

.iso-highlight-desc {
  font-size: 0.8rem;
  color: var(--text-muted-light);
  font-weight: 300;
}

/* Amenities Section */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.amenity-card {
  background: var(--bg-dark-card);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 6px;
  padding: 2.5rem 2rem;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.amenity-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  transform: scaleX(0);
  transition: var(--transition-smooth);
}

.amenity-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-color-dark-hover);
  background: var(--bg-dark-card-hover);
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.amenity-card:hover::before {
  transform: scaleX(1);
}

.amenity-icon {
  font-size: 2.25rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  display: inline-block;
}

.amenity-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}

.amenity-description {
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Luxury Converter Section */
.converter-section {
  background: linear-gradient(185deg, var(--bg-dark-card), rgba(var(--bg-dark-rgb), 0.95));
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.converter-container {
  max-width: 750px;
  margin: 0 auto;
  background: rgba(0,0,0,0.25);
  border: 1px solid var(--border-color-dark);
  border-radius: 8px;
  padding: 3rem;
}

.converter-grid {
  display: grid;
  grid-template-columns: 1fr 40px 1fr;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.converter-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.converter-group label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
}

.converter-input-wrapper {
  position: relative;
}

.converter-input-wrapper input {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 14px 45px 14px 16px;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-light);
  transition: var(--transition-smooth);
}

.converter-input-wrapper input:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(255,255,255,0.06);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.15);
}

.converter-unit-tag {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.8rem;
  color: var(--text-muted-light);
  font-weight: 500;
}

.converter-arrow-icon {
  font-size: 1.5rem;
  color: var(--primary);
  text-align: center;
  line-height: 40px;
  margin-top: 1.5rem;
}

.converter-helper-text {
  text-align: center;
  font-size: 0.85rem;
}

/* Location Section */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.location-points {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.loc-point-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--bg-dark-card);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 6px;
  padding: 1.5rem;
  transition: var(--transition-smooth);
}

.loc-point-item:hover {
  transform: translateX(5px);
  border-color: rgba(212, 175, 55, 0.25);
  background: var(--bg-dark-card-hover);
}

.loc-point-icon {
  font-size: 1.5rem;
  color: var(--primary);
  line-height: 1;
}

.loc-point-details h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 0.25rem;
}

.loc-point-details p {
  font-size: 0.85rem;
  color: var(--text-muted-light);
  margin-bottom: 0.5rem;
}

.loc-point-distance {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
  background: rgba(212, 175, 55, 0.08);
  padding: 2px 10px;
  border-radius: 20px;
}

.stylized-map-container {
  height: 450px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-color-dark);
  position: relative;
  background: #11141b;
}

.stylized-map-bg {
  width: 100%;
  height: 100%;
  position: relative;
  background-image: radial-gradient(circle at 50% 50%, #171b26 0%, #0c0e14 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Abstract roads on the dark map */
.map-road {
  position: absolute;
  background: rgba(255, 255, 255, 0.03);
}

.map-road.vertical {
  width: 20px;
  height: 100%;
  left: 30%;
}

.map-road.diagonal {
  width: 25px;
  height: 150%;
  left: 40%;
  transform: rotate(30deg);
  background: rgba(255, 255, 255, 0.04);
}

.map-road.horizontal-1 {
  width: 100%;
  height: 15px;
  top: 40%;
}

.map-road.horizontal-2 {
  width: 100%;
  height: 30px;
  top: 65%;
  transform: rotate(-10deg);
  background: rgba(212, 175, 55, 0.03); /* NH 65 Representing */
}

/* Map Markers */
.map-marker {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: var(--transition-smooth);
}

.map-marker-pin {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--text-muted-light);
  border: 3px solid #000;
  box-shadow: 0 4px 10px rgba(0,0,0,0.5);
  position: relative;
}

.map-marker-pin::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #000;
}

.map-marker-label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted-light);
  background: rgba(0,0,0,0.85);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 4px 8px;
  border-radius: 4px;
  white-space: nowrap;
  margin-top: 6px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

/* Primary Landmark Marker */
.map-marker.project-site {
  top: 55%;
  left: 45%;
}

.map-marker.project-site .map-marker-pin {
  width: 24px;
  height: 24px;
  background: var(--primary);
  border-color: #000;
  box-shadow: 0 0 20px var(--primary);
}

.map-marker.project-site .map-marker-pin::before {
  content: '';
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border: 2px solid var(--primary);
  border-radius: 50%;
  opacity: 0.6;
  animation: pulsePin 2s infinite;
}

.map-marker.project-site .map-marker-label {
  color: #000;
  background: var(--primary);
  border-color: var(--primary);
  font-weight: 700;
}

.map-marker.station { top: 25%; left: 20%; }
.map-marker.temple { top: 35%; left: 70%; }
.map-marker.nh65 { top: 68%; left: 78%; }

.map-compass {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 45px;
  height: 45px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(0,0,0,0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary);
}

/* Contact & Booking Enquiry Section */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 5rem;
  align-items: flex-start;
}

.contact-card-info {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.contact-header-block h3 {
  font-size: 2.25rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-channel-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact-channel-icon {
  width: 50px;
  height: 50px;
  border-radius: 4px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--border-color-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--primary);
}

.contact-channel-text h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted-light);
  margin-bottom: 0.25rem;
}

.contact-channel-text p {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-light);
}

/* Glassmorphic Contact Form */
.enquiry-form-card {
  background: var(--bg-dark-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 3rem;
  position: relative;
}

.form-title {
  font-size: 1.75rem;
  color: var(--primary);
  margin-bottom: 2rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--text-light);
}

.form-group input, 
.form-group select, 
.form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-light);
  transition: var(--transition-smooth);
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
}

.form-group textarea {
  resize: none;
  height: 120px;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23d4af37' 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 16px center;
  background-size: 16px;
  padding-right: 40px;
  cursor: pointer;
}

.form-group select option {
  background: var(--bg-dark-card);
  color: var(--text-light);
}

.form-submit-btn {
  width: 100%;
  border: none;
}

/* Form Success Overlay Overlay */
.form-success-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-dark-card);
  border-radius: 8px;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem;
  z-index: 10;
  animation: fadeIn 0.4s ease-out forwards;
}

.form-success-overlay.active {
  display: flex;
}

.success-icon {
  font-size: 3.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  animation: scaleIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.success-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.success-message {
  font-size: 1rem;
  margin-bottom: 2rem;
  max-width: 350px;
}

/* Footer Section */
.main-footer {
  background: #090a0d;
  padding: 80px 0 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand h4 {
  font-size: 1.5rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.footer-brand h4 span {
  color: var(--primary);
}

.footer-about {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  max-width: 380px;
}

.footer-credits {
  font-size: 0.8rem;
  color: var(--text-muted-light);
}

.footer-credits strong {
  color: var(--text-light);
}

.footer-links h5 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  list-style: none;
}

.footer-links-list a {
  font-size: 0.9rem;
  color: var(--text-muted-light);
  transition: var(--transition-smooth);
}

.footer-links-list a:hover {
  color: var(--primary);
  transform: translateX(4px);
  display: inline-block;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.copyright {
  font-size: 0.8rem;
  color: var(--text-muted-light);
}

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.footer-legal-links a {
  font-size: 0.8rem;
  color: var(--text-muted-light);
  transition: var(--transition-smooth);
}

.footer-legal-links a:hover {
  color: var(--primary);
}

/* Lightbox Modal for Images */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.95);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox-modal.active {
  display: flex;
  animation: fadeIn 0.3s ease-out forwards;
}

.lightbox-content-wrapper {
  max-width: 90%;
  max-height: 85%;
  position: relative;
}

.lightbox-content-wrapper img {
  max-width: 100%;
  max-height: 100vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.8);
  border: 1px solid rgba(255,255,255,0.08);
}

.lightbox-close-btn {
  position: absolute;
  top: 30px;
  right: 30px;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 2.5rem;
  cursor: pointer;
  opacity: 0.7;
  transition: var(--transition-smooth);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.lightbox-close-btn:hover {
  opacity: 1;
  background: rgba(255,255,255,0.1);
  color: var(--primary);
  transform: rotate(90deg);
}

.lightbox-caption {
  position: absolute;
  bottom: -40px;
  left: 0;
  width: 100%;
  text-align: center;
  color: var(--text-light);
  font-family: var(--font-heading);
  font-size: 1rem;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulsePin {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

/* Scroll Animations Utility */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3.25rem;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .config-layout {
    grid-template-columns: 1fr;
  }
  .floor-tabs {
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 0.5rem;
  }
  .floor-tab-btn {
    white-space: nowrap;
    padding: 1rem 1.25rem;
  }
  .floor-tab-btn::before {
    left: 0;
    top: auto;
    bottom: 0;
    height: 3px;
    width: 100%;
    transform: scaleX(0);
    transform-origin: left;
  }
  .floor-tab-btn.active::before {
    transform: scaleX(1);
  }
  .isometric-view-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .location-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none; /* Can build toggleable overlay menu */
  }
  .mobile-nav-toggle {
    display: block;
  }
  .hero-title {
    font-size: 2.75rem;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .stat-item:nth-child(2)::after {
    display: none;
  }
  .floor-content-pane.active {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 1.5rem;
  }
  .converter-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .converter-arrow-icon {
    transform: rotate(90deg);
    margin-top: 0;
    height: 30px;
    line-height: 30px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-group.full-width {
    grid-column: span 1;
  }
  .enquiry-form-card {
    padding: 2rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 480px) {
  .hero-badge {
    font-size: 0.75rem;
    padding: 4px 12px;
  }
  .hero-title {
    font-size: 2.25rem;
  }
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .stat-item::after {
    display: none;
  }
  .btn {
    width: 100%;
  }
  .section-title {
    font-size: 2rem;
  }
  .stakeholders {
    flex-direction: column;
    gap: 1.5rem;
  }
}
