/* =============================================
   MetroStay — style.css
   Primary : #4F46E5 (Navy Blue)
   Accent  : #F59E0B (Orange)
   Light BG: #F5F5F5
   Dark Text: #212121
============================================= */

/* ---- Premium Design System ---- */
:root {
  /* Core Brand */
  --primary:       #4F46E5;   /* Indigo */
  --primary-dark:  #1E1B4B;   /* Deep Indigo */
  --primary-light: #818CF8;   /* Light Indigo */
  --orange:        #F59E0B;   /* Amber Gold */
  --orange-light:  #FCD34D;   /* Light Gold */

  /* Neutrals */
  --white:         #FFFFFF;
  --light:         #F8FAFF;
  --dark:          #0F172A;
  --gray:          #64748B;
  --border:        #E2E8F0;

  /* Deep Dark (hero/footer) */
  --deep:          #0B1120;

  /* Shadows */
  --shadow:        0 1px 3px rgba(0,0,0,0.04), 0 4px 24px rgba(79,70,229,0.08);
  --shadow-hover:  0 8px 24px rgba(0,0,0,0.08), 0 20px 48px rgba(79,70,229,0.16);
  --shadow-gold:   0 4px 20px rgba(245,158,11,0.35);

  /* Gradients */
  --grad-hero:    linear-gradient(135deg, #0B1120 0%, #160E30 50%, #0D1F4A 100%);
  --grad-primary: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
  --grad-accent:  linear-gradient(135deg, #F59E0B 0%, #FCD34D 100%);

  /* Misc */
  --radius:        16px;
  --radius-sm:     10px;
  --transition:    all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font:          'Poppins', sans-serif;
}

/* ---- Base ---- */
*      { margin:0; padding:0; box-sizing:border-box; }
html   { scroll-behavior: smooth; }
body   { font-family: var(--font); color: var(--dark); background: var(--white); overflow-x: hidden; }
a      { text-decoration: none; color: inherit; transition: var(--transition); }
img    { max-width:100%; height:auto; }
.section-padding { padding: 80px 0; }
.text-orange     { color: var(--orange); }

/* ============================================
   NAVBAR
============================================= */
#mainNav {
  background: transparent;
  padding: 20px 0;
  transition: var(--transition);
  z-index: 1000;
}
#mainNav.scrolled {
  background: rgba(11,17,32,0.95) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
  box-shadow: 0 1px 0 rgba(255,255,255,0.07), 0 4px 24px rgba(0,0,0,0.3);
}
.navbar-brand {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--white) !important;
}
.navbar-brand i { color: var(--orange); }
.nav-link {
  color: rgba(255,255,255,0.9) !important;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 6px 14px !important;
  border-radius: 6px;
  transition: var(--transition);
}
.nav-link:hover,
.nav-link.active { color: var(--white) !important; background: rgba(255,255,255,0.12); }
.btn-whatsapp {
  background: linear-gradient(135deg, #22C55E, #16A34A);
  color: var(--white) !important;
  border-radius: var(--radius-sm);
  padding: 9px 20px;
  font-weight: 700;
  font-size: 0.84rem;
  box-shadow: 0 4px 14px rgba(34,197,94,0.4);
  border: none;
}
.btn-whatsapp:hover {
  background: linear-gradient(135deg, #16A34A, #15803D);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(34,197,94,0.5);
}
.navbar-toggler { border: 1px solid rgba(255,255,255,0.3); }
.navbar-toggler:focus { box-shadow: none; }

/* ============================================
   HERO
============================================= */
.hero-section {
  min-height: 100vh;
  background: var(--grad-hero);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
/* Animated gradient mesh */
.hero-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 15% 45%, rgba(79,70,229,0.30) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 20%, rgba(124,58,237,0.24) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 85%, rgba(245,158,11,0.16) 0%, transparent 45%),
    radial-gradient(ellipse at 40% 10%, rgba(20,184,166,0.14) 0%, transparent 40%);
  animation: meshShift 10s ease-in-out infinite alternate;
  pointer-events: none; z-index: 0;
}
@keyframes meshShift {
  from { transform: scale(1) translateY(0); }
  to   { transform: scale(1.08) translateY(-20px); }
}
.hero-overlay { display: none; }
.hero-content { position: relative; z-index: 2; padding-top: 95px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
  color: var(--orange-light);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.hero-title {
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -2px;
  margin-bottom: 18px;
}
.hero-title .highlight {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 50%, #FDE68A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: rgba(255,255,255,0.78);
  max-width: 540px;
  margin: 0 auto 30px;
  line-height: 1.7;
}
.gender-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}
.filter-btn {
  padding: 9px 22px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  border: 2px solid;
  transition: var(--transition);
  cursor: pointer;
}
.filter-btn.boys  { border-color: #64B5F6; color: #64B5F6; }
.filter-btn.boys:hover  { background: #64B5F6; color: var(--white); transform: translateY(-2px); }
.filter-btn.girls { border-color: #F48FB1; color: #F48FB1; }
.filter-btn.girls:hover { background: #F48FB1; color: var(--white); transform: translateY(-2px); }
.filter-btn.coed  { border-color: var(--orange-light); color: var(--orange-light); }
.filter-btn.coed:hover  { background: var(--orange-light); color: var(--white); transform: translateY(-2px); }
.btn-primary-custom {
  background: var(--grad-accent);
  color: var(--dark) !important;
  border: none;
  border-radius: var(--radius-sm);
  padding: 15px 36px;
  font-weight: 800;
  font-size: 0.94rem;
  box-shadow: var(--shadow-gold);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.2px;
}
.btn-primary-custom:hover {
  color: var(--dark) !important;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(245,158,11,0.5);
}
.hero-cta { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }
.btn-outline-light {
  border: 2px solid rgba(255,255,255,0.28);
  color: var(--white) !important;
  border-radius: var(--radius-sm);
  padding: 13px 36px;
  font-weight: 600;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(8px);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.5);
  color: var(--white) !important;
  transform: translateY(-2px);
}
.hero-scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll a { color: rgba(255,255,255,0.55); font-size: 1.4rem; animation: bounce 2s infinite; }
@keyframes bounce { 0%,100%{ transform:translateY(0) } 50%{ transform:translateY(8px) } }

/* ============================================
   STATS BAR
============================================= */
.stats-section {
  background: linear-gradient(135deg, #1E1B4B 0%, #312E81 50%, #1E3A8A 100%);
  padding: 52px 0;
  position: relative;
  overflow: hidden;
}
.stats-section::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(79,70,229,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.stat-item {
  padding: 20px 16px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.star-icon { color: var(--orange-light); font-size: 1.6rem; }
.stat-label { font-size: 0.83rem; color: rgba(255,255,255,0.65); margin-top: 6px; font-weight: 500; }

/* ============================================
   SECTION HEADERS
============================================= */
.section-badge {
  display: inline-block;
  background: rgba(245,158,11,0.09);
  color: var(--orange);
  border: 1px solid rgba(245,158,11,0.22);
  padding: 4px 16px;
  border-radius: 50px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-title    { font-size: clamp(1.5rem, 3vw, 2.3rem); font-weight: 800; color: var(--dark); margin-bottom: 10px; }
.section-subtitle { color: var(--gray); font-size: 0.97rem; max-width: 540px; margin: 0 auto; line-height: 1.65; }

/* ============================================
   WHY METROSTAY
============================================= */
.why-section { background: var(--white); }
.why-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); border-color: var(--orange); }
.why-icon {
  width: 72px; height: 72px;
  background: var(--grad-primary);
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.65rem;
  color: var(--white);
  transition: var(--transition);
  box-shadow: 0 6px 20px rgba(79,70,229,0.3);
}
.why-card:hover .why-icon {
  background: var(--grad-accent);
  box-shadow: var(--shadow-gold);
  transform: scale(1.08) rotate(-6deg);
}
.why-card h5 { font-size: 1.02rem; font-weight: 700; margin-bottom: 10px; }
.why-card p  { color: var(--gray); font-size: 0.87rem; line-height: 1.65; margin: 0; }

/* ============================================
   PROPERTIES
============================================= */
.property-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
}
.property-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.property-image { position: relative; overflow: hidden; height: 200px; }
.property-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.property-card:hover .property-image img { transform: scale(1.06); }
.property-badge {
  position: absolute; top: 12px; left: 12px;
  padding: 4px 12px; border-radius: 50px;
  font-size: 0.74rem; font-weight: 700;
}
.boys-badge  { background: rgba(66,165,245,0.88);  color: var(--white); }
.girls-badge { background: rgba(240,98,146,0.88);  color: var(--white); }
.coed-badge  { background: rgba(245,158,11,0.88);   color: var(--white); }
.property-price {
  position: absolute; bottom: 12px; right: 12px;
  background: rgba(0,0,0,0.72); color: var(--white);
  padding: 4px 12px; border-radius: 50px;
  font-size: 0.78rem; font-weight: 600;
  backdrop-filter: blur(4px);
}
.property-body { padding: 18px 20px; }
.property-body h5 { font-size: 0.98rem; font-weight: 700; margin-bottom: 5px; }
.property-location { color: var(--gray); font-size: 0.8rem; margin-bottom: 12px; }
.property-location i { color: var(--orange); }
.property-features { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 14px; }
.property-features span { font-size: 0.75rem; color: var(--gray); display: flex; align-items: center; gap: 4px; }
.property-features i { color: var(--primary); }
.btn-property {
  display: block; width: 100%;
  background: var(--grad-primary); color: var(--white) !important;
  text-align: center; padding: 11px;
  border-radius: var(--radius-sm); font-size: 0.86rem; font-weight: 700;
  box-shadow: 0 4px 14px rgba(79,70,229,0.28);
  position: relative; overflow: hidden;
}
.btn-property:hover {
  box-shadow: 0 8px 24px rgba(79,70,229,0.42);
  transform: translateY(-1px);
  color: var(--white) !important;
}
.btn-outline-primary-custom {
  border: 2px solid var(--primary); color: var(--primary) !important;
  border-radius: 10px; padding: 12px 32px; font-weight: 700;
}
.btn-outline-primary-custom:hover { background: var(--primary); color: var(--white) !important; }

/* ============================================
   AMENITIES
============================================= */
.amenity-item {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 22px 12px;
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius); transition: var(--transition);
}
.amenity-item:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--orange); }
.amenity-icon {
  width: 54px; height: 54px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; color: var(--white); margin-bottom: 10px;
  transition: var(--transition);
}
.amenity-item:hover .amenity-icon { background: linear-gradient(135deg, var(--orange), var(--orange-light)); }
.amenity-item span { font-size: 0.78rem; font-weight: 600; color: var(--dark); }

/* ============================================
   PRICING
============================================= */
.pricing-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  height: 100%;
}
.pricing-card:hover { border-color: var(--primary); transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.pricing-card.popular {
  border-color: var(--orange);
  background: linear-gradient(160deg, #FFF8E1 0%, var(--white) 60%);
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.popular-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: var(--white);
  padding: 4px 20px; border-radius: 50px; font-size: 0.77rem; font-weight: 700;
  white-space: nowrap;
}
.pricing-icon {
  width: 66px; height: 66px;
  background: var(--grad-primary);
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px; font-size: 1.5rem; color: var(--white);
  box-shadow: 0 6px 18px rgba(79,70,229,0.3);
}
.pricing-card.popular .pricing-icon { background: var(--grad-accent); box-shadow: var(--shadow-gold); }
.pricing-card h4 { font-weight: 700; font-size: 1.1rem; margin-bottom: 14px; }
.pricing-price { margin-bottom: 22px; }
.pricing-price .from   { color: var(--gray); font-size: 0.82rem; display: block; }
.pricing-price .amount { font-size: 2.3rem; font-weight: 800; color: var(--primary); }
.pricing-card.popular .pricing-price .amount { color: var(--orange); }
.pricing-price .period { color: var(--gray); font-size: 0.88rem; }
.pricing-features {
  list-style: none; text-align: left; margin-bottom: 26px; padding: 0;
}
.pricing-features li {
  padding: 7px 0; font-size: 0.86rem; color: var(--gray);
  display: flex; align-items: center; gap: 10px;
  border-bottom: 1px solid var(--border);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li i { color: #4CAF50; }
.btn-pricing {
  display: block; width: 100%;
  background: var(--grad-primary); color: var(--white) !important;
  padding: 13px; border-radius: var(--radius-sm);
  font-weight: 700; font-size: 0.9rem;
  border: none; cursor: pointer; box-shadow: 0 4px 14px rgba(79,70,229,0.3);
}
.btn-pricing:hover { box-shadow: 0 8px 24px rgba(79,70,229,0.45); transform: translateY(-2px); }
.pricing-card.popular .btn-pricing { background: var(--grad-accent); color: var(--dark) !important; box-shadow: var(--shadow-gold); }
.pricing-card.popular .btn-pricing:hover { box-shadow: 0 10px 28px rgba(245,158,11,0.5); }

/* ============================================
   GALLERY
============================================= */
.gallery-item {
  display: block; position: relative; overflow: hidden;
  border-radius: var(--radius-sm); aspect-ratio: 4/3;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(79,70,229,0.62);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: var(--transition);
  color: var(--white); font-size: 1.6rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ============================================
   LOCATIONS
============================================= */
.location-list { display: flex; flex-direction: column; gap: 10px; }
.location-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 18px;
  border: 2px solid var(--border);
  border-radius: var(--radius); cursor: pointer;
  transition: var(--transition);
}
.location-item:hover,
.location-item.active { border-color: var(--primary); background: rgba(79,70,229,0.04); box-shadow: var(--shadow); }
.location-icon {
  width: 42px; height: 42px; min-width: 42px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 0.95rem;
  transition: var(--transition);
}
.location-item:hover .location-icon,
.location-item.active .location-icon { background: linear-gradient(135deg, var(--orange), var(--orange-light)); }
.location-item h6 { font-weight: 700; margin-bottom: 2px; font-size: 0.92rem; }
.location-item p  { margin: 0; font-size: 0.78rem; color: var(--gray); }
.map-container { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }

/* ============================================
   TESTIMONIALS
============================================= */
.testimonials-section { background: var(--white); }
.testimonial-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  text-align: center;
  box-shadow: var(--shadow);
  margin: 0 auto 40px;
  max-width: 560px;
}
.testimonial-card .stars { color: var(--orange); font-size: 1.3rem; letter-spacing: 3px; margin-bottom: 18px; }
.testimonial-card p { color: var(--gray); font-size: 0.94rem; line-height: 1.8; font-style: italic; margin-bottom: 22px; }
.testimonial-author { display: flex; align-items: center; justify-content: center; gap: 14px; }
.author-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--primary); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 700;
}
.testimonial-author strong { display: block; font-size: 0.92rem; font-family: var(--font); }
.testimonial-author span  { font-size: 0.78rem; color: var(--gray); }
.carousel-prev-icon,
.carousel-next-icon {
  width: 42px; height: 42px;
  background: var(--primary); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 0.9rem; box-shadow: var(--shadow);
}
.carousel-prev-icon:hover,
.carousel-next-icon:hover { background: var(--orange); }
.carousel-control-prev { left: -10px; }
.carousel-control-next { right: -10px; }
.carousel-indicators-custom { display: flex; justify-content: center; gap: 8px; margin-top: 0; }
.carousel-indicators-custom button {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--border); border: none; cursor: pointer;
  transition: var(--transition); padding: 0;
}
.carousel-indicators-custom button.active { background: var(--orange); transform: scale(1.25); }

/* ============================================
   CONTACT
============================================= */
.contact-info-box {
  background: var(--primary); color: var(--white);
  border-radius: var(--radius); padding: 32px 26px; height: 100%;
}
.contact-info-box h5 { font-weight: 700; font-size: 1.15rem; margin-bottom: 22px; }
.contact-info-item {
  display: flex; align-items: flex-start; gap: 12px; margin-bottom: 18px;
}
.contact-info-item i {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--orange-light); flex-shrink: 0;
}
.contact-info-item strong { display: block; font-size: 0.78rem; opacity: 0.65; margin-bottom: 2px; }
.contact-info-item a,
.contact-info-item span { color: var(--white); font-size: 0.87rem; }
.contact-info-item a:hover { color: var(--orange-light); }
.contact-social { display: flex; gap: 10px; }
.social-icon {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 0.95rem;
}
.social-icon:hover { background: var(--orange); color: var(--white); transform: translateY(-3px); }
.social-icon.whatsapp-social:hover { background: #25D366; }
.contact-form-box {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 32px 26px; box-shadow: var(--shadow);
}
.form-control, .form-select {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 14px; font-size: 0.88rem;
  font-family: var(--font); transition: var(--transition);
  background-color: var(--white);
}
.form-control:focus, .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(79,70,229,0.1);
}
.form-label { font-size: 0.82rem; font-weight: 600; color: var(--dark); margin-bottom: 5px; }
.btn-submit-form {
  background: var(--grad-primary);
  color: var(--white);
  border: none; border-radius: var(--radius-sm);
  padding: 15px 36px; font-size: 0.94rem; font-weight: 700;
  cursor: pointer; width: 100%;
  box-shadow: 0 4px 14px rgba(79,70,229,0.35);
  position: relative; overflow: hidden;
}
.btn-submit-form:hover { box-shadow: 0 10px 28px rgba(79,70,229,0.45); transform: translateY(-2px); }

