
/* ==========================================
   AALAM SENIOR LIVING - MAIN STYLESHEET
   ========================================== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,500&family=Jost:wght@300;400;500;600;700&display=swap');

/* ── CSS VARIABLES ── */
:root {
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --gold-dark: #a07832;
  --ivory: #f8f4ee;
  --cream: #fdf9f3;
  --deep: #1a1208;
  --dark: #231a0c;
  --charcoal: #3a3228;
  --text: #4a4035;
  --text-light: #7a6e62;
  --white: #ffffff;
  --border: rgba(201, 168, 76, 0.25);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 40px 80px rgba(0, 0, 0, 0.18);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ── RESET & BASE ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

html,
body {
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: 'Jost', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  padding-top: 80px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--deep);
  line-height: 1.2;
}

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

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

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ── UTILITY ── */
.section-pad {
  padding: 100px 0;
  overflow-x: hidden;
}

.section-pad-sm {
  padding: 60px 0;
}

.gold-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 16px 0 24px;
  border-radius: 2px;
}

.gold-line.center {
  margin: 16px auto 24px;
}

.section-tag {
  font-family: 'Jost', sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  color: var(--deep);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 620px;
  line-height: 1.8;
}

/* ── BUTTONS ── */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-gold::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(201, 168, 76, 0.4);
  color: var(--white);
}

.btn-gold:hover::before {
  opacity: 1;
}

.btn-gold span {
  position: relative;
  z-index: 1;
}

.btn-gold i {
  position: relative;
  z-index: 1;
}

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 30px;
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
  border-radius: 4px;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

/* ══════════════════════════════
   TOPBAR
══════════════════════════════ */
.topbar {
  background: var(--deep);
  padding: 8px 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar-contact a,
.topbar-social a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 12.5px;
  letter-spacing: 0.5px;
  transition: color 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.topbar-contact a+a {
  margin-left: 20px;
}

.topbar-social a+a {
  margin-left: 14px;
}

.topbar-contact a:hover,
.topbar-social a:hover {
  color: var(--gold-light);
}

.topbar-social a {
  font-size: 14px;
}

/* ══════════════════════════════
   NAVBAR
══════════════════════════════ */
.mobile-cta-btn {
  display: none;
}

.main-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

.main-navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.navbar-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link {
  padding: 8px 16px;
  font-family: 'Jost', sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: 0.5px;
  border-radius: 4px;
  transition: var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 16px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--gold);
}

.nav-link:hover::after {
  width: calc(100% - 32px);
}

.nav-cta {
  padding: 10px 22px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white) !important;
  border-radius: 4px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1px;
  transition: var(--transition);
  margin-left: 10px;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 168, 76, 0.4);
}

.nav-cta::after {
  display: none !important;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border: none;
  background: none;
}

.nav-hamburger span {
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}

/* ══════════════════════════════
   HERO / BANNER
══════════════════════════════ */
.hero-section {
  position: relative;
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-img-tag {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* .hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
      rgba(10, 7, 2, 0.82) 0%,
      rgba(26, 18, 8, 0.72) 45%,
      rgba(26, 18, 8, 0.30) 70%,
      transparent 100%);
} */

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 80px;
}

.hero-tag {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: 30px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-title .accent {
  color: var(--gold-light);
  font-style: italic;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.78);
  max-width: 500px;
  margin-bottom: 36px;
  line-height: 1.8;
}

.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
}

.hero-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}

.hero-stat-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  margin-top: 4px;
}

/* ── LEAD FORM (Right side, Absolute) ── */
.hero-form-wrapper {
  position: absolute;
  right: 5%;
  /* Align with Bootstrap container right */
  top: 5%;
  transform: translateY(-50%);
  z-index: 10;
  width: 380px;
}

@media (max-width: 1400px) {
  .hero-form-wrapper {
    right: calc((100% - 1140px) / 2 + 15px);
  }
}

@media (max-width: 1200px) {
  .hero-form-wrapper {
    right: 5%;
    width: 340px;
  }
}

.lead-form-card {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(201, 168, 76, 0.15);
}

.form-brand-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

.form-brand-logo img {
  height: 44px;
  width: auto;
}

.form-heading {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--deep);
  text-align: center;
  margin-bottom: 4px;
}

