/* ==========================================================================
   NIRALA TRIO - PREMIUM RESIDENTIAL DESIGN SYSTEM
   ========================================================================== */

/* Design Tokens & Custom CSS Variables */
:root {
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Color Palette */
  --color-primary: #110b43;      /* Deep Sapphire / Indigo */
  --color-primary-light: #1e155f;
  --color-primary-dark: #09052b;
  --color-secondary: #05a7e8;    /* Premium Ocean Blue / Cyan */
  --color-secondary-hover: #038cc4;
  --color-accent: #d97706;       /* Gold / Amber for luxury highlights */
  --color-accent-light: #f59e0b;
  --color-success: #10b981;      /* Emerald Green */
  
  /* Neutral Palette */
  --neutral-darkest: #0f172a;    /* Slate 900 */
  --neutral-dark: #334155;       /* Slate 700 */
  --neutral-medium: #64748b;     /* Slate 500 */
  --neutral-light: #f1f5f9;      /* Slate 100 */
  --neutral-lightest: #ffffff;
  
  /* Blurs & Shadows */
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.4);
  --glass-blur: blur(12px);
  --shadow-sm: 0 4px 6px -1px rgb(0 0 0 / 0.05), 0 2px 4px -2px rgb(0 0 0 / 0.05);
  --shadow-md: 0 10px 15px -3px rgb(0 0 0 / 0.08), 0 4px 6px -4px rgb(0 0 0 / 0.08);
  --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --shadow-glow: 0 20px 40px -15px rgba(17, 11, 67, 0.25);
  
  /* Structural Defaults */
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  --header-height: 80px;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   RESET & FOUNDATIONS
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--neutral-dark);
  scroll-behavior: smooth;
}

body {
  background-color: var(--neutral-lightest);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--neutral-darkest);
  font-weight: 700;
  line-height: 1.25;
}

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

ul {
  list-style: none;
}

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

/* ==========================================================================
   UTILITY STYLES
   ========================================================================== */
.section-padding {
  padding: 100px 0;
}

.section-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.bg-light {
  background-color: var(--neutral-light);
}

.text-center {
  text-align: center;
}

.d-none {
  display: none !important;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-secondary);
  margin-bottom: 12px;
}

.section-title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--color-primary);
}

.section-subtitle {
  font-size: 18px;
  color: var(--neutral-medium);
  max-width: 600px;
  margin: 0 auto 50px;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 28px;
  border-radius: var(--border-radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition-smooth);
  gap: 8px;
}

.btn-primary {
  background-color: var(--color-secondary);
  color: var(--neutral-lightest);
}

.btn-primary:hover {
  background-color: var(--color-secondary-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(5, 167, 232, 0.3);
}

.btn-secondary {
  background-color: var(--color-accent);
  color: var(--neutral-lightest);
}

.btn-secondary:hover {
  background-color: var(--color-accent-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(217, 119, 6, 0.3);
}

.btn-outline-primary {
  background-color: transparent;
  border-color: var(--color-secondary);
  color: var(--color-secondary);
}

.btn-outline-primary:hover {
  background-color: var(--color-secondary);
  color: var(--neutral-lightest);
}

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

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

.btn-white {
  background-color: var(--neutral-lightest);
  color: var(--color-primary);
}

.btn-white:hover {
  background-color: var(--neutral-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-block {
  display: flex;
  width: 100%;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 16px;
}

.btn-sm {
  padding: 8px 18px;
  font-size: 13px;
}

/* ==========================================================================
   ANIMATIONS & TRANSITIONS
   ========================================================================== */
.card-hover-lift {
  transition: var(--transition-smooth);
}

.card-hover-lift:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

.pulse-indicator {
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: var(--color-success);
  border-radius: 50%;
  margin-right: 8px;
  animation: pulse 2s infinite;
}

/* ==========================================================================
   LOADER
   ========================================================================== */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-primary-dark);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease;
}

.loader-content {
  text-align: center;
  color: var(--neutral-lightest);
}

.loader-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  border-top-color: var(--color-secondary);
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}

.loader-title {
  font-family: var(--font-heading);
  letter-spacing: 4px;
  margin-bottom: 5px;
}

.loader-subtitle {
  font-size: 14px;
  color: var(--neutral-medium);
  letter-spacing: 2px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--glass-border);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: var(--transition-smooth);
}

.main-header.scrolled {
  height: 70px;
  box-shadow: var(--shadow-sm);
  background-color: rgba(255, 255, 255, 0.95);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  max-height: 68px;
  width: auto;
  display: block;
  object-fit: contain;
  vertical-align: middle;
  transition: var(--transition-smooth);
}

