* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
:root {
  --primary-color: #1e3a8a;
  --secondary-color: #d4af37;
  --accent-color: #c0c0c0;
  --dark-bg: #0f172a;
  --light-bg: #f8fafc;
  --card-bg: #ffffff;
  --text-dark: #1e293b;
  --text-light: #475569;
  --white: #ffffff;
  --black: #000000;
  --glass-bg: rgba(15, 23, 42, 0.8);
  --glass-border: rgba(255, 255, 255, 0.1);
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --radius-md: 12px;
  --radius-lg: 24px;
}

body {
  font-family: "Lato", sans-serif;
  line-height: 1.7;
  color: var(--text-dark);
  overflow-x: hidden;
  background-color: var(--light-bg);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Fixed Contact Buttons */
.fixed-buttons {
  position: fixed;
  z-index: 9999 !important;
  /* Always on top */
  will-change: transform, bottom;
}

/* 1. DEFAULT POSITION (Low, when search bar is hidden/not sticky) */
.call-button,
.whatsapp-button {
  bottom: 20px !important;
  transition: bottom 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  /* Smooth animation */
}

.call-button {
  left: 15px;
}

.whatsapp-button {
  right: 30px;
}

/* 2. RAISED POSITION (triggered when JavaScript adds this class) */
body.search-is-sticky .call-button,
body.search-is-sticky .whatsapp-button {
  bottom: 140px !important;
  /* Moves up to clear the search bar */
}

.fixed-buttons img {
  height: 60px;
  width: auto;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

.fixed-buttons img:hover {
  transform: scale(1.1);
}

/* Topbar */
.topbar {
  background: linear-gradient(135deg, var(--dark-bg) 0%, #1e293b 100%);
  padding: 12px 0;
  border-bottom: 1px solid var(--secondary-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.topbar .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.topbar p {
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.topbar p::before {
  content: "📍";
  font-size: 16px;
}

.topbar p:last-child::before {
  content: "📞";
}

.topbar a {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.topbar a:hover {
  color: #f0d77e;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* Header */
header {
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(20px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid var(--secondary-color);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 60px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.6));
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 40px;
  margin: 0;
}

.nav-menu a {
  color: var(--white);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 8px 16px;
  position: relative;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.nav-menu a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--secondary-color),
    transparent
  );
  transition: all 0.4s ease;
  transform: translateX(-50%);
}

.nav-menu a:hover::before,
.nav-menu a:focus::before {
  width: 100%;
}

.nav-menu a:hover,
.nav-menu a:focus {
  color: var(--secondary-color);
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--white);
  margin: 3px 0;
  transition: 0.3s ease;
}

/* Hero Section */
.hero {
  background:
    linear-gradient(
      135deg,
      rgba(15, 23, 42, 0.75) 0%,
      rgba(30, 58, 138, 0.65) 100%
    ),
    url("p10.jpg") center/cover no-repeat fixed;
  min-height: 95vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--white);
  padding: 80px 20px 60px;
  position: relative;
  box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.4);
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    rgba(30, 58, 138, 0.1) 0%,
    transparent 50%,
    rgba(212, 175, 55, 0.1) 100%
  );
  pointer-events: none;
}

.hero h1 {
  font-size: clamp(36px, 7vw, 80px);
  margin-bottom: 25px;
  font-weight: 300;
  letter-spacing: 2px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 1s ease;
  position: relative;
  z-index: 1;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero .text-change {
  color: var(--secondary-color);
  font-weight: 700;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
  display: inline-block;
}

.hero p {
  font-size: 24px;
  margin-bottom: 40px;
  font-weight: 300;
  max-width: 900px;
  line-height: 1.8;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
  animation: fadeInUp 1s ease 0.2s both;
  position: relative;
  z-index: 1;
  background: rgba(15, 23, 42, 0.3);
  padding: 20px 40px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
}

.hero p strong {
  font-weight: 800;
  color: var(--secondary-color);
  font-size: 32px;
  display: inline-block;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
}

.property-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1200px;
  width: 100%;
  margin-bottom: 35px;
  animation: fadeInUp 1s ease 0.4s both;
  position: relative;
  z-index: 1;
}

.property-nav button {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  border: 2px solid rgba(212, 175, 55, 0.3);
  color: var(--white);
  padding: 18px 28px;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 12px;
  font-weight: 700;
  min-height: 60px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  flex: 1 1 220px;
  max-width: 260px;
  min-width: 180px;
}

.property-nav button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 175, 55, 0.3),
    transparent
  );
  transition: left 0.6s ease;
}