/* ============================================
   FOOTER
============================================= */
.footer {
  background: linear-gradient(180deg, #0B1120 0%, #070A1A 100%);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 0;
}
.footer-brand h4 { color: var(--white); font-weight: 800; font-size: 1.45rem; margin-bottom: 12px; }
.footer-brand h4 i { color: var(--orange); }
.footer-brand p { font-size: 0.84rem; line-height: 1.8; color: rgba(255,255,255,0.55); margin-bottom: 16px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.65); font-size: 0.88rem;
}
.footer-social a:hover { background: var(--orange); color: var(--white); transform: translateY(-3px); }
.footer-heading { color: var(--white); font-weight: 700; font-size: 0.93rem; margin-bottom: 14px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 7px; }
.footer-links a { color: rgba(255,255,255,0.55); font-size: 0.83rem; }
.footer-links a:hover { color: var(--orange-light); padding-left: 4px; }
.footer-contact li { display: flex; align-items: flex-start; gap: 8px; color: rgba(255,255,255,0.55); font-size: 0.83rem; margin-bottom: 7px; }
.footer-contact li i { color: var(--orange-light); margin-top: 2px; }
.footer-divider   { border-color: rgba(255,255,255,0.1); margin: 40px 0 22px; }
.footer-copy      { color: rgba(255,255,255,0.38); font-size: 0.8rem; margin: 0; padding-bottom: 22px; }
.footer-policy-link { color: rgba(255,255,255,0.45); font-size: 0.8rem; padding-bottom: 22px; display: inline-block; }
.footer-policy-link:hover { color: var(--orange-light); }

