@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

/* ============================================================
   SKA India â€” Premium Real Estate Website
   Custom Stylesheet
   ============================================================ */

/* ---- CSS Custom Properties / Design Tokens ---- */
:root {
  --clr-primary: #c38f60;
  --clr-primary-dark: #3f2a1a;
  --clr-primary-light: #d4a37a;
  --clr-dark: #1a1510;
  --clr-dark-light: #2d241c;
  --clr-gold: #c38f60;
  --clr-gold-light: #e6c5a8;
  --clr-light-bg: #F8F9FB;
  --clr-white: #FFFFFF;
  --clr-body-text: #4A5568;
  --clr-heading: #1A202C;
  --ff-heading: 'Outfit', sans-serif;
  --ff-body: 'Inter', sans-serif;
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-full: 100px;
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  overflow-x: clip;
}

body {
  font-family: var(--ff-body);
  color: var(--clr-body-text);
  line-height: 1.7;
  background: var(--clr-white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--ff-heading);
  color: var(--clr-heading);
  font-weight: 700;
  line-height: 1.25;
}

a {
  text-decoration: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
}

/* ---- Utility ---- */
.section-padding {
  padding: 90px 0;
}

.bg-light-custom {
  background: var(--clr-light-bg);
}

/* ---- Section Headers ---- */
.section-header {
  margin-bottom: 50px;
}

.section-tag {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--clr-primary);
  margin-bottom: 10px;
}

.section-tag .tag-line {
  display: inline-block;
  width: 30px;
  height: 3px;
  background: var(--clr-primary);
  vertical-align: middle;
  margin: 0 8px;
  border-radius: 2px;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  color: var(--clr-heading);
  margin-bottom: 12px;
  position: relative;
}

.section-header .section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--clr-primary);
  margin: 12px auto 0;
  border-radius: 2px;
}

.section-desc {
  font-size: 16px;
  color: #777;
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================================
   1. STICKY HEADER / NAVBAR
   ============================================================ */
#mainNavbar {
  padding: 16px 0;
  transition: var(--transition);
  background: transparent;
  z-index: 1050;
}

#mainNavbar.scrolled {
  background: var(--clr-white) !important;
  box-shadow: var(--shadow-md);
  padding: 10px 0;
}

#mainNavbar.scrolled .nav-link {
  color: var(--clr-dark) !important;
}

#mainNavbar.scrolled .nav-link:hover,
#mainNavbar.scrolled .nav-link.active {
  color: var(--clr-primary) !important;
}

#mainNavbar.scrolled .navbar-toggler {
  border-color: var(--clr-dark);
}

#mainNavbar.scrolled .navbar-toggler-icon {
  filter: invert(1) grayscale(100%) brightness(0);
}

#mainNavbar .navbar-brand img {
  transition: var(--transition);
}

#mainNavbar.scrolled .navbar-brand img {
  filter: none;
}

/* Logo */
.navbar-brand {
  font-family: var(--ff-heading);
  display: flex;
  align-items: center;
  gap: 0;
}

/* Nav Links */
.navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px !important;
  letter-spacing: 0.3px;
  position: relative;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--clr-primary);
  transition: var(--transition);
  transform: translateX(-50%);
  border-radius: 2px;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 60%;
}

/* CTA Buttons */
.nav-cta-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-call-now {
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-dark));
  color: var(--clr-white) !important;
  border: none;
  border-radius: var(--radius-full);
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  transition: var(--transition);
}

.btn-call-now:hover {
  background: linear-gradient(135deg, var(--clr-primary-dark), var(--clr-primary));
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(195, 143, 96, 0.4);
  color: var(--clr-white) !important;
}

.btn-site-visit {
  border: 2px solid var(--clr-white);
  color: var(--clr-white) !important;
  border-radius: var(--radius-full);
  padding: 8px 22px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: var(--transition);
}

