/* ============================================================
   LYMA Developers – Bansurivan Residential Plots
   Main Stylesheet
   ============================================================ */

:root {
  --primary:     #1a3c5e;
  --primary-dark:#0f2540;
  --secondary:   #e8a020;
  --accent:      #2ecc71;
  --danger:      #e74c3c;
  --booked:      #f39c12;
  --text:        #2c3e50;
  --text-light:  #6c757d;
  --bg-light:    #f8fafc;
  --white:       #ffffff;
  --radius:      12px;
  --shadow:      0 4px 20px rgba(0,0,0,.10);
  --shadow-lg:   0 10px 40px rgba(0,0,0,.15);
  --transition:  all .3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

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

.py-80 { padding-top: 80px; padding-bottom: 80px; }

/* ============ PRELOADER ============ */
#preloader {
  position: fixed; inset: 0; background: var(--primary);
  z-index: 9999; display: flex; align-items: center; justify-content: center;
  transition: opacity .5s ease;
}
#preloader.fade-out { opacity: 0; pointer-events: none; }
.preloader-inner { text-align: center; }
.brand-logo { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 20px; }
.brand-text { font-size: 2rem; font-weight: 800; color: #fff; letter-spacing: 3px; }
/* Logo images */
.preloader-logo { height: 110px; width: auto; max-width: 220px; object-fit: contain; filter: drop-shadow(0 2px 12px rgba(0,0,0,.25)); }
.navbar-logo    { height: 52px;  width: auto; max-width: 160px; object-fit: contain; border-radius: 6px; }
@media (max-width: 576px) {
  .navbar-logo  { height: 40px; max-width: 120px; }
}
.preloader-bar { width: 200px; height: 4px; background: rgba(255,255,255,.2); border-radius: 2px; overflow: hidden; }
.preloader-fill { width: 0; height: 100%; background: var(--secondary); border-radius: 2px; animation: load 1.5s ease forwards; }
@keyframes load { to { width: 100%; } }

/* ============ NAVBAR ============ */
#mainNav {
  background: linear-gradient(180deg, rgba(10,25,50,.65) 0%, rgba(10,25,50,0) 100%);
  backdrop-filter: blur(2px);
  transition: background .35s ease, padding .35s ease, box-shadow .35s ease;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
#mainNav.scrolled {
  background: rgba(14,30,58,.97);
  backdrop-filter: blur(14px);
  padding: 8px 0;
  box-shadow: 0 4px 24px rgba(0,0,0,.35);
  border-bottom: none;
}

/* Brand */
.navbar-brand { display: flex; align-items: center; gap: 10px; text-decoration:none; }
.brand-name {
  font-size: 1.15rem; font-weight: 800; color: var(--white);
  letter-spacing: .3px; line-height:1.2;
}
.brand-name span { color: var(--secondary); }
.brand-tagline {
  font-size: .62rem; color: rgba(255,255,255,.45);
  letter-spacing: 1.5px; text-transform: uppercase; font-weight:400;
}