/* ============================================
   FLOATING WHATSAPP BUTTON
============================================= */
.floating-whatsapp {
  position: fixed; bottom: 28px; right: 28px;
  width: 58px; height: 58px; border-radius: 50%;
  background: linear-gradient(135deg, #22C55E, #16A34A);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.8rem;
  box-shadow: 0 4px 20px rgba(34,197,94,0.5);
  z-index: 9999;
}
.wa-tooltip {
  position: absolute; right: 66px;
  background: var(--dark); color: var(--white);
  padding: 6px 13px; border-radius: 7px;
  font-size: 0.78rem; font-weight: 600;
  white-space: nowrap; opacity: 0; pointer-events: none;
  transition: var(--transition);
}
.wa-tooltip::after {
  content: '';
  position: absolute; top: 50%; right: -5px;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--dark);
}
.floating-whatsapp:hover .wa-tooltip { opacity: 1; }

/* ============================================
   BACK TO TOP
============================================= */
#backToTop {
  position: fixed; bottom: 92px; right: 26px;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--primary); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem; z-index: 9999;
  box-shadow: var(--shadow); opacity: 0; pointer-events: none;
  transition: var(--transition);
}
#backToTop.visible { opacity: 1; pointer-events: all; }
#backToTop:hover   { background: var(--orange); transform: translateY(-3px); color: var(--white); }

