/* --- Global Styles --- */
:root {
  --primary-red: #C52F30;
  --dark-red: #80131B;
  --text-dark: #000;
  --text-light: #6B7280;
  --bg-light: #F9FAFB;
  --bg-white: #FFFFFF;
  --border-color: #E5E7EB;
  --sidebar-width: 300px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
@font-face {
  font-family: 'Lunchtype';
  src: url('../font/Lunchtype22-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  letter-spacing: -5%;
}

@font-face {
  font-family: 'Lunchtype';
  src: url('../font/Lunchtype22-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
   letter-spacing: -5%;
}

@font-face {
  font-family: 'Lunchtype';
  src: url('../font/Lunchtype22-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
   letter-spacing: -5%;
}

/* --- Playfair Display (Content) --- */
@font-face {
  font-family: 'Playfair Display';
  src: url('../font/playFair/PlayfairDisplay-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Playfair Display';
  src: url('../font/playFair/PlayfairDisplay-Italic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Playfair Display';
  src: url('../font/playFair/PlayfairDisplay-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Playfair Display';
  src: url('../font/playFair/PlayfairDisplay-BoldItalic.otf') format('opentype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
body {
  font-family: 'Lunchtype', sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-white);
  line-height: 1.6;
}

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

/* --- Layout Structure with Static Sidebar --- */
.main-content {
  margin-right: var(--sidebar-width);
}

.sidebar-form {
  position: fixed;
  top: 70px;
  right: 0;
  width: var(--sidebar-width);
  /* Use max-height so it adapts on short screens */
  max-height: calc(100vh - 70px);
  /* Enable vertical scrolling if content exceeds height */
  overflow-y: auto;
  z-index: 99;
  background-color: transparent;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  border: 1px solid var(--border-color);
  
  /* Smooth scrolling on iOS devices */
  -webkit-overflow-scrolling: touch; 
}

/* Optional: Custom scrollbar styling so it looks clean on dark/light themes */
.sidebar-form::-webkit-scrollbar {
  width: 5px;
}

.sidebar-form::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
}

.sidebar-form::-webkit-scrollbar-track {
  background: transparent;
}

.sidebar-card {
  padding: 50px 20px 25px;
  border-radius: 12px;
 
}
.schedule-btn{
  background-color: var(--text-dark);
  color: var(--bg-white);
  padding: 20px;
  text-align: center;
  display: flex;
  gap: 10px;
  justify-content: center;
  width: 100%;
  align-items: center;
  cursor: pointer;
}
.schedule-btn img{filter: grayscale(100%);}
.sidebar-card h3 {
  width: 90%;
  font-family: 'Lunchtype', sans-serif;  
  font-size: 25px;
  margin-bottom: 16px;
  text-align: start;
   letter-spacing: 0;
    color: var(--primary-red);
    font-weight: 500;
    line-height: 0.9;
}

.sidebar-card h3 span {
   font-family: 'Playfair Display', Georgia, serif;
  letter-spacing: -5%;
 color: var(--text-dark);
  font-style: italic;
  font-weight: 300;
}

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

.form-group input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid rgba(197, 47, 48, 0.11);
  border-radius: 50px;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus {
  border-color: var(--primary-red);
}
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 16px 0 20px 0;
}

.form-checkbox input {
  margin-top: 3px;
  accent-color: #000;
}

.form-checkbox label {
  font-size: 0.9rem;
  color: var(--text-dark);
  line-height: 1.35;
}
.btn-submit {
  width: 100%;
  padding: 12px;
  background-color: var(--primary-red);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s;
  margin-top: 40px;
}

.btn-submit:hover {
 transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.4);
}

.sidebar-quick-actions {
  display: flex;
  flex-direction: column;
    gap: 25px;
    align-items: center;
  justify-content: space-around;
  margin-top: 18px;
  padding-top: 40px;
}

.sidebar-quick-actions a {
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  color: var(--text-dark);
  font-size: 14px;
  transition: all 0.3s;
}
.sidebar-quick-actions a:hover{
  transform: translateY(-2px);
}
/* --- Navigation --- */
.navbar {
  position: sticky;
  top: 0;
  height: 70px;
  background-color: var(--bg-white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  z-index: 100;
  display: flex;
  align-items: center;
}

.nav-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  align-items: center;
  grid-template-columns: 0.5fr 2fr 1fr;
  gap: 20px;
}
.nav-links{display: flex; justify-content: flex-end;}
.logo {
  font-weight: 800;
  font-size: 1.5rem;
}
.logo img{width: 140px;}
.brand-dsr {
  color: var(--text-dark);
}

.brand-evoq {
  color: var(--primary-red);
  margin-left: 4px;
}

.nav-links a {
  font-family: 'Lunchtype', sans-serif;
  margin: 0 12px;
  font-weight: 400;
  font-size: 16px;
  transition: color 0.2s;
  opacity: 0.8;
}

.nav-links a:hover {
  color: var(--primary-red);
}
.nav-links a.active {
  opacity: 1;
  font-weight: 500;
  color: var(--primary-red);
  border-bottom: 1px solid var(--primary-red); /* Or your preferred theme highlight color */
}
.mobile-menu-btn {
  display: none; /* Hidden on desktop */
  background: none;
  border: none;
  font-size: 24px;
  color: #333;
  cursor: pointer;
}
.nav-actions{display: flex;}
.btn-primary {
  background-color: var(--primary-red);
  color: #fff;
  padding: 9px 18px;
  border-radius: 50px;
  border: none;
  font-weight: 400;
  cursor: pointer;
  font-size: 16px;
}
.btn-primary:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.4);
}
.btn-phone {
  display: flex;
  justify-content: center;
  gap: 5px;
  align-items: center;
  margin-right: 12px;
  font-weight: 400;
  font-size: 16px;
  background-color: var(--text-dark);
  color: #fff;
  padding: 9px 18px;
  border-radius: 50px;
}
.btn-phone:hover{
  transform:translateY(-2px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.4);
}
/* --- Hero Section --- */
/* --- Hero Banner Container --- */
.hero-container {
  position: relative;
  width: 100%;
  height: calc(95vh - 70px);
  min-height: 580px;
  overflow: hidden;
  background-color: #111;
  justify-content: center;
}

/* Background Slider */
.hero-slider {
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

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

/* Logo on Hero Top Left */
.hero-brand-logo {
  position: absolute;
  top: 3%;
  left: 18%;
  z-index: 10;
  color: #111;
  text-align: center;
}
.hero-brand-logo img{width: 80px;}
.logo-text-dsr {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--primary-red);
  letter-spacing: 1px;
}

.logo-text-evoq {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
  color: #111;
  font-family: serif;
}

.logo-text-evoq span {
  color: var(--primary-red);
}

.logo-tagline {
  font-size: 0.55rem;
  letter-spacing: 2px;
  font-weight: 700;
  margin-top: 2px;
  color: #222;
}
.hero-mobile-offer-card {display: none;}
/* Floating White Offer Card */
.hero-offer-card {
  position: absolute;
  bottom: 5%;
  left: 8%;
  z-index: 10;
  width: 380px;
  background: #ffffff;
  padding: 12px;
  border-radius: 18px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.offer-card-inner {
  border: 1.77px dashed var(--primary-red);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}

.offer-title {
  font-family: 'Lunchtype', sans-serif;
  color: #000;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: 0;
  margin-bottom: 2px;
}
.offer-title span{color: var(--primary-red);}
.offer-subtitle {
  font-family: 'Lunchtype', sans-serif;
  font-size: 14px;
  color: #670001;
  font-weight: 400;
}

.offer-divider {
  color: var(--primary-red);
  margin: 20px auto 0;
  width: 50%;
  border-top: 1px solid;
}
.offer-divider span{position: relative; top: -13px;font-size: 1rem;}
.offer-bhk-wrapper {
  position: relative;
  margin: 10px 0;
}

.offer-limited {
  display: block;
  font-size: 16px;
  color: #000;
  letter-spacing: -5%;
  text-align: start;
  line-height: 0.1;
  margin-left: 28%;
}

.offer-bhk {
  font-family: 'Lunchtype', sans-serif;
  letter-spacing: -5%;
  font-size: 40px;
  font-weight: 500;
  color: var(--primary-red);
 
}

.offer-tag {
 font-family: 'Playfair Display', Georgia, serif;
  letter-spacing: -5%;
  font-style: italic;
  font-size:40px;
  color: #222;
  margin-top: -8px;
  margin-left: 35%;
  line-height: 0;
  font-weight: 300;
}

.offer-price-badge {
  background-color: var(--primary-red);
  color: #fff;
  border-radius: 10px;
  padding: 20px;
  margin: 40px 0 12px;
}

.price-label {
  font-size: 18px;
  display: block;
  opacity: 0.9;
  letter-spacing: -5%;
  text-align: start;
  margin-left: 10%;
}

.price-value {
  font-size: 50px;
  font-weight: 800;
  line-height: 0.9;
}

.price-sub {
  font-size: 16px;
  opacity: 0.85;
  letter-spacing: -5%;
  margin-left: 37%;
}

.offer-location {
  font-family: 'Lunchtype', sans-serif;
  font-size:15px;
  color: var(--primary-red);
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.offer-location i {
  color: var(--primary-red);
}
/* =========================================================
   MOBILE STYLES (< 768px) - MATCHES DESIGN EXACTLY
   ========================================================= */
@media screen and (max-width: 768px) {
  /* Stack Sidebar below Hero */
  .page-wrapper {
    flex-direction: column;
  }

  /* Adjust Hero Height to fit Image + Card Overlay */
  .hero-container {
    height: auto;
    min-height: unset;
    overflow: visible; /* Allow card to overlap bottom of image */
    background: #fff;
    padding-bottom: 180px; /* Space for floating card overlay */
  }

  /* Fixed height banner background on mobile */
  .hero-slider {
    height: 260px;
  }

  /* Brand Logo Top Left */
  .hero-brand-logo {
    top: 20px;
    left: 20px;
  }

  .hero-brand-logo img {
    width: 50px;
  }

  /* Floating Card Overlapping Banner */
  .hero-offer-card {
    position: absolute;
    top: 210px; /* Positions card overlapping the bottom of banner image */
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 360px;
    padding: 8px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  }

  .offer-card-inner {
    padding: 20px 15px;
    border-radius: 12px;
  }

  .offer-title {
    font-size: 24px;
  }

  .offer-subtitle {
    font-size: 12px;
  }

  .offer-divider {
    margin: 14px auto;
    width: 55%;
  }

  /* Precise BHK and Offer placement */
  .offer-limited {
    font-size: 13px;
  }

  .offer-bhk {
    font-size: 38px;
  }

  .offer-tag {
    font-size: 34px;
    margin-bottom: 30px;
  }

  /* Price Badge Alignment */
  .offer-price-badge {
    width: 88%;
    padding: 10px 16px;
    margin: 16px auto 12px;
    border-radius: 10px;
  }

  .price-label {
    font-size: 12px;
  }

  .price-value {
    font-size: 30px;
  }

  .price-sub {
    font-size: 11px;
  }

  .offer-location {
    font-size: 12px;
  }
}
/* Number Counter at Bottom Right */
.slide-counter {
  position: absolute;
  bottom: 20px;
  right: 25px;
  z-index: 10;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.6);
}

/* --- Bottom Ticker Strip --- */
.ticker-strip-wrapper {
  background-color: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  overflow: hidden;
  white-space: nowrap;
  padding: 14px 0;
  width: 100%;
}

.ticker-track {
  display: inline-flex;
  animation: ticker-scroll 22s linear infinite;
}

/* Stop Scrolling on Hover */
.ticker-strip-wrapper:hover .ticker-track {
  animation-play-state: paused;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  margin-right: 45px;
  font-size: 18px;
  font-weight: 400;
  color: #000;
}

.ticker-item .bullet {
  color: #000;
  margin-right: 12px;
  font-size: 18px;
}

@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
  .hero-container {
    height: auto;
    min-height: 500px;
  }
  .slide-counter{display: none;}
  .hero-offer-card{display: none;}
  .hero-mobile-offer-card {
    display: block;
    position: absolute;
    top: 210px;
    left: 50%;
    margin: 80px auto 30px;
    border-radius: 12px;
    transform: translateX(-50%);
    width: 90%;
    max-width: 360px;
    background-color: var(--bg-white);
  }
  .hero-brand-logo {
    left: 50%;
    transform: translateX(-50%);
  }
}

/* --- Section Formatting --- */
.section-padding {
  padding: 60px 10%;
}

.container {
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
}

.section-title span {
  color: var(--primary-red);
}

/* --- Overview --- */
/* Container Padding & Font Setup */
.overview-section {
  width: 100%;
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  box-sizing: border-box;
}

/* Base card - let height adapt smoothly to content */
.overview-card {
  position: relative;
  background: #111113;
  background-image: url('../images/card-bg.png');
  border-radius: 24px;
  padding: 30px;
  display: flex;
  align-items: flex-start; /* Changed to flex-start so content grows downward naturally */
  justify-content: space-between;
  gap: 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  transition: all 0.4s ease; /* Smooth background expansion transition */
}

/* Collapsible Wrapper using Grid height trick */
.expandable-wrapper {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.expandable-inner {
  overflow: hidden;
}

/* Expanded State */
.expandable-wrapper.expanded {
  grid-template-rows: 1fr;
}

/* Spacing tweak for expandable paragraph */
.expandable-inner .overview-description {
  padding-top: 10px;
}

/* Trigger Link Style */
.learn-more-link {
  color: #ffffff;
  font-size: 18px;
  font-weight: 400;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: opacity 0.2s ease;
  display: inline-block;
  cursor: pointer;
}

.learn-more-link:hover {
  opacity: 0.8;
}

/* Left Content Area */
.overview-content {
  flex: 1;
  max-width: 520px;
  color: #ffffff;
  padding-left: 15px;
}

/* Title Formatting */
.overview-title {
  font-family: 'Lunchtype', sans-serif;
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 24px;
  color: #ffffff;
  letter-spacing: -5%;
}

/* Elegant serif style for "happiness" */
.title-italic {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -1px  ;
}

/* Paragraph Description */
.overview-description {
 font-family: 'Lunchtype', sans-serif;
  font-size: 18px;
  color: #fff;
  line-height: 1.6;
  margin-bottom: 28px;
  font-weight: 300;
  max-width: 480px;
}

/* "Learn More" Link */
.learn-more-link {
  color: #ffffff;
  font-size: 18px;
  font-weight: 400;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: opacity 0.2s ease;
  display: inline-block;
}

.learn-more-link:hover {
  opacity: 0.8;
}

/* Right Image Box */
.overview-image-wrapper {
  position: relative;
  flex: 1;
  max-width: 520px;
  height: 380px;
  border-radius: 20px;
  overflow: hidden;
}

.overview-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}

/* Floating Red "Brochure" Pill Button */
.btn-brochure {
  position: absolute;
  bottom: 0%;
  left: 50%;
  transform: translateX(-30%);
  background-color: var(--primary-red); /* Soft reddish-brown tone matching image */
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  border-radius: 50px;
  font-size:20px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.3);
  transition: all 0.25s ease;
  z-index: 5;
}

.btn-brochure:hover {
  transform: translateX(-30%) translateY(-2px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.4);
}

.download-icon {
  width: 30px;
  height: 30px;
}

/* --- Responsive Layout Adjustments --- */
@media (max-width: 810px) {.sidebar-form {
    padding: 15% 16px 10px !important;
  }}
@media (max-width: 900px) {
  .overview-card {
    flex-direction: column-reverse;
    padding: 24px;
    gap: 24px;
    background-image: none;
  }
 
  .overview-content {
    padding-left: 0;
    padding-top: 35px;
    max-width: 100%;
  }

  .overview-title {
    font-size: 2rem;
  }

  .overview-image-wrapper {
    width: 100%;
    max-width: 100%;
    height: 280px;
  }

  .btn-brochure {
    left: 50%;
    transform: translateX(-50%);
  }

  .btn-brochure:hover {
    transform: translateX(-50%) translateY(-2px);
  }
}

/* --- Highlights Section --- */
.highlights-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.highlights-section h2 {
  font-family: 'Lunchtype', sans-serif;
  font-size: 42px;
  letter-spacing: -0.02em;
  font-weight: 400;
  text-align: center;
  color: var(--primary-red); /* Primary Red */
  margin-bottom: 30px;
}

.highlights-section h2 span {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  color: var(--text-dark);
}

/* Optional Subtitle for Mobile/Desktop */
.highlights-subtitle {
  font-size: 18px;
  color: #444444;
  line-height: 1.5;
  margin-bottom: 30px;
  text-align: left;
}

/* --- Desktop Layout Grid --- */
.highlights-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr 1fr;
  gap: 24px;
  align-items: stretch;
}

/* Image Containers */
.highlight-img img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  border-radius: 20px;
  object-fit: cover;
  display: block;
}