.main-header.scrolled .logo-img {
  max-height: 56px;
}

.nav-menu {
  display: flex;
  gap: 24px;
}

.nav-link {
  font-weight: 500;
  font-size: 15px;
  color: var(--neutral-dark);
  padding: 8px 4px;
  position: relative;
}

.nav-link i {
  font-size: 13px;
  margin-right: 4px;
  color: var(--color-secondary);
  opacity: 0.8;
}

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

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

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-menu-toggle .bar {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--color-primary);
  margin: 6px 0;
  transition: var(--transition-smooth);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  overflow: hidden;
}

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

.hero-slider .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.hero-slider .slide.active {
  opacity: 1;
}

.hero-container {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
}

.hero-content {
  color: var(--neutral-lightest);
}

.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(5, 167, 232, 0.2);
  border: 1px solid rgba(5, 167, 232, 0.4);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-tagline i {
  color: var(--color-accent-light);
}

.hero-title {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--neutral-lightest);
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-description {
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 40px;
  max-width: 600px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.hero-cta-group {
  display: flex;
  gap: 20px;
}

/* Hero Glass Card Form */
.hero-info-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--border-radius-md);
  padding: 30px;
  color: var(--neutral-lightest);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  position: relative;
}

/* Glass Form Custom Overrides */
.hero-info-card .premium-form .form-control {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--neutral-lightest);
}

.hero-info-card .premium-form .form-control:focus {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: var(--color-secondary);
}

.hero-info-card .floating-group label {
  color: rgba(255, 255, 255, 0.7);
}

.hero-info-card .floating-group input:focus ~ label,
.hero-info-card .floating-group input:not(:placeholder-shown) ~ label {
  background-color: var(--color-primary-light);
  color: var(--color-secondary);
}

.hero-info-card .iti__country-list {
  color: var(--neutral-darkest);
}

.card-status-pill {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.project-brief .project-name {
  color: var(--neutral-lightest);
  font-size: 28px;
  margin-bottom: 5px;
}

.project-brief .project-location {
  font-size: 14px;
  opacity: 0.8;
  margin-bottom: 20px;
}

.project-brief .project-location i {
  color: var(--color-secondary);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius-sm);
  padding: 15px;
  margin-bottom: 20px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stat-label {
  font-size: 11px;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 4px;
}

.stat-value {
  font-weight: 700;
  font-size: 14px;
}

.offers-list {
  margin-bottom: 24px;
}

.offers-title {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--color-accent-light);
}

.offers-list ul li {
  font-size: 13px;
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  opacity: 0.9;
}

.offers-list ul li i {
  color: var(--color-success);
  margin-top: 3px;
}

.price-brief {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price-brief .price-label {
  font-size: 14px;
  opacity: 0.8;
}

.price-brief .price-value {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: var(--color-secondary);
}

.price-brief .price-value small {
  font-size: 12px;
  font-weight: 500;
  color: var(--neutral-lightest);
  opacity: 0.7;
}

.rera-info {
  text-align: center;
  font-size: 11px;
  opacity: 0.5;
  margin-top: 15px;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  cursor: pointer;
}

.mouse {
  width: 26px;
  height: 42px;
  border: 2px solid var(--neutral-lightest);
  border-radius: 50px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
  opacity: 0.7;
}

.wheel {
  width: 4px;
  height: 8px;
  background-color: var(--neutral-lightest);
  border-radius: 50px;
  animation: scrollDown 1.5s infinite;
}

@keyframes scrollDown {
  0% { transform: translateY(0); opacity: 0; }
  50% { opacity: 1; }
  100% { transform: translateY(12px); opacity: 0; }
}

/* ==========================================================================
   OVERVIEW SECTION
   ========================================================================== */
.overview-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.section-paragraph {
  font-size: 16px;
  line-height: 1.7;
  color: var(--neutral-dark);
  margin-bottom: 20px;
}

.key-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 35px 0;
}

.feature-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: rgba(5, 167, 232, 0.1);
  color: var(--color-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 600;
}

.feature-card p {
  font-size: 14px;
  color: var(--neutral-medium);
}

.image-showcase {
  position: relative;
  border-radius: var(--border-radius-md);
  overflow: hidden;
}

.image-showcase img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
  transition: transform 0.5s ease;
}

.image-showcase:hover img {
  transform: scale(1.03);
}

