/* ============================================================
   Radhey Developers - Main Stylesheet
   Color Palette: Royal Blue & Orange (Logo Theme)
   ============================================================ */

/* ── CSS Variables ─────────────────────────────────────── */
:root {
  /* Primary: Royal Blue (from logo "R") */
  --saffron:       #1565C0;
  --saffron-dark:  #0D47A1;
  --saffron-light: #1976D2;

  /* Accent: Orange (from logo "K" checkmark) */
  --gold:          #F47920;
  --gold-light:    #FF9A3C;
  --gold-dark:     #D4650A;

  /* Brand Red (from "RADHEY" text) */
  --brand-red:     #CC1414;

  --white:         #FFFFFF;
  --off-white:     #F0F4FF;
  --light-gray:    #F5F5F5;
  --gray:          #6C757D;
  --dark:          #0A2558;
  --dark-blue:     #061A42;
  --text:          #222222;
  --text-light:    #555555;
  --green:         #28A745;
  --red:           #DC3545;
  --orange:        #F47920;
  --shadow:        0 4px 20px rgba(21,101,192,0.12);
  --shadow-lg:     0 8px 40px rgba(21,101,192,0.18);
  --radius:        12px;
  --radius-sm:     8px;
  --transition:    all 0.3s ease;
  --font-en:       'Poppins', sans-serif;
  --font-hi:       'Hind', sans-serif;
}

/* ── Base ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: var(--font-en);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

body.lang-hi { font-family: var(--font-hi); }

h1,h2,h3,h4,h5,h6 {
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
}

a { color: var(--saffron); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--saffron-dark); }

img { max-width: 100%; height: auto; }

/* ── Page Loader ───────────────────────────────────────── */
#pageLoader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.4s ease;
}
#pageLoader.hidden { opacity: 0; pointer-events: none; }
.loader-spinner {
  width: 50px; height: 50px;
  border: 4px solid var(--light-gray);
  border-top-color: var(--saffron);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Top Bar ────────────────────────────────────────────── */
.top-bar {
  background: var(--dark);
  color: rgba(255,255,255,0.85);
  padding: 8px 0;
  font-size: 13px;
}
.top-bar a { color: rgba(255,255,255,0.85); }
.top-bar a:hover { color: var(--gold-light); }

.btn-whatsapp {
  background: #25D366;
  color: var(--white) !important;
  border: none;
  border-radius: 20px;
  padding: 4px 14px;
  font-size: 12px;
}
.btn-whatsapp:hover { background: #1EBE5A; }

.btn-lang {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.4);
  color: rgba(255,255,255,0.85) !important;
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 12px;
}
.btn-lang:hover { border-color: var(--gold-light); color: var(--gold-light) !important; }

/* ── Navbar ─────────────────────────────────────────────── */
.navbar-main {
  background: var(--white);
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
  padding: 10px 0;
  transition: var(--transition);
}
.navbar-main.scrolled {
  padding: 6px 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.logo-img { height: 55px; width: auto; object-fit: contain; }
.logo-text {
  font-size: 22px; font-weight: 800;
  color: var(--saffron);
  letter-spacing: -0.5px;
}

.navbar-main .nav-link {
  color: var(--dark) !important;
  font-weight: 500;
  font-size: 14.5px;
  padding: 8px 14px !important;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.navbar-main .nav-link:hover,
.navbar-main .nav-link.active {
  color: var(--saffron) !important;
  background: rgba(21,101,192,0.08);
}

.btn-call-nav {
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  color: var(--white) !important;
  border-radius: 25px;
  padding: 8px 20px !important;
  font-weight: 600;
  font-size: 14px;
  border: none;
  display: inline-flex;
  align-items: center;
}
.btn-call-nav:hover { background: linear-gradient(135deg, var(--saffron-dark), var(--saffron)); transform: translateY(-1px); }

.btn-call-mobile, .btn-wa-mobile {
  width: 34px; height: 34px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; border: none;
}
.btn-call-mobile { background: var(--saffron); color: var(--white) !important; }
.btn-wa-mobile   { background: #25D366; color: var(--white) !important; }

/* ── Blink Animation ────────────────────────────────────── */
@keyframes blink {
  0%,100% { opacity: 1; box-shadow: 0 0 0 0 rgba(21,101,192,0.5); }
  50%      { opacity: 0.85; box-shadow: 0 0 0 10px rgba(21,101,192,0); }
}
.blink-call { animation: blink 1.5s infinite; }

/* ── Section Styles ─────────────────────────────────────── */
.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 50px 0; }

.section-title {
  text-align: center;
  margin-bottom: 50px;
}
.section-title h2 {
  font-size: clamp(26px, 4vw, 38px);
  position: relative;
  display: inline-block;
  margin-bottom: 15px;
}
.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -8px; left: 50%; transform: translateX(-50%);
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--saffron), var(--gold));
  border-radius: 2px;
}
.section-title p { color: var(--text-light); font-size: 16px; max-width: 600px; margin: 0 auto; }

