html {
  scroll-behavior: smooth;
}

:root {
  --primary: #901749;
  --primary-hover: #7a123d;
  --secondary: #212121;
  --accent: #c59a5b;
  --accent-hover: #b0894b;
  --bg-light: #f5e4cf;
  --white: #FFFFFF;
  --text-color: #333333;
  --text-muted: #666666;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
  --shadow-sm: 0 2px 4px rgba(144, 23, 73, 0.05);
  --shadow-md: 0 10px 25px rgba(144, 23, 73, 0.1);
  --shadow-lg: 0 20px 40px rgba(144, 23, 73, 0.15);
  --radius: 12px;
}

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

body {
  font-family: var(--font-body);
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--bg-light);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  color: var(--primary);
  margin-bottom: 1rem;
}

h2 {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  display: block;
}

h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin: 10px auto 0;
  border-radius: 2px;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

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

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

.overview p {
  max-width: 1100px !important;
  font-size: 1.15rem;
  color: #444;
  margin-left: auto;
  margin-right: auto;
}

.mt-4 {
  margin-top: 1.5rem;
}

.w-full {
  width: 100%;
}

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

/* Buttons */
button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  padding: 14px 28px;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(122, 27, 41, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(122, 27, 41, 0.35);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(122, 27, 41, 0.2);
}

.btn-secondary {
  background-color: var(--secondary);
  color: var(--white);
}

.btn-secondary:hover {
  background-color: #000;
}

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

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

.btn-outline {
  background-color: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}

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

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 5%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: top 0.3s ease;
}

header .btn-primary {
  padding: 8px 16px;
  font-size: 0.9rem;
}

.logo-img {
  max-height: 50px;
  width: auto;
}

.desktop-nav {
  display: flex;
  gap: 1.5rem;
}

.desktop-nav a {
  color: var(--secondary);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.desktop-nav a:hover {
  color: var(--primary);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: 2rem 5%;
  overflow: hidden;
}

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

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out, transform 10s ease-out;
  transform: scale(1);
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1.05);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.2) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1;
  min-width: 300px;
  color: var(--white);
}

.hero-text h1 {
  color: var(--white);
  font-size: 3.5rem;
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-text h3 {
  color: var(--accent);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  font-family: var(--font-body);
  font-weight: 400;
}

.partner-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  padding: 4px 12px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.hero-price-box {
  background: rgba(0, 0, 0, 0.6);
  padding: 1.5rem;
  border-left: 4px solid var(--accent);
  display: inline-block;
  backdrop-filter: blur(5px);
}

.hero-price-box .typology {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.hero-price-box .price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
}

.hero-featured-box {
  background: var(--white);
  padding: 1.2rem;
  border-radius: 16px;
  width: 100%;
  max-width: 380px;
  box-shadow: var(--shadow-lg);
  position: relative;
  text-align: center;
  border-top: 6px solid var(--primary);
  color: #333;
  margin-top: 1rem;
}

.hero-featured-box .badge-top {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #eee;
}

.hero-featured-box h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.2rem;
  color: #212121;
}

.hero-featured-box .location-tag {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1.2rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #f4f4f4;
  padding: 0.8rem;
  margin: 1rem 0;
  border-radius: 8px;
  text-align: left;
  gap: 10px;
}

.hero-stats div span {
  display: block;
  font-size: 0.75rem;
  color: #666;
  text-transform: uppercase;
}

.hero-stats div strong {
  font-size: 0.95rem;
  color: #212121;
}

.promo-offer {
  background: var(--primary);
  color: var(--white);
  padding: 0.6rem;
  border-radius: 8px;
  margin: 0.8rem 0;
  border: 2px dashed rgba(255, 255, 255, 0.4);
}

.promo-offer p {
  margin: 0.2rem 0;
  font-weight: 600;
  font-size: 0.9rem;
}

.hero-featured-box .starting-at {
  font-size: 0.85rem;
  color: #444;
  margin-bottom: 0.3rem;
}

.hero-featured-box .price-tag {
  font-size: 2.2rem;
  font-weight: 800;
  color: #212121;
  margin-bottom: 1.2rem;
}

.hero-featured-box .price-tag small {
  font-size: 1rem;
  color: #666;
  font-weight: 500;
}

.hero-form-mini {
  margin-top: 1rem;
}

.hero-form-mini .price-tag {
  margin-bottom: 1rem;
}

.hero-form-mini .lead-form {
  gap: 0.8rem;
}

.hero-form-mini .lead-form input {
  padding: 10px 14px;
  font-size: 0.9rem;
}

.hero-form-mini .btn-primary {
  padding: 12px;
  font-size: 1rem;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.lead-form input {
  padding: 14px 16px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  background-color: #ffffff;
  color: #1e293b;
  transition: all 0.3s ease;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05);
}

.lead-form input:focus {
  outline: none;
  border-color: var(--primary);
  background-color: var(--white);
  box-shadow: 0 0 0 3px rgba(144, 23, 73, 0.1);
}