/* ============================================
   PROPERTY DETAIL PAGE
============================================= */
.detail-hero {
  min-height: 55vh;
  background: linear-gradient(135deg, rgba(30,27,75,0.88) 0%, rgba(79,70,229,0.82) 100%),
              url('') center/cover no-repeat;
  display: flex; align-items: flex-end;
  padding-bottom: 40px;
}
.detail-hero .property-detail-title { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 800; color: var(--white); }
.detail-hero .property-detail-sub   { color: rgba(255,255,255,0.75); font-size: 1rem; }
.detail-breadcrumb .breadcrumb-item a { color: rgba(255,255,255,0.7); }
.detail-breadcrumb .breadcrumb-item.active { color: rgba(255,255,255,0.95); }
.detail-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }
.overview-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow);
}
.overview-stat {
  text-align: center; padding: 16px 8px;
  border-right: 1px solid var(--border);
}
.overview-stat:last-child { border-right: none; }
.overview-stat .ov-icon { font-size: 1.6rem; color: var(--primary); margin-bottom: 6px; }
.overview-stat .ov-num  { font-size: 1.4rem; font-weight: 800; color: var(--dark); }
.overview-stat .ov-lbl  { font-size: 0.78rem; color: var(--gray); }
.room-type-card {
  border: 1.5px solid var(--border); border-radius: var(--radius);
  overflow: hidden; transition: var(--transition);
}
.room-type-card:hover { border-color: var(--primary); box-shadow: var(--shadow); transform: translateY(-3px); }
.room-type-header {
  background: var(--primary); color: var(--white);
  padding: 16px 20px; display: flex; justify-content: space-between; align-items: center;
}
.room-type-header h6 { margin: 0; font-weight: 700; font-size: 0.95rem; }
.room-type-header .price { font-size: 1.2rem; font-weight: 800; color: var(--orange-light); }
.room-type-body { padding: 16px 20px; }
.room-type-body ul { list-style: none; padding: 0; margin: 0; }
.room-type-body ul li { padding: 5px 0; font-size: 0.83rem; color: var(--gray); display: flex; align-items: center; gap: 8px; }
.room-type-body ul li i { color: #4CAF50; }
.amenity-chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--light); border: 1px solid var(--border);
  padding: 7px 14px; border-radius: 50px;
  font-size: 0.8rem; font-weight: 600; color: var(--dark);
  transition: var(--transition);
}
.amenity-chip:hover { border-color: var(--primary); color: var(--primary); background: rgba(79,70,229,0.05); }
.amenity-chip i { color: var(--primary); font-size: 0.9rem; }