.form-subheading {
  font-size: 12.5px;
  color: var(--text-light);
  text-align: center;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}

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

.form-group label {
  display: block;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--charcoal);
  margin-bottom: 6px;
  text-transform: uppercase;
}

.form-control-custom {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e8e0d0;
  border-radius: 8px;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  color: var(--deep);
  background: var(--cream);
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
}

.form-control-custom:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12);
}

.form-control-custom::placeholder {
  color: #b0a89a;
  font-size: 13px;
}

.form-submit-btn {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 6px;
}

.form-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(201, 168, 76, 0.4);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.form-disclaimer {
  font-size: 10.5px;
  color: var(--text-light);
  text-align: center;
  margin-top: 12px;
  line-height: 1.5;
}

/* ══════════════════════════════
   HIGHLIGHT / HIGHLIGHTS RIBBON
══════════════════════════════ */
.highlights-ribbon {
  background: var(--deep);
  padding: 10px 0;
  position: relative;
  overflow: hidden;
}

.highlights-ribbon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.1), transparent);
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
}

.highlight-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 16px;
  position: relative;
}

.highlight-item+.highlight-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15%;
  bottom: 15%;
  width: 1px;
  background: rgba(201, 168, 76, 0.2);
}

.highlight-item i {
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 10px;
}

.highlight-item h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.highlight-item p {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.5px;
  margin-bottom: 0px;
}

/* ══════════════════════════════
   ABOUT / OVERVIEW
══════════════════════════════ */
.about-section {
  position: relative;
  background-image: url('../images/about-bg.png');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  padding: 120px 0;
}

/* .about-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 7, 2, 0.95) 0%, rgb(10 7 2 / 34%) 35%, rgba(10, 7, 2, 0) 100%);
  z-index: 1;
} */

.about-section .container {
  position: relative;
  z-index: 2;
}

.about-image-wrap {
  display: none;
}

.about-content {
  padding-left: 0;
}

.about-content .section-title {
  color: var(--deep);
}

.about-content p {
  color: var(--deep);
}

.about-feature-list {
  margin-top: 24px;
}

.about-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.about-feature-list li:last-child {
  border-bottom: none;
}

.feat-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.2), rgba(201, 168, 76, 0.05));
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 16px;
}

.feat-text h5 {
  font-family: 'Jost', sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 3px;
}

.feat-text p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

/* ══════════════════════════════
   AMENITIES
══════════════════════════════ */
.amenities-section {
  background: linear-gradient(160deg, var(--deep) 0%, #2a1e10 100%);
  position: relative;
  overflow: hidden;
}

.amenities-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
}

.amenity-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: var(--radius);
  padding: 30px 24px;
  text-align: center;
  transition: var(--transition);
  cursor: default;
  height: 100%;
}

.amenity-card:hover {
  background: rgba(201, 168, 76, 0.06);
  border-color: rgba(201, 168, 76, 0.35);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.amenity-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 18px;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.2), rgba(201, 168, 76, 0.05));
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--gold-light);
  transition: var(--transition);
}

.amenity-card:hover .amenity-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  transform: rotate(5deg) scale(1.08);
}

.amenity-card h4 {
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.5px;
}

/* ══════════════════════════════
   3D SWIPER GALLERY
══════════════════════════════ */
.gallery-section {
  background: var(--ivory);
  overflow: hidden;
}

.gallery-swiper-wrap {
  padding: 30px 0 60px;
}

.swiper-3d-gallery {
  width: 100%;
  padding: 30px 0 50px !important;
}

.swiper-3d-gallery .swiper-slide {
  width: 340px;
  height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transition: var(--transition);
}

.swiper-3d-gallery .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10, 7, 2, 0.85) 100%);
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 24px;
}

.swiper-slide-active .slide-overlay,
.swiper-3d-gallery .swiper-slide:hover .slide-overlay {
  opacity: 1;
}

.slide-time {
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
}

.slide-label {
  color: var(--white);
  font-size: 24px;
  font-weight: 700;
}

.swiper-3d-gallery .swiper-button-next,
.swiper-3d-gallery .swiper-button-prev {
  width: 48px;
  height: 48px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  color: var(--gold) !important;
  transition: var(--transition);
}