.bg-light-saffron { background: var(--off-white); }
.bg-dark-section { background: var(--dark); color: var(--white); }
.bg-dark-section h2, .bg-dark-section h3, .bg-dark-section h4 { color: var(--white); }

/* ── Hero Slider ────────────────────────────────────────── */
.hero-section {
  position: relative;
  overflow: hidden;
  min-height: 85vh;
}
.hero-swiper { height: 85vh; min-height: 500px; }

.hero-slide {
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex; align-items: center;
}
.hero-slide::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,37,88,0.80) 0%, rgba(10,37,88,0.35) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  color: var(--white);
  max-width: 700px;
}
.hero-content h1 {
  font-size: clamp(30px, 5vw, 58px);
  font-weight: 800;
  color: var(--white);
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
  line-height: 1.2;
}
.hero-content h1 span { color: var(--gold-light); }
.hero-content p {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255,255,255,0.9);
  margin: 20px 0 30px;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 12px; }

.btn-primary-custom {
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  color: var(--white);
  border: none;
  padding: 14px 30px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 15px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(21,101,192,0.4);
}
.btn-primary-custom:hover {
  background: linear-gradient(135deg, var(--saffron-dark), var(--saffron));
  transform: translateY(-2px);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(21,101,192,0.5);
}

.btn-secondary-custom {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 15px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: var(--transition);
}
.btn-secondary-custom:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-whatsapp-custom {
  background: #25D366;
  color: var(--white);
  border: none;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 15px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: var(--transition);
}
.btn-whatsapp-custom:hover { background: #1EBE5A; color: var(--white); transform: translateY(-2px); }

/* Hero Pagination */
.hero-swiper .swiper-pagination-bullet { background: rgba(255,255,255,0.6); }
.hero-swiper .swiper-pagination-bullet-active { background: var(--saffron); width: 24px; border-radius: 3px; }

/* ── Stats Banner ───────────────────────────────────────── */
.stats-banner {
  background: linear-gradient(135deg, var(--dark), var(--dark-blue));
  padding: 35px 0;
}
.stat-item { text-align: center; }
.stat-number {
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
}
.stat-label { font-size: 14px; color: rgba(255,255,255,0.7); margin-top: 6px; text-transform: uppercase; letter-spacing: 0.5px; }
.stat-divider { width: 1px; background: rgba(255,255,255,0.15); height: 60px; margin: auto; }

/* ── Project Card ───────────────────────────────────────── */
.project-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
}
.project-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.project-card-img {
  position: relative;
  overflow: hidden;
  height: 220px;
}
.project-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.project-card:hover .project-card-img img { transform: scale(1.08); }

.project-status-badge {
  position: absolute; top: 12px; left: 12px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px; font-weight: 600;
  text-transform: uppercase;
}
.badge-ongoing  { background: var(--saffron); color: var(--white); }
.badge-completed{ background: var(--green); color: var(--white); }
.badge-upcoming { background: var(--gold); color: var(--white); }

.project-card-body { padding: 20px; }
.project-card-body h4 { font-size: 18px; margin-bottom: 8px; }
.project-location { color: var(--text-light); font-size: 14px; margin-bottom: 12px; }
.project-location i { color: var(--saffron); }

