/* =============================================
   L&T Realty Vayam – Main Stylesheet
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;600;700&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --brand:       #025150;
  --brand-dark:  #013a39;
  --brand-light: #037a78;
  --accent:      #ab7f2d;
  --accent-light:#c9a34e;
  --surface:     #f7f4ee;
  --surface2:    #eee9df;
  --white:       #ffffff;
  --text:        #1f2328;
  --muted:       #5f6b73;
  --nav-h:       72px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', Arial, sans-serif;
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.25;
}

/* ---------- Utility ---------- */
.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.section-title {
  font-size: clamp(28px, 4vw, 46px);
  color: var(--brand);
  margin-bottom: 12px;
}
.section-subtitle {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 660px;
}
.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
  margin: 14px 0 28px;
}
.divider-center { margin-left: auto; margin-right: auto; }
.text-center { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border: none;
  border-radius: 4px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.btn:hover::after { transform: scaleX(1); }
.btn-primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  box-shadow: 0 6px 20px rgba(2,81,80,0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(2,81,80,0.4); }
.btn-accent {
  background: linear-gradient(135deg, var(--accent), #8a6222);
  color: #fff;
  box-shadow: 0 6px 20px rgba(171,127,45,0.35);
}
.btn-accent:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(171,127,45,0.5); }
.btn-outline {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
}
.btn-outline:hover { background: var(--accent); color: #fff; }
.btn-white {
  background: #fff;
  color: var(--brand);
  font-weight: 700;
}
.btn-white:hover { background: var(--surface); }

/* =============================================
   NAVBAR
   ============================================= */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(2,81,80,0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.15);
  transition: background 0.3s;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav-logo img {
  height: 46px;
  width: auto;
  object-fit: contain;
}
.nav-logo .logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-logo .logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}
.nav-logo .logo-sub {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-light);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 12.5px;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 4px;
  transition: all 0.2s;
  position: relative;
  letter-spacing: 0.3px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 10px; right: 10px;
  height: 2px;
  background: var(--accent-light);
  transform: scaleX(0);
  transition: transform 0.2s;
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta { display: flex; align-items: center; gap: 16px; }
.nav-cta .btn { padding: 10px 22px; font-size: 13px; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile menu */
.nav-mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--brand-dark);
  padding: 20px 24px;
  z-index: 999;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu a {
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-mobile-menu a:last-child { border-bottom: none; }
.nav-mobile-enquire {
  margin-top: 16px;
}

/* =============================================
   BANNER
   ============================================= */
#section-banner {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 0;
}
.banner-bg {
  position: absolute;
  inset: 0;
  background: url('../images/banner.webp') center/cover no-repeat;
  transform: scale(1.05);
  transition: transform 8s ease;
}
#section-banner:hover .banner-bg { transform: scale(1); }
.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(1,58,57,0.85) 0%,
    rgba(1,58,57,0.6) 50%,
    rgba(1,58,57,0.2) 100%
  );
}
.banner-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding-top: var(--nav-h);
}
.banner-tag {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 2px;
  margin-bottom: 20px;
  animation: fadeDown 0.8s ease both;
}
.banner-title {
  font-size: clamp(36px, 6vw, 72px);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 18px;
  animation: fadeDown 0.8s 0.15s ease both;
}
.banner-title span { color: var(--accent-light); }
.banner-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(14px, 2vw, 18px);
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  margin-bottom: 32px;
  animation: fadeDown 0.8s 0.3s ease both;
}
.banner-stats {
  display: flex;
  gap: 32px;
  margin-bottom: 36px;
  animation: fadeDown 0.8s 0.45s ease both;
}
.banner-stat {
  border-left: 3px solid var(--accent);
  padding-left: 14px;
}
.banner-stat strong {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.banner-stat span {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.banner-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeDown 0.8s 0.6s ease both;
}
.banner-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.6);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.scroll-arrow {
  width: 24px;
  height: 24px;
  border-right: 2px solid rgba(255,255,255,0.6);
  border-bottom: 2px solid rgba(255,255,255,0.6);
  transform: rotate(45deg);
}