/* ============================================
   ABOUT / RULES PAGES
============================================= */
.page-hero {
  min-height: 40vh;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
  display: flex; align-items: center;
  padding-top: 90px;
}
.page-hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; color: var(--white); }
.page-hero p  { color: rgba(255,255,255,0.75); font-size: 1rem; }
.rule-card {
  border-left: 4px solid var(--primary);
  background: var(--white);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 20px 24px;
  box-shadow: var(--shadow);
  margin-bottom: 16px;
  transition: var(--transition);
}
.rule-card:hover { border-left-color: var(--orange); box-shadow: var(--shadow-hover); }
.rule-card h6 { font-weight: 700; margin-bottom: 6px; font-size: 0.95rem; }
.rule-card p  { color: var(--gray); font-size: 0.85rem; margin: 0; line-height: 1.6; }
.rule-icon { width: 40px; height: 40px; border-radius: 50%; background: rgba(79,70,229,0.08); display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 1.1rem; flex-shrink: 0; }
.rule-card:hover .rule-icon { background: rgba(245,158,11,0.1); color: var(--orange); }
.team-card {
  text-align: center; padding: 28px 20px;
  border: 1.5px solid var(--border); border-radius: var(--radius);
  transition: var(--transition);
}
.team-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); border-color: var(--orange); }
.team-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; font-weight: 800; color: var(--white);
  margin: 0 auto 14px;
}
.team-card h6 { font-weight: 700; font-size: 1rem; margin-bottom: 4px; }
.team-card small { color: var(--gray); font-size: 0.82rem; }

