/* ===== ROOT VARIABLES ===== */
:root {
  --gold: #C9A84C;
  --gold-light: #E8C97E;
  --gold-dark: #9A7A30;
  --dark: #0F0E0A;
  --dark2: #1A1810;
  --dark3: #252318;
  --cream: #FAF6EF;
  --cream2: #F0EAD9;
  --text-main: #1A1810;
  --text-muted: #6B6659;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Outfit', sans-serif;
  --shadow-gold: 0 4px 24px rgba(201,168,76,0.25);
  --radius: 16px;
  --transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
}

/* ===== GLOBAL ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { 
  scroll-behavior: smooth; 
  overflow-x: hidden; 
}

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background: var(--cream);
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
}

h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); }

img { max-width: 100%; }

.section-pad { padding: 90px 0; }
.gold-text { color: var(--gold); }

/* ===== BUTTONS ===== */
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff;
  border: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 8px;
  transition: var(--transition);
  box-shadow: 0 4px 18px rgba(201,168,76,0.35);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,76,0.45);
}

.btn-outline-gold {
  border: 2px solid var(--gold);
  color: var(--gold);
  font-weight: 600;
  border-radius: 8px;
  background: transparent;
  transition: var(--transition);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: #fff;
}

/* ===== SECTION TAGS & TITLES ===== */
.section-tag {
  display: inline-block;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  color: var(--dark);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark2);
}

.section-body {
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.8;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== NAVBAR ===== */
.ska-nav {
  background: rgba(15,14,10,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  padding: 8px 0;
  transition: var(--transition);
}

.ska-nav.scrolled {
  background: rgba(10,10,8,0.98);
  box-shadow: 0 4px 32px rgba(0,0,0,0.3);
}

.brand-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
}
.brand-icon.sm { width: 36px; height: 36px; font-size: 0.95rem; }

.brand-name {
  font-family: var(--font-heading);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  line-height: 1;
}
.brand-sub {
  font-size: 0.68rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1.6;
}

.ska-nav .nav-link {
  color: rgba(255,255,255,0.8) !important;
  font-weight: 500;
  font-size: 0.92rem;
  padding: 6px 12px !important;
  transition: var(--transition);
  position: relative;
}
.ska-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}
.ska-nav .nav-link:hover { color: var(--gold) !important; }
.ska-nav .nav-link:hover::after { width: 70%; }

/* ===== HERO SECTION ===== */
.hero-section {
  position: relative;
  min-height: 100vh;
  background-image: url('assets/gallery-banner.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,9,6,0.88) 0%,
    rgba(15,12,8,0.75) 50%,
    rgba(10,9,6,0.6) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 50px;
  animation: fadeInDown 0.6s ease;
}

.hero-title {
  font-size: clamp(3.5rem, 9vw, 7rem);
  color: #fff;
  font-weight: 900;
  line-height: 1;
  margin-top: 12px;
  animation: fadeInLeft 0.7s ease 0.1s both;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 3vw, 1.6rem);
  color: rgba(255,255,255,0.75);
  font-weight: 400;
  font-style: italic;
  margin-top: 8px;
  animation: fadeInLeft 0.7s ease 0.2s both;
}

.hero-desc {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  max-width: 500px;
  animation: fadeInLeft 0.7s ease 0.3s both;
}

.h-chip {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 50px;
  animation: fadeInUp 0.6s ease 0.4s both;
}

.hero-price-tag {
  border-left: 3px solid var(--gold);
  padding-left: 16px;
  animation: fadeInLeft 0.7s ease 0.5s both;
}