/* --- Highlights List Card --- */
.highlight-list {
  background-color: #f7f7f7; /* Soft light off-white background */
  list-style: none;
  padding: 30px 35px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
}

.highlight-list li {
  font-size: 19px;
  font-weight: 400;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid #e2e2e2; /* Horizontal line separators */
}

.highlight-list li:last-child {
  border-bottom: none; /* Remove border from last item */
}

.highlight-list i {
  color: var(--primary-red); /* Red checkmark icon */
  font-size: 18px;
  flex-shrink: 0;
}
.mobile-images-wrapper{display: none;}
/* --- Mobile View (768px and below) --- */
@media (max-width: 768px) {
  .highlights-section h2 {
    text-align: left;
    font-size: 36px;
    margin-bottom: 15px;
  }

  .highlights-grid {
    display: flex;
    flex-direction: column-reverse;
    gap: 20px;
  }

  /* List comes first on mobile */
  .highlight-list {
    order: 1;
    padding: 24px 20px;
    border-radius: 20px;
  }

  .highlight-list li {
    font-size: 15px;
    padding: 12px 0;
  }
  .highlight-img{display: none;}
  .mobile-img img{
    width: 100%;
    height: 240px;
    min-height: auto;
    border-radius: 16px;
    object-fit: cover;
    display: block;
  }
  /* Container holding the two images side-by-side on mobile */
  .mobile-images-wrapper {
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .mobile-images-wrapper img {
    min-height: auto;
    border-radius: 16px;
  }
}

/* --- Pricing Table --- */
.pricing-container {
    width: 100%;
    background-color: #F7F7F7;
    border-radius: 24px;
    padding: 40px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    overflow: hidden;
    /* Replace 'blueprint-bg.png' with your SVG/PNG line-art background */
    background-image: url('../images/tabel-bg.png');
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: contain;
    height: 350px;
}
.section-title {
 font-family: 'Lunchtype', sans-serif; /* Add title font family */
 font-size: 40px;
 letter-spacing: -5%;
  font-weight: 400; /* Add thin weight for title */
  color: var(--primary-red);
  line-height: 1;
  text-align: start;
}

/* Specific styles for "perfect home" */
.perfect-home {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--primary-red); /* Placeholder color, replace with your exact color */
  font-style: italic; /* Set italic style */
  font-weight: 400; /* Adjust weight if needed */
  letter-spacing: -5%;
  font-size: 40px;
}
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}
.table-responsive{
    flex: 1.2;
    max-width: 540px;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03);
    z-index: 2; 
}
.pricing-table th {
      background-color: #000;
      color: #ffffff;
      padding: 18px 28px;
      font-size: 1.05rem;
      font-weight: 400;
    }
