body {
    font-family: 'Poppins', sans-serif;
}

/* ================= HERO ================= */
.hero-section {
  background: url("/wp-content/themes/my-theme/assets/images/projGal-2.jpg") no-repeat center center/cover;
  min-height: 100vh;
  position: relative;
  color: #fff;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.55);
  position: absolute;
  inset: 0;
}

/* ================= HERO CONTENT ================= */
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 120px;
  padding-bottom: 60px;
}

/* ================= NAVBAR ================= */
#mainNavbar {
  transition: background 0.3s ease, box-shadow 0.3s ease;
  z-index: 10000;
}

#mainNavbar .nav-link {
  color: #fff;
  font-weight: 500;
  transition: color 0.3s ease;
}

/* Scrolled State */
#mainNavbar.scrolled {
  background: #ffffff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

#mainNavbar.scrolled .nav-link {
  color: #000;
}

#mainNavbar.scrolled .phone-btn {
  background: #c49b63;
  color: #fff;
}

/* ================= BUTTONS ================= */
.phone-btn {
  background: #c89d4b;
  color: #fff;
  border-radius: 30px;
  padding: 8px 20px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.phone-btn:hover {
  background: #b78b3d;
  color: #fff;
}

/* ================= PRICE PILL ================= */
.price-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 22px;
  border: 2px solid #ffffff;
  border-radius: 999px;
  color: #ffffff;
  font-weight: 400;
  font-size: 16px;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(4px);
}

.price-pill .blink-price {
  color: #ffb703;
  font-weight: 400;
  font-size: 18px;
  animation: blinkFade 1.2s infinite ease-in-out;
}

/* Smooth blinking */
@keyframes blinkFade {
  0%   { opacity: 1; }
  50%  { opacity: 0.7; }
  100% { opacity: 1; }
}

.blink-heading {
  font-weight: 700;
  font-size: 20px;
  text-align: center;
  margin-bottom: 15px;
  color: #ffb703;
  animation: blinkGlowHeading 1.2s infinite ease-in-out;
}

@keyframes blinkGlowHeading {
  0%   { opacity: 1; text-shadow: 0 0 0 rgba(255, 183, 3, 0.8); }
  50%  { opacity: 0.8; text-shadow: 0 0 12px rgba(255, 183, 3, 1); }
  100% { opacity: 1; text-shadow: 0 0 0 rgba(255, 183, 3, 0.8); }
}

/* ================= MOBILE SLIDE MENU ================= */
@media (max-width: 991px) {

  body.menu-open {
    overflow: hidden;
  }

  .mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 55%;
    max-width: 360px;
    height: 100vh;
    background: #fff;
    padding: 90px 25px 25px;
    transition: right 0.4s ease;
    z-index: 99999;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
  }

  .mobile-menu.show {
    right: 0;
  }

  .menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 100000;
  }

  #mainNavbar .mobile-menu .nav-link {
    font-size: 18px;
    padding: 12px 0;
    color: #000 !important;
    border-bottom: 1px solid #eee;
  }

  .mobile-menu .phone-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 18px;
    background: #c49b63;
    color: #fff;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
  }

  .form-card {
    margin-top: 10px;
}
}

.navbar-expand-lg .navbar-collapse {
        justify-content: space-around;
    }


.badge-custom {
    border: 1px solid #c89d4b;
    color: #c89d4b;
    border-radius: 20px;
    padding: 6px 14px;
    display: inline-block;
    margin-bottom: 15px;
}

.feature-list li {
    list-style: none;
    margin-bottom: 10px;
    font-size: 15px;
}

.feature-list li::before {
    content: "✔";
    color: #c89d4b;
    margin-right: 8px;
}

.price-box {
    border: 1px solid #fff;
    border-radius: 25px;
    padding: 10px 22px;
    display: inline-block;
    margin-top: 20px;
    font-weight: 600;
}

.cta-btn {
    border: 1px solid #fff;
    border-radius: 25px;
    padding: 10px 22px;
    color: #fff;
    text-decoration: none;
    display: inline-block;
    margin-right: 10px;
    margin-top: 10px;
}

.form-card {
    border-radius: 10px;
    padding: 25px;
    color: #000;
    max-width: 400px;
    margin-left: auto;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}


.form-card h5 {
    background: transparent;
    color: #fff;
    padding: 10px;
    border-radius: 6px;
    text-align: center;
    margin-bottom: 20px;
    border: 1px solid #c1c1c1;
}

label.form-check-label.small {
    color: #fff;
}

.whatsapp-btn {
    background: #25d366;
    color: #fff;
    border-radius: 25px;
    border: none;
    padding: 10px 15px;
    width: 100%;
    font-weight: 600;
}