.property-nav button:hover::before {
  left: 100%;
}

.property-nav button:hover,
.property-nav button:focus {
  background: rgba(212, 175, 55, 0.2);
  border-color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
  color: var(--secondary-color);
}

.enquire-btn {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #f0d77e 100%);
  color: #000;
  border: none;
  padding: 20px 60px;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 50px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  box-shadow:
    0 15px 35px rgba(212, 175, 55, 0.5),
    0 0 30px rgba(212, 175, 55, 0.3);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 1s ease 0.6s both;
  z-index: 1;
}

.enquire-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition:
    width 0.6s ease,
    height 0.6s ease;
}

.enquire-btn:hover::before {
  width: 400px;
  height: 400px;
}

.enquire-btn:hover,
.enquire-btn:focus {
  transform: scale(1.08) translateY(-3px);
  box-shadow:
    0 20px 50px rgba(212, 175, 55, 0.7),
    0 0 50px rgba(212, 175, 55, 0.5);
}

/* ========== ENHANCED SEARCH SECTION ========== */
.search-section {
  padding: 0 20px 50px;
  margin-top: -60px;
  position: relative;
  z-index: 10;
  transition: all 0.3s ease;
}

/* When form is sticky at bottom of screen */
.search-section.sticky {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  margin-top: 0;
  padding: 0;
  z-index: 999;
  animation: slideUp 0.3s ease;
  opacity: 1;
  visibility: visible;
}

/* When form should be hidden (near footer) */
.search-section.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Adjust container styling when sticky */
.search-section.sticky .container {
  border-radius: 0;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.25);
  border-top: 3px solid var(--secondary-color);
  max-width: 100%;
  padding: 20px 40px;
}

/* Mobile adjustments for sticky form */
@media (max-width: 768px) {
  .search-section.sticky .container {
    padding: 20px;
  }

  .search-section.sticky .search-form {
    gap: 15px;
  }

  /* DISABLE STICKY ON MOBILE */
  .search-section.sticky {
    position: relative !important;
    bottom: auto !important;
    animation: none !important;
    padding: 0 20px 50px !important;
    margin-top: -60px !important;
    box-shadow: none !important;
    border-top: none !important;
  }

  .search-section.sticky .container {
    border-radius: 24px !important;
    border: 1px solid rgba(212, 175, 55, 0.2) !important;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15) !important;
  }
}

.search-section .container {
  max-width: 1100px;
  margin: 0 auto;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 255, 255, 0.98) 100%
  );
  border-radius: 24px;
  padding: 40px;
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(212, 175, 55, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 175, 55, 0.2);
  position: relative;
  overflow: hidden;
}

/* REMOVED SHIMMER ANIMATION */

.floating-group {
  position: relative;
  margin-bottom: 0;
  width: 100%;
}

.modal-form .floating-group,
.form-row .floating-group {
  margin-bottom: 25px;
}