.pricing-table th, .pricing-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
  font-size: 19px;
}

.btn-table {
  background-color: var(--primary-red);
  color: #fff;
  border: none;
  padding: 6px 14px;
  border-radius: 4px;
  cursor: pointer;
}
/* --- Mobile View Adjustments --- */
@media (max-width: 768px) {
  .pricing-container {
    flex-direction: column;
    align-items: flex-start;
    height: auto;
    padding: 30px 20px 40px;
    border-radius: 28px;
    gap: 20px;
    background-position: center bottom;
    background-size: cover;
  }

  .section-title {
    font-size: 36px;
    line-height: 1.1;
    color: var(--primary-red, #9e3b33);
    margin: 0;
  }

  .perfect-home {
    font-size: 36px;
    color: #000000;
    display: block;
    margin-top: 4px;
  }

  .pricing-subtitle {
    font-size: 16px;
    line-height: 1.45;
    color: #333333;
    margin-top: 16px;
    margin-bottom: 10px;
    font-weight: 300;
  }

  .table-responsive {
    max-width: 100%;
    width: 100%;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
  }

  /* Force table structure into card layout */
  .pricing-table, 
  .pricing-table tbody, 
  .pricing-table tr {
    display: block;
    width: 100%;
    background: transparent;
    border: none;
    box-shadow: none;
  }

  .pricing-table thead {
    display: none; /* Hide standard header row on mobile */
  }

  /* Individual White Card */
  .pricing-table tbody tr {
    background: #ffffff;
    border-radius: 18px;
    padding: 20px 24px;
    margin-bottom: 16px;
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas: 
      "bhk action"
      "sqft action";
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    border: none;
  }

  .pricing-table tbody tr:last-child {
    margin-bottom: 0;
  }

  .pricing-table td {
    padding: 0;
    border: none;
  }

  /* 3 BHK / 4 BHK Heading */
  .pricing-table td:nth-child(1) {
    grid-area: bhk;
  }

  .pricing-table td:nth-child(1) strong {
    font-size: 28px;
    font-weight: 700;
    color: #000000;
    display: block;
    line-height: 1.1;
  }

  /* Square Feet Text */
  .pricing-table td:nth-child(2) {
    grid-area: sqft;
    font-size: 14px;
    color: #444444;
    font-weight: 400;
    margin-top: 4px;
  }

  /* Action Button Container */
  .pricing-table td:nth-child(3) {
    grid-area: action;
    justify-self: end;
  }

  /* Pill-Shaped Get Details Button */
  .btn-table {
    background-color: var(--primary-red, #a13e36);
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 50px; /* Fully rounded pill shape */
    font-size: 15px;
    font-weight: 400;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(161, 62, 54, 0.2);
  }
}
/* --- Amenities Grid --- */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.amenities-section h2{
font-family: 'Lunchtype', sans-serif; /* Add title font family */
 font-size: 40px;
 letter-spacing: -5%;
  font-weight: 400;
  text-align: center;
  color: var(--primary-red);
  margin-bottom: 40px;
}
.amenities-section h2 span{
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    color: var(--text-dark);
}
.amenity-card {
  background: #D9D9D940;
  display: flex;
  gap: 10px;
  width: auto;
  padding: 10px 15px;
  border-radius: 50px;
  text-align: start;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  align-items: center;
   color: var(--text-dark);
}
.amenity-card:hover{background: var(--primary-red);color: var(--bg-white);} 
.amenity-card img{
  height: 50px;
    width: 50px;
    background: white;
    border-radius: 50px;
}
.amenity-card span {
  font-size: 16px;
  /* color: var(--text-dark); */
  display: block;
}
@media (max-width: 768px) {
  .amenities-grid {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Keeps cards sized to content */
    gap: 14px;
    max-height: 280px; /* Adjust height to fit ~4.5 cards */
    overflow-y: auto;
    padding-right: 16px; /* Space before the vertical scrollbar */
    scroll-behavior: smooth;

    /* Custom Vertical Scrollbar matching your image */
    scrollbar-width: thin;
    scrollbar-color: var(--primary-red, #a13232) #e0e0e0;
  }

  /* Webkit custom vertical scrollbar (Chrome, Safari, iOS, Android) */
  .amenities-grid::-webkit-scrollbar {
    width: 3px; /* Thin line on the right */
  }

  .amenities-grid::-webkit-scrollbar-track {
    background: #e5e5e5; /* Light grey vertical track */
    border-radius: 2px;
  }

  .amenities-grid::-webkit-scrollbar-thumb {
    background: var(--primary-red, #a13232); /* Red active scroll indicator */
    border-radius: 2px;
  }

  .amenity-card {
    width: max-content; /* Cards take content width like the reference */
    max-width: 88%;
  }
}

/* --- Gallery & Master Plan --- */
.gallery-section {
    width: 100%;
    margin: 0 auto;
}

/* Header Container */
.gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
}
.gallery-footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 28px;
}
.gallery-title {
    font-size: 40px;
    font-weight: 500;
    line-height: 1;
}

.title-brand {
    font-family: 'Lunchtype', sans-serif;
    letter-spacing: -5%;
    color: var(--primary-red);
    font-weight: 400;
}

.title-accent {
    font-family: 'Playfair Display', Georgia, serif;
    letter-spacing: -5%;
    font-weight: 400;
    font-style: italic;
    color: var(--text-dark);
    font-weight: 400;
    margin-left: 4px;
}

/* Navigation Arrow Controls */
.nav-controls {
    display: flex;
    gap: 12px;
}

.nav-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.nav-btn {
    background-color: #e5e5e5;
    color: #777777;
}


.nav-btn:hover {
    background-color: var(--primary-red);
    color: #ffffff;
}

.nav-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.nav-btn svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Carousel Track & Cards */
.carousel-container {
    overflow: hidden;
    width: 100%;
    border-radius:30px;
}

.carousel-track {
    display: flex;
    gap: 24px;
    transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.gallery-card {
    /* Show 2 cards at a time on desktop with gap factored in */
    flex: 0 0 calc((100% - 24px) / 2);
    position: relative;
    border-radius:30px;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background-color: #f0f0f0;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Gradient overlay for text readability */
.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 45%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0) 100%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    pointer-events: none;
}

.gallery-card .card-title {
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -0.01em;
}

/* Responsive Breakpoints */
@media (max-width: 768px) {
    /* Show 1 full card on smaller screens */
    .gallery-card {
    flex: 0 0 100%;
    }

    .gallery-title {
    font-size: 2.1rem;
    }

    .nav-btn {
    width: 36px;
    height: 36px;
    }

    .card-overlay {
    padding: 16px;
    }
    .gallery-footer {justify-content: center;}
}
/* --- Location Section --- */
.project-section {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* -----------------------------------
    1. Top Tab Navigation Bar 
----------------------------------- */
.tab-navigation {
    display: inline-flex;
    background-color: var(--text-dark);
    padding: 4px;
    border-radius: 50px;
    margin-bottom: 70px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.tab-btn {
    background: transparent;
    border: none;
    color: #ffffff;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 19px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
    white-space: nowrap;
}

.tab-btn.active {
    background-color: var(--primary-red);
    color: #ffffff;
    font-weight: 400;
}

.tab-btn:hover:not(.active) {
    color: rgba(255, 255, 255, 0.8);
}

/* -----------------------------------
    2. Tab Panels Outer Wrapper
----------------------------------- */
.tab-panel {
    display: none;
    width: 100%;
    animation: fadeIn 0.35s ease-in-out forwards;
}

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

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

/* -----------------------------------
    3. Master Plan View (Card Container)
----------------------------------- */
.master-plan-card {
    background-color: #F5F5F5;
    border-radius: 24px;
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.03);
}

.master-plan-card img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    border-radius: 12px;
}

/* -----------------------------------
    4. Interactive Slider View (Floor Plans / Videos)
----------------------------------- */
.slider-view-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Main Display Box with Side Navigation Arrows */
.slider-display-area {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    gap: 20px;
}

.main-slide-img {
    max-width: 100%;
    height: auto;
    max-height: 580px;
    object-fit: contain;
}

/* Arrow Buttons */
.arrow-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.25);
    border: none;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
    z-index: 10;
}

