/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
  --primary-color: #0e3e2d;     /* Deep TVS Green */
  --primary-light: #165b43;
  --accent-color: #c59b27;      /* Warm Gold */
  --accent-light: #e5be56;
  --dark-color: #1a221f;
  --light-bg: #f3f7f5;          /* Very light green-gray tint */
  --white: #ffffff;
  --border-color: #e0e6e3;
  
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Montserrat', sans-serif;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --shadow: 0 4px 20px rgba(14, 62, 45, 0.08);
}

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

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

body {
  font-family: var(--font-sans);
  background-color: #ffffff;
  color: var(--dark-color);
  line-height: 1.6;
}

/* ==========================================================================
   NAVBAR (STICKY TOP)
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  padding: 12px 0;
  transition: var(--transition);
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.navbar-brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
}

.logo-accent {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: 1px;
}

.logo-sub {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--accent-color);
  margin-top: 2px;
}

.navbar-toggler {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  color: var(--primary-color);
  cursor: pointer;
}

.navbar-collapse {
  display: flex;
}

.navbar-nav {
  display: flex;
  list-style: none;
  gap: 20px;
}

.nav-link {
  color: #444;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 12px;
  text-decoration: none;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color);
  border-bottom: 2px solid var(--accent-color);
}

/* ==========================================================================
   SPLIT LAYOUT (LEFT SCROLLABLE, RIGHT STICKY)
   ========================================================================== */
