/* ============================================================
   Homepage – Premium Styles
   ============================================================ */

/* ---- Hero ---- */
.home-hero {
  position: relative;
  width: 100%;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: #000;
  overflow: hidden;
}

.home-hero .hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.78) 40%, rgba(0,0,0,0.45) 100%);
  z-index: 1;
}

.home-hero .hero-content {
  position: relative;
  z-index: 2;
  padding: 140px 0 100px;
}

.hero-city-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #7cb4f5;
  border: 1px solid rgba(0,79,181,0.45);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 22px;
}

.hero-city-label span {
  width: 6px; height: 6px;
  background: #7cb4f5;
  border-radius: 50%;
  display: inline-block;
  animation: blink 1.4s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}

.hero-main-title {
  font-size: 80px;
  font-weight: 900;
  color: #fff;
  line-height: 1.0;
  margin-bottom: 10px;
  letter-spacing: -2px;
}

.hero-main-title .accent {
  color: #004FB5;
}

.hero-slogan {
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,0.78);
  margin-bottom: 14px;
  letter-spacing: 0.3px;
}

.hero-sub-line {
  font-size: 15px;
  color: rgba(255,255,255,0.58);
  max-width: 500px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

/* Price tag badge */
.hero-price-tag {
  display: inline-block;
  background: rgba(0, 79, 181, 0.15);
  border: 1px solid rgba(0, 79, 181, 0.4);
  color: #7cb4f5;
  font-size: 15px;
  font-weight: 500;
  padding: 8px 20px;
  border-radius: 30px;
  margin-bottom: 18px;
  letter-spacing: 0.3px;
}

.hero-price-tag strong {
  color: #7cb4f5;
  font-weight: 800;
}

.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 2px solid rgba(255,255,255,0.6);
  color: #fff;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.25s;
}

.btn-hero-outline:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-color: #fff;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
}

.hero-scroll-hint span {
  display: block;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 8px;
}

.scroll-arrow {
  display: block;
  width: 22px;
  height: 22px;
  border-right: 2px solid rgba(255,255,255,0.4);
  border-bottom: 2px solid rgba(255,255,255,0.4);
  transform: rotate(45deg);
  margin: 0 auto;
  animation: bounce 1.6s ease infinite;
}

@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(6px); }
}

/* ---- Stats Strip ---- */
.home-stats-strip {
  background: #111827;
}

.home-stats-strip .stat-item {
  text-align: center;
  padding: 28px 20px;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.home-stats-strip .stat-item:last-child {
  border-right: none;
}

.home-stats-strip .stat-num {
  font-size: 40px;
  font-weight: 800;
  color: #004FB5;
  line-height: 1;
  margin-bottom: 4px;
}

.home-stats-strip .stat-lbl {
  font-size: 12px;
  color: rgba(255,255,255,0.72);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 500;
}

/* ---- Featured Location Highlight ---- */
.featured-location {
  padding: 90px 0;
}

.featured-location .feat-loc-img {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 12px 40px rgba(0,0,0,0.16);
}

.featured-location .feat-loc-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.featured-location .feat-loc-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(0,0,0,0.82);
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  backdrop-filter: blur(4px);
}

.featured-location .feat-loc-badge span {
  color: #004FB5;
  margin-right: 6px;
}

.feat-checklist {
  list-style: none;
  padding: 0;
  margin: 20px 0 28px;
}

.feat-checklist li {
  font-size: 14px;
  color: #444;
  padding: 7px 0;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.feat-checklist li:last-child { border-bottom: none; }

.feat-checklist li .check-icon {
  width: 22px; height: 22px;
  background: #eef4ff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #004FB5;
  font-size: 11px;
  flex-shrink: 0;
}

.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #004FB5;
  margin-bottom: 8px;
}

/* ---- Locations Grid ---- */
.locations-section {
  padding: 80px 0;
  background: #f8f9fc;
}

.location-card-home {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  display: block;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  height: 280px;
}

.location-card-home img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.location-card-home:hover img {
  transform: scale(1.07);
}

.location-card-home .lc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.50) 45%, rgba(0,0,0,0.1) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px 20px;
  transition: background 0.3s;
}

.location-card-home:hover .lc-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.88) 45%, rgba(0,0,0,0.1) 100%);
}

.location-card-home .lc-name {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}

.location-card-home .lc-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.78);
  margin-bottom: 10px;
}

.location-card-home .lc-btn {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: #7cb4f5;
  letter-spacing: 0.5px;
  transform: translateY(6px);
  opacity: 0;
  transition: all 0.3s;
}