.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background: #25d366;
    color: #fff;
    border-radius: 50px;
    padding: 10px 16px;
    text-decoration: none;
    z-index: 999;
    font-size: 15px;
}

/* Base Navbar (Transparent) */
#mainNavbar {
    background: transparent;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    z-index: 9999;
}

/* Default text (white) */
#mainNavbar .nav-link,
#mainNavbar .navbar-brand {
    color: #fff !important;
}

/* Hamburger icon white */
#mainNavbar .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.4);
}

#mainNavbar .navbar-toggler-icon {
    filter: invert(1);
}

/* On Scroll */
#mainNavbar.scrolled {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Text turns dark on scroll */
#mainNavbar.scrolled .nav-link,
#mainNavbar.scrolled .navbar-brand {
    color: #000 !important;
}

/* Hamburger icon dark on scroll */
#mainNavbar.scrolled .navbar-toggler-icon {
    filter: invert(0);
}

/* Phone Button */
.phone-btn {
    padding: 8px 14px;
    border-radius: 20px;
    background: #fff;
    color: #000;
    text-decoration: none;
    font-weight: 600;
}

#mainNavbar.scrolled .phone-btn {
    background: #000;
    color: #fff;
}



section h2 {
    line-height: 1.3;
}

.btn-warning {
    background-color: #c89d4b;
    border-color: #c89d4b;
}

.btn-warning:hover {
    background-color: #b88c3f;
    border-color: #b88c3f;
}

/* Image Collage Wrapper */
.image-collage {
    position: relative;
    width: 100%;
    max-width: 520px;
    /* controls overall size */
}

/* Main Background Image */
.image-collage .main-img {
    width: 100%;
    border-radius: 18px;
}

/* Overlay Image */
.image-collage .overlay-img {
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 55%;
    border-radius: 16px;
    border: 6px solid #fff;
    background: #fff;
}

/* Mobile Fix */
@media (max-width: 768px) {
    .image-collage {
        max-width: 100%;
    }

    .image-collage .overlay-img {
        position: static;
        width: 100%;
        margin-top: 15px;
        border: none;
    }
}

/* Amenities Card */
.amenity-card {
    background: #f7f4ef;
    border-radius: 16px;
    padding: 15px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.amenity-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 12px;
}

.amenity-card p {
    margin-top: 12px;
    font-weight: 600;
    font-size: 15px;
    color: #222;
}

/* Hover Effect */
.amenity-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

/* Responsive Tweaks */
@media (max-width: 768px) {
    .amenity-card img {
        height: 140px;
    }
}

/* Price Section Background */
.price-section {
    background: #fbf7ef;
    position: relative;
}

/* Section tagline */
.price-tagline {
    letter-spacing: 2px;
    font-size: 12px;
    color: #c89d4b;
    font-weight: 600;
}

/* Price Card */
.price-card {
    background: #f5efe4;
    border-radius: 18px;
    padding: 35px 25px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    height: 100%;
    transition: all 0.3s ease;
}

.price-card:hover {
    transform: translateY(-8px);
}

/* Plot Badge */
.plot-badge {
    display: inline-block;
    border: 1.5px solid #c89d4b;
    color: #c89d4b;
    border-radius: 25px;
    padding: 6px 16px;
    font-weight: 600;
    font-size: 14px;
}

/* Price Text */
.price-value {
    font-weight: 700;
    color: #222;
}

/* Meta Info */
.price-meta span {
    font-size: 14px;
    color: #555;
}

.price-meta hr {
    border-top: 1px dashed #999;
    margin: 12px 0 0;
}

/* Button */
.price-btn {
    background: #c89d4b;
    color: #fff;
    border-radius: 25px;
    padding: 10px 22px;
    font-weight: 600;
    margin-top: 20px;
}

.price-btn:hover {
    background: #b88c3f;
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .price-card {
        padding: 28px 20px;
    }
}

/* Highlights Section */
.highlights-section {
    background: #fbf7ef;
}

/* Highlight Card */
.highlight-card {
    text-align: center;
    padding: 20px 15px;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.highlight-card:hover {
    transform: translateY(-6px);
}

/* Icon/Image */
.highlight-card img {
    width: 100%;
    /* height: 1px; */
    object-fit: cover;
    margin-bottom: 15px;
}

/* Text */
.highlight-card p {
    font-weight: 600;
    font-size: 14px;
    margin: 0;
    color: #222;
}

/* Responsive */
@media (max-width: 768px) {
    .highlight-card img {
        width: 100%;
        /* height: 70px; */
    }
}

/* Section Background */
.plot-plans-section {
    background: #fbf7ef;
}

/* Tagline */
.plot-tagline {
    letter-spacing: 2px;
    font-size: 12px;
    color: #c89d4b;
    font-weight: 600;
}

/* Plot Card */
.plot-card {
    position: relative;
    background: #f5efe4;
    border-radius: 24px;
    padding: 60px 30px 45px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    height: 100%;
}

/* Top Badge */
.plot-top-badge {
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    background: #c89d4b;
    color: #fff;
    padding: 6px 22px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    z-index: 3;
}

/* Image Wrapper */
.plot-image-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 25px;
}