.plot-counts { display: flex; gap: 10px; margin-bottom: 15px; }
.plot-count-item {
  flex: 1;
  text-align: center;
  padding: 8px 6px;
  border-radius: var(--radius-sm);
  font-size: 13px;
}
.plot-count-item .count { font-size: 20px; font-weight: 700; display: block; line-height: 1; }
.pc-total     { background: #f0f4ff; }
.pc-total .count     { color: var(--dark-blue); }
.pc-available { background: #e8f5e9; }
.pc-available .count { color: var(--green); }
.pc-sold      { background: #fce4ec; }
.pc-sold .count      { color: var(--red); }

.btn-view-project {
  display: block;
  text-align: center;
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  color: var(--white) !important;
  padding: 10px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
}
.btn-view-project:hover { background: linear-gradient(135deg, var(--saffron-dark), var(--saffron)); }

/* ── Plot Map ───────────────────────────────────────────── */
.plot-map-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--light-gray);
}
.plot-map-wrapper img { width: 100%; display: block; }

.plot-dot {
  position: absolute;
  width: 30px; height: 30px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 700;
  color: var(--white); cursor: pointer;
  border: 2px solid rgba(255,255,255,0.5);
  transform: translate(-50%, -50%);
  transition: var(--transition);
}
.plot-dot:hover { transform: translate(-50%,-50%) scale(1.3); z-index: 10; }
.plot-available { background: var(--green); }
.plot-booked    { background: var(--orange); }
.plot-sold      { background: var(--red); }

.plot-legend { display: flex; gap: 20px; flex-wrap: wrap; margin-top: 15px; }
.legend-item { display: flex; align-items: center; gap: 8px; font-size: 14px; }
.legend-dot { width: 16px; height: 16px; border-radius: 3px; }

/* ── Services ───────────────────────────────────────────── */
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 25px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-bottom: 3px solid transparent;
  height: 100%;
}
.service-card:hover {
  transform: translateY(-5px);
  border-bottom-color: var(--saffron);
  box-shadow: var(--shadow-lg);
}
.service-icon {
  width: 70px; height: 70px;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px; color: var(--white);
}
.service-card h5 { font-size: 17px; margin-bottom: 10px; }
.service-card p  { color: var(--text-light); font-size: 14px; line-height: 1.6; }

/* ── Why Choose Us ──────────────────────────────────────── */
.why-card {
  display: flex; align-items: flex-start; gap: 18px;
  padding: 20px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius);
  transition: var(--transition);
}
.why-card:hover { background: rgba(255,255,255,0.1); transform: translateX(5px); }
.why-icon {
  width: 55px; height: 55px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--white);
}
.why-card h5 { font-size: 16px; color: var(--white); margin-bottom: 5px; }
.why-card p  { font-size: 13px; color: rgba(255,255,255,0.7); margin: 0; line-height: 1.5; }

/* ── Lead Forms ─────────────────────────────────────────── */
.lead-form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 35px 30px;
  box-shadow: var(--shadow-lg);
}
.lead-form-card h3 {
  font-size: 22px;
  margin-bottom: 8px;
  color: var(--saffron);
}
.lead-form-card .form-subtitle {
  font-size: 14px; color: var(--text-light);
  margin-bottom: 25px;
}
.form-control, .form-select {
  border: 1.5px solid #e0e0e0;
  border-radius: var(--radius-sm);
  padding: 11px 15px;
  font-size: 14.5px;
  transition: var(--transition);
}
.form-control:focus, .form-select:focus {
  border-color: var(--saffron);
  box-shadow: 0 0 0 3px rgba(21,101,192,0.12);
}

/* ── Testimonials ───────────────────────────────────────── */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  position: relative;
  height: 100%;
}
.testimonial-card::before {
  content: '"';
  position: absolute; top: 15px; right: 20px;
  font-size: 80px; line-height: 1;
  color: var(--saffron); opacity: 0.15;
  font-family: Georgia, serif;
}
.testimonial-stars { color: var(--gold); font-size: 16px; margin-bottom: 12px; }
.testimonial-text { font-size: 15px; color: var(--text-light); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--white); font-weight: 700;
  flex-shrink: 0;
}
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.testimonial-name { font-weight: 700; font-size: 15px; }
.testimonial-location { font-size: 13px; color: var(--text-light); }