.media-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(17, 11, 67, 0.8), rgba(0, 0, 0, 0));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.play-btn {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: var(--color-secondary);
  border: none;
  color: var(--neutral-lightest);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(5, 167, 232, 0.5);
  transition: var(--transition-smooth);
  padding-left: 5px; /* Alignment for triangle play icon */
}

.play-btn:hover {
  transform: scale(1.1);
  background-color: var(--color-secondary-hover);
}

.media-label {
  color: var(--neutral-lightest);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 1px;
}

.shadow-glow {
  box-shadow: var(--shadow-glow);
}

/* ==========================================================================
   PRICING SECTION
   ========================================================================== */
.pricing-cards-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.pricing-card {
  background-color: var(--neutral-lightest);
  border-radius: var(--border-radius-md);
  border: 1px solid var(--neutral-light);
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.pricing-card.featured {
  border: 2px solid var(--color-secondary);
  box-shadow: var(--shadow-lg);
  transform: scale(1.03);
}

.featured-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--color-accent);
  color: var(--neutral-lightest);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 50px;
}

.config-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: 8px;
}

.pricing-header h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 25px;
  border-bottom: 1px solid var(--neutral-light);
  padding-bottom: 20px;
}

.pricing-details {
  flex-grow: 1;
}

.price-tag {
  margin-bottom: 30px;
}

.price-tag .label {
  display: block;
  font-size: 13px;
  color: var(--neutral-medium);
  margin-bottom: 4px;
}

.price-tag .value {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  color: var(--color-primary);
}

.pricing-features {
  margin-bottom: 40px;
}

.pricing-features li {
  font-size: 14px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pricing-features li i {
  color: var(--color-success);
  font-size: 12px;
}

.pricing-notes-box {
  background-color: rgba(17, 11, 67, 0.03);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--border-radius-sm);
  padding: 24px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.notes-content h4 {
  font-size: 16px;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-primary);
}

.notes-content p {
  font-size: 13px;
  color: var(--neutral-dark);
}

/* ==========================================================================
   VIRTUAL TOUR CTA BANNER
   ========================================================================== */
.virtual-cta-banner {
  position: relative;
  background-image: url('assets/img/360view1.jpg');
  background-size: cover;
  background-position: center;
  text-align: center;
  overflow: hidden;
}

.gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(17, 11, 67, 0.9), rgba(5, 167, 232, 0.8));
  z-index: 1;
}

.relative-z {
  position: relative;
  z-index: 5;
}

.virtual-cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: rgba(255, 255, 255, 0.15);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.virtual-cta-content h2 {
  font-size: 40px;
  color: var(--neutral-lightest);
  font-weight: 800;
  margin-bottom: 16px;
}

.virtual-cta-content p {
  font-size: 17px;
  opacity: 0.9;
  margin-bottom: 35px;
}

/* ==========================================================================
   SITE & FLOOR PLANS SECTION
   ========================================================================== */
.plans-tab-container {
  margin-top: 40px;
}

.plans-tab-nav {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
}

.tab-btn {
  background: none;
  border: 1px solid var(--neutral-light);
  padding: 12px 28px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.tab-btn:hover {
  background-color: var(--neutral-light);
}

.tab-btn.active {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--neutral-lightest);
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
}

/* Master Plan Pane Styles */
.master-plan-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
}