/* Nav links */
.nav-link {
  color: rgba(255,255,255,.82) !important;
  font-size: .875rem; font-weight: 500;
  padding: 7px 13px !important;
  border-radius: 6px;
  transition: all .2s;
  letter-spacing: .2px;
  white-space: nowrap;
}
.nav-link:hover { color: #fff !important; background: rgba(255,255,255,.12); }
.nav-link.active-page { color: var(--secondary) !important; font-weight: 600; }

/* Dropdown */
.dropdown-menu.dropdown-menu-dark {
  background: rgba(14,30,58,.97);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  padding: 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
  min-width: 200px;
}
.dropdown-item {
  color: rgba(255,255,255,.8);
  border-radius: 6px;
  font-size: .875rem;
  padding: 8px 14px;
  transition: .2s;
}
.dropdown-item:hover { background: rgba(255,255,255,.12); color: #fff; }
.dropdown-toggle::after { margin-left: 5px; }

/* CTA Buttons */
.btn-wa-nav {
  background: #25d366; color: #fff !important;
  padding: 8px 16px; border-radius: 8px;
  font-size: .82rem; font-weight: 600;
  transition: .2s; border: none;
  display: inline-flex; align-items: center;
}
.btn-wa-nav:hover { background: #1ebe5a; color: #fff !important; transform: translateY(-1px); }

.btn-book-now {
  background: var(--secondary); color: var(--primary) !important;
  padding: 8px 18px; border-radius: 8px;
  font-size: .82rem; font-weight: 700;
  transition: .2s; border: none;
  display: inline-flex; align-items: center;
  white-space: nowrap;
}
.btn-book-now:hover { background: #d4900f; color: var(--primary) !important; transform: translateY(-1px); }

/* Toggler */
.navbar-toggler { border-color: rgba(255,255,255,.3); padding: 5px 8px; }
.navbar-toggler-icon { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.85%29' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); }
.navbar-toggler:focus { box-shadow: none; }

/* Mobile menu */
@media (max-width: 991px) {
  #navbarNav {
    background: rgba(14,30,58,.98);
    margin-top: 10px; border-radius: 12px;
    padding: 12px 16px;
    border: 1px solid rgba(255,255,255,.08);
  }
  .nav-link { padding: 9px 12px !important; border-radius: 6px; }
  .nav-right-ctas { border-top: 1px solid rgba(255,255,255,.08); padding-top: 12px; margin-top: 4px; justify-content: center; }
  .dropdown-menu { position: static !important; background: rgba(255,255,255,.06) !important; border: none !important; box-shadow: none !important; backdrop-filter: none !important; }
}

/* ============ FLOATING BUTTONS ============ */
.wa-float {
  position: fixed; bottom: 100px; right: 24px;
  width: 58px; height: 58px;
  background: #25d366; color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; z-index: 1000;
  box-shadow: 0 4px 15px rgba(37,211,102,.4);
  transition: var(--transition);
}
.wa-float:hover { transform: scale(1.1); color: #fff; }

.scroll-top-btn {
  position: fixed; bottom: 30px; right: 24px;
  width: 44px; height: 44px;
  background: var(--primary); color: #fff;
  border: none; border-radius: 50%; font-size: .9rem;
  z-index: 1000; cursor: pointer;
  opacity: 0; transition: var(--transition);
  box-shadow: var(--shadow);
}
.scroll-top-btn.visible { opacity: 1; }
.scroll-top-btn:hover { background: var(--primary-dark); }

/* ============ SECTION HEADERS ============ */
.section-tag {
  display: inline-block;
  background: rgba(26,60,94,.1); color: var(--primary);
  font-size: .75rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  padding: 4px 14px; border-radius: 20px; margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; font-weight: 700; color: var(--primary);
  margin-bottom: 12px;
}
.section-sub { font-size: 1rem; color: var(--text-light); max-width: 600px; margin: 0 auto; }

/* ============ HERO ============ */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary) 0%, #2c5f8a 50%, #1a4a6e 100%);
  position: relative; overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="30" fill="rgba(255,255,255,0.03)"/><circle cx="80" cy="80" r="40" fill="rgba(255,255,255,0.03)"/></svg>');
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(15,37,64,.88) 0%, rgba(26,60,94,.65) 60%, rgba(15,37,64,.5) 100%);
  z-index: 1;
}
.hero-content { position: relative; z-index: 2; }

/* Video background */
.hero-video-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}

.badge-pill {
  display: inline-block;
  background: rgba(232,160,32,.2); color: var(--secondary);
  border: 1px solid rgba(232,160,32,.4);
  padding: 6px 16px; border-radius: 20px; font-size: .8rem; font-weight: 600;
  letter-spacing: 1px;
  margin-top:auto;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem; font-weight: 700; color: #fff; line-height: 1.2;
}
.hero-title span { color: var(--secondary); }
.hero-subtitle { font-size: 1.1rem; color: rgba(255,255,255,.8); max-width: 500px; }

.stat-pill {
  background: rgba(255,255,255,.1); backdrop-filter: blur(5px);
  color: #fff; padding: 8px 16px; border-radius: 25px;
  font-size: .85rem; font-weight: 500;
  border: 1px solid rgba(255,255,255,.2);
  display: flex; align-items: center; gap: 6px;
}
.stat-pill.available { background: rgba(46,204,113,.2); border-color: rgba(46,204,113,.4); }
.stat-pill.sold { background: rgba(231,76,60,.2); border-color: rgba(231,76,60,.4); }

.hero-card {
  background: rgba(255,255,255,.95); backdrop-filter: blur(10px);
  border-radius: var(--radius); padding: 28px;
  box-shadow: var(--shadow-lg);
}
.hero-card h5 { color: var(--primary); font-weight: 700; }
.quick-form .form-control, .quick-form .form-select {
  border-radius: 8px; border: 1px solid #e0e6ef;
  padding: 10px 14px; font-size: .9rem;
}
.quick-form-phones { display: flex; gap: 8px; flex-wrap: wrap; }
.phone-badge {
  display: inline-flex; align-items: center;
  background: #f0f4f8; color: var(--primary);
  padding: 4px 10px; border-radius: 20px; font-size: .8rem; font-weight: 600;
  transition: var(--transition);
}
.phone-badge:hover { background: var(--primary); color: #fff; }

.scroll-indicator {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.6); text-align: center; z-index: 2;
  animation: bounce 2s infinite;
}
.scroll-indicator span { display: block; font-size: .75rem; letter-spacing: 2px; margin-bottom: 4px; }
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* ============ HIGHLIGHTS STRIP ============ */
.highlights-strip {
  background: var(--primary-dark); padding: 20px 0;
}
.highlight-item {
  display: flex; align-items: center; gap: 12px;
  color: rgba(255,255,255,.85); font-size: .9rem; font-weight: 500;
}
.highlight-item i { font-size: 1.3rem; color: var(--secondary); }

/* ============ ABOUT ============ */
.about-img-wrap { position: relative; }
.about-badge {
  position: absolute; bottom: -16px; right: -16px;
  background: var(--secondary); color: var(--primary);
  padding: 14px 18px; border-radius: var(--radius);
  display: flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow);
}
.about-badge i { font-size: 1.5rem; }
.about-badge strong { display: block; font-size: .9rem; }
.about-badge small { font-size: .75rem; opacity: .8; }