.price-label {
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.price-val {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: #fff;
  font-weight: 700;
  line-height: 1;
}

.price-plan {
  color: rgba(255,255,255,0.55);
  font-size: 0.82rem;
  margin-top: 4px;
}

/* Hero Card */
.hero-card {
  background: rgba(20,18,12,0.85);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 380px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  animation: fadeInRight 0.8s ease 0.3s both;
}
.hero-card-img { width: 100%; height: 180px; object-fit: cover; }
.hero-card-body { padding: 24px; }
.hero-card-body h5 { color: #fff; font-family: var(--font-heading); margin-bottom: 4px; }
.hero-card-body .form-control {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(201,168,76,0.25);
  color: #fff;
  border-radius: 8px;
  padding: 10px 14px;
}
.hero-card-body .form-control::placeholder { color: rgba(255,255,255,0.4); }
.hero-card-body .form-control:focus {
  background: rgba(255,255,255,0.1);
  border-color: var(--gold);
  box-shadow: none;
  color: #fff;
  outline: none;
}

/* Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.scroll-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: scrollBounce 1.5s ease-in-out infinite;
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: linear-gradient(135deg, var(--dark), var(--dark2));
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.stat-item { padding: 12px; }
.stat-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  color: rgba(255,255,255,0.55);
  font-size: 0.78rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}
.stat-item:not(:last-child) { border-right: 1px solid rgba(201,168,76,0.1); }

/* ===== ABOUT SECTION ===== */
.about-section { background: var(--cream); }

.img-mosaic {
  position: relative;
  height: 480px;
}
.mosaic-main {
  width: 75%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius);
  position: absolute;
  top: 0;
  left: 0;
  box-shadow: 0 16px 48px rgba(0,0,0,0.15);
}
.mosaic-sm {
  width: 50%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius);
  position: absolute;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  border: 4px solid var(--cream);
}
.mosaic-sm-1 { right: 0; top: 40px; }
.mosaic-sm-2 { right: 0; bottom: 0; }
.mosaic-badge {
  position: absolute;
  bottom: 20px;
  left: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff;
  border-radius: 12px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  box-shadow: var(--shadow-gold);
}
.mosaic-badge span { font-size: 0.78rem; font-weight: 600; line-height: 1.3; }

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.af-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-main);
}
.af-item i { color: var(--gold); font-size: 1rem; flex-shrink: 0; }

/* ===== LOCATION SECTION ===== */
.location-section {
  position: relative;
  background: #111009;
  overflow: hidden;
}
.location-bg-overlay {
  position: absolute;
  inset: 0;
  background-image: url('assets/11.avif');
  background-size: cover;
  background-position: center;
  opacity: 0.08;
}
.location-section .section-title { color: #fff; }
.location-section .section-tag { background: linear-gradient(90deg, var(--gold), var(--gold-dark)); }

.loc-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
}
.loc-card:hover {
  background: rgba(201,168,76,0.08);
  border-color: rgba(201,168,76,0.5);
  transform: translateY(-4px);
}
.loc-card h5 { color: #fff; font-size: 1rem; margin-bottom: 10px; }
.loc-card p { color: rgba(255,255,255,0.55); font-size: 0.88rem; line-height: 1.7; margin: 0; }

.loc-icon {
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.3rem;
  color: #fff;
}

.featured-loc-card {
  padding: 0;
  overflow: hidden;
  position: relative;
  min-height: 220px;
}
.loc-card-img { width: 100%; height: 100%; object-fit: cover; min-height: 220px; display: block; }
.loc-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(10,9,6,0.85));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}
.loc-card-overlay h4 { color: #fff; font-size: 1rem; font-family: var(--font-heading); margin-bottom: 8px; }

/* ===== OFFERINGS SECTION ===== */
.offerings-section { background: var(--cream2); }

.floor-card {
  background: #fff;
  border: 1px solid #e8e1d0;
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.floor-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  opacity: 0;
  transition: var(--transition);
}
.floor-card:hover::before { opacity: 1; }
.floor-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  transform: translateY(-6px);
}