/* ============================================
   PROPERTIES LISTING PAGE
============================================= */
.listing-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 120px 0 60px;
  text-align: center;
}
.listing-hero h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: var(--white); }
.listing-hero p  { color: rgba(255,255,255,0.72); }
.filter-bar { background: var(--white); box-shadow: var(--shadow); border-radius: var(--radius); padding: 18px 24px; margin-bottom: 32px; }
.filter-btn-group .btn { border-radius: 50px; padding: 7px 18px; font-size: 0.85rem; font-weight: 600; }
.btn-filter-active { background: var(--primary); color: var(--white) !important; }
.btn-filter-inactive { border: 1.5px solid var(--border); color: var(--gray) !important; background: var(--white); }
.btn-filter-inactive:hover { border-color: var(--primary); color: var(--primary) !important; }

/* ============================================
   RESPONSIVE
============================================= */
@media (max-width: 991px) {
  .navbar-collapse {
    background: var(--primary-dark);
    padding: 16px; border-radius: 12px; margin-top: 10px;
  }
  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .stat-item:last-child { border-bottom: none; }
}
@media (max-width: 767px) {
  .section-padding { padding: 60px 0; }
  .hero-cta { flex-direction: column; align-items: center; }
  .hero-cta .btn { width: 100%; max-width: 300px; }
  .gender-filters { gap: 8px; }
  .filter-btn { padding: 8px 16px; font-size: 0.82rem; }
  .testimonial-card { padding: 24px 18px; }
  .contact-form-box,
  .contact-info-box { padding: 24px 18px; }
  .floating-whatsapp { bottom: 18px; right: 18px; width: 50px; height: 50px; font-size: 1.55rem; }
  #backToTop { bottom: 78px; right: 18px; }
  .detail-hero { min-height: 45vh; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 1.75rem; }
  .stat-item { padding: 14px 8px; }
  .pricing-card { padding: 28px 18px; }
  .overview-stat { padding: 12px 4px; }
  .overview-stat .ov-num { font-size: 1.1rem; }
}

/* ============================================
   VISUAL ENHANCEMENTS v2
============================================= */

/* ---- Hero Animated Orbs ---- */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.13;
  pointer-events: none;
  animation: floatOrb 12s ease-in-out infinite;
}
.hero-orb-1 { width: 580px; height: 580px; background: var(--orange);    top: -130px; right: -130px; animation-duration: 13s; }
.hero-orb-2 { width: 460px; height: 460px; background: #42A5F5;          bottom: -90px; left: -110px; animation-duration: 10s; animation-delay: 3s; }
.hero-orb-3 { width: 300px; height: 300px; background: #B39DDB;          top: 35%; left: 22%; animation-duration: 15s; animation-delay: 6s; }
@keyframes floatOrb {
  0%,100% { transform: translateY(0) scale(1); }
  33%     { transform: translateY(-38px) scale(1.07); }
  66%     { transform: translateY(24px) scale(0.96); }
}

/* ---- Navbar Glass ---- */
#mainNav.scrolled {
  background: rgba(30,27,75,0.95) !important;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

/* ---- Hero Badge Pulse ---- */
@keyframes badgePulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(245,158,11,0.35); }
  50%     { box-shadow: 0 0 0 12px rgba(245,158,11,0); }
}
.hero-badge { animation: badgePulse 3.5s ease-in-out infinite; }

/* ---- Trust Bar (bottom of hero) ---- */
.trust-bar {
  position: relative; z-index: 2;
  background: rgba(255,255,255,0.05);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 14px 0;
}
.trust-chip {
  display: inline-flex; align-items: center; gap: 7px;
  color: rgba(255,255,255,0.8);
  font-size: 0.79rem; font-weight: 600;
}
.trust-chip i { color: var(--orange-light); font-size: 0.92rem; }
.trust-divider { color: rgba(255,255,255,0.18); margin: 0 10px; }

/* ---- Gradient Stat Numbers ---- */
.stats-section .stat-number {
  background: linear-gradient(135deg, #ffffff 0%, var(--orange-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stats-section .star-icon { -webkit-text-fill-color: var(--orange-light); }

/* ---- Section Title Underline Accent ---- */
.section-title::after {
  content: '';
  display: block;
  width: 50px; height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--orange));
  border-radius: 2px;
  margin: 12px auto 0;
}
.section-subtitle { margin-top: 10px !important; }

/* ---- Why Cards — gradient border on hover ---- */
.why-card { position: relative; }
.why-card::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: var(--radius);
  padding: 1.5px;
  background: linear-gradient(135deg, var(--primary), var(--orange));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.why-card:hover::before { opacity: 1; }