.arrow-btn:hover {
    background-color: var(--primary-red);
    transform: translateY(-50%) scale(1.05);
}

.arrow-btn.prev { left: 16px; }
.arrow-btn.next { right: 16px; }

.arrow-btn svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Dot Indicators */
.dot-pagination {
    display: flex;
    gap: 8px;
    margin-bottom: 32px;
    align-self: flex-start;
    padding-left: 12px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #93c54b; /* Matches green active dots in design */
    opacity: 0.4;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.dot.active {
    opacity: 1;
    transform: scale(1.2);
}

/* Bottom Thumbnail Navigation Track */
.thumbnail-scroll-container {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid #e0e0e0;
}

.thumb-arrow {
    background: none;
    border: none;
    cursor: pointer;
    color: #666;
    display: flex;
    align-items: center;
    padding: 4px;
}

.thumb-arrow svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.thumbnail-track {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-behavior: smooth;
    flex: 1;
    padding-bottom: 6px;
    /* Hide Scrollbar */
    scrollbar-width: none; 
    -ms-overflow-style: none;
}

.thumbnail-track::-webkit-scrollbar {
    display: none;
}

.thumb-item {
    flex: 0 0 130px;
    height: 70px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.2s ease;
    background-color: #f0f0f0;
}

.thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumb-item.active,
.thumb-item:hover {
    opacity: 1;
    border-color: var(--primary-red);
}

/* -----------------------------------
    5. Responsive Media Queries
----------------------------------- */
@media (max-width: 768px) {
    .master-plan-card {
    padding: 16px;
    border-radius: 16px;
    }

    .tab-navigation {
    width: 100%;
    justify-content: space-between;
    margin-bottom: 20px;
    }

    .tab-btn {
    flex: 1;
    padding: 10px 12px;
    font-size: 0.85rem;
    text-align: center;
    }

    .arrow-btn {
    width: 36px;
    height: 36px;
    }

    .thumb-item {
    flex: 0 0 90px;
    height: 50px;
    }
}

/* --- Testimonials --- */
.testimonial-section {
    width: 100%;
    margin: 0 auto;
}

/* Section Header */
.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}
.testimonial-title {
line-height: 1.2;
  letter-spacing: -5%;
  font-size: 40px;
}
.testimonial-title .title{
    font-family: 'Lunchtype', sans-serif;
    font-weight: 400;
    color: var(--primary-red);   
}