.master-plan-image-wrapper {
  position: relative;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.master-plan-image-wrapper img {
  width: 100%;
}

.image-blur-layer {
  position: relative;
}

.blurred-plan {
  filter: blur(10px);
  transform: scale(1.02);
  transition: var(--transition-smooth);
}

.unlock-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(17, 11, 67, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.unlock-card {
  background-color: var(--neutral-lightest);
  border-radius: var(--border-radius-md);
  padding: 40px 30px;
  text-align: center;
  max-width: 420px;
  box-shadow: var(--shadow-lg);
  color: var(--neutral-darkest);
}

.unlock-card i {
  font-size: 32px;
  color: var(--color-accent);
  margin-bottom: 16px;
}

.unlock-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.unlock-card p {
  font-size: 13px;
  color: var(--neutral-medium);
  margin-bottom: 24px;
}

.master-plan-text h3 {
  font-size: 24px;
  color: var(--color-primary);
  margin-bottom: 16px;
}

.master-plan-text p {
  margin-bottom: 24px;
}

.plan-bullets li {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
}

.plan-bullets li i {
  color: var(--color-secondary);
  margin-top: 4px;
}

/* Floor Plans Pane Styles */
.floor-plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.floor-plan-item {
  background-color: var(--neutral-lightest);
  border-radius: var(--border-radius-md);
  border: 1px solid var(--neutral-light);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.plan-img-container {
  position: relative;
  background-color: var(--neutral-light);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.plan-img-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
}

.view-overlay-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(5, 167, 232, 0.9);
  color: var(--neutral-lightest);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transition: var(--transition-smooth);
}

.plan-img-container:hover .view-overlay-btn {
  opacity: 1;
}

.plan-details-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.plan-details-content h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.plan-details-content p {
  font-size: 13px;
  color: var(--neutral-medium);
  margin-bottom: 24px;
  flex-grow: 1;
}

/* ==========================================================================
   AMENITIES SECTION
   ========================================================================== */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.amenity-card {
  background-color: var(--neutral-lightest);
  border: 1px solid var(--neutral-light);
  border-radius: var(--border-radius-md);
  padding: 30px 24px;
  text-align: center;
}

.amenity-icon-box {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(5, 167, 232, 0.1), rgba(17, 11, 67, 0.05));
  color: var(--color-secondary);
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: var(--transition-smooth);
}

.amenity-card:hover .amenity-icon-box {
  background: var(--color-secondary);
  color: var(--neutral-lightest);
  transform: rotateY(360deg);
}

.amenity-card h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
}

.amenity-card p {
  font-size: 13px;
  color: var(--neutral-medium);
}

/* ==========================================================================
   GALLERY SECTION
   ========================================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 4/3;
}

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(17, 11, 67, 0.6);
  color: var(--neutral-lightest);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-family: var(--font-heading);
  font-weight: 500;
  opacity: 0;
  transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-img {
  transform: scale(1.05);
}

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

/* ==========================================================================
   LOCATION SECTION
   ========================================================================== */
.location-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.location-map-container {
  position: relative;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3;
  background-color: var(--neutral-light);
}

.map-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.location-map-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-overlay-btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background-color: rgba(17, 11, 67, 0.9);
  color: var(--neutral-lightest);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.location-distances h3 {
  font-size: 24px;
  color: var(--color-primary);
  margin-bottom: 16px;
}

.location-distances p {
  margin-bottom: 30px;
}

.distances-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 35px;
}

.distance-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: var(--neutral-lightest);
  border: 1px solid var(--neutral-light);
  border-radius: var(--border-radius-sm);
  padding: 15px;
}

.distance-item .icon {
  font-size: 22px;
  color: var(--color-secondary);
}

.distance-item .details {
  display: flex;
  flex-direction: column;
}

.distance-item .details strong {
  font-size: 14px;
  color: var(--neutral-darkest);
}

.distance-item .details span {
  font-size: 12px;
  color: var(--neutral-medium);
}

/* ==========================================================================
   DEVELOPER SECTION
   ========================================================================== */
.developer-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.developer-logo-wrapper {
  display: flex;
  justify-content: center;
}

.developer-shield {
  border: 3px dashed var(--neutral-light);
  padding: 40px;
  border-radius: var(--border-radius-md);
  text-align: center;
  color: var(--color-primary);
}

.developer-shield i {
  font-size: 64px;
  color: var(--color-secondary);
  margin-bottom: 20px;
}

.developer-shield h2 {
  font-size: 28px;
  letter-spacing: 1px;
}

.developer-shield .est-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--neutral-medium);
  margin-top: 5px;
}

.developer-info-text h2 {
  font-size: 32px;
  color: var(--color-primary);
  margin-bottom: 16px;
}

.developer-info-text p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--neutral-dark);
  margin-bottom: 20px;
}

.developer-stats {
  display: flex;
  gap: 40px;
  margin-top: 30px;
  border-top: 1px solid var(--neutral-light);
  padding-top: 24px;
}

.dev-stat {
  display: flex;
  flex-direction: column;
}

.dev-stat strong {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--color-secondary);
}

.dev-stat span {
  font-size: 13px;
  color: var(--neutral-medium);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.main-footer {
  background-color: var(--color-primary-dark);
  color: var(--neutral-lightest);
  padding: 80px 0 20px;
}

.footer-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-brand h3 {
  color: var(--neutral-lightest);
  font-size: 24px;
  margin-bottom: 10px;
}

.footer-brand .accent-text {
  color: var(--color-secondary);
}

.footer-brand p {
  opacity: 0.8;
  font-size: 14px;
}

.rera-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
  margin-top: 20px;
  opacity: 0.9 !important;
}