.btn-site-visit:hover {
  background: var(--clr-white);
  color: var(--clr-dark) !important;
  transform: translateY(-2px);
}

#mainNavbar.scrolled .btn-site-visit {
  border-color: var(--clr-dark);
  color: var(--clr-dark) !important;
}

#mainNavbar.scrolled .btn-site-visit:hover {
  background: var(--clr-dark);
  color: var(--clr-white) !important;
}

/* Mobile Collapse Menu */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: var(--clr-dark);
    padding: 20px;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    margin-top: 10px;
    box-shadow: var(--shadow-lg);
  }

  .navbar-collapse .nav-link {
    color: var(--clr-white) !important;
    padding: 12px 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 15px;
  }

  .navbar-collapse .nav-link:hover {
    color: var(--clr-primary-light) !important;
  }

  .navbar-collapse .nav-link::after {
    display: none;
  }

  .nav-cta-group {
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
  }

  .nav-cta-group .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .btn-site-visit {
    border-color: rgba(255, 255, 255, 0.3) !important;
  }
}

/* ============================================================
   2. HERO BANNER
   ============================================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: url('https://gaurchrysaliss.in/img/Banner/banner1.webp') center/cover no-repeat;
  padding-top: 80px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.5) 50%, rgba(15, 23, 42, 0.7) 100%);
  z-index: 0;
}

.hero-section .container {
  z-index: 1;
  padding-top: 40px;
}

.hero-badge {
  margin-top: 30px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--clr-white);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 5px;
}

.hero-title {
  font-size: clamp(40px, 6vw, 64px);
  color: var(--clr-white);
  font-weight: 700;
  margin-bottom: 8px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  color: var(--clr-gold-light);
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 24px;
}

.hero-price-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
}

.hero-price-pill {
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-dark));
  color: var(--clr-white);
  padding: 12px 24px;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
}

.hero-payment-pill {
  background: linear-gradient(135deg, #3c7046, #122918);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--clr-white);
  padding: 12px 22px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-payment-pill>i {
  font-size: 20px;
}

.price-label {
  font-size: 12px;
  font-weight: 500;
  opacity: 0.85;
  display: block;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.price-value {
  font-size: 16px;
  font-weight: 700;
  font-family: var(--ff-heading);
  display: block;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 28px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 16px 28px;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: var(--clr-white);
  transition: var(--transition);
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
}

.stat-card i {
  font-size: 22px;
  color: var(--clr-gold-light);
  margin-bottom: 4px;
}

.stat-number {
  font-size: 20px;
  font-weight: 700;
  font-family: var(--ff-heading);
}

.stat-label {
  font-size: 13px;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding-bottom: 40px;
}

.btn-hero-primary {
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-dark));
  color: var(--clr-white) !important;
  border: none;
  border-radius: var(--radius-full);
  padding: 14px 30px;
  font-size: 15px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(195, 143, 96, 0.4);
}

.btn-hero-outline {
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: var(--clr-white) !important;
  border-radius: var(--radius-full);
  padding: 12px 30px;
  font-size: 15px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.btn-hero-outline:hover {
  border-color: var(--clr-white);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

/* Hero Form */
.hero-form-card {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 420px;
}

.hero-form-title {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--clr-heading);
}

.hero-form-card .form-control {
  border: 1.5px solid #e5e7eb;
  border-radius: var(--radius-sm);
  font-size: 14px;
  background: #f9fafb;
  height: 52px;
}

.hero-form-card .form-control:focus {
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 3px rgba(195, 143, 96, 0.15);
  background: var(--clr-white);
}

.hero-form-card .form-floating label {
  font-size: 14px;
  color: #999;
}

.btn-submit-form {
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-dark));
  color: var(--clr-white) !important;
  border: none;
  border-radius: var(--radius-sm);
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 700;
  transition: var(--transition);
}

.btn-submit-form:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(195, 143, 96, 0.4);
}