.testimonial-title .client {
    font-family: 'Playfair Display', Georgia, serif;
    letter-spacing: -5%;
    font-style: italic;
    color: var(--text-dark);
    font-weight: 400;
}

/* Navigation Arrows */
.nav-buttons {
    display: flex;
    gap: 12px;
}

.nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}

.nav-btn {
    background-color: #e2e2e2;
    color: #999999;
}

.nav-btn.prev:hover:not(:disabled) {
    background-color: #d0d0d0;
    color: var(--text-dark);
}

.nav-btn:hover {
    background-color: var(--primary-red);
    color: #ffffff;
}

.nav-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.nav-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* Carousel Wrapper */
.carousel-container {
    position: relative;
    overflow: hidden;
    padding: 15px 5px; /* Added padding to prevent cut-off on card zoom */
}

.carousel-track {
    display: flex;
    gap: 24px;
    transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

/* Testimonial Card */
.testimonial-card {
    /* Card width calculation for 2 full cards per view */
    flex: 0 0 calc((100% - 10px) / 2);
    background-color: #F5F5F5;
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 320px;
    transition: all 0.4s ease;
    opacity: 0.85;
    transform: scale(0.90);
}

/* Active Card Expanding Effect */
.testimonial-card.active {
    opacity: 1;
    transform: scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    background-color: #f7f6f4;
}

/* Quote Icon */
.quote-icon {
    margin-bottom: 24px;
}

.quote-icon svg {
    width: 42px;
    height: 42px;
    fill: var(--primary-red);
}

/* Card Content */
.card-text {
    font-size: 19px;
    line-height: 1.6;
    color: #2b2b2b;
    margin-bottom: 30px;
}

/* Author Details */
.author-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
}

