@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --primary-color: #000000;
  --primary-hover: #1a1a1a;
  --bg-main: #dbe4e9;
  --bg-white: #ffffff;
  --bg-light: #f5f8fa;
  --text-body: #33373d;
  --text-heading: #22252a;
  --text-light: #6b7280;
  --border-color: #cbd5e1;
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --font-family: 'Outfit', sans-serif;
  --header-height: 80px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-main);
  color: var(--text-body);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* Common Layout Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding {
  padding: 80px 0;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-heading);
  text-align: center;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: var(--primary-color);
  margin: 15px auto 0;
  border-radius: 2px;
}

/* Button Custom Styles */
.btn {
  display: inline-block;
  padding: 12px 28px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition-normal);
  border: none;
  text-align: center;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--bg-white);
  border-radius: 0 0 0 20px;
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  border-radius: 0 0 0 20px;
}

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

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: var(--bg-white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  z-index: 1000;
  display: flex;
  align-items: center;
  border-bottom: 2px solid #cbd5e1;
}

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

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

.crest-svg {
  flex-shrink: 0;
}

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

.logo-title {
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 1.5px;
  color: #4a154b;
  line-height: 1.1;
}

.logo-subtitle {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: #b59a57;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
  gap: 0;
}

.nav-link {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #555555;
  padding: 0 16px;
  position: relative;
  transition: var(--transition-fast);
}

.nav-link:hover {
  color: #4a154b;
}

.nav-link:not(:last-child)::after {
  content: "|";
  position: absolute;
  right: -2px;
  top: -1px;
  color: #b59a57;
  font-size: 0.85rem;
  opacity: 0.7;
}

.header-contact {
  display: flex;
  align-items: center;
  margin-left: 20px;
}

.header-phone-btn {
  display: inline-flex;
  align-items: center;
  background-color: rgb(107 123 25);
  color: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid #b59a57;
  transition: all var(--transition-normal);
  text-decoration: none;
}

.header-phone-btn:hover {
  background-color: #4a154b;
  color: #fff;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--text-heading);
  transition: var(--transition-normal);
}

/* Hero Section */
.hero-section {
  position: relative;
  margin-top: var(--header-height);
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 70%, rgba(0,0,0,0.75) 100%), url('images/banner/banner-1.jpg') no-repeat center/cover;
  padding: 100px 0 160px 0;
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
} 

.hero-grid {
  display: flex;  
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

.hero-content {
  color: var(--bg-white);
}

.hero-tag-inline {
  background-color: rgb(107 123 25);
  color: var(--bg-white);
  padding: 8px 16px;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 20px;
  border-left: 3px solid #b59a57;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

.hero-content p {
  font-size: 1.3rem;
  opacity: 0.95;
  margin-bottom: 30px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.hero-details-row {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  padding: 24px 20px;
}

.hero-detail-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--bg-white);
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.85);
}

.detail-dot {
  width: 8px;
  height: 8px;
  background-color: #b59a57;
  border-radius: 50%;
  flex-shrink: 0;
}

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

.detail-text small {
  font-size: 0.75rem;
  color: yellow;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.detail-text strong {
  font-size: 1.05rem;
  font-weight: 700;
}

/* Form Styles */
.form-container {
  background-color: var(--bg-light);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  border: 1px solid var(--border-color);
}

.form-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
  color: var(--text-heading);
}

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

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-heading);
}

.form-input {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-family: var(--font-family);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.form-input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0,0,0,0.05);
}

.form-phone-wrapper {
  display: flex;
  gap: 10px;
}

.form-country-code {
  width: 90px;
  background-color: var(--bg-white);
}

.form-submit {
  width: 100%;
  margin-top: 10px;
}

.form-terms {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 15px;
  text-align: center;
  line-height: 1.4;
}

/* Overview Section */
.overview-section {
  background-color: var(--bg-white);
}

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

.overview-text h3 {
  font-size: 1.5rem;
  color: var(--text-heading);
  margin-bottom: 15px;
}

.overview-text p {
  margin-bottom: 25px;
  color: var(--text-body);
}

.highlights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.highlight-card {
  background-color: var(--bg-light);
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid var(--primary-color);
}

.highlight-card h4 {
  font-size: 1.1rem;
  color: var(--text-heading);
  margin-bottom: 5px;
}