.swiper-3d-gallery .swiper-button-next:hover,
.swiper-3d-gallery .swiper-button-prev:hover {
  background: var(--gold);
  color: var(--white) !important;
}

.swiper-3d-gallery .swiper-button-next::after,
.swiper-3d-gallery .swiper-button-prev::after {
  font-size: 16px !important;
  font-weight: 700;
}

.swiper-3d-gallery .swiper-pagination-bullet {
  background: var(--gold);
  opacity: 0.4;
}

.swiper-3d-gallery .swiper-pagination-bullet-active {
  opacity: 1;
  width: 24px;
  border-radius: 4px;
}

/* ══════════════════════════════
   SPECIAL FEATURES
══════════════════════════════ */
.features-section {
  background: var(--cream);
}

.feature-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--white);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 10px;
  transition: var(--transition);
  margin-bottom: 14px;
}

.feature-pill:hover {
  border-color: var(--gold);
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.12);
  transform: translateX(4px);
}

.feature-pill i {
  font-size: 18px;
  color: var(--gold);
  width: 28px;
  text-align: center;
  flex-shrink: 0;
}

.feature-pill span {
  font-size: 14px;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: 0.3px;
}

/* ══════════════════════════════
   FLOOR PLANS
══════════════════════════════ */
.floorplan-section {
  background: var(--deep);
}

.plan-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  border-color: rgba(201, 168, 76, 0.35);
}

.plan-image {
  height: 260px;
  overflow: hidden;
  position: relative;
}

.plan-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.plan-card:hover .plan-image img {
  transform: scale(1.06);
}

.plan-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
}

.plan-body {
  padding: 24px;
}

.plan-type {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 6px;
}

.plan-area {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.plan-features {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.plan-feat {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.7);
}

.plan-feat i {
  color: var(--gold);
  font-size: 13px;
}

/* ══════════════════════════════
   TESTIMONIALS
══════════════════════════════ */
.testimonials-section {
  background: var(--ivory);
}

.testimonial-swiper {
  padding: 20px 0 60px !important;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.07);
  border: 1px solid rgba(201, 168, 76, 0.1);
  position: relative;
  height: 100%;
}

.testimonial-card::before {
  content: '\201C';
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px;
  color: rgba(201, 168, 76, 0.15);
  position: absolute;
  top: 16px;
  left: 24px;
  line-height: 1;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 24px;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.testimonial-stars {
  color: var(--gold);
  margin-bottom: 16px;
  font-size: 14px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.author-name {
  font-family: 'Jost', sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--deep);
}

.author-location {
  font-size: 12px;
  color: var(--text-light);
}

.testimonial-swiper .swiper-pagination-bullet {
  background: var(--gold);
}

.testimonial-swiper .swiper-pagination-bullet-active {
  width: 24px;
  border-radius: 4px;
}

/* ══════════════════════════════
   LOCATION
══════════════════════════════ */
.location-section {
  background: var(--cream);
}

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(201, 168, 76, 0.15);
}

.map-wrap iframe {
  display: block;
  width: 100%;
  /* height: 420px; */
  border: none;
}

.location-details {
  padding-left: 40px;
}

.location-point {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
}

.location-point:last-child {
  border-bottom: none;
}

.loc-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.15), rgba(201, 168, 76, 0.05));
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 18px;
}

.loc-info h5 {
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--deep);
  margin-bottom: 3px;
}

.loc-info p {
  font-size: 13px;
  color: var(--text-light);
}

/* ══════════════════════════════
   CTA BANNER
══════════════════════════════ */
.cta-section {
  position: relative;
  padding: 100px 0;
  background-image: url('https://images.unsplash.com/photo-1598928506311-c55ded91a20c?w=1600&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 7, 2, 0.88), rgba(26, 18, 8, 0.75));
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta-content h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white);
  margin-bottom: 16px;
}

.cta-content h2 em {
  color: var(--gold-light);
  font-style: italic;
}

.cta-content p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 560px;
  margin: 0 auto 36px;
}

.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
.main-footer {
  background: var(--deep);
  padding-top: 70px;
}

.footer-brand img {
  height: 54px;
  margin-bottom: 18px;
}

