/* ============================================
   KOLTE-PATIL DEVELOPERS — Premium Corporate Design
   Theme: Vibrant Orange, Charcoal, Pure White
   Matching: https://www.koltepatil.com/
   ============================================ */

/* === DESIGN TOKENS === */
:root {
  --primary: #2d2d2d;
  --primary-light: #444444;
  --primary-dark: #1a1a1a;
  --accent: #fb8f1f;
  --accent-light: #fcb711;
  --accent-dark: #ff8c17;
  --bg-light: #ffffff;
  --bg-dark: #121212;
  --bg-cream: #fbfaf7;
  --bg-grey: #f7f7f9;
  --text-dark: #2d2d2d;
  --text-muted: #777777;
  --text-light: #ffffff;
  --white: #ffffff;
  --whatsapp: #25D366;
  --gradient-orange: linear-gradient(135deg, #fcb711 0%, #ff8c17 100%);
  --gradient-dark: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.1);
  --shadow-accent: 0 8px 25px rgba(251, 143, 31, 0.2);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --font-family: 'Inter', 'Montserrat', -apple-system, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}

body {
  font-family: var(--font-family);
  color: var(--text-dark);
  background: var(--bg-light);
  line-height: 1.65;
  overflow-x: clip;
  width: 100%;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

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

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

ul, ol {
  list-style: none;
}

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

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

/* === TYPOGRAPHY & HEADER STYLES === */
.title1 {
  font-size: 2.2rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--primary-dark);
  letter-spacing: 1px;
  margin-bottom: 20px;
  position: relative;
}

.title1 span {
  color: var(--accent);
  position: relative;
  display: inline-block;
}

.title1 span::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-orange);
  border-radius: 2px;
}

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

.mobile-break {
  display: none;
}

/* Section Wrapper */
section:not(.sec-project_hero):not(.sec-project_rera) {
  padding: 100px 0;
  position: relative;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 36px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  cursor: pointer;
  border: none;
  text-transform: uppercase;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

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

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

.btn_orange {
  background: var(--gradient-orange);
  color: var(--white);
  box-shadow: var(--shadow-accent);
}

.btn_orange:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(251, 143, 31, 0.4);
}

.btn_black {
  background: var(--primary-dark);
  color: var(--white);
}

.btn_black:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent);
}

.btn_outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.btn_outline:hover {
  background: var(--white);
  color: var(--primary-dark);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn_sm {
  padding: 10px 22px;
  font-size: 0.78rem;
}

.btn--full {
  width: 100%;
}

/* === HEADER / NAVIGATION === */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 14px 0;
  transition: var(--transition);
  background: var(--white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  padding: 12px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.header.scrolled .nav__link {
  color: var(--text-dark);
}

.header.scrolled .hamburger span {
  background: var(--text-dark);
}

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

.header__logo {
  display: flex;
  align-items: center;
  z-index: 1002;
}

.header__logo img.brand-logo {
  height: 52px;
  width: auto;
  display: block;
  transition: var(--transition);
}

.header.scrolled .header__logo img.brand-logo {
  height: 44px;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav__link {
  padding: 8px 16px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-dark);
  text-transform: uppercase;
  position: relative;
  letter-spacing: 0.8px;
}

.nav__link:hover,
.nav__link.active {
  color: var(--accent);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 60%;
}

.nav__cta {
  margin-left: 10px;
}

/* Hamburger menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1002;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile navigation drawer */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: var(--primary-dark);
  z-index: 1001;
  padding: 100px 30px 40px;
  transition: var(--transition);
  overflow-y: auto;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav__overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 1000;
}

.mobile-nav__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-nav__link {
  display: block;
  padding: 14px 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-nav__link:hover {
  color: var(--accent);
  padding-left: 8px;
}

/* === HERO SECTION (sec-project_hero) === */
.sec-project_hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding-top: 110px;
  padding-bottom: 60px;
  overflow: hidden;
}

.hero__content {
  max-width: 960px;
  padding: 0 20px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}

.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: -2;
  transform: scale(1);
  animation: zoomBg 25s infinite alternate;
}

@keyframes zoomBg {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.85) 0%, rgba(48, 48, 48, 0.65) 100%);
  z-index: -1;
}

.hero__split-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
  width: 100%;
}

.hero__text-column {
  text-align: left;
}

.hero__tagline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(251, 143, 31, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(251, 143, 31, 0.3);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
  color: var(--accent-light);
}