.floating-group input,
.floating-group textarea {
  width: 100%;
  padding: 24px 20px 8px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 16px;
  background: #ffffff;
  outline: none;
  height: 58px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.floating-group input:focus,
.floating-group textarea:focus {
  border-color: var(--primary-color);
  box-shadow:
    0 0 0 4px rgba(30, 58, 138, 0.1),
    0 4px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.floating-group label {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #64748b;
  font-size: 16px;
  pointer-events: none;
  transition: all 0.3s ease;
  background: white;
  padding: 0 5px;
}

.floating-group .range-label {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.floating-group select:focus + .range-label,
.floating-group select:valid + .range-label {
  font-size: 14px;
}

.floating-group input:focus + label,
.floating-group input:not(:placeholder-shown) + label,
.floating-group textarea:focus + label,
.floating-group textarea:not(:placeholder-shown) + label {
  top: 0;
  font-size: 12px;
  color: var(--primary-color);
  font-weight: 600;
}

/* Stylish select dropdown matching form design */
.floating-group select {
  width: 100%;
  padding: 24px 40px 8px 20px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 16px;
  background: #ffffff;
  color: #1e293b;
  outline: none;
  height: 58px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='10' viewBox='0 0 16 10'><path fill='%231E3A8A' d='M8 10L0 0h16z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px 10px;
  padding-right: 40px;
  font-family: "Montserrat", "Lato", sans-serif;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.floating-group select:hover {
  border-color: #cbd5e1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.floating-group select:focus {
  border-color: var(--primary-color);
  box-shadow:
    0 0 0 4px rgba(30, 58, 138, 0.1),
    0 4px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.floating-group select:focus + label,
.floating-group select:valid + label {
  top: 0;
  font-size: 12px;
  color: var(--primary-color);
  font-weight: 600;
}

/* Option styling */
.floating-group select option {
  padding: 10px;
  background: #ffffff;
  color: #1e293b;
  font-family: "Montserrat", "Lato", sans-serif;
  font-weight: 500;
}

.floating-group select option:checked {
  background: linear-gradient(#1e3a8a, #1e3a8a);
  background-color: #1e3a8a;
  color: #ffffff;
}

.floating-group select::-ms-expand {
  display: none;
}

.search-form {
  display: flex;
  gap: 20px;
  align-items: flex-end;
}

.search-form .floating-group {
  flex: 1;
}

.search-form button {
  background: linear-gradient(135deg, var(--primary-color) 0%, #2563eb 100%);
  color: var(--white);
  border: none;
  padding: 0 40px;
  cursor: pointer;
  font-weight: 700;
  border-radius: 12px;
  transition: all 0.3s ease;
  height: 58px;
  margin-bottom: 0;
  flex-shrink: 0;
  min-width: 140px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 14px;
  box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
  position: relative;
  overflow: hidden;
}

.search-form button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.search-form button:hover::before {
  left: 100%;
}

.search-form button:hover,
.search-form button:focus {
  background: linear-gradient(135deg, #1a2f6f 0%, var(--primary-color) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(30, 58, 138, 0.4);
}

.error-message {
  color: #dc2626;
  font-size: 12px;
  display: none;
  margin-top: 5px;
  font-weight: 600;
}

/* ========== ENHANCED ABOUT SECTION ========== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 20px;
}

.section-title {
  text-align: center;
  font-size: clamp(32px, 5vw, 48px);
  margin-bottom: 40px;
  color: var(--primary-color);
  font-weight: 700;
  letter-spacing: -1px;
  position: relative;
  display: inline-block;
  width: 100%;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--secondary-color),
    transparent
  );
}

.about-section {
  background: linear-gradient(
    135deg,
    rgba(30, 58, 138, 0.03) 0%,
    rgba(212, 175, 55, 0.03) 100%
  );
  border-radius: 24px;
  padding: 50px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.1);
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(212, 175, 55, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.about-section p {
  color: var(--text-light);
  line-height: 1.9;
  max-width: 900px;
  font-size: 17px;
  margin: 0 auto;
  text-align: justify;
  position: relative;
  z-index: 1;
}

.about-section p strong {
  color: var(--primary-color);
  font-weight: 700;
}

/* ========== ENHANCED CAROUSEL SECTION ========== */
.property-carousel-section {
  background: linear-gradient(180deg, var(--light-bg) 0%, #ffffff 100%);
  padding: 50px 0;
}

.carousel-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}

.carousel-container {
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.carousel-slide {
  min-width: 100%;
  display: none;
}

.carousel-slide.active {
  display: block;
  animation: slideIn 0.6s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.carousel-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  background: var(--card-bg);
  padding: 40px;
  position: relative;
}

.carousel-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(
    180deg,
    var(--primary-color),
    var(--secondary-color)
  );
}

.carousel-image {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.carousel-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(30, 58, 138, 0.1) 0%,
    transparent 50%
  );
  pointer-events: none;
}

.carousel-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.carousel-image:hover img {
  transform: scale(1.05);
}

.carousel-info h3 {
  font-family: "Playfair Display", serif;
  font-size: 38px;
  color: var(--secondary-color);
  margin-bottom: 15px;
  font-weight: 700;
}

.carousel-info h4 {
  font-size: 26px;
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.carousel-info p {
  color: var(--text-light);
  line-height: 1.9;
  font-size: 16px;
}

.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, var(--primary-color) 0%, #1e40af 100%);
  color: white;
  border: none;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(30, 58, 138, 0.4);
}

.carousel-control:hover {
  background: linear-gradient(135deg, #1e40af 0%, var(--primary-color) 100%);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(30, 58, 138, 0.6);
}

.carousel-control.prev {
  left: 0;
}

.carousel-control.next {
  right: 0;
}

/* ========== ENHANCED PROPERTY SECTIONS ========== */
.property-section {
  margin-bottom: 50px;
  position: relative;
}

.property-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 50px;
  align-items: center;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(248, 250, 252, 0.9) 100%
  );
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.15);
  position: relative;
  overflow: hidden;
}

.property-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(30, 58, 138, 0.02) 0%,
    rgba(212, 175, 55, 0.02) 100%
  );
  pointer-events: none;
}

.property-info {
  position: relative;
  z-index: 1;
}

.property-info h3 {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  color: var(--secondary-color);
  margin-bottom: 20px;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.property-info h3::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--primary-color);
}

.property-info p {
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 15px;
  text-align: justify;
  font-size: 16px;
}

.property-info p strong {
  color: var(--primary-color);
  font-weight: 700;
}

.property-info ul {
  margin: 15px 0;
  padding-left: 0;
  list-style: none;
}

.property-info li {
  color: var(--text-light);
  margin-bottom: 10px;
  padding-left: 30px;
  position: relative;
  font-size: 16px;
}

.property-info li::before {
  content: "◆";
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-size: 12px;
}

.property-image {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.property-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(30, 58, 138, 0.15) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 1;
}

.property-image:hover::before {
  opacity: 1;
}

.property-image img {
  width: 100%;
  height: auto;
  transition: transform 0.6s ease;
  display: block;
}

.property-image:hover img {
  transform: scale(1.08);
}

.download-btn {
  background: linear-gradient(135deg, var(--primary-color) 0%, #2563eb 100%);
  color: var(--white);
  border: none;
  padding: 14px 35px;
  cursor: pointer;
  font-size: 15px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  transition: all 0.4s ease;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 13px;
  box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
}

.download-btn:hover,
.download-btn:focus {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #f0d77e 100%);
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

/* ========== ENHANCED FEATURED SECTION ========== */
.featured-section {
  background: linear-gradient(135deg, var(--dark-bg) 0%, #1e293b 100%);
  padding: 50px 20px;
  position: relative;
  overflow: hidden;
}

.featured-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(212, 175, 55, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.featured-section .section-title {
  color: var(--white);
  position: relative;
}

.featured-section .section-title::after {
  background: linear-gradient(
    90deg,
    transparent,
    var(--secondary-color),
    transparent
  );
}

.featured-container {
  max-width: 1200px;
  margin: 30px auto 0;
  padding: 0 20px;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  align-items: stretch;
}

.featured-card {
  background: var(--card-bg);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(212, 175, 55, 0.2);
  position: relative;
  display: flex;
  flex-direction: column;
}

.featured-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  transform: scaleX(0);
  transition: transform 0.4s ease;
  z-index: 2;
}

.featured-card:hover::before {
  transform: scaleX(1);
}

.featured-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  border-color: var(--secondary-color);
}

.featured-card-image {
  position: relative;
  overflow: hidden;
  height: 280px;
  width: 100%;
}

.featured-card-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(30, 58, 138, 0.15) 0%,
    transparent 60%
  );
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.featured-card:hover .featured-card-image::after {
  opacity: 1;
}

.featured-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.featured-card:hover .featured-card-image img {
  transform: scale(1.15);
}

.featured-card-content {
  padding: 25px;
  background: linear-gradient(135deg, var(--white) 0%, #f8fafc 100%);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.featured-card h4 {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  margin-bottom: 10px;
  color: var(--secondary-color);
  font-weight: 700;
  position: relative;
  padding-bottom: 10px;
}

.featured-card h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--primary-color);
}

.featured-property-name {
  font-size: 16px;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
}

.featured-card-content p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 8px;
}

.featured-card-content p strong {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 15px;
}

.featured-card-content .property-description {
  margin-bottom: 15px;
  flex-grow: 1;
}

/* ========== ENHANCED FLOOR PLANS ========== */
.floor-plans {
  text-align: center;
  margin: 50px auto;
  max-width: 1200px;
  padding: 0 20px;
}

.floor-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin: 40px auto 0;
  justify-content: center;
  max-width: 1200px;
}