.author-details {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-dark);
}

.star-rating {
  display: inline-flex;
  align-items: center;
}

.star-rating svg {
  width: 12px;
  height: 12px;
  fill: #FFB800; 
  /* fill: var(--text-dark); */
}
/* Pagination Dots */
.pagination-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 36px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #e0e0e0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: var(--primary-red);
    width: 12px;
    height: 12px;
}

/* Responsive Design */
@media (max-width: 900px) {
    .testimonial-card {
    flex: 0 0 100%; /* Single card visible on smaller screens */
    transform: none;
    }
    
    .testimonial-title {
    font-size: 30px;
    margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .testimonial-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    }

    .nav-buttons {
    align-self: center;
    }

    .testimonial-card {
    padding: 28px;
    }
}
.connectivity-section {
    margin: 0 auto;
}

/* Top Header Section */
.section-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    align-items: start;
}

.connectivity-section .section-title {
    font-size: 40px;
    font-weight: 400;
    color: var(--primary-red);
    line-height: 1;
    font-family: 'Lunchtype', sans-serif;
    letter-spacing: -5%;
    text-align: start;
}

.section-title span {
    display: block;
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    color: var(--text-dark);
    font-weight: 400;
    font-size: 40px;
    letter-spacing: -5%;
}

.section-description {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-dark);
}