.form-privacy {
  text-align: center;
  margin-top: 12px;
  font-size: 12px;
  color: #aaa;
  margin-bottom: 0;
}

/* ============================================================
   3. FEATURED PROJECTS
   ============================================================ */

/* ============================================================
   4. ABOUT PROJECT â€” Reference-Style Dark Botanical Design
   ============================================================ */
.about-section {
  position: relative;
  color: var(--clr-white);
  overflow: hidden;
}

.about-bg-image {
  position: absolute;
  inset: 0;
  background: url('../assets/images/about-bg.png') center/cover no-repeat;
  z-index: 0;
}

.about-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 35, 20, 0.88) 0%, rgba(20, 40, 25, 0.82) 50%, rgba(10, 25, 15, 0.90) 100%);
  z-index: 1;
  pointer-events: none;
}

.about-section .container {
  z-index: 2;
}

/* Image Wrapper */
.about-image-wrapper {
  position: relative;
}

/* Double Border Frame â€” Outer */
.about-image-frame-outer {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 18px;
  border-radius: 4px;
}

/* Double Border Frame â€” Inner */
.about-image-frame-inner {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 2px;
  overflow: hidden;
}

.about-img {
  width: 100%;
  display: block;
  border-radius: 0;
  max-width: none;
  box-shadow: none;
}

/* Logo Overlay at Bottom of Image */
.about-img-logo-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.40) 60%, transparent 100%);
  padding: 40px 24px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.about-logo-title {
  font-family: var(--ff-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--clr-white);
  letter-spacing: 4px;
  text-transform: uppercase;
}

.about-logo-sub {
  font-family: var(--ff-body);
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 4px;
}

/* RERA Badge */

/* Right Column Text */
.about-heading {
  font-family: var(--ff-heading);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 24px;
  line-height: 1.2;
}

.about-text {
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.85;
  margin-bottom: 18px;
}

/* Download Brochure Button â€” Reference Style */
.btn-brochure-new {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: var(--clr-white) !important;
  border-radius: var(--radius-sm);
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: var(--transition);
  margin-top: 12px;
}

.btn-brochure-new:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.btn-brochure-new i {
  font-size: 16px;
}

/* Mobile Responsive */
@media (max-width: 991.98px) {
  .about-image-frame-outer {
    max-width: 420px;
    margin: 0 auto 20px;
  }
}

/* ============================================================
   5. HIGHLIGHTS
   ============================================================ */
.highlight-card {
  background: var(--clr-white);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  border: 1px solid #f0f0f0;
}

.highlight-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--clr-primary);
}

.highlight-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(195, 143, 96, 0.1), rgba(195, 143, 96, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.highlight-icon i {
  font-size: 26px;
  color: var(--clr-primary);
}

.highlight-card h5 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}

.highlight-card p {
  font-size: 13px;
  color: #888;
  margin-bottom: 0;
  line-height: 1.6;
}

/* ============================================================
   6. KEY STATS BAR
   ============================================================ */
.stats-bar {
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-dark));
  padding: 50px 0;
  border-radius: var(--radius-lg);
  margin: 0 40px;
  position: relative;
  top: -40px;
  margin-bottom: -40px;
  z-index: 2;
}

.stats-item {
  padding: 16px;
}

.stats-number {
  display: block;
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 700;
  color: var(--clr-white);
  font-family: var(--ff-heading);
  line-height: 1.1;
}