.rera-pill i {
  color: var(--color-success);
}

.footer-links h4, .footer-contact h4 {
  color: var(--neutral-lightest);
  font-size: 16px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.footer-links ul li a {
  opacity: 0.7;
  font-size: 14px;
}

.footer-links ul li a:hover {
  opacity: 1;
  color: var(--color-secondary);
  padding-left: 4px;
}

.footer-contact p {
  font-size: 14px;
  opacity: 0.7;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact p i {
  color: var(--color-secondary);
}

.footer-contact .btn {
  margin-top: 15px;
}

.footer-disclaimer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px 0;
  font-size: 11px;
  line-height: 1.8;
  opacity: 0.4;
  text-align: justify;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 20px;
  text-align: center;
  font-size: 12px;
  opacity: 0.5;
}

/* ==========================================================================
   MODAL LEAD CAPTURE SYSTEM
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(9, 5, 43, 0.7);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  padding: 20px;
}

.modal-backdrop.show {
  opacity: 1;
  pointer-events: auto;
}

.modal-box {
  background-color: var(--neutral-lightest);
  border-radius: var(--border-radius-md);
  width: 100%;
  max-width: 500px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  transform: translateY(30px);
  transition: transform 0.4s ease;
}

.modal-backdrop.show .modal-box {
  transform: translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  color: var(--neutral-medium);
  transition: var(--transition-smooth);
}

.modal-close-btn:hover {
  color: var(--neutral-darkest);
}

.modal-header-section {
  background-color: var(--color-primary);
  color: var(--neutral-lightest);
  padding: 30px;
}

.modal-header-section h3 {
  color: var(--neutral-lightest);
  font-size: 22px;
  margin-bottom: 8px;
}

.modal-header-section p {
  font-size: 13px;
  opacity: 0.8;
  line-height: 1.4;
}

.modal-body-section {
  padding: 30px;
}

/* Premium Form Elements */
.premium-form .form-group {
  position: relative;
  margin-bottom: 20px;
}

.premium-form .form-control {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--neutral-light);
  background-color: var(--neutral-light);
  border-radius: var(--border-radius-sm);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: var(--transition-smooth);
}

.premium-form .form-control:focus {
  border-color: var(--color-secondary);
  background-color: var(--neutral-lightest);
  box-shadow: 0 0 0 4px rgba(5, 167, 232, 0.1);
}

/* Floating Labels Styling */
.floating-group label {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  font-size: 14px;
  color: var(--neutral-medium);
  pointer-events: none;
  transition: var(--transition-smooth);
}

.floating-group label i {
  margin-right: 4px;
}

.floating-group input:focus ~ label,
.floating-group input:not(:placeholder-shown) ~ label {
  top: 0;
  left: 12px;
  font-size: 11px;
  font-weight: 700;
  background-color: var(--neutral-lightest);
  padding: 2px 8px;
  color: var(--color-secondary);
  border-radius: 4px;
}

/* Phone input styling overrides */
.iti {
  width: 100%;
}

.iti__country-list {
  z-index: 100;
}

/* Consent check styling */
.consent-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.consent-checkbox input[type="checkbox"] {
  margin-top: 4px;
  width: 16px;
  height: 16px;
  accent-color: var(--color-secondary);
  flex-shrink: 0;
}

.consent-checkbox label {
  font-size: 11px;
  line-height: 1.4;
  color: var(--neutral-medium);
}

/* Error states */
.error-msg {
  display: none;
  font-size: 11px;
  color: #ef4444;
  margin-top: 4px;
}

.form-group.has-error .form-control {
  border-color: #ef4444;
  background-color: rgba(239, 68, 68, 0.02);
}

.form-group.has-error .error-msg {
  display: block;
}

/* Submit state styling */
.btn-submit-lead {
  position: relative;
}

.btn-submit-lead .btn-spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: white;
  animation: spin 0.6s linear infinite;
}

.modal-footer-section {
  padding: 0 30px 30px;
  border-top: 1px solid var(--neutral-light);
  padding-top: 20px;
}

.modal-safety-badges {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.modal-safety-badges li {
  font-size: 11px;
  font-weight: 600;
  color: var(--neutral-medium);
  display: flex;
  align-items: center;
  gap: 6px;
}

.modal-safety-badges li i {
  color: var(--color-success);
}

/* ==========================================================================
   WHATSAPP FLOATING WIDGET
   ========================================================================== */
.whatsapp-floating-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
}