.hero__title {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 18px;
  line-height: 1.15;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero__subtitle {
  font-size: 1.3rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 30px;
  letter-spacing: 0.5px;
}

.hero__benefits {
  margin-bottom: 35px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero__benefits li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero__benefits li i {
  color: var(--accent);
  font-size: 1.2rem;
  margin-top: 4px;
}

.hero__benefits li span {
  line-height: 1.45;
}

.hero__ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__form-column {
  display: flex;
  justify-content: flex-end;
}

.hero__form-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 40px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 440px;
  color: var(--white);
}

.hero__form-card h3 {
  font-size: 1.6rem;
  color: var(--white);
  font-weight: 800;
  margin-bottom: 6px;
}

.hero__form-card .form-sub {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 700;
}

.hero__form-card label {
  color: rgba(255, 255, 255, 0.85);
}

.hero__form-card input,
.hero__form-card select {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--primary-dark);
}

.hero__form-card input::placeholder {
  color: #888;
}

.hero__form-card input:focus,
.hero__form-card select:focus {
  background: var(--white);
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(251, 143, 31, 0.25);
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 30px;
  font-size: 1.5rem;
  color: var(--accent);
  animation: bounce 2.2s infinite;
}



/* === OVERVIEW SECTION (sec-project_overview) === */
.sec-project_overview {
  background: var(--bg-light);
}

.sec-project_overview .container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: flex-start;
}

.overview_content h5.overview_address {
  font-size: 1.05rem;
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.overview_content h1 {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 24px;
  line-height: 1.35;
}

.overview_content p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 20px;
}

.main_project_info {
  background: var(--bg-cream);
  padding: 45px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.overview_project_logo {
  max-width: 140px;
  margin: 0 auto 24px;
  display: block;
}

.overview_tagline {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 24px;
  line-height: 1.45;
  text-align: center;
}

.overview_details_list {
  text-align: left;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding: 20px 0;
  margin-bottom: 30px;
}

.overview_details_list p {
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: var(--primary-light);
  display: flex;
  justify-content: space-between;
}

.overview_details_list p:last-child {
  margin-bottom: 0;
}

/* === HIGHLIGHTS (sec-project_highlights) === */
.sec-project_highlights {
  padding: 70px 0;
  background: var(--bg-grey);
}

.highlights_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.highlight_card {
  background: var(--white);
  padding: 35px 25px;
  border-radius: var(--radius-md);
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.highlight_card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(251, 143, 31, 0.2);
}

.highlight_card i {
  font-size: 2.2rem;
  color: var(--accent);
  margin-bottom: 18px;
  display: block;
}

.highlight_card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--primary-dark);
}

.highlight_card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* === VIDEO WALKTHROUGH SECTION === */
.sec-project_video {
  background: var(--bg-light);
}

.video-placeholder {
  max-width: 960px;
  margin: 0 auto;
  transition: var(--transition);
}

.video-placeholder:hover {
  transform: scale(1.01);
  box-shadow: var(--shadow-lg);
}

/* === PRICING (sec-project_pricing) === */
.sec-project_pricing {
  background: var(--bg-grey);
}

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

.pricing__card {
  background: var(--white);
  padding: 45px 25px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow-sm);
  text-align: center;
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.pricing__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.pricing__card--featured {
  border: 2px solid var(--accent);
  box-shadow: var(--shadow-md);
}

.pricing__badge {
  display: inline-block;
  background: var(--bg-grey);
  color: var(--text-muted);
  padding: 6px 16px;
  font-size: 0.72rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 20px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing__badge--featured {
  background: var(--gradient-orange);
  color: var(--white);
  border: none;
  box-shadow: 0 4px 10px rgba(251, 143, 31, 0.2);
}

.pricing__type {
  font-size: 1.7rem;
  color: var(--primary-dark);
  margin-bottom: 12px;
  font-weight: 800;
}

.pricing__size {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.pricing__size i {
  color: var(--accent);
}

.pricing__price {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 20px;
}

.pricing__detail {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 35px;
  line-height: 1.6;
}

.pricing__card .btn {
  margin-top: auto;
  width: 100%;
}

/* === FLOOR PLANS (sec-project_plan) === */
.sec-project_plan {
  background: var(--bg-light);
}

.tab-wrp {
  display: flex;
  width: max-content;
  background: var(--bg-grey);
  padding: 6px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0, 0, 0, 0.05);
  margin: 30px auto 50px;
  justify-content: center;
  gap: 6px;
}

.tablink {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  letter-spacing: 0.8px;
  transition: var(--transition);
  border: none;
}

.tablink.active {
  background: var(--gradient-orange);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(251, 143, 31, 0.25);
}

.tabs__panel {
  display: none;
}

.tabs__panel.active {
  display: block;
  animation: fadeIn 0.4s ease-out;
}

.floorplan__panel-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 50px;
  align-items: flex-start;
}