/* =============================================
   SECTION COMMON
   ============================================= */
.section-pad {
  padding: 90px 0;
}
.section-pad-sm {
  padding: 60px 0;
}

/* =============================================
   HIGHLIGHTS
   ============================================= */
#section-highlights {
  background: #fff;
}
.highlights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.highlights-img {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(2,81,80,0.18);
}
.highlights-img img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.highlights-img:hover img { transform: scale(1.04); }
.highlights-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--accent);
  color: #fff;
  padding: 14px 22px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 15px;
}
.highlights-badge span {
  display: block;
  font-size: 11px;
  font-weight: 400;
  opacity: 0.85;
  margin-top: 2px;
}
.highlights-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
}
.highlights-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  background: var(--surface);
  border-left: 4px solid transparent;
  border-radius: 6px;
  transition: all 0.25s;
}
.highlights-item:hover {
  border-left-color: var(--accent);
  background: var(--surface2);
  transform: translateX(4px);
}
.highlights-icon {
  flex: 0 0 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--brand), var(--brand-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
}
.highlights-item p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text);
}

/* Custom Connectivity List */
.connectivity-list {
  display: flex;
  flex-direction: column;
  margin-top: 24px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid rgba(171,127,45,0.18);
  padding: 8px 24px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.03);
}
.connectivity-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1.5px solid rgba(171,127,45,0.18);
  font-size: 14.5px;
  color: var(--text);
  font-weight: 500;
  transition: padding-left 0.25s;
}
.connectivity-item:hover {
  padding-left: 6px;
}
.connectivity-item:last-child {
  border-bottom: none;
}
.connectivity-icon {
  flex-shrink: 0;
  margin-right: 4px;
}

/* =============================================
   FEATURES
   ============================================= */
#section-features {
  background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 100%);
  position: relative;
  overflow: hidden;
}
#section-features::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
#section-features .section-title { color: #fff; }
#section-features .section-label { color: var(--accent-light); }
#section-features .divider { background: linear-gradient(90deg, var(--accent-light), transparent); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.feature-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 32px 28px;
  text-align: center;
  transition: all 0.3s;
  backdrop-filter: blur(4px);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(171,127,45,0.15), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.feature-card:hover { transform: translateY(-6px); border-color: var(--accent); }
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  font-size: 42px;
  margin-bottom: 16px;
}
.feature-num {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--accent-light);
  line-height: 1;
  margin-bottom: 6px;
}
.feature-label {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.feature-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-top: 8px;
}

/* =============================================
   CONFIGURATIONS
   ============================================= */
#section-configurations {
  background: var(--surface);
}
.config-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.config-card {
  background: #fff;
  border: 1px solid rgba(2,81,80,0.1);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  transition: all 0.3s;
}
.config-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(2,81,80,0.15);
  border-color: var(--accent);
}
.config-header {
  background: linear-gradient(135deg, var(--brand), var(--brand-light));
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.config-type {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}
.config-area {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.15);
  padding: 4px 12px;
  border-radius: 20px;
}
.config-body {
  padding: 24px;
}
.config-price {
  font-size: 26px;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 18px;
}
.config-price span {
  font-size: 14px;
  color: var(--muted);
  font-weight: 400;
}
.config-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.config-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text);
}
.config-feature::before {
  content: '✓';
  color: var(--brand);
  font-weight: 700;
  font-size: 14px;
}
.config-card .btn { width: 100%; justify-content: center; }

/* =============================================
   FLOOR PLANS
   ============================================= */