.highlight-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 0;
}

/* About Developer */
.developer-section {
  background-color: var(--bg-light);
}

.developer-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.developer-content p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

/* Pricing Section */
.pricing-section {
  background-color: var(--bg-white);
}

.pricing-table-wrapper {
  overflow-x: auto;
  margin-bottom: 40px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 600px;
}

.pricing-table th, .pricing-table td {
  padding: 18px 24px;
  border-bottom: 1px solid var(--border-color);
}

.pricing-table th:nth-child(3),
.pricing-table td:nth-child(3) {
  white-space: nowrap;
}

.pricing-table th {
  background-color: var(--bg-light);
  font-weight: 700;
  color: var(--text-heading);
}

.pricing-table tr:last-child td {
  border-bottom: none;
}

.pricing-table tr:hover td {
  background-color: rgba(219, 228, 233, 0.2);
}

.pricing-cta-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Site & Floor Plan */
.plan-section {
  background-color: var(--bg-light);
}

.plan-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
}

.plan-tab {
  padding: 10px 24px;
  border-radius: 20px;
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
}

.plan-tab.active {
  background-color: var(--primary-color);
  color: var(--bg-white);
  border-color: var(--primary-color);
}

.plan-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
}

.masterplan-container {
  background-color: var(--bg-white);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.floorplan-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.floorplan-card {
  background-color: var(--bg-white);
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  display: flex;
  gap: 15px;
  align-items: center;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition-fast);
}

.floorplan-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.floorplan-card.active {
  border-color: #b59a57;
  background-color: rgba(181, 154, 87, 0.05);
}

.floorplan-card.active .btn-outline {
  background-color: #4a154b;
  color: #fff;
  border-color: #4a154b;
}

.floorplan-img-wrapper {
  width: 120px;
  height: 120px;
  flex-shrink: 0;
  background-color: var(--bg-light);
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.floorplan-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(4px); /* Blur to prompt enquiry */
}

.floorplan-blur-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.floorplan-info {
  flex-grow: 1;
}

.floorplan-info h4 {
  font-size: 1.1rem;
  color: var(--text-heading);
  margin-bottom: 5px;
}

.floorplan-info p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 10px;
}

/* Amenities Section */
.amenities-section {
  background-color: var(--bg-white);
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
}

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

.amenity-card:hover {
  background-color: var(--bg-white);
  border-color: var(--primary-color);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.amenity-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 15px;
  background-color: var(--primary-color);
  color: var(--bg-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.amenity-card p {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-heading);
}

/* Gallery Section */
.gallery-section {
  background-color: var(--bg-light);
}

.gallery-grid-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 20px;
}

.gallery-item-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  cursor: pointer;
  background-color: var(--bg-white);
  transition: all var(--transition-normal);
}

/* Mosaic span styling */
.gallery-item-card:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item-card:nth-child(8) {
  grid-column: span 2;
  grid-row: span 1;
}

.gallery-item-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

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

.gallery-item-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(transparent, rgba(17, 19, 23, 0.9));
  padding: 25px 20px 20px;
  color: var(--bg-white);
  display: flex;
  flex-direction: column;
  gap: 5px;
  transform: translateY(10px);
  opacity: 0.9;
  transition: all var(--transition-normal);
}

.gallery-item-card:hover .gallery-item-info {
  transform: translateY(0);
  opacity: 1;
}

.gallery-item-tag {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #b59a57;
  letter-spacing: 1px;
}

.gallery-item-title {
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.2;
}

/* Hide animation during filter transition */
.gallery-item-card.hide {
  display: none;
}

/* Hide initial view-more gallery items */
.gallery-item-card.gallery-hidden {
  display: none !important;
}

@media (max-width: 991px) {
  .gallery-grid-mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }
  .gallery-item-card:nth-child(1),
  .gallery-item-card:nth-child(8) {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 576px) {
  .gallery-grid-mosaic {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }
}

/* Highlights Section */
.highlights-section {
  background-color: var(--bg-white);
}

.highlights-grid-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.highlights-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

.highlights-bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.highlight-marker {
  color: #b59a57;
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 700;
  flex-shrink: 0;
}

.highlight-item-text {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.6;
}

.highlight-item-text strong {
  color: var(--text-heading);
  font-weight: 600;
}

.highlights-image-wrapper {
  position: relative;
  height: 100%;
}