.floorplan__img-container {
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 24px;
  background: var(--bg-grey);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
  align-self: start;
  z-index: 10;
}

.floorplan__img-container:hover {
  box-shadow: var(--shadow-md);
}

.floorplan__image {
  width: 100%;
  height: auto;
  display: block;
}

.floorplan__details h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  font-weight: 800;
}

.specs-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 8px;
  margin-bottom: 30px;
}

.specs-table th,
.specs-table td {
  padding: 14px 20px;
  text-align: left;
  font-size: 0.92rem;
}

.specs-table th {
  color: var(--white);
  background: var(--primary-dark);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
}

.specs-table th:first-child {
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}

.specs-table th:last-child {
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.specs-table td {
  color: var(--text-dark);
  background: var(--bg-grey);
  border-top: 1px solid rgba(0, 0, 0, 0.02);
  border-bottom: 1px solid rgba(0, 0, 0, 0.02);
}

.specs-table td:first-child {
  font-weight: 700;
  border-left: 1px solid rgba(0, 0, 0, 0.02);
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}

.specs-table td:last-child {
  border-right: 1px solid rgba(0, 0, 0, 0.02);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--accent-dark);
  font-weight: 600;
}

.specs-table tr:hover td {
  background: #fff8f0; /* Warm orange tint on hover */
  border-color: rgba(251, 143, 31, 0.1);
}

/* === AMENITIES (sec-project_amenities) === */
.sec-project_amenities {
  background: var(--bg-cream);
}

.project_amenities_grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}

.amenity-card {
  position: relative;
  height: 220px;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.amenity-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(251, 143, 31, 0.2);
}

.amenity-card__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: var(--transition);
}

.amenity-card:hover .amenity-card__img {
  transform: scale(1.08);
}

.amenity-card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 40%, rgba(0, 0, 0, 0.8) 100%);
  z-index: 1;
  transition: var(--transition);
}

.amenity-card:hover .amenity-card__overlay {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 30%, rgba(0, 0, 0, 0.85) 100%);
}

.amenity-card__content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  color: var(--white);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition);
}

.amenity-card__content i {
  font-size: 1.6rem;
  color: var(--accent);
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.5));
}

.amenity-card__content h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.5px;
}

/* === LOCATION (sec-project_location) === */
.sec-project_location {
  background: var(--bg-light);
}

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

.location__content h3 {
  font-size: 1.9rem;
  margin-bottom: 20px;
  font-weight: 800;
}

.location-list {
  margin-bottom: 30px;
}

.location-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.02rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.location-list li i {
  color: var(--accent);
}

.location__map-container {
  height: 420px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

/* === ENQUIRE NOW SECTION (sec-enquire_now) === */
.sec-enquire_now {
  background: var(--gradient-dark);
  color: var(--white);
}

.sec-enquire_now .title1 {
  color: var(--white);
}

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

.contact__kicker {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact__text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.75;
  margin-bottom: 35px;
}

.manager-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.manager-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  padding: 28px;
  border-radius: var(--radius-md);
}

.manager-card h4 {
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 16px;
  border-left: 3px solid var(--accent);
  padding-left: 12px;
}