#section-floorplans {
  background: #fff;
}
.floorplan-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 36px 0 40px;
}
.fp-tab {
  padding: 10px 24px;
  border: 2px solid rgba(2,81,80,0.2);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s;
  background: transparent;
  font-family: 'Poppins', sans-serif;
}
.fp-tab.active, .fp-tab:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}
.floorplan-panel {
  display: none;
}
.floorplan-panel.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.fp-image {
  border: 1px solid rgba(2,81,80,0.12);
  border-radius: 8px;
  overflow: hidden;
  padding: 24px;
  background: var(--surface);
}
.fp-image img { width: 100%; }
.fp-details h3 {
  font-size: 28px;
  color: var(--brand);
  margin-bottom: 8px;
}
.fp-area {
  font-size: 18px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 22px;
}
.fp-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 28px;
}
.fp-spec {
  background: var(--surface);
  padding: 16px;
  border-radius: 8px;
}
.fp-spec strong {
  display: block;
  font-size: 20px;
  color: var(--brand);
  font-weight: 700;
}
.fp-spec span {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.fp-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, var(--brand), var(--brand-light));
  padding: 20px 24px;
  border-radius: 8px;
  color: #fff;
  margin-bottom: 20px;
}
.fp-price-row strong { font-size: 28px; font-weight: 700; }
.fp-price-row span { font-size: 13px; opacity: 0.75; }

/* =============================================
   GALLERY
   ============================================= */
#section-gallery {
  background: var(--surface);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
  margin-top: 48px;
}
.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
}
.gallery-item:first-child {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  min-height: 220px;
}
.gallery-item:first-child img { min-height: 460px; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(1,58,57,0.7), transparent);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* =============================================
   AMENITIES
   ============================================= */
#section-amenities {
  background: #fff;
}
.amenities-header-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}
.amenities-img {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(2,81,80,0.15);
}
.amenities-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
.amenities-icons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 20px;
}
.amenity-card {
  background: var(--surface);
  border: 1px solid rgba(2,81,80,0.08);
  border-radius: 10px;
  padding: 24px 16px;
  text-align: center;
  transition: all 0.3s;
}
.amenity-card:hover {
  background: var(--brand);
  border-color: var(--brand);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(2,81,80,0.2);
}
.amenity-card:hover .amenity-name { color: rgba(255,255,255,0.9); }
.amenity-icon {
  font-size: 32px;
  margin-bottom: 10px;
}
.amenity-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  transition: color 0.3s;
}

/* =============================================
   LOCATION
   ============================================= */
#section-location {
  background: var(--surface);
}
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 48px;
}
.location-map {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}
.location-map iframe {
  width: 100%;
  height: 440px;
  border: 0;
  display: block;
}
.location-landmarks {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.landmark-group h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(171,127,45,0.25);
}
.landmark-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  font-size: 14px;
}
.landmark-item span:first-child { color: var(--text); }
.landmark-item span:last-child {
  color: var(--brand);
  font-weight: 600;
  font-size: 13px;
}

/* =============================================
   GET IN TOUCH
   ============================================= */