.floor-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  width: 360px;
  max-width: 360px;
  transition: all 0.4s ease;
  border: 3px solid transparent;
}

.floor-item:hover {
  border-color: var(--secondary-color);
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
}

.floor-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: all 0.6s ease;
  filter: blur(3px) brightness(0.8);
}

.floor-item:hover img {
  filter: blur(0) brightness(1);
  transform: scale(1.05);
}

.floor-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(30, 58, 138, 0.85) 0%,
    rgba(15, 23, 42, 0.85) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: all 0.4s ease;
}

.floor-item:hover .floor-overlay {
  opacity: 0;
}

.floor-overlay .enquire-btn {
  font-size: 14px;
  padding: 14px 32px;
}

/* ========== ENHANCED CONTACT SECTION ========== */
.contact-section {
  background: linear-gradient(135deg, var(--light-bg) 0%, #e0e7ff 100%);
  padding: 50px 20px;
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: "";
  position: absolute;
  bottom: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(30, 58, 138, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.contact-form {
  max-width: 900px;
  margin: 30px auto 0;
  background: var(--white);
  padding: 50px;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.2);
  position: relative;
  overflow: hidden;
}

.contact-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color),
    var(--primary-color)
  );
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-bottom: 25px;
}

.floating-group textarea {
  min-height: 140px;
  resize: vertical;
  padding-top: 20px;
}