.location-card-home:hover .lc-btn {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Why Now / Government Section ---- */
.govt-section {
  padding: 80px 0;
}

/* ---- Plot Types ---- */
.plot-types-section {
  padding: 80px 0;
  background: #f8f9fc;
}

/* ---- Why Choose Us ---- */
.why-us-section {
  padding: 80px 0;
}

.why-card {
  background: #fff;
  border-radius: 12px;
  padding: 32px 24px;
  height: 100%;
  border: 1px solid #e4ecf8;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
  transition: box-shadow 0.3s, transform 0.3s;
}

.why-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}

.why-card .wc-icon {
  width: 56px; height: 56px;
  background: #eef4ff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #004FB5;
  margin-bottom: 18px;
}

.why-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1e1e1e;
}

.why-card p {
  font-size: 13px;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

/* ---- Verified Transactions ---- */
.verified-section {
  padding: 80px 0;
  background: #f9faf9;
}

/* ---- About Section ---- */
.about-home {
  padding: 80px 0;
}

.about-home .about-img-wrap {
  position: relative;
}

.about-home .about-img-wrap img {
  border-radius: 12px;
  width: 100%;
  box-shadow: 0 10px 40px rgba(0,0,0,0.12);
}

.about-home .about-badge {
  position: absolute;
  bottom: -18px;
  right: -18px;
  background: #111827;
  color: #fff;
  padding: 22px 28px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.about-home .about-badge .badge-num {
  font-size: 36px;
  font-weight: 800;
  color: #004FB5;
  line-height: 1;
  display: block;
}

.about-home .about-badge .badge-txt {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.7);
  display: block;
  margin-top: 4px;
}

/* ---- Land Trading CTA Divider ---- */
.lt-cta-section {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.lt-cta-section::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(0,79,181,0.07);
}

.lt-cta-section::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -40px;
  width: 250px; height: 250px;
  border-radius: 50%;
  background: rgba(0,79,181,0.05);
}

.lt-cta-section h2 {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
}

.lt-cta-section p {
  font-size: 16px;
  color: rgba(255,255,255,0.72);
  margin-bottom: 28px;
}

/* ---- Final CTA ---- */
.final-cta-section {
  background: #111827;
  padding: 70px 0;
}

.final-cta-section h2 {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}

.final-cta-section p {
  font-size: 15px;
  color: rgba(255,255,255,0.72);
  margin-bottom: 28px;
}

/* ---- Plot Enquire Link (shared with location pages) ---- */
.plot-enquire-link {
  font-size: 13px;
  font-weight: 700;
  color: #004FB5;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.plot-enquire-link:hover {
  color: #003d8f;
  text-decoration: underline;
}

/* ---- Media Coverage Carousel ---- */
.popular_listing_slider1 .feat_property {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.popular_listing_slider1 .feat_property .thumb {
  height: 400px;
  overflow: hidden;
  position: relative;
  background: #f0f0f0;
}

.popular_listing_slider1 .feat_property .thumb img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  object-position: center top;
  opacity: 1 !important;
  transition: transform 0.4s ease;
}

.popular_listing_slider1 .feat_property:hover .thumb img {
  transform: scale(1.04);
  opacity: 1 !important;
}

/* Dot color override — use brand blue instead of theme teal */
.popular_listing_slider1.owl-carousel.owl-theme .owl-dots .owl-dot span {
  background-color: #004FB5 !important;
}

.popular_listing_slider1.owl-carousel.owl-theme .owl-dots .owl-dot.active span,
.popular_listing_slider1.owl-carousel.owl-theme .owl-dots .owl-dot:hover span {
  border-color: #004FB5 !important;
}

/* ---- Saledeed Carousel ---- */
.saledeed_slider .thumb {
  position: relative;
  overflow: hidden;
}

.saledeed_slider .thumb a {
  display: block;
  cursor: zoom-in;
}

.saledeed-zoom-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  opacity: 0;
  transition: all 0.3s ease;
}

.saledeed_slider .thumb:hover .saledeed-zoom-overlay {
  background: rgba(0, 0, 0, 0.55);
  opacity: 1;
}

/* ---- Responsive ---- */
@media (max-width: 1199px) {
  .hero-main-title { font-size: 62px; }
}

@media (max-width: 991px) {
  .home-hero { min-height: 80vh; }
  .hero-main-title { font-size: 48px; }
  .hero-slogan { font-size: 18px; }
  .home-stats-strip .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .home-stats-strip .stat-item:last-child { border-bottom: none; }
  .featured-location .feat-loc-img img { height: 320px; }
  .about-home .about-badge { position: relative; right: 0; bottom: 0; margin-top: 20px; display: inline-block; }
}

@media (max-width: 767px) {
  .home-hero { min-height: 100vh; }
  .home-hero .hero-content { padding: 100px 0 80px; }
  .hero-main-title { font-size: 36px; letter-spacing: -1px; }
  .hero-slogan { font-size: 16px; }
  .location-card-home { height: 220px; }
  .lt-cta-section h2 { font-size: 24px; }
}