#section-get-in-touch {
  background: linear-gradient(135deg, var(--brand-dark), var(--brand));
  position: relative;
  overflow: hidden;
}
#section-get-in-touch::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: rgba(171,127,45,0.08);
  border-radius: 50%;
  pointer-events: none;
}
#section-get-in-touch::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -80px;
  width: 500px;
  height: 500px;
  background: rgba(171,127,45,0.05);
  border-radius: 50%;
  pointer-events: none;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.contact-info .section-title { color: #fff; }
.contact-info .section-label { color: var(--accent-light); }
.contact-info .section-subtitle { color: rgba(255,255,255,0.7); }
.contact-info .divider { background: linear-gradient(90deg, var(--accent-light), transparent); }
.contact-points {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-point {
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(255,255,255,0.85);
  font-size: 15px;
}
.contact-point-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(171,127,45,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex: 0 0 44px;
}
/* Form */
.contact-form-card {
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
}
.contact-form-card h3 {
  font-size: 24px;
  color: var(--brand);
  margin-bottom: 8px;
}
.contact-form-card p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 28px;
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}
.form-control {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid rgba(2,81,80,0.15);
  border-radius: 6px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: var(--text);
  background: #fff;
  transition: border-color 0.2s;
  outline: none;
}
.form-control:focus { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(2,81,80,0.08); }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%235f6b73' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.form-control.textarea { resize: vertical; min-height: 100px; }
.form-submit {
  width: 100%;
  margin-top: 8px;
  justify-content: center;
  font-size: 15px;
  padding: 15px;
}
.form-privacy {
  text-align: center;
  font-size: 11px;
  color: var(--muted);
  margin-top: 12px;
}
.form-privacy a { color: var(--brand); text-decoration: underline; }

/* =============================================
   FOOTER
   ============================================= */
footer {
  background: var(--brand-dark);
  color: rgba(255,255,255,0.6);
  padding: 32px 0;
  text-align: center;
  font-size: 13px;
  border-top: 1px solid rgba(171,127,45,0.2);
}
footer strong { color: rgba(255,255,255,0.9); }
footer .footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 14px;
}
footer .footer-links a {
  color: rgba(255,255,255,0.5);
  font-size: 12px;
  transition: color 0.2s;
}
footer .footer-links a:hover { color: var(--accent-light); }
.footer-rera {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  margin-top: 8px;
}

/* =============================================
   FLOATING ACTIONS
   ============================================= */
.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 990;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  color: #fff;
  font-size: 26px;
  transition: transform 0.3s;
}
.floating-whatsapp:hover { transform: scale(1.1); }

/* Mobile bottom bar */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  grid-template-columns: repeat(3, 1fr);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}
.mobile-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 8px;
  background: var(--brand);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-right: 1px solid rgba(255,255,255,0.1);
  transition: background 0.2s;
}
.mobile-bar a:last-child { border-right: none; }
.mobile-bar a:nth-child(2) { background: var(--brand-light); }
.mobile-bar a:nth-child(3) { background: var(--accent); }
.mobile-bar a:hover { filter: brightness(1.1); }

/* =============================================
   MODAL
   ============================================= */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: #fff;
  border-radius: 12px;
  width: min(480px, 100%);
  padding: 36px;
  position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
  animation: modalIn 0.3s ease;
}
@keyframes modalIn {
  from { transform: translateY(24px) scale(0.97); opacity: 0; }
  to   { transform: none; opacity: 1; }
}
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 32px; height: 32px;
  background: var(--surface);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--muted);
  transition: all 0.2s;
}
.modal-close:hover { background: #e0ddd7; color: var(--text); }
.modal-logo { height: 40px; margin-bottom: 18px; }
.modal-box h3 {
  font-size: 22px;
  color: var(--brand);
  margin-bottom: 6px;
}
.modal-box p { font-size: 13px; color: var(--muted); margin-bottom: 22px; }

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: none; }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .highlights-grid,
  .floorplan-panel.active,
  .amenities-header-grid,
  .location-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .highlights-img img { height: 360px; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-item:first-child {
    grid-column: 1 / 3;
    grid-row: 1;
  }
}
@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  #section-banner {
    height: auto;
    min-height: 100svh;
    padding-top: 100px;
    padding-bottom: 60px;
  }
  .banner-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 20px;
    margin-bottom: 24px;
  }
  .banner-stat strong { font-size: 20px; }
  .banner-stat span { font-size: 10px; letter-spacing: 0.5px; }
  .banner-actions {
    flex-direction: column;
    gap: 12px;
  }
  .banner-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:first-child { grid-column: 1; grid-row: 1; }
  .gallery-item:first-child img { min-height: 280px; }
  .fp-specs { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  body { padding-bottom: 56px; }
  .mobile-bar { display: grid; }
  .floating-whatsapp { bottom: 70px; }
  .contact-form-card { padding: 24px; }
}
@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr 1fr; }
  .config-grid { grid-template-columns: 1fr; }
}