/* Image */
.plot-image-wrap img {
    width: 100%;
    max-width: 420px;
    border-radius: 18px;
    object-fit: cover;
    filter: blur(1.5px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.15);
}

/* Overlay Button */
.plot-overlay-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    color: #222;
    border: 1.5px solid #c89d4b;
    border-radius: 26px;
    padding: 10px 28px;
    font-weight: 600;
    font-size: 14px;
    z-index: 2;
    cursor: pointer;
    transition: all 0.3s ease;
}

.plot-overlay-btn:hover {
    background: #c89d4b;
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .plot-card {
        padding: 50px 22px 40px;
    }

    .plot-image-wrap img {
        max-width: 100%;
        filter: blur(0);
    }
}

/* Section Background */
.location-section {
    background: #fbf7ef;
}

/* Tagline */
.location-tagline {
    letter-spacing: 2px;
    font-size: 12px;
    color: #c89d4b;
    font-weight: 600;
}

/* Bullet List */
.location-list {
    list-style: none;
    padding-left: 0;
}

.location-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 15px;
    color: #333;
}

.location-list li::before {
    content: "📍";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 16px;
    color: #c89d4b;
}

/* Nearby Box */
.nearby-box {
    background: #f5efe4;
    border-radius: 16px;
    padding: 18px 10px;
    margin-top: 25px;
}

/* Nearby Text */
.nearby-time {
    font-size: 22px;
    font-weight: 700;
    color: #c89d4b;
    margin-bottom: 4px;
}

.nearby-label {
    font-size: 13px;
    color: #444;
    margin: 0;
}

/* Image Wrapper */
.location-image-wrap {
    background: #f5efe4;
    border-radius: 22px;
    padding: 12px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.location-image-wrap img {
    border-radius: 18px;
}

/* Responsive */
@media (max-width: 768px) {
    .nearby-box {
        padding: 15px 8px;
    }

    .nearby-time {
        font-size: 20px;
    }

    .location-list li {
        font-size: 14px;
    }
}

/* Contact Section Background */
.contact-section {
    background: #fbf7ef;
}

/* Tagline */
.contact-tagline {
    letter-spacing: 2px;
    font-size: 12px;
    color: #c89d4b;
    font-weight: 600;
}

/* Location Box */
.location-box {
    background: #f5efe4;
    border-radius: 14px;
    padding: 14px 18px;
}

.location-pin {
    color: #c89d4b;
}

/* Map */
.map-wrap {
    background: #f5efe4;
    border-radius: 18px;
    padding: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.map-wrap iframe {
    border-radius: 14px;
}

/* Contact Card */
.contact-card {
    background: #f5efe4;
    border-radius: 22px;
    padding: 28px 26px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    height: 100%;
}

/* Form Title */
.form-title {
    background: #d1b072;
    color: #fff;
    text-align: center;
    padding: 10px;
    border-radius: 10px;
    font-weight: 600;
    margin-bottom: 18px;
}

/* Button */
.contact-btn {
    background: #c89d4b;
    color: #fff;
    border-radius: 25px;
    padding: 10px 20px;
    font-weight: 600;
    border: none;
}

.contact-btn:hover {
    background: #b88c3f;
    color: #fff;
}

/* Inputs */
.contact-card .form-control {
    border-radius: 8px;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .map-wrap iframe {
        height: 260px;
    }

    .contact-card {
        padding: 24px 20px;
    }
}

/* Disclaimer Section */
.disclaimer-section {
    background: linear-gradient(180deg, #111 0%, #1c1c1c 100%);
    color: #ccc;
    text-align: center;
    font-size: 12px;
}

/* Text */
.disclaimer-text {
    max-width: 960px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Read More Link */
.read-more-link {
    color: #c89d4b;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 6px;
}

.read-more-link:hover {
    text-decoration: underline;
}

/* Footer Links */
.footer-links {
    font-size: 12px;
    color: #aaa;
}

.footer-links a {
    color: #c89d4b;
    text-decoration: none;
    margin: 0 6px;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-links span {
    color: #555;
}

/* Responsive */
@media (max-width: 768px) {
    .disclaimer-text {
        font-size: 11px;
    }

    .footer-links {
        font-size: 11px;
    }
ul#menu-header-menu a {
    color: #000 !important;
}
}