.about-features { display: flex; flex-direction: column; gap: 20px; }
.about-feature-item { display: flex; gap: 16px; align-items: flex-start; }
.feature-icon {
  width: 48px; height: 48px; min-width: 48px;
  background: rgba(26,60,94,.1); color: var(--primary);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.about-feature-item h5 { font-size: 1rem; font-weight: 600; color: var(--primary); margin-bottom: 4px; }
.about-feature-item p { font-size: .875rem; color: var(--text-light); margin: 0; }

/* ============ PLOT MAP ============ */
.plot-map-wrap {
  background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden;
  padding: 16px;
}
.svg-container {
  position: relative; overflow: auto;
  max-height: 85vh; cursor: grab;
  border: 1px solid #e0e6ef; border-radius: 8px;
}
.svg-container:active { cursor: grabbing; }

#plotMapSVG { display: block; min-width: 500px; }

/* Plot rects */
.plot-rect {
  cursor: pointer; transition: opacity .2s, filter .2s;
  stroke-width: 2;
}
.plot-rect:hover { filter: brightness(1.1) drop-shadow(0 0 6px rgba(0,0,0,.3)); }
.plot-rect.available { fill: #2ecc71; stroke: #27ae60; }
.plot-rect.sold      { fill: #e74c3c; stroke: #c0392b; }
.plot-rect.booked    { fill: #f39c12; stroke: #e67e22; }
.plot-rect.reserved  { fill: #9b59b6; stroke: #8e44ad; }
.plot-rect.corner    { stroke: #ffd700; stroke-width: 3; }

.plot-label { font-size: 10px; font-weight: 700; fill: #fff; pointer-events: none; text-anchor: middle; dominant-baseline: middle; }

/* Tooltip */
.map-tooltip {
  position: absolute; background: rgba(26,60,94,.95);
  color: #fff; padding: 10px 14px; border-radius: 8px;
  font-size: .8rem; pointer-events: none; opacity: 0;
  transition: opacity .2s; max-width: 200px; z-index: 10;
  box-shadow: var(--shadow);
}
.map-tooltip.visible { opacity: 1; }

/* Stat badges */
.badge-stat {
  padding: 6px 16px; border-radius: 20px; font-size: .85rem; font-weight: 500;
}
.badge-stat.total    { background: #e0e6ef; color: var(--primary); }
.badge-stat.available{ background: rgba(46,204,113,.15); color: #27ae60; }
.badge-stat.booked   { background: rgba(243,156,18,.15); color: #e67e22; }
.badge-stat.sold     { background: rgba(231,76,60,.15); color: #c0392b; }

/* Legend */
.legend-box {
  display: inline-block; width: 14px; height: 14px; border-radius: 3px; margin-right: 5px; vertical-align: middle;
}
.legend-box.available { background: #2ecc71; }
.legend-box.booked    { background: #f39c12; }
.legend-box.sold      { background: #e74c3c; }
.legend-box.corner    { background: #fff; border: 2px solid #ffd700; }

/* Plot modal */
.plot-detail-grid { display: flex; flex-direction: column; gap: 0; }
.plot-detail-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0; border-bottom: 1px solid #f0f4f8; font-size: .9rem;
}
.plot-detail-row:last-child { border: none; }
.price-row strong { font-size: 1.2rem !important; color: var(--primary) !important; }

/* ============ LOCATION ============ */
.map-embed iframe { width: 100%; height: 400px; display: block; }
.location-distances { display: flex; flex-direction: column; gap: 16px; }
.distance-item {
  display: flex; align-items: center; gap: 14px;
  padding: 12px; background: #f8fafc; border-radius: 10px;
  border-left: 4px solid var(--primary);
}
.dist-icon {
  width: 40px; height: 40px; min-width: 40px;
  background: var(--primary); color: #fff;
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.distance-item strong { display: block; font-size: .9rem; color: var(--primary); }
.distance-item span { font-size: .8rem; color: var(--text-light); }

/* ============ PAYMENT PLAN ============ */
.payment-step {
  background: #fff; border-radius: var(--radius);
  padding: 28px 24px; text-align: center;
  box-shadow: var(--shadow); position: relative;
  border-top: 5px solid var(--primary);
  transition: var(--transition);
  height: 100%;
}
.payment-step:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.step-num {
  position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; font-weight: 700;
}
.step-icon { font-size: 2rem; color: var(--primary); margin: 16px 0 12px; }
.payment-step h5 { font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.step-amount { font-size: 1.3rem; font-weight: 700; color: var(--secondary); margin-bottom: 12px; }
.payment-step p { font-size: .85rem; color: var(--text-light); }
.step-1 { border-color: #3498db; } .step-1 .step-num { background: #3498db; }
.step-2 { border-color: #2ecc71; } .step-2 .step-num { background: #2ecc71; }
.step-3 { border-color: #f39c12; } .step-3 .step-num { background: #f39c12; }
.step-4 { border-color: #9b59b6; } .step-4 .step-num { background: #9b59b6; }
.step-5 { border-color: var(--primary); }

/* ============ LUCKY DRAW ============ */
.lucky-banner {
  background: linear-gradient(135deg, var(--secondary), #d4900f);
  border-radius: var(--radius); padding: 28px 32px;
  box-shadow: var(--shadow-lg);
}
.lucky-banner-inner {
  display: flex; align-items: center; gap: 24px; color: var(--primary);
}
.lucky-icon { font-size: 3rem; }
.lucky-banner h4 { font-size: 1.5rem; font-weight: 800; margin-bottom: 4px; }
.lucky-banner p { font-size: 1rem; }

.prize-card {
  background: #fff; border-radius: var(--radius); padding: 20px;
  text-align: center; box-shadow: var(--shadow);
  border: 1px solid #e0e6ef; transition: var(--transition);
  height: 100%;
}
.prize-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--secondary); }
.prize-number {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; font-weight: 700; margin: 0 auto 12px;
}
.prize-icon { font-size: 2rem; color: var(--secondary); margin-bottom: 10px; }
.prize-card h6 { font-size: .9rem; font-weight: 600; color: var(--primary); margin-bottom: 6px; }
.prize-price { font-size: .8rem; color: var(--secondary); font-weight: 600; }

/* ============ GALLERY ============ */
.filter-btn {
  background: #f0f4f8; color: var(--text); border: none;
  padding: 6px 18px; border-radius: 20px; font-size: .85rem;
  font-weight: 500; margin: 4px; transition: var(--transition);
}
.filter-btn.active, .filter-btn:hover {
  background: var(--primary); color: #fff;
}
.gallery-item {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); transition: var(--transition);
  aspect-ratio: 4/3; position: relative;
}
.gallery-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(26,60,94,.7);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { font-size: 2rem; color: #fff; }

/* ============ VIDEO ============ */
.video-placeholder-inner {
  background: linear-gradient(135deg, #f8fafc, #e0e6ef);
  height: 100%; color: var(--primary);
}

/* ============ TESTIMONIALS ============ */
.testimonial-card {
  background: #fff; border-radius: var(--radius); padding: 24px;
  box-shadow: var(--shadow); height: 100%;
  border-left: 4px solid var(--secondary);
}
.stars { color: var(--secondary); font-size: .9rem; }
.review-text { font-size: .9rem; color: var(--text); line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem;
}
.reviewer strong { display: block; font-size: .9rem; color: var(--primary); }
.reviewer small { font-size: .8rem; color: var(--text-light); }

/* ============ BLOG ============ */
.blog-card {
  background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden;
  transition: var(--transition); height: 100%;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-img { aspect-ratio: 16/9; overflow: hidden; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.blog-card:hover .blog-img img { transform: scale(1.05); }
.blog-content { padding: 18px; }
.blog-cat {
  display: inline-block; font-size: .7rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1px;
  background: rgba(26,60,94,.1); color: var(--primary);
  padding: 2px 10px; border-radius: 20px; margin-bottom: 8px;
}
.blog-content h6 { font-size: .9rem; font-weight: 700; color: var(--primary); margin-bottom: 8px; line-height: 1.4; }
.blog-content p { font-size: .8rem; color: var(--text-light); margin-bottom: 8px; }
.blog-card a.hover-primary:hover { color: var(--primary) !important; }
#blogCatFilter .active-cat { background: var(--primary); border-color: var(--primary); color: #fff; }
#blogCatFilter .btn-outline-primary:hover { background: var(--primary); color: #fff; }

/* ============ PAGE BANNER (inner pages) ============ */
.page-banner {
  background: linear-gradient(135deg, #1a3c5e, #2c5f8a);
  padding: 110px 0 50px;
  margin-top: 0;
  text-align: center;
  color: #fff;
  position: relative;
  margin-top:auto;
}
.page-banner h1 { font-size: 2.2rem; font-weight: 800; margin-bottom: 8px; }
.page-banner p  { color: rgba(255,255,255,.8); margin-bottom: 0; }
.page-banner .breadcrumb-item a { color: rgba(255,255,255,.7); text-decoration: none; }
.page-banner .breadcrumb-item.active { color: rgba(255,255,255,.9); }
.page-banner .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.4); }
@media(max-width:768px){ .page-banner { padding: 95px 0 36px; } .page-banner h1 { font-size: 1.7rem; } }

/* ============ CONTACT ============ */
.contact-info-card {
  background: var(--primary); color: #fff;
  border-radius: var(--radius); padding: 32px;
  height: 100%;
}
.contact-info-card h5 { color: #fff; }
.contact-info-item { display: flex; gap: 14px; margin-bottom: 20px; }
.ci-icon {
  width: 40px; height: 40px; min-width: 40px;
  background: rgba(255,255,255,.15); color: var(--secondary);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.contact-info-item strong { display: block; font-size: .85rem; opacity: .7; margin-bottom: 4px; }
.contact-info-item p { margin: 0; font-size: .9rem; }
.contact-info-item a { color: rgba(255,255,255,.85); }
.contact-info-item a:hover { color: var(--secondary); }

.contact-form-card {
  background: #fff; border-radius: var(--radius);
  padding: 32px; box-shadow: var(--shadow); height: 100%;
}
.contact-form-card h5 { color: var(--primary); }
.form-control, .form-select {
  border-radius: 8px; border: 1px solid #e0e6ef;
  padding: 10px 14px; font-size: .9rem; transition: var(--transition);
}
.form-control:focus, .form-select:focus {
  border-color: var(--primary); box-shadow: 0 0 0 3px rgba(26,60,94,.1);
}
.input-group-text {
  background: #f8fafc; border-color: #e0e6ef; color: var(--primary);
}

/* ============ FOOTER ============ */
.site-footer { background: #0f2540; }
.footer-top { padding: 60px 0 40px; }
.footer-brand p { color: rgba(255,255,255,.6); font-size: .875rem; margin: 12px 0 20px; }
.footer-phones { display: flex; flex-direction: column; gap: 6px; }
.footer-phones a { color: rgba(255,255,255,.7); font-size: .85rem; transition: var(--transition); }
.footer-phones a:hover { color: var(--secondary); }
.footer-title { color: var(--secondary); font-weight: 600; font-size: .85rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(255,255,255,.65); font-size: .875rem; transition: var(--transition); }
.footer-links a:hover { color: var(--secondary); }
.footer-form .form-control { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.2); color: #fff; }
.footer-form .form-control::placeholder { color: rgba(255,255,255,.5); }
.footer-bottom { background: rgba(0,0,0,.3); padding: 16px 0; }
.footer-bottom p { color: rgba(255,255,255,.5); font-size: .8rem; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.1); color: rgba(255,255,255,.7);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; transition: var(--transition);
}
.footer-social a:hover { background: var(--secondary); color: var(--primary); }

/* ============ BUTTONS ============ */
.btn-primary { background: var(--primary); border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); }
.btn-warning { background: var(--secondary); border-color: var(--secondary); color: var(--primary); font-weight: 600; }
.btn-warning:hover { background: #d4900f; border-color: #d4900f; color: var(--primary); }

/* ============ RESPONSIVE ============ */
@media (max-width: 992px) {
  .hero-title { font-size: 2.5rem; }
  .section-title { font-size: 1.8rem; }
}
@media (max-width: 768px) {
  .hero-title { font-size: 2rem; }
  .about-badge { right: 0; }
  .py-80 { padding-top: 50px; padding-bottom: 50px; }
  .contact-info-card { border-radius: var(--radius) var(--radius) 0 0; }
  .contact-form-card { border-radius: 0 0 var(--radius) var(--radius); }
}
@media (max-width: 576px) {
  .hero-title { font-size: 1.7rem; }
  .lucky-banner-inner { flex-direction: column; text-align: center; }
}

/* ============ ANIMATIONS ============ */
.fade-in-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in-up.visible { opacity: 1; transform: translateY(0); }