.main-split-container {
  display: flex;
  margin-top: 75px; /* offset navbar height */
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.left-section {
  width: 73%;
  padding: 30px;
  border-right: 1px solid var(--border-color);
}

.right-sidebar {
  width: 27%;
  padding: 30px;
  position: relative;
}

.sticky-form-container {
  position: sticky;
  top: 105px; /* Offset navbar + spacing */
}

/* ==========================================================================
   HERO / BANER SECTION
   ========================================================================== */
.top-hero-section {
  background-color: var(--light-bg);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 40px;
  border: 1px solid var(--border-color);
}

.banner-carousel {
  position: relative;
}

.banner-img {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: cover;
}

.project-details {
  padding: 35px;
  text-align: center;
}

.project-state {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.project-details h1 {
  font-family: var(--font-serif);
  font-size: 42px;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.project-details h3 {
  font-size: 18px;
  font-weight: 500;
  color: #666;
  margin-bottom: 25px;
}

/* Offer box styles */
.offer-patch {
  background-color: var(--accent-color);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 20px;
}

.patch-heading {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 13px;
}

.offer-box {
  margin-bottom: 25px;
}

.inner-box {
  background: var(--white);
  border: 1px dashed var(--accent-color);
  padding: 15px;
  display: inline-block;
  border-radius: 6px;
}

.inner-box p {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 5px;
}

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

.offer-info-text {
  font-size: 16px;
  font-weight: 500;
  color: #444;
  margin-bottom: 15px;
}

/* Pricing text */
.price-text {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 25px;
}

.color-imp {
  color: var(--accent-color);
}

.price-sub-text {
  font-size: 36px;
}

.price {
  font-size: 16px;
  color: #666;
  font-weight: 400;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-block;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-warning {
  background: var(--accent-color);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(197, 155, 39, 0.2);
}

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

.btn-sm {
  padding: 8px 16px;
  font-size: 12px;
}

.btn-full {
  width: 100%;
}

/* ==========================================================================
   ENQUIRY FORM DESKTOP & MOBILE
   ========================================================================== */
.call-back-header {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 20px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  text-align: center;
}

.call-back-header h3 {
  font-size: 16px;
  font-weight: 600;
}

.call-back-header p {
  font-size: 10px;
  color: rgba(255,255,255,0.7);
  margin-top: 5px;
}

.form-body {
  background-color: var(--light-bg);
  border: 1px solid var(--border-color);
  border-top: none;
  padding: 25px 20px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.lead-form .form-group {
  margin-bottom: 15px;
}

.lead-form .form-control {
  width: 100%;
  padding: 12px;
  border: 1px solid #c8d3cf;
  border-radius: 4px;
  background-color: var(--white);
  font-family: var(--font-sans);
  font-size: 13px;
  outline: none;
  transition: var(--transition);
}

.lead-form .form-control:focus {
  border-color: var(--primary-color);
}

.checkbox-section {
  margin-top: 15px;
}

.checkbox-section label {
  display: flex;
  gap: 8px;
  cursor: pointer;
}

.checkbox-section input {
  margin-top: 3px;
}

.checkbox-section span {
  font-size: 10px;
  line-height: 1.4;
  color: #666;
}

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

/* ==========================================================================
   CONTENT BLOCKS (SECTIONS)
   ========================================================================== */
.content-block {
  padding: 60px 0;
  border-bottom: 1px solid var(--border-color);
}

.content-block:last-of-type {
  border-bottom: none;
}

.block-title {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--primary-color);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.title-underline {
  width: 60px;
  height: 3px;
  background-color: var(--accent-color);
  margin-bottom: 30px;
}

/* Highlights List */
.highlights-list {
  list-style: none;
}

.highlights-list li {
  font-size: 15px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

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

/* Connectivity grid */
.connectivity-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-bottom: 30px;
}

.connectivity-item {
  background-color: var(--light-bg);
  border: 1px solid var(--border-color);
  padding: 15px;
  text-align: center;
  border-radius: 6px;
}

.connectivity-item .dist {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 5px;
}

.connectivity-item .dest {
  font-size: 11px;
  font-weight: 600;
  color: var(--primary-color);
}

/* Map placeholder */
.map-placeholder {
  height: 300px;
  background-color: #e5edea;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px;
  border: 1px dashed var(--accent-color);
}

.map-placeholder i {
  font-size: 48px;
  color: var(--accent-color);
  margin-bottom: 12px;
}

.map-placeholder h4 {
  font-size: 18px;
  color: var(--primary-color);
  margin-bottom: 6px;
}

.map-placeholder p {
  font-size: 13px;
  color: #555;
  margin-bottom: 18px;
}

/* Amenities Grid */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.amenity-card {
  background-color: var(--light-bg);
  border: 1px solid var(--border-color);
  padding: 25px;
  border-radius: 8px;
  text-align: center;
  transition: var(--transition);
}

.amenity-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

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

.amenity-card h4 {
  font-size: 16px;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.amenity-card p {
  font-size: 12px;
  color: #666;
}

/* Pricing Table */
.pricing-table-container {
  overflow-x: auto;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
}

.pricing-table th, 
.pricing-table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.pricing-table th {
  background-color: var(--light-bg);
  color: var(--primary-color);
  font-weight: 600;
}

.pricing-table td {
  font-size: 14px;
}

/* Gallery Slider */
.gallery-slider img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

/* Footer Disclaimer */
.site-footer {
  padding: 40px 0;
  color: #888;
  font-size: 11px;
}

.site-footer .disclaimer {
  line-height: 1.5;
  margin-bottom: 15px;
}

/* ==========================================================================
   MODAL WINDOW
   ========================================================================== */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

.modal-dialog {
  background: var(--white);
  width: 100%;
  max-width: 440px;
  border-radius: 8px;
  padding: 40px;
  position: relative;
  transform: translateY(-30px);
  transition: transform 0.3s ease;
}

.modal.open .modal-dialog {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 28px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #999;
}

.modal-header h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.modal-header p {
  font-size: 12px;
  color: #666;
  margin-bottom: 25px;
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 991px) {
  .left-section {
    width: 100%;
    border-right: none;
  }
  
  .right-sidebar {
    display: none;
  }
  
  .d-desktop-only {
    display: none !important;
  }
  
  .d-mobile-only {
    display: block !important;
  }
  
  .mob-form-section {
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .navbar-toggler {
    display: block;
  }
  
  .navbar-collapse {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 5px 10px rgba(0,0,0,0.05);
    padding: 20px;
  }
  
  .navbar-collapse.open {
    display: block;
  }
  
  .navbar-nav {
    flex-direction: column;
    gap: 15px;
  }
  
  .project-details h1 {
    font-size: 32px;
  }
  
  .connectivity-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .left-section {
    padding: 15px;
  }
  
  .connectivity-grid {
    grid-template-columns: 1fr;
  }
  
  .amenities-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   GOOGLE ADS MARKETING OPTIMIZATIONS
   ========================================================================== */
.rera-policy-tag {
  display: inline-block;
  background: rgba(197, 155, 39, 0.15);
  border: 1px solid var(--accent-color);
  color: var(--accent-color);
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 13px;
  margin-bottom: 20px;
}

.rera-policy-tag strong {
  color: var(--primary-color);
}

.phone-cta {
  text-decoration: none;
}

/* Sticky bottom mobile conversion bar */
.mobile-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--white);
  box-shadow: 0 -4px 15px rgba(0,0,0,0.15);
  display: none;
  z-index: 1500;
  grid-template-columns: 1fr 1fr;
}

.sticky-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--white) !important;
}

.btn-call {
  background-color: var(--primary-color);
}

.btn-enquire {
  background-color: var(--accent-color);
}

.floating-actions {
  position: fixed !important;
  bottom: 25px !important;
  left: 25px !important;
  right: auto !important;
  z-index: 999999 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  pointer-events: auto !important;
}

.float-btn {
  width: 58px !important;
  height: 58px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #ffffff !important;
  background-color: #25d366 !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.35) !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease !important;
  text-decoration: none !important;
  padding: 0 !important;
}

.float-btn svg {
  width: 32px !important;
  height: 32px !important;
  fill: #ffffff !important;
}

.float-btn:hover {
  transform: scale(1.1) !important;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6) !important;
}

@media (max-width: 768px) {
  .floating-actions {
    bottom: 75px !important;
    left: 15px !important;
  }
  .float-btn {
    width: 50px !important;
    height: 50px !important;
  }
  .float-btn svg {
    width: 28px !important;
    height: 28px !important;
  }
  .mobile-sticky-bar {
    display: grid !important;
  }
  body {
    padding-bottom: 60px !important;
  }
}

.iti {
  display: block;
  width: 100%;
}