.floor-featured {
  background: linear-gradient(135deg, #111009, #1a1810);
  border-color: rgba(201,168,76,0.4);
}
.floor-featured h5 { color: #fff; }
.floor-featured p { color: rgba(255,255,255,0.6); }
.floor-featured .floor-tag {
  background: rgba(201,168,76,0.15);
  color: var(--gold-light);
  border: 1px solid rgba(201,168,76,0.3);
}
.floor-featured:hover {
  border-color: var(--gold);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.floor-tag {
  display: inline-block;
  background: var(--cream2);
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.tag-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff;
}

.floor-icon {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 14px;
}
.floor-card h5 { font-size: 1rem; color: var(--dark2); margin-bottom: 10px; }
.floor-card p { 
  color: var(--text-muted); 
  font-size: 0.87rem; 
  line-height: 1.7;
  flex: 1;
  margin-bottom: 16px;
}
.floor-card .btn { margin-top: auto; }
.floor-price {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-top: 12px;
}

.payment-plan-box {
  background: linear-gradient(135deg, var(--dark), var(--dark2));
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius);
  padding: 32px;
}
.pp-item { padding: 10px; color: rgba(255,255,255,0.7); }
.pp-item i { font-size: 1.8rem; color: var(--gold); display: block; margin-bottom: 10px; }
.pp-label { font-size: 0.8rem; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 4px; }
.pp-val { font-family: var(--font-heading); font-size: 1.7rem; color: #fff; font-weight: 700; }
.pp-mid { border-left: 1px solid rgba(201,168,76,0.2); border-right: 1px solid rgba(201,168,76,0.2); }

/* ===== BRANDS SECTION ===== */
.brands-section { background: var(--cream); }

.brands-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.brand-pill {
  background: #fff;
  border: 1.5px solid #e0d8c8;
  color: var(--dark2);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 20px;
  border-radius: 50px;
  transition: var(--transition);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.brand-pill:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}
.brand-more {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff;
  border-color: var(--gold);
}
.brand-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  transition: var(--transition);
}
.brand-img:hover { transform: scale(1.02); }

/* ===== AMENITIES SECTION ===== */
.amenities-section {
  position: relative;
  background: var(--dark2);
  overflow: hidden;
}
.amenities-bg {
  position: absolute;
  inset: 0;
  background: url('assets/gallery-4.webp') center/cover;
  opacity: 0.06;
}
.amenities-section .section-title { color: #fff; }
.amenities-section .section-tag { color: var(--dark); }

.amenity-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
}
.amenity-card:hover {
  border-color: rgba(201,168,76,0.5);
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.3);
}
.amenity-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: var(--transition);
}
.amenity-card:hover .amenity-img { transform: scale(1.05); }
.amenity-body { padding: 22px 20px; }
.amenity-icon {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 14px;
}
.amenity-body h5 { color: #fff; font-size: 1rem; margin-bottom: 8px; }
.amenity-body p { color: rgba(255,255,255,0.55); font-size: 0.87rem; line-height: 1.7; margin: 0; }

/* ===== WHY SECTION ===== */
.why-section { background: var(--cream); }

.why-list { display: flex; flex-direction: column; gap: 24px; }
.why-item {
  display: flex;
  gap: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e8e0d0;
}
.why-item:last-child { border-bottom: none; padding-bottom: 0; }
.why-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(201,168,76,0.15);
  line-height: 1;
  flex-shrink: 0;
  min-width: 50px;
}
.why-content h5 { font-size: 1rem; color: var(--dark2); margin-bottom: 6px; }
.why-content p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; margin: 0; }

.invest-img-box { position: relative; border-radius: var(--radius); overflow: hidden; }
.invest-img { width: 100%; height: 480px; object-fit: cover; border-radius: var(--radius); display: block; }
.invest-overlay-card {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(15,14,10,0.88);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 12px;
  padding: 20px;
}
.ioc-row {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 6px 0;
}
.ioc-row i { color: var(--gold); font-size: 1.1rem; }

/* ===== GALLERY SECTION ===== */
.gallery-section { background: var(--cream2); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 280px 280px;
  gap: 16px;
}
.g-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}
.g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.g-item:hover img { transform: scale(1.07); }
.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }

.g-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,9,6,0.7));
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: var(--transition);
}
.g-item:hover .g-overlay { opacity: 1; }
.g-overlay span {
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ===== CTA BAND ===== */
.cta-band {
  position: relative;
  overflow: hidden;
}
.cta-band-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/12.jfif');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.cta-band-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,9,6,0.92), rgba(25,20,10,0.88));
}
.cta-title {
  font-size: clamp(2rem, 5vw, 3rem);
  color: #fff;
  font-weight: 800;
}
.cta-desc { color: rgba(255,255,255,0.65); font-size: 1.05rem; }
.cta-note { color: rgba(255,255,255,0.4); font-size: 0.8rem; }