/* =============================================
   ENQUIRY MODAL
   ============================================= */
.enquiry-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 3000;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}
.enquiry-modal-overlay.open {
  display: flex;
}
.enquiry-modal-box {
  position: relative;
  background: #fff;
  border: 1px solid rgba(171,127,45,0.28);
  border-radius: 6px;
  width: min(480px, 100%);
  padding: 24px 28px 20px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
  animation: modalSlideIn 0.32s cubic-bezier(0.34,1.56,0.64,1) both;
}
@keyframes modalSlideIn {
  from { transform: translateY(32px) scale(0.96); opacity: 0; }
  to   { transform: none; opacity: 1; }
}
.enquiry-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  background: #f3f3f3;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  line-height: 1;
}
.enquiry-modal-close:hover {
  background: var(--brand);
  color: #fff;
}
.enquiry-modal-logo {
  text-align: center;
  margin-bottom: 10px;
}
.enquiry-modal-logo img {
  max-width: 160px;
  height: auto;
  display: block;
  margin: 0 auto;
}
.enquiry-modal-box h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text);
  text-align: center;
  margin-bottom: 14px;
}
.modal-form-group {
  margin-bottom: 12px;
}
.modal-form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.modal-form-group input {
  width: 100%;
  padding: 10px 12px;
  border: 1.5px solid rgba(2,81,80,0.18);
  border-radius: 4px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: var(--text);
  background: #fff;
  outline: none;
  transition: border-color 0.2s;
}
.modal-form-group input:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(2,81,80,0.08);
}
.modal-form-group input::placeholder {
  color: #b0b8bf;
}
.modal-err {
  display: block;
  font-size: 11.5px;
  color: #dc3545;
  margin-top: 4px;
  min-height: 14px;
}
.modal-submit-btn {
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  border: none;
  border-radius: 4px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  margin-top: 4px;
  transition: all 0.3s;
  box-shadow: 0 6px 20px rgba(2,81,80,0.25);
}
.modal-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(2,81,80,0.35);
}
.modal-privacy {
  text-align: center;
  font-size: 11px;
  color: var(--muted);
  margin-top: 10px;
}
.modal-privacy a {
  color: var(--brand);
  text-decoration: underline;
}

/* =============================================
   FLOATING ENQUIRE FAB
   ============================================= */
.floating-enquire-fab {
  position: fixed;
  bottom: 90px;
  right: 24px;
  z-index: 990;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(2,81,80,0.35);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  transition: transform 0.3s;
}
.floating-enquire-fab:hover { transform: scale(1.1); }

@media (max-width: 768px) {
  .floating-enquire-fab { display: none; }
}

/* =============================================
   BANNER CAROUSEL (FADING SLIDES)
   ============================================= */
.banner-carousel {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}
.banner-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 1;
  transition: opacity 1s ease-in-out;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.banner-slide.active {
  opacity: 1;
  z-index: 2;
}

/* =============================================
   FLOOR PLAN CARDS (GREEN/GOLD DESIGN WITH THEME VARIABLES)
   ============================================= */
.fp-green-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 48px;
}
.fp-green-card {
  border: 1.5px solid var(--accent);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(171,127,45,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.fp-green-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(171,127,45,0.25);
}
.fp-green-img-area {
  position: relative;
  height: 280px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(0px);
  transition: filter 0.3s;
}
.fp-green-img-blur {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(5px) brightness(0.95);
  transform: scale(1.05);
}
.fp-green-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.2);
  z-index: 2;
}
.fp-green-btn {
  background-color: var(--accent);
  color: #fff;
  border: none;
  padding: 12px 24px;
  font-family: 'Poppins', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  transition: background-color 0.25s, transform 0.2s;
}
.fp-green-btn:hover {
  background-color: var(--brand-dark);
  transform: scale(1.05);
}
.fp-green-bottom-bar {
  background-color: var(--brand);
  color: #fff;
  text-align: center;
  padding: 12px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-top: 1.5px solid var(--accent);
}