.footer-desc {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-heading {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}

.footer-links li+li {
  margin-top: 10px;
}

.footer-links a {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a::before {
  content: '';
  width: 5px;
  height: 1.5px;
  background: var(--gold);
  flex-shrink: 0;
  transition: width 0.3s;
}

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

.footer-links a:hover::before {
  width: 10px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-contact-item i {
  color: var(--gold);
  font-size: 15px;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact-item a,
.footer-contact-item p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s;
}

.footer-contact-item a:hover {
  color: var(--gold-light);
}

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin: 48px 0 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.footer-bottom p {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.35);
}

.footer-bottom a {
  color: var(--gold);
  transition: color 0.3s;
}

.footer-bottom a:hover {
  color: var(--gold-light);
}

/* ══════════════════════════════
   FLOATING WHATSAPP
══════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--white);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  animation: pulse-green 2.5s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 14px 35px rgba(37, 211, 102, 0.5);
  color: var(--white);
}

@keyframes pulse-green {

  0%,
  100% {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4), 0 0 0 12px rgba(37, 211, 102, 0);
  }
}

/* ══════════════════════════════
   FIXED MOBILE FOOTER
══════════════════════════════ */
.fixed-mobile-footer-btns {
  display: none;
}

/* ══════════════════════════════
   SCROLL TO TOP
══════════════════════════════ */
.scroll-top {
  position: fixed;
  bottom: 96px;
  right: 30px;
  z-index: 9999;
  width: 44px;
  height: 44px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 16px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: var(--gold-dark);
  transform: translateY(-3px);
}

/* ══════════════════════════════
   MODAL ENQUIRY
══════════════════════════════ */
.enquiry-modal .modal-content {
  border: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.enquiry-modal .modal-header {
  background: linear-gradient(135deg, var(--deep), #2a1e10);
  padding: 24px 30px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

.enquiry-modal .modal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--white);
}

.enquiry-modal .modal-body {
  padding: 30px;
}

.enquiry-modal .btn-close {
  filter: invert(1);
}

/* ══════════════════════════════
   MOBILE NAV OVERLAY
══════════════════════════════ */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(320px, 85vw);
  height: 100vh;
  background: var(--deep);
  z-index: 9998;
  transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  overflow-y: auto;
  padding: 80px 30px 40px;
  border-left: 1px solid rgba(201, 168, 76, 0.15);
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--gold);
  font-size: 18px;
  transition: var(--transition);
}

.mobile-menu-close:hover {
  background: var(--gold);
  color: var(--white);
}

.mobile-nav-link {
  display: block;
  padding: 14px 0;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: color 0.3s, padding-left 0.3s;
}

.mobile-nav-link:hover {
  color: var(--gold-light);
  padding-left: 8px;
}

.overlay-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9997;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}

.overlay-backdrop.show {
  opacity: 1;
  visibility: visible;
}

/* ══════════════════════════════
   TYPOGRAPHY HELPERS
══════════════════════════════ */
.text-gold {
  color: var(--gold) !important;
}

.text-white-75 {
  color: rgba(255, 255, 255, 0.75) !important;
}

.bg-ivory {
  background: var(--ivory) !important;
}

.italic {
  font-style: italic;
}

/* ══════════════════════════════
   WHY CHOOSE US
══════════════════════════════ */
.why-choose-section {
  background: var(--ivory);
  position: relative;
  z-index: 1;
}

.why-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 380px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.why-item-inner {
  width: 100%;
  height: 100%;
  position: relative;
}

.why-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.why-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 7, 2, 0.95) 0%, rgba(10, 7, 2, 0.4) 60%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  transition: all 0.4s ease;
}

.why-content {
  width: 100%;
  transform: translateY(40px);
  transition: transform 0.4s ease;
}

.why-main {
  /* margin-bottom: 60px; */
  min-height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.why-icon-v2 {
  font-size: 24px;
  color: var(--gold-light);
  margin-bottom: 8px;
  height: 24px;
  display: flex;
  align-items: center;
}

.why-title {
  color: var(--white);
  font-family: 'Jost', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0;
  min-height: 2.8em;
  display: flex;
  align-items: flex-start;
}

.why-hover {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.5s ease;
  margin-top: 0;
}

.why-hover p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
}

/* Hover States */
.why-item:hover .why-img {
  transform: scale(1.1);
}