.submit-btn {
  background: linear-gradient(135deg, var(--primary-color) 0%, #2563eb 100%);
  color: var(--white);
  border: none;
  padding: 18px 50px;
  cursor: pointer;
  font-size: 16px;
  border-radius: 50px;
  transition: all 0.4s ease;
  width: 100%;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
  position: relative;
  overflow: hidden;
}

.submit-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition:
    width 0.6s ease,
    height 0.6s ease;
}

.submit-btn:hover::before {
  width: 400px;
  height: 400px;
}

.submit-btn:hover,
.submit-btn:focus {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #f0d77e 100%);
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.5);
}

.submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ========== ENHANCED FOOTER ========== */
footer {
  background: linear-gradient(135deg, var(--dark-bg) 0%, #0a1628 100%);
  color: var(--white);
  padding: 60px 20px 30px;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--secondary-color),
    transparent
  );
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  color: var(--secondary-color);
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 700;
  position: relative;
  padding-bottom: 12px;
}

.footer-section h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--secondary-color);
}

.footer-section p {
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 12px;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-section a:hover,
.footer-section a:focus {
  color: var(--secondary-color);
  transform: translateX(5px);
}

.footer-social {
  display: flex;
  gap: 18px;
  margin-top: 15px;
}

.footer-social a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: rgba(212, 175, 55, 0.2);
  transform: translateY(-2px);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.8;
}

.footer-bottom p {
  max-width: 1000px;
  margin: 0 auto;
}