/* =============================================
   GET IN TOUCH (IMAGE 1 DESIGN WITH SITE THEME VARIABLES)
   ============================================= */
.git-rust-box {
  background-color: var(--brand-dark);
  color: #fff;
  border-radius: 8px;
  padding: 48px;
  box-shadow: 0 20px 50px rgba(1,58,57,0.25);
  position: relative;
  overflow: hidden;
}
.git-rust-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: start;
}
.git-rust-title {
  font-size: clamp(32px, 4.5vw, 56px);
  color: #fff;
  font-family: 'Playfair Display', serif;
  margin-bottom: 24px;
}
.git-rust-form-group {
  margin-bottom: 20px;
}
.git-rust-form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: rgba(255,255,255,0.95);
}
.git-rust-input {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid rgba(255,255,255,0.35);
  background: transparent;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  border-radius: 4px;
  outline: none;
  transition: border-color 0.25s, background-color 0.25s;
}
.git-rust-input:focus {
  border-color: var(--accent-light);
  background-color: rgba(255,255,255,0.06);
}
.git-rust-input::placeholder {
  color: rgba(255,255,255,0.55);
}
.git-rust-submit {
  width: 100%;
  max-width: 280px;
  background-color: #fff;
  color: var(--brand-dark);
  border: none;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.25s, transform 0.2s;
  margin-top: 12px;
}
.git-rust-submit:hover {
  background-color: var(--surface);
  transform: translateY(-2px);
}

/* Map area & Floating Call/WhatsApp buttons on Map */
.git-rust-map-wrapper {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  height: 380px;
}
.git-rust-map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.git-map-float-actions {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 10;
}
.git-map-float-btn {
  background-color: var(--brand);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 10px 18px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  transition: background-color 0.2s, transform 0.2s;
  text-decoration: none;
  cursor: pointer;
}
.git-map-float-btn:hover {
  background-color: var(--brand-dark);
  transform: translateX(-4px);
}

/* Sticky Bottom Form Bar */
.quick-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--brand-dark);
  border-top: 2px solid var(--accent);
  z-index: 999;
  padding: 12px 0;
  box-shadow: 0 -8px 30px rgba(0,0,0,0.25);
  display: block;
}
.quick-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: nowrap;
}
.quick-bar-form {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}
.quick-bar-input {
  flex: 1;
  background: #fff;
  border: 1px solid #ddd;
  color: #333;
  padding: 10px 14px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  border-radius: 4px;
  outline: none;
}
.quick-bar-btn {
  background-color: #fff;
  color: var(--brand-dark);
  border: none;
  padding: 10px 22px;
  font-size: 13px;
  font-weight: 700;
  border-radius: 4px;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.2s;
}
.quick-bar-btn:hover {
  background-color: var(--surface);
}

@media (max-width: 1024px) {
  .git-rust-grid {
    grid-template-columns: 1fr;
  }
  .quick-bottom-bar {
    display: none;
  }
}
@media (max-width: 768px) {
  .git-rust-box {
    padding: 24px;
  }
}

/* =============================================
   BANNER CAROUSEL (FADING SLIDES)
   ============================================= */
.banner-carousel {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}
.banner-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 1;
  transition: opacity 1s ease-in-out;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.banner-slide.active {
  opacity: 1;
  z-index: 2;
}

/* =============================================
   STICKY SIDE ANIMATED PANEL
   ============================================= */
.sticky-side-panel {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.side-tab {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  background-color: var(--brand);
  border: 1px solid rgba(255,255,255,0.15);
  border-right: none;
  color: #fff;
  text-decoration: none;
  padding: 12px 0 12px 14px;
  border-radius: 6px 0 0 6px;
  font-family: 'Poppins', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  width: 48px;
  height: 48px;
  overflow: hidden;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: -4px 6px 20px rgba(0,0,0,0.15);
  transition: width 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), background-color 0.2s, transform 0.2s;
  outline: none;
}
.side-tab-icon {
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  flex-shrink: 0;
}
.side-tab-text {
  opacity: 0;
  transition: opacity 0.15s ease;
}
.side-tab:hover {
  width: 160px;
  background-color: var(--brand-dark);
}
.side-tab:hover .side-tab-text {
  opacity: 1;
  transition-delay: 0.1s;
}