.why-item:hover .why-overlay {
  background: linear-gradient(to top, rgba(10, 7, 2, 0.98) 0%, rgba(10, 7, 2, 0.7) 100%);
}

.why-item:hover .why-content {
  transform: translateY(0);
}

.why-item:hover .why-hover {
  opacity: 1;
  max-height: 200px;
  margin-top: 15px;
}

/* ══════════════════════════════
   WALKTHROUGH SECTION
══════════════════════════════ */
.walkthrough-section {
  background: var(--deep);
  position: relative;
}

.video-container {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16 / 9;
}

.video-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ══════════════════════════════
   FLOOR PLAN IMAGE
══════════════════════════════ */
.floorplan-image-section {
  background: var(--ivory);
}

.floorplan-img-wrap {
  position: relative;
  background: var(--white);
  padding: 15px;
  border-radius: 20px;
  border: 1px solid rgba(201, 168, 76, 0.2);
  transition: var(--transition);
}

.floorplan-img-wrap:hover {
  border-color: rgba(201, 168, 76, 0.4);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
}

.floorplan-img-wrap img {
  border-radius: 12px;
  transition: transform 0.6s ease;
}

.floorplan-img-wrap:hover img {
  transform: scale(1.02);
}

[data-fancybox] {
  cursor: zoom-in;
}



/* ── LIFESTYLE GALLERY SWIPER ── */
.lifestyle-gallery {
  background: var(--deep);
}

.lifestyle-gallery .section-title {
  color: var(--white);
}

.lifestyle-gallery .section-subtitle {
  color: rgba(255, 255, 255, 0.6);
}

.lifestyle-swiper-container {
  padding: 0 50px;
  position: relative;
}

#lifestyleSwiper {
  padding-bottom: 50px;
}

#lifestyleSwiper .swiper-slide {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  width: 450px;
  /* For coverflow 'auto' */
  aspect-ratio: 4/5;
  cursor: zoom-in;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

#lifestyleSwiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}

#lifestyleSwiper .swiper-slide:hover img {
  transform: scale(1.1);
}

.swiper-slide-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px 30px 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
  color: #fff;
}

.swiper-slide-overlay span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.5px;
  display: block;
}

/* Navigation & Pagination */
#lifestyleSwiper .swiper-button-next,
#lifestyleSwiper .swiper-button-prev {
  color: var(--gold);
  background: rgba(255, 255, 255, 0.03);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(201, 168, 76, 0.2);
  transition: all 0.3s ease;
  z-index: 10;
}

#lifestyleSwiper .swiper-button-next:hover,
#lifestyleSwiper .swiper-button-prev:hover {
  background: var(--gold);
  color: var(--deep);
}

#lifestyleSwiper .swiper-button-next:after,
#lifestyleSwiper .swiper-button-prev:after {
  font-size: 18px;
}

#lifestyleSwiper .swiper-pagination-bullet {
  background: var(--gold);
  opacity: 0.3;
}

#lifestyleSwiper .swiper-pagination-bullet-active {
  opacity: 1;
  width: 25px;
  border-radius: 5px;
}

@media (max-width: 991px) {
  .lifestyle-swiper-container {
    padding: 0 10px;
  }

  #lifestyleSwiper .swiper-slide {
    width: 320px;
  }

  #lifestyleSwiper .swiper-button-next,
  #lifestyleSwiper .swiper-button-prev {
    display: none;
  }
}

@media (max-width: 576px) {
  #lifestyleSwiper .swiper-slide {
    width: 280px;
  }
}

/* ══════════════════════════════
   LOCATION & CONNECTIVITY
   ══════════════════════════════ */
.location-section {
  background: var(--cream);
  position: relative;
}

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.map-wrap:hover {
  transform: translateY(-5px);
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.2);
}

.location-timeline {
  position: relative;
  padding-left: 10px;
}

.location-timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  opacity: 0.3;
}

.timeline-item {
  position: relative;
  padding-left: 50px;
  margin-bottom: 40px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: 0;
  top: 0;
  width: 42px;
  height: 42px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 18px;
  box-shadow: 0 10px 20px rgba(201, 168, 76, 0.15);
  z-index: 2;
  transition: var(--transition);
}

.timeline-item:hover .timeline-dot {
  background: var(--gold);
  color: var(--white);
  transform: scale(1.1);
  box-shadow: 0 15px 30px rgba(201, 168, 76, 0.3);
}