/* Main Content Layout (Accordion + Map) */
.connectivity-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}

/* Accordion Container */
.accordion-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.accordion-item {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-header {
    width: 100%;
    padding: 22px 28px 10px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: 'Lunchtype', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: var(--text-dark);
    text-align: left;
}

.accordion-icon {
    font-size: 40px;
    font-weight: 400;
    color: var(--primary-red);
    line-height: 1;
    transition: transform 0.3s ease;
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease-out, padding 0.35s ease-out;
    padding: 0 28px;
}

.accordion-item.active .accordion-body {
    padding-bottom: 24px;
}

.accordion-body p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-dark);
    font-weight: 300;
    padding-bottom: 15px;
}

/* Map Box Container */
.map-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    min-height: 400px;
}

/* Responsive Breakpoints */
@media (max-width: 900px) {
    .section-header,
    .connectivity-content {
           display: flex;
        flex-direction: column-reverse;
    gap: 24px;
    }

    .section-title {
    font-size: 35px;
    }

    .section-title span {
    font-size: 35px;
    }

    .map-container {
    height: 350px;
    }
}
/* --- FAQ --- */
.faq-section h2{
font-family: 'Lunchtype', sans-serif; /* Add title font family */
 font-size: 40px;
 letter-spacing: -5%;
  font-weight: 400;
  text-align: center;
  color: var(--primary-red);
  margin-bottom: 40px;
}
.faq-section h2 span{
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    color: var(--text-dark);
}
.faq-item {
  background: #fff;
  border: 1px solid #F5F5F5;
  margin-bottom: 23px;
  border-radius: 16px;
}

.faq-question {
  width: 100%;
  padding: 18px;
  background: none;
  border: none;
  text-align: left;
  font-size: 19px;
  font-weight: 400;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
}
.faq-item.active .faq-question i::before {
  content: "\f068"; 
}
.faq-section .fa-plus::before{color: var(--primary-red);}
.faq-answer {
  padding: 0 18px 18px;
  display: none;
  color: var(--text-light);
  font-size: 18px;
}

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

/* --- Footer --- */
.site-footer {
    background-color: var(--bg-dark);
    background-image: radial-gradient(circle at 80% 50%, #181818 0%, #080808 100%);
    position: relative;
    padding: 60px 20px 20px;
    overflow: hidden;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: start;
}

/* Left Column Content */
.footer-left {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* Top Logos & Badges Header */
.footer-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.footer-top-row img{width: 80px;}
.brand-logos {
    display: flex;
    align-items: center;
    gap: 20px;
}
.brand-logos img{width: 180px;}


.evoq-logo-text {
   font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
    text-transform: lowercase;
    color: var(--bg-white);
    text-align: right;
}

.evoq-logo-sub {
    font-size: 0.55rem;
    letter-spacing: 1.5px;
    color: var(--primary-red);
    display: block;
    text-transform: uppercase;
}

/* Contact Pills */
.contact-pills {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.pill-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #171717;
    border: 1px solid #2a2a2a;
    padding: 9px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--bg-white);
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.pill-item:hover {
    background-color: #282828;
}

.pill-item svg {
    width: 14px;
    height: 14px;
    fill: var(--bg-white);
}

/* Disclaimer Section */
.disclaimer-block {
    border-bottom: 1px solid #3B3B3B;
    padding-bottom: 24px;
}

.section-label {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--bg-white);
    margin-bottom: 12px;
}

.section-label span {
   font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-weight: 400;
}

.disclaimer-text {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--bg-white);
}

/* Bottom Info (RERA & Note) */
.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.info-item .section-label {
    font-size: 1rem;
    margin-bottom: 8px;
}

.info-value {
    font-size: 0.85rem;
    color: var(--bg-white);
    line-height: 1.5;
}

/* Right Column: Registration Card */
.register-card {
    background-color: var(--bg-white);
    border-radius: 20px;
    padding: 36px 32px;
    color: var(--text-dark);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-red);
    line-height: 1.2;
    margin-bottom: 24px;
}

.card-title span {
    display: block;
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    color: var(--text-dark);
    font-weight: 400;
    font-size: 1.5rem;
}

.register-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

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

.form-group label {
    font-size: 0.82rem;
    font-weight: 400;
    color: #333333;
}

.form-control {
    width: 100%;
    padding: 12px 18px;
    border: 1px solid #e2e2e2;
    border-radius: 30px;
    font-family: 'Lunchtype', sans-serif;
    font-size: 0.85rem;
    outline: none;
    transition: border-color 0.3s ease;
}

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

.form-control::placeholder {
    color: #bbbbbb;
}

.submit-btn {
    margin-top: 10px;
    background-color: var(--primary-red);
    color: var(--bg-white);
    border: none;
    padding: 14px 28px;
    border-radius: 30px;
    font-family: 'Lunchtype', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: fit-content;
    align-self: center;
}

.submit-btn:hover {
    background-color: var(--dark-red);
}

/* Bottom Copyright Bar */
.footer-bottom-bar {
    margin-top: 50px;
    border-top: 1px solid #1a1a1a;
    padding-top: 16px;
    text-align: center;
    font-size: 0.78rem;
    color: #fff;
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
    .footer-container {
      display: flex;
      flex-direction: column-reverse;
      gap: 40px;
    }

    .register-card {
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
    }
}

@media (max-width: 600px) {
    .info-grid {
    grid-template-columns: 1fr;
    }

    .footer-top-row {
    flex-direction: row;
    align-items: flex-start;
    }
   
    .footer-top-row img {width: 55px;}
     .brand-logos img { width: 180px;}
    .contact-pills {
    flex-direction: column;
    width: 100%;
    }

    .pill-item {
    width: 100%;
    justify-content: center;
    }
}