/* ── Page Hero ──────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-blue) 100%);
  padding: 60px 0 50px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--saffron), var(--gold), var(--saffron));
}
.page-hero h1 { color: var(--white); font-size: clamp(28px, 4vw, 42px); margin-bottom: 10px; }
.page-hero .breadcrumb-item { font-size: 14px; color: rgba(255,255,255,0.7); }
.page-hero .breadcrumb-item.active { color: var(--gold-light); }
.page-hero .breadcrumb-item a { color: rgba(255,255,255,0.7); }
.page-hero .breadcrumb-item+.page-hero .breadcrumb-item::before { color: rgba(255,255,255,0.5); }
.breadcrumb-item+.breadcrumb-item::before { color: rgba(255,255,255,0.5); }

/* ── Plot Availability Table ────────────────────────────── */
.plot-table-wrap { overflow-x: auto; }
.plot-table { width: 100%; border-collapse: collapse; }
.plot-table th {
  background: var(--dark);
  color: var(--white);
  padding: 12px 15px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.plot-table td { padding: 12px 15px; border-bottom: 1px solid #f0f0f0; font-size: 14px; }
.plot-table tr:hover td { background: var(--off-white); }
.status-pill {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px; font-weight: 600;
  display: inline-block;
}
.status-available { background: #e8f5e9; color: var(--green); }
.status-booked    { background: #fff3e0; color: var(--orange); }
.status-sold      { background: #fce4ec; color: var(--red); }

/* ── Contact Section ────────────────────────────────────── */
.contact-info-item {
  display: flex; align-items: flex-start; gap: 15px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 16px;
  transition: var(--transition);
}
.contact-info-item:hover { transform: translateX(4px); }
.contact-icon {
  width: 50px; height: 50px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 20px;
}
.contact-info-item h6 { font-size: 14px; font-weight: 600; margin-bottom: 4px; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.5px; }
.contact-info-item a, .contact-info-item p { font-size: 16px; font-weight: 500; margin: 0; color: var(--dark); }
.contact-info-item a:hover { color: var(--saffron); }

/* ── Gallery ────────────────────────────────────────────── */
.gallery-item {
  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.1); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(21,101,192,0.75);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: var(--transition);
  color: var(--white); font-size: 28px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ── Facilities ─────────────────────────────────────────── */
.facility-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px;
  background: var(--off-white);
  border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 500;
  transition: var(--transition);
}
.facility-item:hover { background: rgba(21,101,192,0.08); }
.facility-item i { color: var(--saffron); font-size: 18px; width: 24px; }

/* ── Footer ─────────────────────────────────────────────── */
.site-footer { background: var(--dark); color: rgba(255,255,255,0.8); }

.footer-top { padding: 60px 0 40px; }
.footer-logo { height: 55px; width: auto; filter: brightness(0) invert(1); }
.footer-brand { font-size: 22px; font-weight: 800; color: var(--gold-light); }
.footer-about { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 20px; }
.footer-contact p { font-size: 14px; margin-bottom: 8px; color: rgba(255,255,255,0.7); }
.footer-contact a { color: rgba(255,255,255,0.7); }
.footer-contact a:hover { color: var(--gold-light); }

.footer-heading {
  font-size: 16px; font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--saffron);
  display: inline-block;
}

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 14px; color: rgba(255,255,255,0.6);
  transition: var(--transition);
  display: flex; align-items: center; gap: 6px;
}
.footer-links a::before { content: '›'; color: var(--saffron); font-size: 18px; }
.footer-links a:hover { color: var(--gold-light); padding-left: 4px; }

.social-links { display: flex; gap: 10px; }
.social-link {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7); font-size: 15px;
  transition: var(--transition);
}
.social-link:hover { background: var(--saffron); color: var(--white); transform: translateY(-3px); }

.btn-call-footer {
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  color: var(--white) !important;
  border: none;
  padding: 10px;
  border-radius: var(--radius-sm);
  font-weight: 600; font-size: 14px;
}
.btn-whatsapp-footer {
  background: #25D366;
  color: var(--white) !important;
  border: none;
  padding: 10px;
  border-radius: var(--radius-sm);
  font-weight: 600; font-size: 14px;
}
.btn-enquire-footer {
  background: transparent;
  color: rgba(255,255,255,0.8) !important;
  border: 1px solid rgba(255,255,255,0.3);
  padding: 10px;
  border-radius: var(--radius-sm);
  font-weight: 600; font-size: 14px;
}
.btn-enquire-footer:hover { border-color: var(--gold-light); color: var(--gold-light) !important; }

.footer-bottom {
  background: rgba(0,0,0,0.3);
  padding: 18px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--gold-light); }