.stats-label {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================================
   7. AMENITIES
   ============================================================ */

/* ============================================================
   8. FLOOR PLANS
   ============================================================ */

/* ============================================================
   9. GALLERY
   ============================================================ */
.gallery-item {
  display: block;
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 260px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-hover {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-hover {
  opacity: 1;
}

.gallery-hover i {
  font-size: 32px;
  color: var(--clr-white);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.8);
  transition: var(--transition);
}

.gallery-item:hover .gallery-hover i {
  transform: scale(1);
}

/* ============================================================
   10. LOCATION
   ============================================================ */

/* ============================================================
   11. ENQUIRY / CONTACT
   ============================================================ */
.contact-section {
  background: linear-gradient(135deg, var(--clr-dark) 0%, #1e293b 100%);
  padding: 90px 0;
  color: var(--clr-white);
}

.contact-title {
  font-size: clamp(28px, 4vw, 42px);
  color: var(--clr-white);
  margin-bottom: 16px;
  line-height: 1.3;
}

.contact-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  margin-bottom: 32px;
  max-width: 480px;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  transition: var(--transition);
}

.contact-info-item:hover {
  background: rgba(255, 255, 255, 0.1);
}

.contact-info-item i {
  font-size: 22px;
  color: var(--clr-primary-light);
}

.contact-info-item span {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-info-item a {
  color: var(--clr-white);
  font-size: 16px;
  font-weight: 600;
}

.contact-info-item a:hover {
  color: var(--clr-gold-light);
}

.contact-form-card {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-lg);
}

.contact-form-card h4 {
  text-align: center;
  margin-bottom: 24px;
  font-size: 20px;
}

.contact-form-card .form-control {
  border: 1.5px solid #e5e7eb;
  border-radius: var(--radius-sm);
  font-size: 14px;
  background: #f9fafb;
}

.contact-form-card .form-control:focus {
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 3px rgba(195, 143, 96, 0.15);
  background: var(--clr-white);
}

.btn-submit-contact {
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-dark));
  color: var(--clr-white) !important;
  border: none;
  border-radius: var(--radius-sm);
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 700;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-submit-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(195, 143, 96, 0.4);
}

/* ---- Form Placeholders ---- */
#contactForm ::placeholder {
  color: #000000 !important;
  opacity: 1;
}

#contactForm .form-floating>label {
  color: #000000 !important;
}

/* ============================================================
   12. FOOTER
   ============================================================ */
.site-footer {
  background: var(--clr-dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 60px 0 0;
}

.footer-brand {
  margin-bottom: 16px;
}

.footer-about {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 20px;
}

.footer-heading {
  font-size: 16px;
  color: var(--clr-white);
  margin-bottom: 20px;
  font-family: var(--ff-body);
  font-weight: 700;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--clr-primary);
  border-radius: 2px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links a i {
  color: var(--clr-primary);
  font-size: 14px;
  transition: transform 0.3s ease;
}

.footer-links a:hover {
  color: var(--clr-white);
  transform: translateX(4px);
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  font-size: 14px;
  margin-bottom: 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.55);
}

.footer-contact li i {
  color: var(--clr-primary-light);
  font-size: 15px;
  margin-top: 3px;
  flex-shrink: 0;
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer-contact li:hover i {
  transform: scale(1.15);
  color: var(--clr-white);
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: var(--clr-white);
}

.footer-disclaimer {
  font-size: 12px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.4);
}

/* ============================================================
   PREMIUM INVESTMENT BENEFIT CARDS
   ============================================================ */
.premium-benefit-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.premium-benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--clr-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: -1;
}

.premium-benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border-color: rgba(195, 143, 96, 0.1);
}

.premium-benefit-card:hover::before {
  transform: scaleX(1);
}

.premium-benefit-card .benefit-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(195, 143, 96, 0.1);
  color: var(--clr-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 35px;
  transition: all 0.3s ease;
}

.premium-benefit-card:hover .benefit-icon {
  background: var(--clr-primary);
  color: var(--clr-white);
  transform: rotateY(180deg);
}

.premium-benefit-card h4 {
  transition: color 0.3s ease;
}