/* ---- HOW IT WORKS ---- */
.how-section { background: linear-gradient(180deg, var(--light) 0%, #EEF1FF 100%); }
.step-wrapper { position: relative; }
.step-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 42px 28px 34px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1.5px solid var(--border);
  transition: var(--transition);
  height: 100%;
}
.step-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); border-color: var(--orange); }
.step-number {
  position: absolute; top: 10px; right: 16px;
  font-size: 5.5rem; font-weight: 900; line-height: 1;
  color: rgba(79,70,229,0.05); user-select: none;
  font-family: var(--font);
}
.step-icon {
  width: 76px; height: 76px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem; color: var(--white);
  margin: 0 auto 20px;
  transition: var(--transition);
  box-shadow: 0 6px 20px rgba(79,70,229,0.22);
}
.step-card:hover .step-icon {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  box-shadow: 0 6px 22px rgba(245,158,11,0.32);
}
.step-card h5 { font-weight: 700; font-size: 1.08rem; margin-bottom: 10px; }
.step-card p  { color: var(--gray); font-size: 0.87rem; line-height: 1.7; margin: 0; }
.steps-arrow {
  display: none;
  position: absolute; right: -22px; top: 50%;
  transform: translateY(-110px);
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%; color: white; font-size: 1rem;
  align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(79,70,229,0.28);
  z-index: 5;
}
@media (min-width: 768px) { .steps-arrow { display: flex; } }

/* ---- Property Card Verified Tag ---- */
.verified-tag {
  position: absolute; top: 12px; right: 12px;
  background: rgba(76,175,80,0.9); color: white;
  padding: 3px 10px; border-radius: 50px;
  font-size: 0.69rem; font-weight: 700; letter-spacing: 0.4px;
}

/* ---- Property image gradient on hover ---- */
.property-image::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(79,70,229,0.45) 0%, transparent 65%);
  opacity: 0; transition: var(--transition); pointer-events: none;
}
.property-card:hover .property-image::after { opacity: 1; }

/* ---- Button Shine ---- */
.btn-primary-custom, .btn-submit-form, .btn-whatsapp { overflow: hidden; position: relative; }
.btn-primary-custom::after, .btn-submit-form::after, .btn-whatsapp::after {
  content: '';
  position: absolute; top: 0; left: -100%;
  width: 55%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transform: skewX(-20deg);
}

/* ============================================
   PREMIUM FINAL OVERRIDES
   Full visual upgrade: new section headers,
   improved animations, gradient accents
============================================= */

/* Section badge — indigo/purple */
.section-badge {
  background: linear-gradient(135deg, rgba(79,70,229,0.1), rgba(124,58,237,0.1));
  color: var(--primary);
  border: 1px solid rgba(79,70,229,0.2);
}

/* Section title underline — primary→accent gradient */
.section-title::after {
  background: var(--grad-primary);
}

/* Property card featured ribbon */
.property-badge.boys-badge  { background: rgba(79,70,229,0.88); }
.property-badge.girls-badge { background: rgba(236,72,153,0.88); }
.property-badge.coed-badge  { background: rgba(245,158,11,0.90); color: var(--dark); }

/* Pricing card top accent stripe */
.pricing-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--grad-primary);
  transform: scaleX(0);
  transition: transform 0.35s ease;
  transform-origin: left;
}
.pricing-card:hover::before,
.pricing-card.popular::before { transform: scaleX(1); }
.pricing-card.popular {
  border-color: var(--primary);
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}
.popular-badge {
  background: var(--grad-primary);
  box-shadow: 0 4px 14px rgba(79,70,229,0.4);
}
.pricing-price .amount { color: var(--primary); }
.pricing-card.popular .pricing-price .amount { color: var(--orange); }
.pricing-features li i { color: #10B981; }

/* Step card icon rounded square */
.step-icon {
  border-radius: 22px;
  box-shadow: 0 8px 24px rgba(79,70,229,0.3);
}

/* Location icon rounded square */
.location-icon { border-radius: 12px; }

/* Contact info icon rounded square */
.contact-info-item i { border-radius: 10px; }

/* Testimonial stars FA icons */
.testimonial-card .stars i { color: var(--orange); font-size: 1.1rem; }

/* Carousel prev/next buttons */
.carousel-prev-icon,
.carousel-next-icon {
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(79,70,229,0.15);
  color: var(--primary);
}
.carousel-prev-icon:hover,
.carousel-next-icon:hover { background: var(--primary); color: var(--white); }
.carousel-indicators-custom button.active { background: var(--primary); }

/* Outline primary button */
.btn-outline-primary-custom {
  border: 2px solid var(--primary);
  color: var(--primary) !important;
  border-radius: var(--radius-sm);
  padding: 12px 32px;
  font-weight: 700;
  transition: var(--transition);
}
.btn-outline-primary-custom:hover {
  background: var(--grad-primary);
  color: var(--white) !important;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(79,70,229,0.35);
}

/* Form focus */
.form-control:focus, .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(79,70,229,0.12);
}