@media (max-width: 991px) {
  .highlights-grid-split {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* Location Section */
.location-section {
  background-color: var(--bg-white);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.location-info h3 {
  font-size: 1.6rem;
  color: var(--text-heading);
  margin-bottom: 15px;
}

.location-address {
  margin-bottom: 25px;
  font-weight: 500;
}

.connectivity-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}

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

.connectivity-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--primary-color);
  margin-top: 8px;
  flex-shrink: 0;
}

.location-map {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  height: 350px;
  border: 1px solid var(--border-color);
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Virtual Tour Section */
.tour-section {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1545324418-cc1a3fa10c00?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
  padding: 100px 0;
  text-align: center;
  color: var(--bg-white);
}

.tour-content {
  max-width: 600px;
  margin: 0 auto;
}

.tour-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.tour-desc {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 30px;
}

.play-btn {
  width: 80px;
  height: 80px;
  background-color: var(--bg-white);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  font-size: 1.8rem;
  cursor: pointer;
  box-shadow: 0 0 0 0 rgba(255,255,255,0.4);
  animation: pulse 2s infinite;
  transition: var(--transition-normal);
}

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

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255,255,255,0.7);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(255,255,255,0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255,255,255,0);
  }
}

/* Footer Section */
footer {
  background-color: #f8fafc;
  color: var(--text-body);
  padding: 60px 0 100px; /* space for mobile sticky bar */
  font-size: 0.85rem;
  border-top: 1px solid var(--border-color);
}

.footer-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 20px;
}

.footer-logo img {
  height: 40px;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: var(--text-light);
}

.footer-links a:hover {
  color: #4a154b;
}

.footer-rera {
  background-color: #ffffff;
  color: var(--text-body);
  padding: 18px 24px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  border-left: 4px solid var(--primary-color);
}

.footer-rera strong {
  color: var(--text-heading);
}

.footer-disclaimer {
  line-height: 1.6;
  text-align: justify;
  color: var(--text-light);
}

/* Mobile Sticky Bar */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background-color: var(--bg-white);
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  z-index: 999;
}

.mobile-sticky-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  height: 100%;
}

.mobile-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-heading);
}

.mobile-btn-center {
  background-color: var(--primary-color);
  color: var(--bg-white);
}

.mobile-btn svg {
  width: 20px;
  height: 20px; 
  margin-bottom: 2px;
}

/* Modal Popup Window */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(5px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

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

.modal-content {
  background-color: var(--bg-white);
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.25);
  transform: translateY(-20px);
  transition: transform var(--transition-normal);
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

.modal-header {
  background-color: var(--bg-light);
  padding: 20px 25px;
  border-bottom: 1px solid var(--border-color);
  position: relative;
}

.modal-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-heading);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 1.5rem;
  font-weight: 700;
  cursor: pointer;
  color: var(--text-light);
  border: none;
  background: none;
  line-height: 1;
}

.modal-close:hover {
  color: var(--primary-color);
}

.modal-body {
  padding: 25px;
}

/* Thank You Popup State */
.thankyou-state {
  text-align: center;
  padding: 30px 10px;
}

.thankyou-icon {
  width: 60px;
  height: 60px;
  background-color: #22c55e;
  color: var(--bg-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px;
}

.thankyou-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 10px;
}