.premium-benefit-card:hover h4 {
  color: var(--clr-primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  margin-top: 40px;
}

.footer-bottom p {
  font-size: 13px;
  margin: 0;
  color: rgba(255, 255, 255, 0.45);
}

/* ---- Floating Action Buttons (Desktop alternative to side buttons) ---- */
.floating-actions-desktop {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.floating-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: var(--clr-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
}

.floating-btn:hover {
  transform: scale(1.1) rotate(5deg);
  color: var(--clr-white);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.message-float {
  background: var(--clr-primary);
  /* Brand Gold */
}

.whatsapp-float {
  background: #25D366;
  /* WhatsApp Green */
}

/* --- Premium Mobile Action Bar (Redesigned) --- */
.premium-mobile-bar {
  position: fixed !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 100% !important;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.08);
  z-index: 99999;
  padding-top: 16px;
}

.mobile-action-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #2d3748;
  gap: 4px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  padding-bottom: 16px;
  position: relative;
}

.action-icon-wrapper {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  color: #4a5568;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
}

.btn-call .action-icon-wrapper {
  color: var(--clr-primary);
  background: rgba(195, 143, 96, 0.1);
}

.btn-enquire .action-icon-wrapper {
  color: var(--clr-primary-dark);
  background: rgba(63, 42, 26, 0.08);
}

.btn-whatsapp .action-icon-wrapper.whatsapp-glow {
  color: #fff;
  background: #25D366;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.action-label {
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #4a5568;
  font-family: var(--ff-body);
  padding-bottom: 10px;
}

/* Hover & Active States */
.mobile-action-btn:active .action-icon-wrapper {
  transform: scale(0.92);
}

.btn-call:active .action-icon-wrapper,
.btn-call:hover .action-icon-wrapper {
  background: var(--clr-primary);
  color: #fff;
  box-shadow: 0 4px 12px rgba(195, 143, 96, 0.3);
}

.btn-enquire:active .action-icon-wrapper,
.btn-enquire:hover .action-icon-wrapper {
  background: var(--clr-primary-dark);
  color: #fff;
  box-shadow: 0 4px 12px rgba(63, 42, 26, 0.3);
}

.btn-whatsapp:active .action-icon-wrapper.whatsapp-glow,
.btn-whatsapp:hover .action-icon-wrapper.whatsapp-glow {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

/* --- Responsive Contact Visibility --- */

/* On Mobile: Hide side buttons and ALL desktop floating actions. Show sticky footer. */
@media (max-width: 991px) {

  .fixed-side-buttons,
  .floating-actions-desktop {
    display: none !important;
  }

  body {
    padding-bottom: calc(70px + env(safe-area-inset-bottom)) !important;
  }
}

/* On Desktop: Hide side buttons and mobile sticky footer. Show floating actions. */
@media (min-width: 992px) {

  .fixed-side-buttons,
  .premium-mobile-bar {
    display: none !important;
  }
}

/* ---- Fixed Right Side Buttons ---- */
.fixed-side-buttons {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 1040;
  display: flex;
  flex-direction: column;
}

.side-btn {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-white);
  font-size: 22px;
  border: none;
  cursor: pointer;
  overflow: hidden;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.side-btn i {
  flex-shrink: 0;
}

.btn-side-call {
  background-color: var(--clr-primary);
  border-top-left-radius: 6px;
}

.btn-side-call:hover {
  background-color: var(--clr-primary-dark);
  color: var(--clr-white);
}

.btn-side-message {
  background-color: #8b6240;
}

.btn-side-message:hover {
  background-color: var(--clr-primary-dark);
  color: var(--clr-white);
}

.btn-side-whatsapp {
  background-color: #22c55e;
  border-bottom-left-radius: 6px;
}

.btn-side-whatsapp:hover {
  background-color: #16a34a;
  color: var(--clr-white);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 991.98px) {
  .hero-section {
    min-height: auto;
    padding: 100px 0 60px;
  }

  .hero-content {
    text-align: center;
  }

  .hero-badge {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-price-row,
  .hero-stats,
  .hero-cta-group {
    justify-content: center;
  }

  .hero-price-pill,
  .hero-payment-pill {
    align-items: center;
    text-align: center;
  }

  .price-value {
    text-align: center;
  }

  .hero-form-card {
    margin: 0 auto;
  }

  .stats-bar {
    margin: 0 20px;
    top: -30px;
    margin-bottom: -30px;
    border-radius: var(--radius-md);
  }

  .about-image-wrapper {
    text-align: center;
    display: block;
  }

  .about-img {
    margin: 0 auto;
    display: block;
  }

  .contact-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .contact-info-cards {
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 767.98px) {
  .section-padding {
    padding: 60px 0;
  }

  .hero-title {
    font-size: clamp(32px, 8vw, 44px);
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .price-value {
    font-size: 18px;
  }

  .stat-card {
    padding: 12px 18px;
  }

  .stat-number {
    font-size: 22px;
  }

  .stats-bar {
    margin: 0 16px;
    top: -20px;
    margin-bottom: -20px;
    padding: 30px 0;
  }

  .stats-number {
    font-size: clamp(24px, 5vw, 32px);
  }

  .gallery-item {
    height: 200px;
  }

  .contact-section {
    padding: 60px 0;
  }

  .contact-form-card {
    padding: 28px 20px;
  }
}

@media (max-width: 575.98px) {
  .hero-form-card {
    padding: 28px 20px;
    max-width: 100%;
  }

  .hero-stats {
    gap: 10px;
  }

  .stat-card {
    flex: 1;
    min-width: 80px;
    padding: 10px 12px;
  }

  .hero-price-row {
    flex-direction: column;
    align-items: center;
  }

  .hero-price-pill,
  .hero-payment-pill {
    width: 100%;
    max-width: 280px;
    padding: 12px 56px;
  }

  .stats-bar {
    margin: 0 12px;
    border-radius: var(--radius-sm);
  }

  .contact-info-cards {
    max-width: 100%;
  }
}

/* ---- Animations & Scroll Reveal ---- */

/* ============================================================
   PREMIUM SPECIFICATIONS HUB
   ============================================================ */
.specs-wrapper {
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.spec-tabs {
  border-bottom: none !important;
  gap: 10px;
}

.spec-tabs .nav-link {
  color: rgba(255, 255, 255, 0.6) !important;
  border-radius: var(--radius-sm) !important;
  transition: var(--transition);
  border: 1px solid transparent;
}

.spec-tabs .nav-link.active {
  background: var(--clr-primary) !important;
  color: var(--clr-white) !important;
  box-shadow: 0 4px 15px rgba(74, 124, 89, 0.3);
}

.spec-tabs .nav-link:hover:not(.active) {
  background: rgba(255, 255, 255, 0.1);
  color: var(--clr-white) !important;
}

.spec-tab-content {
  background: #fff;
  min-height: 400px;
}

.spec-detail-box {
  padding: 25px;
  border-radius: var(--radius-md);
  background: #fdfdfd;
  border: 1px solid #f0f0f0;
  height: 100%;
  transition: var(--transition);
}

.spec-detail-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--clr-primary-light);
}

.spec-detail-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #f5f5f5;
  display: flex;
  align-items: center;
}

.spec-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.spec-list li {
  margin-bottom: 10px;
  font-size: 14px;
  color: #444;
  position: relative;
  padding-left: 20px;
  line-height: 1.6;
}



.spec-list li strong {
  color: var(--clr-heading);
  font-weight: 600;
}

/* Mobile Optimizations */
@media (max-width: 767.98px) {
  .spec-tabs {
    flex-direction: column;
  }

  .spec-tabs .nav-item {
    width: 100%;
  }

  .spec-tab-content {
    padding: 20px !important;
  }
}

/* ============================================================
   PREMIUM AMENITIES SECTION ANIMATIONS
   ============================================================ */
.premium-amenity-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3/4;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  background-color: #000;
}

.premium-amenity-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.premium-amenity-card .amenity-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, opacity 0.4s ease;
  opacity: 0.85;
}

.premium-amenity-card:hover .amenity-bg {
  transform: scale(1.1);
  opacity: 1;
}

.premium-amenity-card .amenity-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 2rem 1.5rem;
  opacity: 0.9;
  transition: all 0.4s ease;
}