/* ── Floating Buttons ───────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 100px; right: 22px;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white) !important;
  font-size: 26px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 999;
  transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.12); box-shadow: 0 6px 25px rgba(37,211,102,0.5); }

.call-float {
  position: fixed;
  bottom: 30px; right: 22px;
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white) !important;
  font-size: 22px;
  box-shadow: 0 4px 20px rgba(21,101,192,0.45);
  z-index: 999;
  transition: var(--transition);
}
.call-float:hover { transform: scale(1.12); }

.wa-tooltip, .call-tooltip {
  position: absolute;
  right: 68px;
  background: var(--dark);
  color: var(--white);
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 12px; font-weight: 500;
  white-space: nowrap;
  opacity: 0; pointer-events: none;
  transition: opacity 0.2s;
}
.whatsapp-float:hover .wa-tooltip,
.call-float:hover .call-tooltip { opacity: 1; }

/* ── About Page ─────────────────────────────────────────── */
.about-img-wrap { position: relative; }
.about-img-wrap img { border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.about-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  color: var(--white);
  padding: 20px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
}
.about-badge .num { font-size: 36px; font-weight: 800; line-height: 1; }
.about-badge .lbl { font-size: 12px; text-transform: uppercase; letter-spacing: 0.5px; }

.achievement-item {
  text-align: center;
  padding: 25px 15px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.achievement-item:hover { transform: translateY(-4px); }
.achievement-item .num { font-size: 40px; font-weight: 800; color: var(--saffron); line-height: 1; }
.achievement-item .lbl { font-size: 14px; color: var(--text-light); margin-top: 6px; }

/* ── Alert / Flash ──────────────────────────────────────── */
.alert-success { background: #e8f5e9; border-color: var(--green); color: #1b5e20; }
.alert-danger   { background: #fce4ec; border-color: var(--red);   color: #b71c1c; }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 991px) {
  .hero-swiper { height: 75vh; }
  .section-pad { padding: 55px 0; }
  .navbar-collapse { background: var(--white); padding: 15px; border-radius: 0 0 var(--radius) var(--radius); box-shadow: var(--shadow); }
  .about-badge { bottom: -10px; right: 10px; }
}

@media (max-width: 767px) {
  .hero-swiper { height: 65vh; min-height: 420px; }
  .hero-content h1 { font-size: 28px; }
  .stat-divider { display: none; }
  .section-pad { padding: 40px 0; }
  .lead-form-card { padding: 25px 18px; }
  .whatsapp-float { bottom: 90px; right: 15px; }
  .call-float { bottom: 22px; right: 15px; }
  .about-badge { display: none; }
}

@media (max-width: 480px) {
  .hero-btns .btn-primary-custom,
  .hero-btns .btn-secondary-custom,
  .hero-btns .btn-whatsapp-custom { font-size: 13px; padding: 11px 20px; }
  .plot-counts { flex-direction: column; gap: 6px; }
}

/* ── Utility ─────────────────────────────────────────────── */
.text-saffron { color: var(--saffron) !important; }
.text-gold    { color: var(--gold) !important; }
.text-orange  { color: var(--gold) !important; }
.bg-saffron   { background: var(--saffron) !important; }

/* ── Logo footer: don't invert (blue logo on dark bg looks fine) */
.footer-logo  { filter: brightness(0) invert(1); }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.rounded-xl { border-radius: var(--radius) !important; }