.thankyou-desc {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* Responsive Breakpoints */
@media (max-width: 991px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  
  .overview-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .plan-grid {
    grid-template-columns: 1fr;
  }
  
  .location-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .section-padding {
    padding: 40px 0;
  }

  header {
    height: 70px;
  }
  
  :root {
    --header-height: 70px;
  }
  
  .hero-section {
    padding: 0;
    min-height: auto;
    flex-direction: column;
    background: #111317;
  }

  .hero-grid {
    background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)), url('images/banner/banner-1.jpg') no-repeat center/cover;
    width: 100% !important;
    max-width: 100% !important;
    padding: 80px 20px;
    box-sizing: border-box;
  }
  
  .hero-details-row {
    position: static;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
    gap: 25px 15px;
    padding: 30px 20px;
    background: #f8fafc;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
  }

  .hero-detail-item {
    flex-direction: column;
    gap: 6px;
    text-align: center;
    color: var(--text-heading);
    text-shadow: none;
  }

  .hero-detail-item .detail-text small {
    color: #8c7333;
  }

  .hero-detail-item .detail-text strong {
    color: var(--text-heading);
  }

  .hero-detail-item .detail-dot {
    display: none;
  }

  .pricing-table {
    min-width: 100%;
  }

  .pricing-table th, .pricing-table td {
    padding: 12px 8px;
    font-size: 0.82rem;
  }

  /* Hide Enquire column in pricing table on mobile */
  .pricing-table th:nth-child(4),
  .pricing-table td:nth-child(4) {
    display: none;
  }

  /* Hide Enquire Now button in pricing CTA row on mobile */
  .pricing-cta-row .btn-primary {
    display: none;
  }

  /* Wrap layout and filter tabs to fit mobile screens */
  .plan-tabs {
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
    justify-content: center;
  }

  .plan-tab {
    padding: 8px 16px;
    font-size: 0.85rem;
  }
  
  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background-color: var(--bg-white);
    flex-direction: column;
    padding: 40px;
    gap: 25px;
    transition: var(--transition-normal);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    justify-content: flex-start;
    align-items: flex-start;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-link {
    padding: 0;
    font-size: 1.1rem;
  }
  
  .nav-link:not(:last-child)::after {
    display: none;
  }
  
  .header-contact {
    display: none;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
  
  .mobile-sticky-bar {
    display: block;
  }

  /* Footer mobile layout alignment */
  .footer-top {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .footer-rera {
    text-align: center;
    border-left: none;
    border-top: 4px solid var(--primary-color);
  }

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

/* Floating Side Sticky Form Panel */
.side-sticky-form {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 300px;
  z-index: 998;
  background-color: var(--bg-white);
  border-radius: 12px 0 0 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  border: 1px solid var(--border-color);
  border-right: none;
  padding: 20px;
  transition: transform var(--transition-normal);
}

.side-sticky-form.minimized {
  transform: translateY(-50%) translateX(300px);
}

.sticky-form-toggle {
  position: absolute;
  left: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 160px;
  background-color: #4a154b;
  color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-right: none;
  border-radius: 8px 0 0 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  text-transform: uppercase;
  transition: background-color var(--transition-fast);
}

.sticky-form-toggle:hover {
  background-color: #b59a57;
}

@media (max-width: 1024px) {
  .side-sticky-form {
    display: none; /* Hide on tablets and mobile screens, replaced by bottom bar */
  }
}

/* FAQ Section Accordion Styles */
.faq-section {
  background-color: var(--bg-light);
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 30px;
}

.faq-item {
  background-color: var(--bg-white);
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.faq-item.active {
  border-color: #b59a57;
}

.faq-question {
  width: 100%;
  padding: 20px 25px;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-heading);
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: #b59a57;
}

.faq-icon {
  font-size: 1.3rem;
  font-weight: 500;
  color: #b59a57;
  transition: transform var(--transition-normal);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal) ease-out;
  padding: 0 25px;
}

.faq-answer p {
  padding-bottom: 20px;
  color: var(--text-light);
  line-height: 1.6;
  font-size: 0.95rem;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

/* Custom Country Dropdown styles */
.custom-dropdown-container {
  position: relative;
  display: flex;
  gap: 8px;
  width: 100%;
  align-items: center;
}

.custom-dropdown-selected {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 26px 12px 10px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  background-color: var(--bg-white);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-heading);
  white-space: nowrap;
  user-select: none;
  min-width: 100px;
  height: 48px;
  box-sizing: border-box;
  position: relative;
}

.custom-dropdown-selected::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid #666;
  pointer-events: none;
  transition: transform 0.2s ease;
}

.custom-dropdown-container:has(.custom-dropdown-list.show) .custom-dropdown-selected::after {
  transform: translateY(-50%) rotate(180deg);
}

.custom-dropdown-list {
  display: none;
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  width: 220px;
  max-height: 200px;
  overflow-y: auto;
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  z-index: 1000;
  padding: 5px 0;
  margin: 0;
  list-style: none;
}

.custom-dropdown-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--text-body);
  transition: background-color var(--transition-fast);
}

.custom-dropdown-list li:hover {
  background-color: var(--bg-light);
}

.custom-dropdown-list.show {
  display: block;
}

.custom-phone-input {
  flex-grow: 1;
  height: 48px;
  box-sizing: border-box;
}