.premium-amenity-card:hover .amenity-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0) 100%);
  opacity: 1;
}

.premium-amenity-card .amenity-content {
  text-align: center;
  color: white;
  transform: translateY(20px);
  transition: transform 0.4s ease;
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 15px;
  border-radius: 12px;
}

.premium-amenity-card:hover .amenity-content {
  transform: translateY(0);

  .hero-price-pill,
  .hero-payment-pill {
    width: 100%;
    max-width: 280px;
  }

  .stats-bar {
    margin: 0 12px;
    border-radius: var(--radius-sm);
  }

  .contact-info-cards {
    max-width: 100%;
  }
}

/* ---- Animations & Scroll Reveal ---- */

/* ============================================================
   PREMIUM SPECIFICATIONS HUB
   ============================================================ */
.specs-wrapper {
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.spec-tabs {
  border-bottom: none !important;
  gap: 10px;
}

.spec-tabs .nav-link {
  color: rgba(255, 255, 255, 0.6) !important;
  border-radius: var(--radius-sm) !important;
  transition: var(--transition);
  border: 1px solid transparent;
}

.spec-tabs .nav-link.active {
  background: var(--clr-primary) !important;
  color: var(--clr-white) !important;
  box-shadow: 0 4px 15px rgba(195, 143, 96, 0.3);
}

.spec-tabs .nav-link:hover:not(.active) {
  background: rgba(255, 255, 255, 0.1);
  color: var(--clr-white) !important;
}

.spec-tab-content {
  background: #fff;
  min-height: 400px;
}

.spec-detail-box {
  padding: 25px;
  border-radius: var(--radius-md);
  background: #fdfdfd;
  border: 1px solid #f0f0f0;
  height: 100%;
  transition: var(--transition);
}

.spec-detail-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--clr-primary-light);
}