.channel-partner img {
  max-width: 120px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

/* ========== MODAL ========== */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  z-index: 2000;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.modal.active {
  display: flex;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.modal-content {
  background: linear-gradient(135deg, var(--dark-bg) 0%, #1e293b 100%);
  padding: 50px;
  border-radius: 24px;
  max-width: 480px;
  width: 100%;
  position: relative;
  animation: slideDown 0.4s ease;
  border: 2px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6);
}

@keyframes slideDown {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-header {
  text-align: center;
  margin-bottom: 35px;
}

.modal-header h3 {
  color: var(--white);
  font-size: 16px;
  margin-bottom: 25px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.modal-logo {
  max-width: 120px;
  margin-bottom: 25px;
  filter: brightness(0) invert(1);
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 36px;
  color: var(--white);
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
  padding: 0;
  width: 36px;
  height: 36px;
  transition: all 0.3s ease;
}

.close-modal:hover {
  color: var(--secondary-color);
  transform: rotate(90deg);
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.modal-form .floating-group input {
  background: rgba(255, 255, 255, 0.95);
}

.modal-form button[type="submit"] {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #f0d77e 100%);
  color: #000;
  border: none;
  padding: 16px;
  border-radius: 50px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 800;
  transition: all 0.4s ease;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.modal-form button[type="submit"]:hover,
.modal-form button[type="submit"]:focus {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.6);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--black);
    flex-direction: column;
    padding: 20px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    gap: 15px;
  }

  .nav-menu.active {
    transform: translateX(0);
  }

  .property-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  .property-nav button {
    font-size: 11px;
    padding: 12px 8px;
    min-height: 55px;
    flex: 0 0 calc(50% - 12px);
    max-width: none;
    min-width: 0;
  }

  .search-section .container {
    padding: 30px 20px;
  }

  .search-form {
    flex-direction: column;
    gap: 20px;
  }

  .search-form button {
    width: 100%;
  }

  .about-section {
    padding: 35px 25px;
  }

  .carousel-wrapper {
    padding: 0 20px;
  }

  .carousel-content {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px 20px;
  }

  .carousel-control {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }

  .property-content {
    padding: 30px 20px;
    gap: 30px;
  }

  .property-image {
    order: -1;
  }

  .featured-container {
    padding: 0 20px;
  }

  .featured-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .featured-card-image {
    height: 240px;
  }

  .featured-card-content {
    padding: 20px;
  }

  .featured-card h4 {
    font-size: 22px;
    margin-bottom: 8px;
    padding-bottom: 8px;
  }

  .featured-property-name {
    font-size: 15px;
    margin-bottom: 10px;
  }

  .featured-card-content p {
    font-size: 13px;
    margin-bottom: 6px;
  }

  .featured-card-content p strong {
    font-size: 14px;
  }

  .featured-card-content .property-description {
    margin-bottom: 12px;
  }

  .floor-grid {
    gap: 20px;
  }

  .floor-item {
    width: 100%;
    max-width: 100%;
  }

  .contact-form {
    padding: 35px 25px;
  }

  .modal-content {
    padding: 35px 25px;
  }

  .container {
    padding: 40px 20px;
  }

  .fixed-buttons img {
    height: 55px;
  }

  .topbar .container {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 18px;
    padding: 15px 25px;
  }

  .enquire-btn {
    font-size: 15px;
    padding: 16px 40px;
  }

  .section-title {
    font-size: 28px;
  }

  .featured-grid {
    gap: 20px;
  }

  .featured-card h4 {
    font-size: 20px;
  }

  .featured-card-content {
    padding: 18px;
  }

  .featured-card-content p {
    font-size: 13px;
  }

  .featured-property-name {
    font-size: 14px;
  }

  .featured-card-image {
    height: 220px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .featured-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .featured-card-image {
    height: 260px;
  }

  .featured-card-content {
    padding: 22px;
  }

  .featured-card h4 {
    font-size: 22px;
  }
}

/* ========== ENHANCED LOCATION SECTION ========== */
.location-section {
  background: linear-gradient(135deg, var(--white) 0%, var(--light-bg) 100%);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

/* Decorative background element similar to other sections */
.location-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(212, 175, 55, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.location-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* Map Card Design */
.location-map-card {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  border: 4px solid var(--white);
  height: 450px;
  position: relative;
  transition: all 0.4s ease;
}

.location-map-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 60px rgba(30, 58, 138, 0.2);
  border-color: var(--secondary-color);
}

.location-map-card iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(20%) contrast(1.1);
  /* Slight filter to match elegant theme */
  transition: filter 0.4s ease;
}

.location-map-card:hover iframe {
  filter: grayscale(0%) contrast(1);
}

/* Benefits List Design */
.location-info h3 {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  color: var(--secondary-color);
  margin-bottom: 20px;
  font-weight: 700;
}

.location-info p {
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
}

.location-benefits {
  list-style: none;
  display: grid;
  gap: 20px;
}

.location-benefits li {
  background: var(--white);
  padding: 15px 20px;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.3s ease;
  border: 1px solid rgba(212, 175, 55, 0.1);
  position: relative;
  overflow: hidden;
}

.location-benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--secondary-color);
  transition: width 0.3s ease;
}

.location-benefits li:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.location-benefits li:hover::before {
  width: 100%;
  opacity: 0.1;
}

.benefit-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #2563eb 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(30, 58, 138, 0.3);
}

.benefit-text h4 {
  font-size: 18px;
  color: var(--primary-color);
  margin-bottom: 4px;
  font-weight: 700;
}

.benefit-text span {
  font-size: 14px;
  color: var(--text-light);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .location-content {
    grid-template-columns: 1fr;
  }

  .location-map-card {
    height: 350px;
    order: -1;
    /* Puts map above text on mobile */
  }
}

/* --- Add this at the end of your <style> section --- */

/* Force horizontal alignment for Featured Properties */
.projects-grid {
  display: flex;
  flex-wrap: nowrap;
  /* Forces one line only */
  gap: 25px;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 20px 0;
}

/* Hide scrollbars for a clean look */
.projects-grid::-webkit-scrollbar {
  display: none;
}

/* Fix width of cards so they don't shrink in the row */
.project-card {
  flex: 0 0 350px;
  min-width: 350px;
}

/* Mobile Slider Navigation (Bottom Buttons) */
.slider-nav-container {
  display: none;
  /* Hidden on desktop */
  justify-content: center;
  gap: 30px;
  margin-top: 20px;
}

.slider-nav-btn {
  background: #d4af37;
  /* Matches your secondary color */
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .project-card {
    flex: 0 0 85vw;
    /* Shows 85% of one card on mobile */
    min-width: 85vw;
  }

  .slider-nav-container {
    display: flex;
    /* Visible only on mobile */
  }
}
