
/* ================================================= */
/* ESSENTIAL FLEX & HEADER UTILITY CLASSES */
/* ================================================= */
.d-flex { display: flex !important; }
.justify-between { justify-content: space-between !important; }
.align-center { align-items: center !important; }
.list-unstyled { list-style: none !important; padding: 0 !important; margin: 0 !important; }
.ml-20 { margin-left: 20px !important; }
.p-15 { padding: 10px 0 !important; }
.text-center { text-align: center !important; }
.mb-40 { margin-bottom: 40px !important; }
.text-dark { color: #f0f4f1 !important; }
.text-primary { color: #e5c158 !important; }
.fw-semibold { font-weight: 600 !important; }
.bg-white { background-color: #0f3423 !important; }
.bg-gray { background-color: #15422e !important; }
.w-100 { width: 100% !important; }
.radius-10 { border-radius: 10px !important; }

/* Header Layout Alignment */
#brx-header { position: sticky; top: 0; z-index: 1000; background-color: #082115 !important; border-bottom: 1px solid #c5a059; }
#brx-header .brxe-container { display: flex !important; justify-content: space-between !important; align-items: center !important; flex-direction: row !important; width: 100%; }
#main-nav-menu { display: flex !important; align-items: center !important; }
#main-nav-menu ul { display: flex !important; flex-direction: row !important; list-style: none !important; margin: 0 !important; padding: 0 !important; align-items: center !important; }
#main-nav-menu li { margin-left: 20px !important; margin-bottom: 0 !important; }
#main-nav-menu a { color: #f0f4f1 !important; font-weight: 500; font-size: 0.95rem; text-decoration: none; transition: color 0.3s; }
#main-nav-menu a:hover { color: #e5c158 !important; }
.header-logo { height: 45px; width: auto; display: block; }


/* Mobile Bottom Bar - Hidden on Desktop */
#brxe-wylpbs { display: none !important; }
/* Theme Colors: Emerald Green & Royal Gold (Derived from PDF Poster)
   Main BG: #0f3423, Card BG: #15422e, Headline/Gold: #e5c158 / #c5a059, Text: #f0f4f1
*/
body { margin: 0; font-family: 'Poppins', sans-serif; background: #0f3423; color: #f0f4f1; overflow-x: hidden; }
html { scroll-behavior: smooth; }
a { text-decoration: none; color: inherit; }
.brxe-container { max-width: 1140px; margin: 0 auto; padding: 0 15px; box-sizing: border-box; }
.brxe-section { padding: 80px 0; background-color: #0f3423; }

/* Header */
#brx-header { position: sticky; top: 0; z-index: 1000; background-color: #082115; box-shadow: 0 2px 12px rgba(0,0,0,0.5); border-bottom: 1px solid #c5a059; }

/* SLIDER BASE SETTINGS */
.home-section .swiper-slide img { width: 100%; height: 85vh; object-fit: cover; }
.mobile-banner { display: none; }

/* Headings & Text */
.brxe-heading { font-family: 'Playfair Display', serif; color: #e5c158; margin-bottom: 20px; text-align: center; font-size: 2.8rem; }
h1, h2, h3, h4, h5, h6 { color: #e5c158; }
.brxe-text { text-align: center; max-width: 900px; margin: 0 auto 20px; line-height: 1.6; color: #f0f4f1; }
.brx-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }

/* Common Button Style */
.btn-theme { background: #c5a059; color: #0b291b; font-weight: bold; padding: 12px 30px; border-radius: 5px; border: 1px solid #e5c158; cursor: pointer; display: inline-block; text-transform: uppercase; font-size: 0.9rem; transition: all 0.3s; }
.btn-theme:hover { background: #ffffff; color: #0b291b; border-color: #ffffff; }

/* Floor Plan Grid */
.floor-plan-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 30px; }
.floor-plan-card { background: #15422e; padding: 10px; border: 2px solid #c5a059; border-radius: 8px; cursor: pointer; text-align: center; }
.floor-plan-card img { width: 100%; height: auto; display: block; filter: blur(1px); transition: filter 0.3s; border-radius: 4px; }
.floor-plan-card:hover img { filter: blur(0); }
.floor-plan-card p { color: #f0f4f1 !important; margin-top: 5px; font-weight: bold; }

/* Blog Grid on Home */
.home-blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 40px; }
.home-blog-card { background: #15422e; border-radius: 10px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.3); transition: transform 0.3s; display: block; border: 1px solid #c5a059; }
.home-blog-card:hover { transform: translateY(-5px); }
.home-blog-img { width: 100%; height: 200px; object-fit: cover; }
.home-blog-content { padding: 20px; }
.home-blog-date { font-size: 0.8rem; color: #c5a059; margin-bottom: 5px; display: block; font-weight: bold; }
.home-blog-title { font-size: 1.1rem; font-weight: 600; color: #e5c158; margin-bottom: 10px; }
.home-blog-desc { font-size: 0.9rem; color: #f0f4f1; line-height: 1.5; }

/* FAQ Styling */
details { background: #15422e; margin-bottom: 15px; border-radius: 8px; box-shadow: 0 2px 5px rgba(0,0,0,0.2); overflow: hidden; border: 1px solid #c5a059; }
details summary { padding: 15px; cursor: pointer; font-weight: 600; color: #e5c158; list-style: none; position: relative; }
details summary::after { content: '+'; position: absolute; right: 20px; font-weight: bold; font-size: 1.2rem; color: #e5c158; }
details[open] summary::after { content: '-'; }
details p { padding: 0 15px 15px 15px; margin: 0; color: #f0f4f1; line-height: 1.6; }

/* Amenity Card */
.amenity-card { background: #15422e; color: #f0f4f1; border-radius: 15px; padding: 20px; box-shadow: 0 5px 15px rgba(0,0,0,0.3); border: 2px solid #c5a059; }
.amenity-card img { width: 100%; border-radius: 10px; margin-bottom: 20px; border: 3px solid #c5a059; }
.amenity-card h4 { color: #e5c158; font-weight: bold; }
.amenity-list-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.amenity-list-grid ul { list-style: none; padding: 0; margin: 0; }
.amenity-list-grid li { position: relative; padding-left: 25px; margin-bottom: 10px; color: #f0f4f1;}
.amenity-list-grid li::before { content: '>'; font-family: monospace; font-weight: bold; position: absolute; left: 0; background: #c5a059; color: #0b291b; width: 18px; height: 18px; border-radius: 50%; text-align: center; line-height: 18px; }

/* Location Advantage Section Styles */
.loc-wrapper { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; align-items: center; background: #15422e; padding: 30px; border-radius: 15px; box-shadow: 0 5px 20px rgba(0,0,0,0.3); border: 1px solid #c5a059; }
.loc-image img { width: 100%; height: auto; border-radius: 10px; border: 2px solid #c5a059; }
.loc-content h3 { color: #e5c158; font-family: 'Playfair Display', serif; font-size: 2rem; margin-top: 0; margin-bottom: 20px; }
.loc-intro { margin-bottom: 20px; color: #f0f4f1; line-height: 1.6; }
.loc-category { margin-bottom: 20px; }
.loc-category h4 { color: #e5c158; margin-bottom: 10px; font-size: 1.1rem; border-left: 4px solid #c5a059; padding-left: 10px; }
.loc-category ul { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.loc-category li { position: relative; padding-left: 20px; font-size: 0.9rem; color: #f0f4f1; }
.loc-category li::before { content: '•'; color: #c5a059; font-weight: bold; position: absolute; left: 0; top: 0; }

#hamburger-menu { display: none; background: none; border: none; font-size: 24px; cursor: pointer; color: #e5c158; }
.offer-strip { background-color: #c5a059; color: #0b291b; text-align: center; padding: 12px; font-size: 1.2rem; font-weight: bold; letter-spacing: 0.5px; box-shadow: 0 4px 6px rgba(0,0,0,0.3); }

/* Footer Links Bar */
.footer-links-bar { text-align: center; padding: 25px 0; font-size: 0.95rem; color: #f0f4f1; border-top: 1px solid #c5a059; margin-top: 20px; background-color: #082115; }
.footer-links-bar a { margin: 0 12px; font-weight: 500; transition: color 0.3s; position: relative; color: #f0f4f1; }
.footer-links-bar a:hover { color: #e5c158; }
.footer-links-bar span { color: #c5a059; font-weight: bold; }

/* ======== POPUP STYLING ======== */
.popup-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(5, 18, 11, 0.9); z-index: 9999; display: flex; justify-content: center; align-items: center; opacity: 0; visibility: hidden; transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out; backdrop-filter: blur(4px); }
.popup-overlay.show { opacity: 1; visibility: visible; }
.offer-popup { background: #0d2c1e; padding: 30px 25px; border-radius: 12px; width: 92%; max-width: 420px; position: relative; box-shadow: 0 15px 40px rgba(0,0,0,0.6); text-align: left; transform: translateY(-30px); transition: transform 0.4s ease-in-out; border: 2px solid #c5a059; max-height: 95vh; overflow-y: auto; box-sizing: border-box;}
.popup-overlay.show .offer-popup { transform: translateY(0); }
.offer-popup .close-btn { position: absolute; top: 15px; right: 20px; font-size: 28px; font-weight: 300; color: #ffffff; cursor: pointer; transition: color 0.3s; line-height: 1; }
.offer-popup .close-btn:hover { color: #e5c158; }
.popup-header-new { display: flex; align-items: center; gap: 10px; margin-bottom: 15px; margin-top: 5px;}
.popup-header-new i { font-size: 18px; color: #e5c158; } 
.popup-header-new h3 { color: #e5c158; margin: 0; font-family: 'Poppins', sans-serif; font-size: 1.25rem; font-weight: 700;}
.popup-desc-new { font-size: 0.95rem; color: #f0f4f1; line-height: 1.5; margin-bottom: 20px; font-family: 'Poppins', sans-serif; text-align: center;}
.popup-desc-new strong { color: #e5c158; font-weight: 600; }
.offer-boxes { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
.offer-box { background: #15422e; border-radius: 8px; padding: 12px 15px; display: flex; align-items: center; gap: 15px; border: 1px solid #c5a059; }
.offer-box .offer-icon { background: #0d2c1e; width: 35px; height: 35px; border-radius: 6px; display: flex; align-items: center; justify-content: center; color: #e5c158; font-size: 14px; flex-shrink: 0; border: 1px solid #c5a059;}
.offer-box .offer-text { font-size: 0.9rem; color: #f0f4f1; font-weight: 600; line-height: 1.4;} 
.popup-form-container { margin-top: 15px; padding-top: 15px; border-top: 1px dashed #c5a059; margin-bottom: 15px; }
.popup-form input, .popup-form textarea { width: 100%; padding: 12px 15px; margin-bottom: 12px; box-sizing: border-box; font-family: 'Poppins', sans-serif; font-size: 0.9rem; border: 1px solid #c5a059; border-radius: 6px; background: #15422e; color: #ffffff; }
.popup-form textarea { height: 60px; resize: none; margin-bottom: 8px; }
.popup-form button.submit-btn { margin-bottom: 0; padding: 14px; font-size: 0.95rem; font-weight: 600; text-transform: uppercase; border-radius: 6px; background: #c5a059; color: #0b291b; width: 100%; border: none; cursor: pointer; transition: 0.3s; letter-spacing: 1px;}
.popup-form button.submit-btn:hover { background: #ffffff; color: #0b291b; }
.popup-action-btns { display: flex; flex-direction: column; gap: 10px; }
.popup-btn { display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%; padding: 14px; border-radius: 6px; font-size: 1rem; font-weight: 600; text-decoration: none; transition: all 0.3s ease; box-sizing: border-box; font-family: 'Poppins', sans-serif; border: none; cursor: pointer;}
.popup-btn i { font-size: 18px; }
.call-btn { background-color: #c5a059; color: #0b291b !important; } .call-btn:hover { background-color: #e5c158; }
.wa-btn { background-color: #25D366; color: #ffffff !important; } .wa-btn:hover { background-color: #1EBE5A; }
.iti { width: 100%; margin-bottom: 15px; }
.iti__country-list { background-color: #15422e !important; color: #ffffff !important; border: 1px solid #c5a059 !important; }

figure { margin: 0; width: 100%; }
figcaption { display: none; } 

/* ------------------------------------------- */
/* PRICING TABLE */
/* ------------------------------------------- */
.pricing-wrapper { padding: 40px 15px; background-color: #0f3423; }
.pricing-container { border: 2px solid #c5a059; border-radius: 15px; overflow: hidden; background: #15422e; max-width: 1000px; margin: 0 auto; box-shadow: 0 4px 15px rgba(0,0,0,0.3); }
.pricing-header { display: grid; grid-template-columns: 1.5fr 1fr 1.2fr 1.5fr; background-color: #c5a059; color: #0b291b; font-weight: 700; padding: 15px 20px; text-align: center; font-size: 1.1rem; }
.pricing-row { display: grid; grid-template-columns: 1.5fr 1fr 1.2fr 1.5fr; align-items: center; padding: 15px 20px; text-align: center; border-bottom: 1px solid #1a4d37; }
.pricing-row:nth-child(odd) { background-color: #123b29; }
.pricing-row:nth-child(even) { background-color: #15422e; }
.pricing-row:last-child { border-bottom: none; }
.p-type { text-align: left; font-weight: 600; color: #e5c158; font-size: 1.05rem; }
.p-area, .p-price { color: #f0f4f1; font-size: 1.05rem; }
.pricing-btn { background-color: #c5a059; color: #0b291b; border: 1px solid #e5c158; padding: 10px 15px; border-radius: 8px; cursor: pointer; font-size: 0.95rem; width: 100%; max-width: 220px; margin: 0 auto; transition: all 0.3s ease; font-weight: bold; text-transform: uppercase;}
.pricing-btn:hover { background-color: #ffffff; color: #0b291b; border-color: #ffffff; transform: translateY(-2px); }

.mobile-offer-wrapper { display: none; }

/* ------------------------------------------- */
/* CUSTOM SWIPER HORIZONTAL NAV */
/* ------------------------------------------- */
.banner-swiper .swiper-button-next,
.banner-swiper .swiper-button-prev { background-color: rgba(11, 41, 27, 0.8); color: #c5a059 !important; width: 35px !important; height: 35px !important; border-radius: 50%; margin-top: -17px; border: 1px solid #c5a059; }
.banner-swiper .swiper-button-next::after,
.banner-swiper .swiper-button-prev::after { font-size: 14px !important; font-weight: 900; }
.banner-swiper .swiper-pagination-bullet-active { opacity: 1 !important; background: #c5a059 !important; width: 40px !important; }

/* ================================================= */
/* MOBILE / TABLET RESPONSIVE CSS */
/* ================================================= */
@media (max-width: 991px) {
    .brxe-nav-menu { display: none; }
    #hamburger-menu { display: block; }
    #brxe-jxuzzf { display: none; }
    #main-nav-menu { display: none; position: absolute; top: 100%; left: 0; width: 100%; background-color: #082115; flex-direction: column; box-shadow: 0 4px 8px rgba(0,0,0,0.5); border-bottom: 2px solid #c5a059;}
    #main-nav-menu.active { display: flex !important; }
    #main-nav-menu.active ul { display: flex !important; flex-direction: column !important; width: 100% !important; padding: 0 !important; }
    #main-nav-menu.active li { padding: 12px 15px !important; text-align: center !important; border-bottom: 1px solid #1a4d37 !important; margin-left: 0 !important; width: 100% !important; box-sizing: border-box !important; }
    #main-nav-menu ul { flex-direction: column; width: 100%; }
    #main-nav-menu li { padding: 15px; text-align: center; border-bottom: 1px solid #1a4d37; }
    #main-nav-menu a { color: #f0f4f1; }
    .loc-wrapper { grid-template-columns: 1fr; }
    .loc-category ul { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
    .banner-swiper .desktop-banner { display: block !important; width: 100%; height: 230px !important; object-fit: cover; }
    .offer-strip { font-size: 1rem; padding: 10px; }
    .brxe-section { padding: 40px 15px; }
    .brxe-heading { font-size: 2rem; }
    .brx-grid { grid-template-columns: 1fr; }
    .amenity-list-grid { grid-template-columns: 1fr; }
    .floor-plan-grid { grid-template-columns: repeat(2, 1fr); }
    .home-blog-grid { grid-template-columns: 1fr; }

    /* MOBILE BOTTOM NAV */
    #brxe-wylpbs { display: flex !important; position: fixed; bottom: 0; left: 0; width: 100%; z-index: 1000; box-shadow: 0 -2px 10px rgba(0,0,0,0.5); background-color: #082115; }
    #brxe-wylpbs a { flex: 1 1 0; display: flex; flex-direction: column; align-items: center; justify-content: center; text-decoration: none; padding: 8px 5px; font-size: 14px; font-weight: 500; border-right: 1px solid rgba(197, 160, 89, 0.2); }
    #brxe-wylpbs a i { font-size: 20px; margin-bottom: 5px; }
    #brxe-wylpbs a:nth-child(1) { background-color: #c5a059; color: #0b291b; }
    #brxe-wylpbs a:nth-child(2) { background-color: #15422e; color: #e5c158; }
    #brxe-wylpbs a:nth-child(3) { background-color: #25D366; color: #ffffff; border-right: none;}
    body { padding-bottom: 60px; }

    /* PRICING TABLE STACKED VIEW */
    .desktop-only { display: none; }
    .pricing-row { grid-template-columns: 1fr; padding: 25px 15px; gap: 5px; position: relative; border-bottom: 2px solid #1a4d37; }
    .p-type { text-align: center; font-size: 1.3rem; color: #e5c158; font-weight: 600; margin-bottom: 5px; }
    .p-area { font-size: 1.1rem; color: #f0f4f1; margin-bottom: 5px; }
    .p-price { font-size: 1.4rem; font-weight: bold; color: #f0f4f1; margin-bottom: 15px; }

    /* MOBILE OFFER CARD */
    .mobile-offer-wrapper { display: block; background-color: #0f3423; padding: 20px 15px; }
    .mo-card { background: #15422e; border-radius: 10px; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.3); border: 2px solid #c5a059; text-align: center; }
    .mo-header { background-color: #082115; color: #e5c158; font-size: 1.1rem; font-weight: bold; padding: 10px; text-transform: uppercase; letter-spacing: 1px; }
    .mo-details { padding: 20px 10px 15px 10px; }
    .mo-title { font-size: 1.4rem; font-weight: 800; color: #e5c158; margin: 0 0 5px 0; text-transform: uppercase; }
    .mo-subtitle { font-size: 1rem; font-weight: 600; color: #f0f4f1; margin: 0 0 2px 0; }
    .mo-location { font-size: 0.85rem; color: #f0f4f1; margin: 0; }
    
    .mo-highlight { background-color: #c5a059; color: #0b291b; font-weight: bold; padding: 10px; font-size: 1rem; border-top: 2px dashed #0b291b; border-bottom: 2px dashed #0b291b; }
    .mo-usps { background-color: #123b29; color: #f0f4f1; padding: 5px 20px; }
    .mo-usps p { margin: 0; padding: 10px 0; font-size: 0.95rem; font-weight: 500; border-bottom: 1px solid rgba(197, 160, 89, 0.3); }
    .mo-usps p:last-child { border-bottom: none; }
    
    .mo-pricing { padding: 15px 10px; }
    .mo-pricing-title { font-size: 1.1rem; color: #f0f4f1; margin: 0 0 5px 0; font-weight: 600; }
    .mo-price-val { font-size: 1.8rem; font-weight: 900; color: #e5c158; margin: 0; }
    
    .mo-btn { background: #c5a059; color: #0b291b; border: 2px solid #e5c158; padding: 12px 30px; border-radius: 25px; font-size: 1.1rem; font-weight: bold; cursor: pointer; margin-bottom: 20px; transition: all 0.3s ease; text-transform: uppercase; }
    .mo-btn:active { transform: scale(0.95); background: #ffffff; color: #0b291b; }
}

/* CONTACT SECTION */
.contact-grid { display: grid; grid-template-columns: 1.3fr 1fr 1.3fr; box-shadow: 0 5px 20px rgba(0,0,0,0.3); border-radius: 12px; overflow: hidden; background: #15422e; border: 1px solid #c5a059; width: 100%; margin: 0 auto; }
.c-info { background: #0e3121; color: #f0f4f1; padding: 40px 30px; width: 100%; box-sizing: border-box;}
.c-info h3 { color: #e5c158; margin-top: 0; margin-bottom: 30px; font-size: 1.8rem; font-family: 'Playfair Display', serif; }
.c-item { display: flex; align-items: flex-start; margin-bottom: 25px; width: 100%; }
.c-icon { background: #c5a059; color: #0b291b; width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 15px; flex-shrink: 0; font-size: 18px; }
.c-text { width: calc(100% - 55px); } 
.c-text h4 { margin: 0 0 5px 0; font-size: 1rem; color: #e5c158; text-transform: uppercase; }
.c-text p { margin: 0; font-size: 1rem; line-height: 1.4; color: #f0f4f1; word-wrap: break-word; }

.c-form-box { background: #15422e; padding: 40px 30px; width: 100%; box-sizing: border-box; }
.c-form-box h3 { margin-top: 0; color: #e5c158; margin-bottom: 20px; font-size: 1.8rem; font-family: 'Playfair Display', serif; }
.c-form-box label { color: #e5c158; font-weight: bold; display: block; margin-bottom: 5px; font-size: 0.9rem; }
.c-form-box input { width: 100%; border: 1px solid #c5a059; margin-bottom: 15px; background: #0d2c1e; padding: 12px; border-radius: 5px; box-sizing: border-box; font-family: 'Poppins', sans-serif; color: #ffffff; }

@media (max-width: 991px) { .contact-grid { grid-template-columns: 1fr; } }
@media (max-width: 767px) { .c-info, .c-form-box { padding: 25px 15px; } }