/* Back to top */
#backToTop { background: var(--grad-primary); border-radius: 12px; box-shadow: 0 4px 14px rgba(79,70,229,0.35); }
#backToTop:hover { background: var(--grad-accent); color: var(--dark); box-shadow: var(--shadow-gold); transform: translateY(-3px); }

/* Floating WA green pulse */
.floating-whatsapp { background: linear-gradient(135deg, #22C55E, #16A34A); box-shadow: 0 4px 20px rgba(34,197,94,0.5); }
.floating-whatsapp:hover { transform: scale(1.1) translateY(-4px); color: var(--white); box-shadow: 0 10px 32px rgba(34,197,94,0.6); }
.floating-whatsapp::before {
  content: '';
  position: absolute; inset: -6px; border-radius: 50%;
  background: rgba(34,197,94,0.28);
  animation: waPulse 2.4s ease-out infinite; z-index: -1;
}

/* Rule page improvements */
.rule-card { border-left-color: var(--primary); }
.rule-card:hover { border-left-color: var(--orange); }
.rule-icon { background: rgba(79,70,229,0.08); color: var(--primary); border-radius: 10px; }
.rule-card:hover .rule-icon { background: rgba(245,158,11,0.1); color: var(--orange); }

/* Detail page overview stat icon */
.overview-stat .ov-icon { color: var(--primary); }

/* Room type header — gradient */
.room-type-header { background: var(--grad-primary); }

/* Amenity chip hover — indigo */
.amenity-chip:hover { border-color: var(--primary); color: var(--primary); background: rgba(79,70,229,0.05); }
.amenity-chip i { color: var(--primary); }

/* Gallery overlay — indigo/purple */
.gallery-overlay {
  background: linear-gradient(135deg, rgba(79,70,229,0.65), rgba(124,58,237,0.65));
}

/* Section alternating backgrounds */
.why-section        { background: linear-gradient(180deg, var(--white) 0%, #F8F9FF 100%); }
.amenities-section  { background: linear-gradient(180deg, var(--white) 0%, #F8F9FF 100%); }
.testimonials-section { background: var(--light); }

/* Detail hero ::before gradient */
.detail-hero {
  background-image: var(--grad-hero) !important;
}

/* Listing hero */
.listing-hero { background: var(--grad-hero); }
.listing-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(79,70,229,0.2) 0%, transparent 60%);
  pointer-events: none;
}

/* Page hero */
.page-hero { background: var(--grad-hero); }

/* Global hero content z-index fix */
.hero-content, .trust-bar, .hero-orb, .hero-scroll { position: relative; z-index: 2; }

/* Verified tag — green */
.verified-tag { background: rgba(16,185,129,0.9); }

/* Filter buttons on listing */
.btn-filter-active { background: var(--grad-primary); border: none; box-shadow: 0 4px 14px rgba(79,70,229,0.3); }
.btn-filter-inactive:hover { border-color: var(--primary); color: var(--primary) !important; }
.btn-primary-custom:hover::after { left: 150%; transition: left 0.55s ease; }
.btn-submit-form:hover::after    { left: 150%; transition: left 0.55s ease; }
.btn-whatsapp:hover::after       { left: 150%; transition: left 0.55s ease; }

/* ---- Floating WhatsApp Pulse Ring ---- */
.floating-whatsapp::before {
  content: '';
  position: absolute; inset: -6px;
  border-radius: 50%;
  background: rgba(37,211,102,0.3);
  animation: waPulse 2.4s ease-out infinite;
  z-index: -1;
}
@keyframes waPulse {
  0%   { transform: scale(1); opacity: 0.75; }
  100% { transform: scale(1.7); opacity: 0; }
}

/* ---- Testimonial Quote Mark ---- */
.testimonial-card { position: relative; }
.testimonial-card::before {
  content: '\201C';
  position: absolute; top: 0; left: 22px;
  font-size: 5.5rem; line-height: 1;
  color: rgba(79,70,229,0.07);
  font-family: Georgia, serif; font-weight: 900;
  pointer-events: none;
}

/* ---- Section BGs ---- */
.why-section         { background: linear-gradient(180deg, #fff 0%, #F8F9FF 100%); }
.amenities-section   { background: linear-gradient(180deg, #fff 0%, #F8F9FF 100%); }
.testimonials-section{ background: linear-gradient(180deg, #F8F9FF 0%, #fff 100%); }

/* ---- Footer gradient ---- */
.footer { background: linear-gradient(180deg, #0B1250 0%, #070D3D 100%); }

/* ---- Back to top enhanced ---- */
#backToTop { background: linear-gradient(135deg, var(--primary), var(--primary-light)); box-shadow: 0 4px 14px rgba(79,70,229,0.35); }
#backToTop:hover { background: linear-gradient(135deg, var(--orange), var(--orange-light)); color: var(--white); }

/* ---- Amenity icon scale on hover ---- */
.amenity-icon { transition: transform 0.3s ease, background 0.3s ease; }
.amenity-item:hover .amenity-icon { transform: scale(1.12); }