/* --- Modal --- */
.modal {
  display: none;
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  width: 90%;
  max-width: 400px;
  position: relative;
}
.modal-content h3 {
 font-family: 'Lunchtype', sans-serif; /* Add title font family */
 font-size: 30px;
 letter-spacing: -5%;
  font-weight: 400; /* Add thin weight for title */
  color: var(--text-dark);
  line-height: 1;
  text-align: start;
}

/* Specific styles for "perfect home" */
.modal-content h3 span {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--primary-red); /* Placeholder color, replace with your exact color */
  font-style: italic; /* Set italic style */
  font-weight: 400; /* Adjust weight if needed */
  letter-spacing: -5%;
  font-size: 30px;
}
.modal-enquire-form{margin-top: 20px;}
.close-modal {
  position: absolute;
  top: 10px; right: 15px;
  font-size: 1.5rem;
  border: none;
  background: none;
  cursor: pointer;
}

.modal-content input {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
  border: 1px solid rgba(197, 47, 48, 0.11);
  border-radius: 50px;
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {}
@media (min-width: 1900px) {
  .hero-brand-logo {top: 15%;}
  .hero-brand-logo img{width: 100px;}
  .hero-offer-card {bottom: 10%;}
  .sidebar-form {
    position: fixed;

top: 70px;

right: 0;

width: var(--sidebar-width);

height: calc(100vh - 70px);

z-index: 99;

background-color: transparent;

box-shadow: 0 10px 25px rgba(0,0,0,0.12);

border: 1px solid var(--border-color);
  }
}
@media (max-width: 1024px) {
  .nav-container{grid-template-columns: 0.5fr 4.5fr 1fr;}
  .hero-brand-logo {top: 5%; left: 20%;}
  .hero-brand-logo img{ width: 50px;}
  .hero-offer-card {bottom: 3%;}
  .main-content {
    margin-right: 0;
  }
  .schedule-btn {margin: 10px 0;}
  .sidebar-form {
    position: static; /* Restores normal block layout flow */
    width: 100%;
    max-width: 500px;
    margin: 24px auto;
    z-index: 1;
    height: auto;
  }
  .sidebar-quick-actions{
      /*flex-direction: row;*/
      display: none;
  }
  .sidebar-card {
    max-width: 500px;
    margin: 0 auto;
    border: 1px solid var(--border-color);
  }
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .btn-phone {
    display: none;
  }
}

@media (max-width: 768px) {
  .section-padding {
    padding: 20px 5%;
}
.slider-display-area {flex-direction: column;}
  .mobile-menu-btn {
    display: block !important; /* Show hamburger icon */
  }

  /* Hide mobile call text if needed to save header space */
  .btn-phone span {
    display: none;
  }
  .nav-container{
    display: flex;
    justify-content: space-between;
  }
  .nav-actions{display: none;}
  /* Slide-down / Overlay navigation menu */
  .nav-links {
    display: none; /* Hide by default on mobile */
    position: absolute;
    top: 100%; /* Sits right below the navbar */
    left: 0;
    width: 100%;
    background-color: #ffffff; /* Solid white background so hero text doesn't show through */
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    z-index: 99999; /* Forces the menu above the hero slider and card */
  }

  /* When JS adds the .active class */
  .nav-links.active {
    display: flex !important;
  }

  /* Make links clean, stacked, and easy to tap */
  .nav-links a {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px 0;
    color: #333333;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
  }

  .nav-links a:last-child {
    border-bottom: none;
  }
}
.floating-actions-wrapper {display: none;}
@media (max-width: 767px) {
  .floating-actions-wrapper {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    top: auto;
    transform: none;
    width: 100%;
    background-color: #ffffff; 
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1);
    border-top: 1px solid #eef0f2;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    padding: 8px 0 calc(8px + env(safe-area-inset-bottom, 0px)) 0;
    z-index: 99999;
    height: 60px;
  }

  /* Split the bar into 3 perfectly identical structural blocks */
  .floating-actions-wrapper > a, 
  .floating-actions-wrapper > button {
    font-family: 'Lunchtype', sans-serif;
    flex: 1;
    display: flex;
    flex-direction: column; /* Icon stacked neatly on top of text */
    align-items: center;
    justify-content: center;
    background: transparent !important; /* Removes background to merge into bar */
    color: var(--primary-red); /* Neutral dark tint for general icon & text colors */
    border: none !important;
    border-radius: 0 !important;
    margin: 0 !important;
    padding: 4px 0 !important;
    text-decoration: none;
    box-sizing: border-box;
    box-shadow: none;
    font-size: 16px;
    font-weight: 500;
  }

  /* Add subtle vertical divider lines between our 3 slots */
  .floating-actions-wrapper > a:not(:last-child),
  .floating-actions-wrapper > button:not(:last-child) {
    border-right: 1px solid #eef0f2 !important;
  }

  /* Icon Rules */
  .floating-actions-wrapper i {
    font-size: 20px !important;
    margin-bottom: 3px;
    display: inline-block;
  }
  
  .floating-actions-wrapper img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    margin-bottom: 3px;
  }

  /* Unified Label Text Rules */
  .floating-actions-wrapper .btn-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    display: block !important;
  }
  
  /* Highlight the Call To Action text or icon if you want it to stand out slightly */
  .floating-actions-wrapper .sticky-enquiry-btn {
    writing-mode: horizontal-tb !important;
    transform: rotate(0deg) !important;
  }
}