.whatsapp-btn-bubble {
  display: flex;
  align-items: center;
  background-color: #25d366;
  color: var(--neutral-lightest);
  padding: 12px 20px;
  border-radius: 50px;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
  transition: var(--transition-smooth);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  gap: 8px;
}

.whatsapp-btn-bubble i {
  font-size: 24px;
}

.whatsapp-btn-bubble:hover {
  background-color: #20ba5a;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
}

/* ==========================================================================
   MOBILE BOTTOM BAR & STICKY ACTION BAR
   ========================================================================== */
.mobile-action-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background-color: var(--neutral-lightest);
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1);
  z-index: 998;
}

/* ==========================================================================
   RESPONSIVENESS AND DEVICE SCALING
   ========================================================================== */

/* Large screens (up to 1200px) */
@media (max-width: 1200px) {
  .section-container {
    max-width: 960px;
  }
  .hero-title {
    font-size: 42px;
  }
  .hero-container {
    gap: 30px;
  }
}

/* Medium screens (Tablets, up to 992px) */
@media (max-width: 992px) {
  .section-container {
    max-width: 720px;
  }
  .section-title {
    font-size: 30px;
  }
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-description {
    max-width: 100%;
  }
  .hero-info-card {
    max-width: 500px;
    margin: 0 auto;
  }
  .overview-grid, .location-grid, .developer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .overview-media-container, .location-map-container, .developer-logo-wrapper {
    order: -1;
  }
  .pricing-cards-container {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto 40px;
  }
  .pricing-card.featured {
    transform: none;
  }
  .plans-tab-nav {
    flex-wrap: wrap;
  }
  .master-plan-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .floor-plans-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  .rera-pill {
    justify-content: center;
  }
  .footer-contact p {
    justify-content: center;
  }
  
  /* Navigation display */
  .mobile-menu-toggle {
    display: block;
  }
  .navbar {
    position: fixed;
    top: var(--header-height);
    left: -100%;
    width: 80%;
    height: calc(100vh - var(--header-height));
    background-color: var(--neutral-lightest);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-smooth);
    z-index: 999;
  }
  .navbar.active {
    left: 0;
  }
  .nav-menu {
    flex-direction: column;
    padding: 40px 30px;
    gap: 20px;
  }
  .nav-link {
    font-size: 18px;
    display: block;
    width: 100%;
  }
}

/* Small screens (Phones, up to 768px) */
@media (max-width: 768px) {
  .section-padding {
    padding: 60px 0;
  }
  .hero-section {
    padding-bottom: 80px;
  }
  .hero-title {
    font-size: 32px;
  }
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
  .hero-cta-group .btn {
    width: 100%;
  }
  .key-features-grid, .distances-grid {
    grid-template-columns: 1fr;
  }
  .amenities-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .pricing-notes-box {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .whatsapp-floating-widget {
    bottom: 80px;
    right: 20px;
  }
  .whatsapp-badge-text {
    display: none;
  }
  .whatsapp-btn-bubble {
    padding: 12px;
  }
  
  /* Show Mobile Action Bar */
  body {
    padding-bottom: 60px;
  }
  .mobile-action-bar {
    display: flex;
  }
  .mobile-action-bar a, .mobile-action-bar button {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    border: none;
    cursor: pointer;
    gap: 6px;
    text-transform: uppercase;
  }
  .action-btn-call {
    background-color: var(--color-primary);
    color: var(--neutral-lightest);
  }
  .action-btn-enquire {
    background-color: var(--color-secondary);
    color: var(--neutral-lightest);
  }
  .action-btn-whatsapp {
    background-color: #25d366;
    color: var(--neutral-lightest);
  }
}

/* ==========================================================================
   SPECIFICATIONS SECTION
   ========================================================================== */
.specifications-section {
  background-color: var(--neutral-lightest);
}

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

.spec-card {
  background-color: var(--neutral-light) !important;
  border-radius: var(--border-radius-md);
  padding: 30px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.spec-icon-box {
  font-size: 24px;
  color: var(--color-secondary);
  margin-bottom: 15px;
}

.spec-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--color-primary);
}

.spec-card ul {
  font-size: 13px;
  opacity: 0.9;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 0;
  list-style: none;
}

.spec-card ul li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.spec-card ul li i {
  color: var(--color-secondary);
  margin-top: 4px;
}

/* Responsive Specs Grid */
@media (max-width: 992px) {
  .specs-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 768px) {
  .specs-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }
}
@media only screen and (max-width: 767px) {
  body {
    font-size: 14px;
  }