.spec-detail-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #f5f5f5;
  display: flex;
  align-items: center;
}

.spec-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.spec-list li {
  margin-bottom: 10px;
  font-size: 14px;
  color: #444;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.6;
}

.spec-list li strong {
  color: var(--clr-heading);
  font-weight: 600;
}

/* Mobile Optimizations */
@media (max-width: 767.98px) {
  .spec-tabs {
    flex-direction: column;
  }

  .spec-tabs .nav-item {
    width: 100%;
  }

  .spec-tab-content {
    padding: 20px !important;
  }
}

/* ============================================================
   PREMIUM AMENITIES SECTION ANIMATIONS
   ============================================================ */
.premium-amenity-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3/4;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  background-color: #000;
}

.premium-amenity-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.premium-amenity-card .amenity-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, opacity 0.4s ease;
  opacity: 0.85;
}

.premium-amenity-card:hover .amenity-bg {
  transform: scale(1.1);
  opacity: 1;
}

.premium-amenity-card .amenity-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 2rem 1.5rem;
  opacity: 0.9;
  transition: all 0.4s ease;
}

.premium-amenity-card:hover .amenity-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0) 100%);
  opacity: 1;
}

.premium-amenity-card .amenity-content {
  text-align: center;
  color: white;
  transform: translateY(20px);
  transition: transform 0.4s ease;
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 15px;
  border-radius: 12px;
}

.premium-amenity-card:hover .amenity-content {
  transform: translateY(0);
}

.premium-amenity-card .amenity-content h5 {
  letter-spacing: 0.5px;
  font-size: 1.1rem;
  color: white;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* ============================================================
   FOOTER SOCIAL ICONS
   ============================================================ */
.footer-social {
  display: flex;
  gap: 15px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--clr-white);
  font-size: 1.2rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  background: var(--clr-primary);
  color: var(--clr-white);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(195, 143, 96, 0.4);
}