.timeline-content {
  background: var(--white);
  padding: 24px 30px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.timeline-item:hover .timeline-content {
  background: var(--ivory);
  border-color: var(--gold);
  transform: translateX(10px);
}

.timeline-content h5 {
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold-dark);
  margin-bottom: 15px;
  text-transform: uppercase;
}

.timeline-content ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
}

.timeline-content ul li {
  font-size: 15px;
  color: var(--text);
  position: relative;
  padding-left: 20px;
  transition: var(--transition);
}

.timeline-content ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
  transition: var(--transition);
}

.timeline-content ul li:hover {
  color: var(--gold-dark);
}

.timeline-content ul li:hover::before {
  transform: translateX(5px);
}

/* ══════════════════════════════
   RESPONSIVE
   ══════════════════════════════ */
@media (max-width: 1200px) {
  .hero-form-wrapper {
    width: 340px;
  }
}

@media (max-width: 992px) {
  body {
    padding-top: 60px;
    padding-bottom: 60px;
    /* Space for fixed footer buttons */
  }

  .fixed-mobile-footer-btns {
    border-top: 1px solid #bd9a44;
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    z-index: 2000;
    background: var(--white);
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 15%);
  }

  .m-footer-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
  }

  .m-call-btn {
    background: var(--dark);
    color: var(--gold-light);
  }

  .m-enquiry-btn {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
  }

  .m-footer-btn i {
    font-size: 16px;
  }

  .scroll-top {
    bottom: 80px;
    /* Lift up to avoid covering footer buttons */
  }

  .hero-section {
    min-height: auto;
    flex-direction: column;
    padding-bottom: 60px;
  }

  .hero-bg {
    position: relative;
    height: auto;
    min-height: 350px;
  }

  .hero-img-tag {
    height: 100%;
    min-height: 350px;
  }

  .hero-form-wrapper {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: 100%;
    margin: 40px 0 0;
    padding: 0 15px;
    /* Stay within container-like padding */
  }

  .lead-form-card {
    max-width: 450px;
    margin: 0 auto;
  }

  .hero-content {
    padding: 100px 0 60px;
  }

  .about-content {
    padding-left: 0;
    margin-top: 40px;
  }

  .location-details {
    padding-left: 0;
    margin-top: 40px;
  }

  .timeline-content {
    padding: 20px;
  }

  .nav-menu {
    display: none;
  }

  .nav-hamburger {
    display: none !important;
  }

  .mobile-cta-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    border-radius: 4px;
    font-family: 'Jost', sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: var(--transition);
  }

  .mobile-cta-btn:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(201, 168, 76, 0.3);
  }

  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-stats {
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .navbar-logo img {
    height: 26px;
  }

  .about-section {
    background-position: left;
  }

  .section-pad {
    padding: 70px 0;
  }

  .topbar-inner {
    flex-direction: column;
    gap: 6px;
  }

  .swiper-3d-gallery .swiper-slide {
    width: 280px;
    height: 360px;
  }

  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .cta-btns {
    flex-direction: column;
    align-items: center;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 20px;
  }

  .hero-stat-num {
    font-size: 2rem;
  }

  .timeline-item {
    padding-left: 45px;
  }

  .timeline-dot {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .lead-form-card {
    padding: 28px 22px;
  }

  .highlights-grid {
    grid-template-columns: 1fr 1fr;
  }

  .plan-features {
    gap: 10px;
  }

  .timeline-content ul {
    grid-template-columns: 1fr;
  }

  .timeline-item {
    padding-left: 40px;
  }
}

.selldof label,
.selldof .title {
  display: none !important;
}

.selldof .form-control,
.sell_do_form_control {
  height: 50px !important;
}

.selldof .btn,
.sell_do_ctc_btn,
.selldof .btn,
.sell_do_verify_btn {
  width: 100%;
  font-size: 20px !important;
  font-weight: 700 !important;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
  border: none;
  color: white !important;
  border-radius: 10px !important;
  /* box-shadow:
        0 6px 0 #0f1f38,
        0 8px 15px rgba(30, 58, 95, 0.35); */
  transform: translateY(0);
  transition: all 0.15s ease;
  position: relative;
  letter-spacing: 0.03em;
}