.lead-form input::placeholder {
  color: #94a3b8;
  opacity: 1;
}

.lead-form input:focus::placeholder {
  color: #cbd5e1;
}

.btn-processing {
  opacity: 0.8 !important;
  cursor: not-allowed;
  position: relative;
}

@keyframes pulse {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0.6;
  }

  100% {
    opacity: 1;
  }
}

.btn-processing span {
  animation: pulse 1.5s infinite;
}

section {
  padding: 4rem 5%;
  position: relative;
}

section:nth-child(even) {
  background: radial-gradient(circle at center, rgba(144, 23, 73, 0.03) 0%, transparent 70%);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  max-width: 1300px;
  margin: 0 auto;
}

.highlight-item {
  text-align: center;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.highlight-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.highlight-item img {
  margin: 0 auto 1.5rem;
  border-radius: calc(var(--radius) - 4px);
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.highlight-item p {
  font-weight: 600;
  color: var(--secondary);
}

.amenities {
  content-visibility: auto;
  contain-intrinsic-size: 1px 600px;
}

.grid-5 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.amenity-item {
  background: var(--white);
  padding: 0;
  overflow: hidden;
  text-align: center;
  border-radius: var(--radius);
  font-weight: 500;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.amenity-item img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.amenity-item p {
  padding: 1rem;
  margin: 0;
  font-size: 0.95rem;
  color: var(--secondary);
}

.amenity-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.amenity-item:hover img {
  transform: scale(1.1);
}

.gallery {
  content-visibility: auto;
  contain-intrinsic-size: 1px 400px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.grid-3 img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s;
}

.grid-3 img:hover {
  transform: scale(1.03);
}

/* Pricing Section */
.pricing {
  content-visibility: auto;
  contain-intrinsic-size: 1px 500px;
}

.pricing-table-container {
  overflow-x: auto;
  margin: 0 auto;
  max-width: 1100px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(144, 23, 73, 0.1);
}

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

.pricing-table th,
.pricing-table td {
  padding: 1.25rem 1rem;
  border-bottom: 1px solid rgba(144, 23, 73, 0.05);
  font-size: 1rem;
}

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

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

.pricing-table tbody tr:hover {
  background-color: var(--bg-light);
}

.price-text {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent);
}

/* Floor Plan */
.floor-plan {
  content-visibility: auto;
  contain-intrinsic-size: 1px 1000px;
}

.floor-plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.floor-plan-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.floor-plan-card .img-wrapper {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.floor-plan-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.floor-plan-card:hover img {
  transform: scale(1.05);
}

.floor-plan-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.floor-plan-info {
  padding: 1.5rem;
  background: var(--bg-light);
}

.floor-plan-info p {
  margin: 0;
  font-size: 0.9rem;
  color: #666;
}

.floor-plan-info .price-text {
  margin-top: 0.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
}

.overlay-cta {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Location */
.location-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  max-width: 1300px;
  margin: 0 auto;
  align-items: flex-start;
}

.connectivity ul li {
  padding: 6px 0;
  border-bottom: 1px solid #eee;
  position: relative;
  padding-left: 25px;
  font-size: 0.95rem;
}

.connectivity ul li::before {
  content: '✓';
  color: var(--primary);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Final CTA */
.final-cta {
  background-color: var(--secondary);
  color: var(--white);
  text-align: center;
}

.final-cta h2 {
  color: var(--accent);
}

.final-form-container {
  max-width: 500px;
  margin: 2rem auto 0;
  background: var(--white);
  padding: 2rem;
  border-radius: 8px;
}

/* Footer */
footer {
  background: #111;
  color: #888;
  text-align: center;
  padding: 2rem;
}

/* Sticky Bottom Bar */
.sticky-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  z-index: 1001;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 5%;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.sticky-info {
  display: flex;
  flex-direction: column;
}

.sticky-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sticky-price {
  font-size: 0.8rem;
  color: #666;
}

.sticky-price strong {
  color: var(--primary);
  font-weight: 700;
}

.sticky-actions {
  display: flex;
  gap: 12px;
}

.sticky-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  color: #fff;
}

.sticky-cta svg {
  width: 18px;
  height: 18px;
}

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

.sticky-cta.whatsapp {
  background-color: #25D366;
}

.sticky-cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
}

@media (max-width: 600px) {
  .sticky-info {
    display: none;
  }
  .sticky-actions {
    width: 100%;
    justify-content: space-around;
  }
  .sticky-cta {
    flex: 1;
    justify-content: center;
  }
}

/* Modal Styling */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 16px;
  width: 90%;
  max-width: 500px;
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

.close-modal {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 2rem;
  cursor: pointer;
  color: #94a3b8;
  line-height: 1;
  transition: color 0.3s;
}

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

.modal-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.modal-content p {
  color: #64748b;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

/* Prevent body scroll when modal is open */
body.modal-open {
  overflow: hidden;
}

@media (min-width: 769px) {
  .sticky-bottom-bar {
    display: none;
  }
}

.sticky-btn {
  flex: 1;
  text-align: center;
  padding: 15px 0;
  font-weight: 600;
  font-size: 1rem;
  color: var(--white);
  border: none;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
}

.sticky-btn:last-child {
  border-right: none;
}

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

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

.whatsapp-btn {
  background-color: #25D366;
}

/* Modal */
.modal-overlay {
  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: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 16px;
  max-width: 500px;
  width: 90%;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(144, 23, 73, 0.25);
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s ease;
}

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

.close-modal {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 1.8rem;
  cursor: pointer;
  color: #a0aec0;
  transition: color 0.3s ease;
}

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

.modal-content h3 {
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-size: 1.6rem;
  text-align: center;
}

.modal-content p {
  margin-bottom: 2rem;
  font-size: 0.95rem;
  color: #64748b;
  text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
  section {
    padding: 1.5rem 5%;
  }

  h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }

  .desktop-nav {
    display: none;
  }

  .hero {
    min-height: 70vh;
    padding-top: 4rem;
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .hero-text h1 {
    font-size: 1.8rem;
  }

  .hero-text h3 {
    font-size: 1.1rem;
  }

  .hero-price-box {
    padding: 0.6rem;
    width: 100%;
  }

  .hero-price-box .price {
    font-size: 1.3rem;
  }

  .hero-form-container {
    padding: 1rem;
    max-width: 100%;
  }

  header .btn-primary {
    padding: 6px 10px;
    font-size: 0.75rem;
  }

  .grid-4,
  .grid-5,
  .grid-3,
  .floor-plan-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
  }

  .amenity-item img {
    height: 150px;
  }

  .pricing-table th,
  .pricing-table td {
    padding: 0.5rem 0.2rem;
    font-size: 0.65rem;
  }

  .pricing-table .btn-primary {
    padding: 5px 8px;
    font-size: 0.65rem;
    width: auto;
    white-space: nowrap;
    line-height: 1;
    border-radius: 4px;
  }

  .location-content {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  body {
    padding-bottom: 70px;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 1.8rem;
  }

  .grid-4,
  .grid-5,
  .grid-3,
  .floor-plan-grid {
    grid-template-columns: 1fr;
  }
}

/* Desktop Floating Actions */
.desktop-floating-actions {
  position: fixed;
  bottom: 40px;
  right: 24px;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (max-width: 768px) {
  .desktop-floating-actions {
    display: none;
  }
}

.d-action-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  border: none;
  cursor: pointer;
  padding: 0;
}

.d-action-btn:hover {
  transform: scale(1.1);
}

.d-action-btn.call {
  background-color: #901749;
}

.d-action-btn.enquire {
  background-color: #c59a5b;
}

.d-action-btn.whatsapp {
  background-color: #25D366;
}

.d-action-btn svg {
  width: 26px;
  height: 26px;
}

.d-tooltip {
  position: absolute;
  right: 100%;
  margin-right: 15px;
  background: white;
  color: #333;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  white-space: nowrap;
  border: 1px solid #eee;
}

.d-action-btn:hover .d-tooltip {
  opacity: 1;
}

button.d-action-btn {
  appearance: none;
  -webkit-appearance: none;
}

/* Form Consent */
.form-consent {
  margin-bottom: 1rem;
  text-align: left;
}

.form-consent label {
  display: flex;
  gap: 12px;
  cursor: pointer;
  font-size: 0.65rem;
  color: #64748b;
  line-height: 1.4;
  align-items: flex-start;
}

.form-consent input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  flex-shrink: 0;
  cursor: pointer;
}

.form-consent a {
  color: var(--primary);
  text-decoration: underline;
  display: inline;
}

/* Top Disclaimer Bar */
.top-disclaimer-bar {
  background: #f8f9fa;
  color: #888;
  text-align: center;
  padding: 2px 5%;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.1px;
  border-bottom: 1px solid #eee;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}

@media (max-width: 480px) {
  .top-disclaimer-bar {
    font-size: 8px;
    padding: 2px 2%;
  }
}

/* Footer Update */
footer {
  background: #111;
  color: #999;
  padding: 4rem 5%;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.rera-info {
  margin-bottom: 2.5rem;
  border-bottom: 1px solid #222;
  padding-bottom: 2rem;
}

.rera-title {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.rera-numbers {
  display: flex;
  gap: 2rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.rera-numbers p {
  color: #ccc;
  font-size: 0.95rem;
}

.rera-numbers strong {
  color: var(--accent);
}

.maharera-link {
  font-size: 0.85rem;
}

.maharera-link a {
  color: var(--accent);
  text-decoration: underline;
}

.footer-disclaimer {
  font-size: 0.75rem;
  line-height: 1.7;
  color: #777;
  margin-bottom: 2.5rem;
  text-align: justify;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #222;
  font-size: 0.85rem;
}

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
}

.footer-legal-links a {
  color: var(--accent);
  transition: color 0.3s;
}

.footer-legal-links a:hover {
  color: var(--white);
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}