/* ===== FOOTER ===== */
.ska-footer { background: var(--dark); }

.footer-desc { color: rgba(255,255,255,0.45); font-size: 0.9rem; line-height: 1.8; }
.rera-badge {
  display: inline-block;
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 5px 14px;
  border-radius: 6px;
}

.footer-heading {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1rem;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.footer-links { list-style: none; padding: 0; }
.footer-links li, .footer-links a {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  text-decoration: none;
  display: block;
  padding: 5px 0;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--gold); padding-left: 6px; }

.contact-box { display: flex; flex-direction: column; gap: 10px; }
.contact-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  transition: var(--transition);
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
}
.contact-btn:hover { border-color: var(--gold); color: var(--gold); }
.contact-btn.wa { border-color: rgba(37,211,102,0.3); }
.contact-btn.wa:hover { background: rgba(37,211,102,0.1); color: #25D366; border-color: #25D366; }
.contact-btn.enq { border-color: rgba(201,168,76,0.3); }
.contact-btn.enq:hover { background: rgba(201,168,76,0.1); color: var(--gold); }

.footer-hr { border-color: rgba(255,255,255,0.08); }
.footer-legal { color: rgba(255,255,255,0.3); font-size: 0.78rem; line-height: 1.6; margin: 0; }
.footer-copy { color: rgba(255,255,255,0.35); font-size: 0.82rem; margin: 0; }

/* ===== FLOATING BUTTONS ===== */
.floating-actions {
  position: fixed;
  right: 20px;
  bottom: 30px;
  z-index: 9000;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.float-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 6px 24px rgba(0,0,0,0.25);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.float-label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  font-family: var(--font-body);
}

.wa-btn {
  background: linear-gradient(135deg, #25D366, #128C7E);
  animation: floatPulse 2s ease-in-out infinite;
}
.wa-btn:hover {
  background: linear-gradient(135deg, #2BE270, #20A884);
  color: #fff;
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 10px 32px rgba(37,211,102,0.4);
}

.call-btn {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}
.call-btn:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #fff;
  transform: translateY(-3px) scale(1.04);
  box-shadow: var(--shadow-gold);
}

/* ===== MODAL ===== */
.modal-premium {
  background: #1a1810;
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 20px;
  color: #fff;
}
.modal-premium .modal-header { padding: 24px 28px 16px; }
.modal-premium .modal-body { padding: 0 28px 28px; }

.modal-side-img { position: relative; border-radius: 12px; overflow: hidden; height: 100%; min-height: 400px; }
.modal-side-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(10,9,6,0.92));
  display: flex;
  align-items: flex-end;
}
.modal-side-info {
  padding: 24px;
  width: 100%;
}
.modal-side-info h5 { color: #fff; font-size: 1.3rem; margin-bottom: 4px; }
.modal-side-info p { color: rgba(255,255,255,0.6); font-size: 0.85rem; }
.modal-side-info hr { border-color: rgba(201,168,76,0.2); }
.modal-usp { color: rgba(255,255,255,0.75); font-size: 0.85rem; font-weight: 500; margin-bottom: 6px; }

.enquiry-form .form-label { color: rgba(255,255,255,0.8); font-size: 0.88rem; font-weight: 500; margin-bottom: 6px; }

.ska-input {
  background: rgba(255,255,255,0.06) !important;
  border: 1px solid rgba(201,168,76,0.2) !important;
  color: #fff !important;
  border-radius: 10px !important;
  padding: 11px 14px !important;
  font-family: var(--font-body) !important;
}
.ska-input::placeholder { color: rgba(255,255,255,0.3) !important; }
.ska-input:focus {
  background: rgba(255,255,255,0.1) !important;
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15) !important;
  outline: none !important;
  color: #fff !important;
}
.ska-input option { background: #1a1810; color: #fff; }

.form-check-input:checked {
  background-color: var(--gold) !important;
  border-color: var(--gold) !important;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}
@keyframes floatPulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.3); }
  50% { box-shadow: 0 6px 36px rgba(37,211,102,0.55); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .g-tall, .g-wide { grid-row: span 1; grid-column: span 1; }
  .g-item { height: 220px; }

  .about-features { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hero-section { min-height: auto; padding-top: 20px; }
  .hero-content .row.min-vh-100 { min-height: auto !important; }
  .hero-content { padding-top: 100px; padding-bottom: 60px; }
  .section-pad { padding: 60px 0; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .g-item { height: 200px; }
  .stat-item:not(:last-child) { border-right: none; border-bottom: 1px solid rgba(201,168,76,0.1); }
  .float-btn .float-label { display: none; }
  .float-btn { padding: 16px; border-radius: 50%; width: 56px; height: 56px; justify-content: center; }
  .floating-actions { bottom: 20px; right: 16px; }
  .img-mosaic { height: 320px; }
  .mosaic-sm { display: none; }
  .mosaic-main { width: 100%; height: 280px; }
}

@media (max-width: 576px) {
  .hero-title { font-size: 3.2rem; }
  .pp-mid { border: none; border-top: 1px solid rgba(201,168,76,0.2); border-bottom: 1px solid rgba(201,168,76,0.2); }
}

/* ===== HERO PRICE PLAN HIGHLIGHT ===== */
.price-plan-highlight {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}
.pph-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: linear-gradient(135deg, rgba(201,168,76,0.22), rgba(201,168,76,0.12));
  border: 1px solid rgba(201,168,76,0.55);
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 5px 13px;
  border-radius: 50px;
  letter-spacing: 0.4px;
  backdrop-filter: blur(6px);
  animation: fadeInLeft 0.7s ease 0.5s both;
  white-space: nowrap;
}
.pph-chip i { color: var(--gold); font-size: 0.78rem; }
.pph-sep {
  color: rgba(201,168,76,0.45);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1;
}

/* ===== BRAND TICKER MARQUEE ===== */
.brand-ticker-wrapper {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.brand-ticker-track {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.brand-ticker-inner {
  display: flex;
  gap: 14px;
  width: max-content;
}

/* Row 1 slides LEFT */
.ticker-left {
  animation: tickerMoveLeft 28s linear infinite;
}
.ticker-left:hover { animation-play-state: paused; }

/* Row 2 slides RIGHT */
.ticker-right {
  animation: tickerMoveRight 28s linear infinite;
}
.ticker-right:hover { animation-play-state: paused; }

@keyframes tickerMoveLeft {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-33.333%); }
}
@keyframes tickerMoveRight {
  0%   { transform: translateX(-33.333%); }
  100% { transform: translateX(0); }
}

/* Brand logo slide with image */
.brand-logo-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 80px;
  background: #fff;
  border: 1px solid #e0d8c8;
  border-radius: 10px;
  padding: 4px 8px;
  box-shadow: 0 1px 8px rgba(0,0,0,0.04);
  flex-shrink: 0;
  transition: var(--transition);
  overflow: hidden;
}

.brand-logo-slide img {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: var(--transition);
  filter: brightness(0.95);
}

.brand-logo-slide:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(201,168,76,0.2);
  transform: translateY(-4px);
}

.brand-logo-slide:hover img {
  filter: brightness(1);
  transform: scale(1.05);
}

/* Legacy: Brand logo badge (colored initial circle) */
.blc-badge {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.2);
  flex-shrink: 0;
  transition: var(--transition);
}

/* Legacy: Brand logo card */
.brand-logo-card {
  display: none;
}
.brand-logo-card i {
  font-size: 1.8rem;
  color: var(--gold);
}
.brand-logo-card span {
  font-size: 0.82rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
}
.brand-logo-card:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-color: var(--gold);
  color: #fff;
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}
.brand-logo-card:hover .blc-badge {
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  transform: scale(1.08);
}
.otp-wrapper {
  gap: 10px;
}

.otp-input {
  width: 45px;
  height: 55px;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  border-radius: 10px;
  border: 1px solid #ccc;
  transition: 0.3s;
}

.otp-input:focus {
  border-color: #d4af37;
  box-shadow: 0 0 5px rgba(212, 175, 55, 0.5);
}