.manager-phones {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.manager-phones a {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.manager-phones a:hover {
  color: var(--accent);
  transform: translateX(3px);
}

/* Form Card */
.contact__form-card {
  background: var(--white);
  padding: 45px;
  border-radius: var(--radius-md);
  color: var(--text-dark);
  box-shadow: var(--shadow-lg);
}

.contact__form-card h3 {
  font-size: 1.6rem;
  margin-bottom: 30px;
  border-bottom: 2px solid rgba(251, 143, 31, 0.08);
  padding-bottom: 14px;
  font-weight: 800;
}

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

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

.form-group input,
.form-group select {
  width: 100%;
  padding: 14px;
  border: 1px solid #d0d2d6;
  border-radius: var(--radius-sm);
  font-size: 0.98rem;
  font-family: var(--font-family);
  transition: var(--transition);
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(251, 143, 31, 0.12);
}

/* === RERA BANNER === */
.sec-project_rera {
  background: var(--bg-grey);
  padding: 24px 0;
  text-align: center;
  border-top: 1px solid #eef0f3;
  border-bottom: 1px solid #eef0f3;
  font-size: 0.95rem;
}

.sec-project_rera strong {
  color: var(--accent);
}

/* === FOOTER === */
.footer {
  background: #181818;
  color: rgba(255, 255, 255, 0.55);
  padding: 50px 0;
  font-size: 0.82rem;
  line-height: 1.7;
}

.footer .disclaimer {
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 24px;
}

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

/* === MODAL DIALOGS === */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(5px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.modal {
  background: var(--white);
  padding: 30px 24px;
  border-radius: var(--radius-md);
  width: 100%;
  max-width: 500px;
  position: relative;
  box-shadow: var(--shadow-lg);
  animation: modalIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  max-height: calc(100vh - 40px);
  overflow-y: auto;
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.95) translateY(10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: transparent;
  border: none;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  color: var(--text-muted);
  transition: var(--transition);
}

.modal__close:hover {
  color: var(--accent);
}

.modal__body h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  border-left: 3px solid var(--accent);
  padding-left: 12px;
  font-weight: 800;
}

.modal__body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 15px;
}

.modal .form-group {
  margin-bottom: 14px;
}

.modal .form-group input,
.modal .form-group select {
  padding: 10px 12px;
  font-size: 0.92rem;
}

.modal .form-group label {
  margin-bottom: 5px;
}

/* === FLOATING WHATSAPP CHAT WIDGET === */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--whatsapp);
  color: var(--white);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
}

.floating-whatsapp:hover {
  transform: scale(1.1) rotate(8deg);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

/* === RESPONSIVE STYLING === */
@media only screen and (max-width: 1024px) {
  .nav {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  section:not(.sec-project_hero):not(.sec-project_rera) {
    padding: 80px 0;
  }
  .sec-project_overview .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .highlights_grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing__grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 40px auto 0;
  }
  .floorplan__panel-grid {
    grid-template-columns: 1fr;
  }
  .floorplan__img-container {
    position: static;
  }
  .location__layout {
    grid-template-columns: 1fr;
  }
  .contact__grid {
    grid-template-columns: 1fr;
  }
  .hero__split-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero__text-column {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero__benefits {
    align-items: center;
  }
  .hero__ctas {
    justify-content: center;
  }
  .hero__form-column {
    justify-content: center;
  }
}

@media only screen and (max-width: 768px) {
  .title1 {
    font-size: 1.8rem;
  }
  .title1 span {
    display: inline;
    border-bottom: 3px solid var(--accent);
    padding-bottom: 2px;
  }
  .title1 span::after {
    display: none;
  }
  .hero__tagline {
    font-size: 0.65rem;
    padding: 6px 12px;
    margin-bottom: 16px;
    line-height: 1.3;
    text-align: center;
    justify-content: center;
  }
  .hero__title {
    font-size: 1.8rem;
    line-height: 1.25;
    margin-bottom: 12px;
  }
  .mobile-break {
    display: block;
  }
  .hero__subtitle {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  .hero__ctas {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
  .hero__ctas .btn {
    width: 100%;
    padding: 12px 24px;
    font-size: 0.85rem;
  }
  .hero__form-card {
    padding: 24px;
  }
  .hero__benefits li {
    font-size: 0.95rem;
  }

  .highlights_grid {
    grid-template-columns: 1fr;
  }
  .tab-wrp {
    display: flex;
    width: 100%;
    max-width: 450px;
    flex-wrap: nowrap;
    gap: 6px;
    margin: 24px auto 35px;
    padding: 4px;
  }
  .tablink {
    flex: 1;
    text-align: center;
    padding: 10px 6px;
    font-size: 0.78rem;
    white-space: nowrap;
  }
  .specs-table th, 
  .specs-table td {
    padding: 10px;
    font-size: 0.85rem;
  }
  .floating-whatsapp {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 1.8rem;
  }
  .contact__form-card {
    padding: 24px;
  }
  .manager-card {
    padding: 20px;
  }
}

@media only screen and (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  .title1 {
    font-size: 1.5rem;
  }
  .hero__title {
    font-size: 1.5rem;
  }
  .tab-wrp {
    gap: 4px;
    padding: 4px;
    margin: 20px auto 30px;
  }
  .tablink {
    padding: 8px 4px;
    font-size: 0.72rem;
  }
  .pricing__card {
    padding: 30px 16px;
  }
  .contact__form-card {
    padding: 20px 16px;
  }
  .manager-card {
    padding: 16px;
  }
}