/* Tab Colors */
.side-tab-call {
  background-color: var(--brand);
}
.side-tab-whatsapp {
  background-color: #25d366; /* Official WhatsApp color */
}
.side-tab-whatsapp:hover {
  background-color: #20ba5a;
}
.side-tab-enquire {
  background-color: var(--accent);
}
.side-tab-enquire:hover {
  background-color: var(--accent-light);
}

/* Navbar Phone Link Link hover */
.nav-phone-link:hover {
  background: var(--accent) !important;
  transform: scale(1.08);
}

@media (max-width: 768px) {
  .sticky-side-panel {
    display: none; /* Favor the mobile-bar on small screens */
  }
}

/* =============================================
   PREMIUM TRIPLE OFFSET SLIDER (IMAGE 1 STYLE)
   ============================================= */
.triple-slider-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  margin: 40px auto 20px;
  overflow: hidden;
  min-height: 420px;
}
.ts-track {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: relative;
}
.ts-item {
  flex: 0 0 28%;
  height: 280px;
  margin: 0 10px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  opacity: 0.45;
  transform: scale(0.85);
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  display: none;
  order: 99;
}
.ts-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.ts-item.prev-slide {
  display: block;
  order: 1;
}
.ts-item.active {
  display: block;
  flex: 0 0 42%;
  height: 390px;
  opacity: 1;
  transform: scale(1);
  z-index: 5;
  box-shadow: 0 20px 50px rgba(2,81,80,0.25);
  order: 2;
}
.ts-item.next-slide {
  display: block;
  order: 3;
}
.ts-item.hidden-slide {
  display: none !important;
}
.ts-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(1,58,57,0.78), transparent 70%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 2;
}
.ts-item.active .ts-overlay {
  opacity: 1;
}

/* Slider Controls */
.ts-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
}
.ts-control-btn {
  width: 46px;
  height: 46px;
  border: 1.5px solid var(--accent);
  border-radius: 50%;
  background: #fff;
  color: var(--accent);
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  outline: none;
}
.ts-control-btn:hover {
  background-color: var(--accent);
  color: #fff;
  transform: scale(1.08);
  box-shadow: 0 6px 18px rgba(171,127,45,0.3);
}

/* Responsive tweaks for the triple slider */
@media (max-width: 1024px) {
  .ts-item {
    flex: 0 0 35%;
  }
  .ts-item.active {
    flex: 0 0 55%;
    height: 340px;
  }
}
@media (max-width: 768px) {
  .triple-slider-wrap {
    min-height: 320px;
  }
  .ts-item {
    display: none !important; /* Hide non-active slides on mobile */
  }
  .ts-item.active {
    display: block !important;
    flex: 0 0 92%;
    height: 290px;
    margin: 0 auto;
  }
}

/* =============================================
   FLOATING ACTIONS (BOTTOM RIGHT PILLS)
   ============================================= */
.fixed-bottom-actions {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.action-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 30px;
  font-family: 'Poppins', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  color: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  transition: transform 0.2s, background-color 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.action-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}
.action-pill-whatsapp {
  background-color: var(--brand); /* Teal brand theme color */
}
.action-pill-whatsapp:hover {
  background-color: var(--brand-dark);
}
.action-pill-call {
  background-color: var(--accent); /* Gold theme accent color */
}
.action-pill-call:hover {
  background-color: var(--accent-light);
}

@media (max-width: 768px) {
  .fixed-bottom-actions {
    display: none !important; /* Hides on mobile/tablets to avoid overlapping mobile-bar */
  }
}





