:root {
    --primary-color: #0c1e35;
    --accent-blue: #0076df;
    --accent-green: #25d366;
    --accent-yellow: #ffc107;
    --text-white: #ffffff;
    --text-dark: #333333;
    --bg-light: #f4f7f6;
    --bg-card: #fdf5e6;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    --border-radius: 14px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: #f7f9fb;
    color: var(--text-dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header */
.main-header {
    background: linear-gradient(180deg, #000 0%, #111 60%, #1a1a1a 100%);
}

/* =========================
   DEFAULT (DESKTOP FIRST)
========================= */

/* Desktop menu visible */
.desktop-menu {
    display: flex;
}

/* Mobile nav hidden */
.main-nav {
    display: none;
}

/* =========================
   MOBILE DEVICES
========================= */

@media (max-width: 768px) {

    /* Hide desktop navbar */
    .desktop-menu {
        display: none;
    }

    /* Show mobile navbar */
    .main-nav {
        display: block;
    }

}



.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    display: none;
}

/* ================================================
   WHY CHOOSE US & STATS COMBINED SECTION
   ================================================ */
.why-stats-section {
    position: relative;
    background: url('img/ser1.jpg') no-repeat center center;
    background-size: cover;
    padding: 100px 0;
    overflow: hidden;
}

.why-stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.94);
    /* Very light overlay for clarity */
    z-index: 1;
}

.why-stats-section .container {
    position: relative;
    z-index: 2;
    max-width: 1300px;
}

.why-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 0.8fr;
    align-items: center;
    gap: 50px;
}

/* Left: Column */
.why-choose-column {
    text-align: left;
}

.why-choose-column h2.section-heading {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a2b4a;
    /* Deeper blue */
    margin-bottom: 35px;
    line-height: 1.1;
}

.benefit-list {
    list-style: none;
    padding: 0;
}

.benefit-list li {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.benefit-list li i {
    color: #7ab317;
    /* Brighter green circle check */
    font-size: 1.6rem;
}

/* Middle: Image */
.feature-image-column {
    text-align: center;
}

.feature-image-column img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    object-fit: cover;
    height: 400px;
}

/* Right: Stats Card */
.stats-card-column {
    display: flex;
    justify-content: flex-end;
}

.stats-box {
    background: #fff6da;
    /* Cream/Light Yellow background */
    border-radius: 25px;
    padding: 40px;
    width: 100%;
    max-width: 350px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px 0;
}

.stat-icon {
    font-size: 2.8rem;
    width: 65px;
    display: flex;
    justify-content: center;
}

.stat-icon i.fa-house-chimney {
    color: #2d5a27;
}

.stat-icon i.fa-briefcase {
    color: #1e88e5;
}

/* Blue briefcase */
.stat-icon i.fa-star {
    color: #f9a825;
}

.stat-info h3 {
    font-size: 2.2rem;
    font-weight: 900;
    margin: 0;
    color: #1a2b4a;
}

.stat-info p {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    color: #555;
    line-height: 1.2;
}

.divider-line {
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
    margin: 5px 0;
}

/* Bottom: Locations */
.serving-locations-bar {
    margin-top: 80px;
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    font-weight: 800;
    color: #333;
    font-size: 1.3rem;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .why-stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .stats-card-column {
        grid-column: span 2;
        justify-content: center;
    }

    .stats-box {
        max-width: 500px;
    }
}

@media (max-width: 992px) {
    .why-stats-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .benefit-list li {
        justify-content: center;
    }

    .feature-image-column {
        order: 2;
    }

    .why-choose-column {
        order: 1;
    }

    .stats-card-column {
        order: 3;
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .why-stats-section {
        padding: 60px 0;
    }

    .why-choose-column h2.section-heading {
        font-size: 2.2rem;
    }

    .benefit-list li {
        font-size: 1.2rem;
    }

    .feature-image-column img {
        height: 300px;
    }

    .serving-locations-bar {
        font-size: 1.1rem;
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.site-name {
    display: flex;
    flex-direction: column;
    /* stack items vertically */
    /* center align */
    text-align: center;
}

.site-logo {
    height: 46px;
    /* adjust based on header size */
    margin-top: -5px;
    width: auto;
}

@media (max-width: 768px) {
    .site-logo {
        height: 32px;
        margin-top: 0;
    }
}

.tagline {
    font-size: 12px;
    color: #ccc;
    line-height: 1.3;
}



.brand-name {
    color: #fff;
    font-weight: 900;
    font-size: 1.3rem;
    line-height: 1;
}

.site-name {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tagline {
    color: #0d07ff;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 4px;
}

.contact-section {
    display: flex;
    gap: 23px;
}

.phone-number {
    background: #ff0101;
    color: #fff;
    width: 93px;
    height: 24px;
    border-radius: 25px;
    font-weight: 800;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 10px rgba(255, 1, 1, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.phone-number::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, transparent, transparent, #ffffff);
    animation: rotate-border 4s linear infinite;
    z-index: -2;
}

.phone-number::after {
    content: '';
    position: absolute;
    inset: 2px;
    background:
        radial-gradient(circle, rgba(255, 255, 255, 0.8) 1px, transparent 1px) 0 0 / 12px 12px,
        radial-gradient(circle, rgba(255, 255, 255, 0.5) 1px, transparent 1px) 6px 6px / 12px 12px,
        #ff0101;
    border-radius: 23px;
    z-index: -1;
    animation: star-blink 4s infinite alternate;
}

.phone-number:hover {
    background: #e60000;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 1, 1, 0.4);
}

.facebook-top {
    text-decoration: none;
    background: #1877F2;
    color: #fff;
    width: 93px;
    height: 24px;
    border-radius: 25px;
    font-weight: 800;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 10px rgba(24, 119, 242, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.facebook-top::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, transparent, transparent, #ffffff);
    animation: rotate-border 4s linear infinite;
    z-index: -2;
}

.facebook-top::after {
    content: '';
    position: absolute;
    inset: 2px;
    background:
        radial-gradient(circle, rgba(255, 255, 255, 0.8) 1px, transparent 1px) 0 0 / 12px 12px,
        radial-gradient(circle, rgba(255, 255, 255, 0.5) 1px, transparent 1px) 6px 6px / 12px 12px,
        #1877F2;
    border-radius: 23px;
    z-index: -1;
    animation: star-blink 4s infinite alternate;
}

.facebook-top:hover {
    background: #166ada;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(24, 119, 242, 0.4);
}

@keyframes phone-blink {
    0% {
        box-shadow: 0 4px 10px rgba(255, 1, 1, 0.3);
    }

    50% {
        box-shadow: 0 0 15px 5px rgba(255, 1, 1, 0.6);
    }

    100% {
        box-shadow: 0 4px 10px rgba(255, 1, 1, 0.3);
    }
}

@keyframes fb-blink {
    0% {
        box-shadow: 0 4px 10px rgba(24, 119, 242, 0.3);
    }

    50% {
        box-shadow: 0 0 15px 5px rgba(24, 119, 242, 0.6);
    }

    100% {
        box-shadow: 0 4px 10px rgba(24, 119, 242, 0.3);
    }
}

@keyframes rotate-border {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes star-blink {
    0% {
        background-position: 0 0, 6px 6px;
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }

    100% {
        background-position: 3px 3px, 9px 9px;
        opacity: 1;
    }
}

/* Navigation */
.main-nav {
    background-color: #f8f9fa;
    border-bottom: 2px solid #e9ecef;
    position: relative;
    /* Changed from sticky to relative since wrapper handles stickiness */
    z-index: 1000;
}

/* Mobile Sticky Wrapper */
.mobile-sticky-header {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: #ffffff;
    will-change: transform;
    backface-visibility: hidden;
}

/* make sure inner elements are normal */
.main-header,
.navbar,
.main-nav {
    position: relative;
    margin-top: 0;
}



.nav-wrapper {
    display: flex;
    align-items: center;
}

.nav-item {
    color: #34495e;
    text-decoration: none;
    font-weight: 800;
    font-size: 15px;
    transition: color 0.2s;
}

.nav-item:hover {
    color: var(--accent-blue);
}

.nav-item.home-btn {
    font-size: 1.4rem;
    color: #2c3e50;
    background: rgba(0, 0, 0, 0.05);
    padding: 5px 10px;
    border-radius: 8px;
}

.lpn-language-switcher {
    display: flex;
    gap: 8px;
    align-items: center;
}

.lpn-language-switcher .lang-btn {
    background: none;
    border: none;
    color: #003bfc;
    text-decoration: none;
    font-weight: 800;
    font-size: 14px;
    transition: color 0.2s;
    cursor: pointer;
    padding: 0;
    font-family: inherit;
}

.lpn-language-switcher .lang-btn:hover {
    color: var(--accent-blue);
}

.nav-separator {
    color: #ccc;
    font-weight: 300;
}

.search-nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    background: #fff;
    padding: 8px 18px;
    border-radius: 25px;
    gap: 12px;
    border: 1px solid #ddd;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
}

.search-nav i {
    color: #7f8c8d;
}

.search-nav input {
    border: none;
    background: transparent;
    outline: none;
    width: 140px;
    font-size: 0.95rem;
    font-weight: 600;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 60px;
    overflow: hidden;
}

.bg-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.bg-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.bg-slider .slide.active {
    opacity: 1;
}

/* Background Images */
.slide.s1 {
    background-image: url('img/ser1.jpg');
}

.slide.s2 {
    background-image: url('img/ser2.jpg');
}

.slide.s3 {
    background-image: url('img/ser3.jpg');
}

/* Soft Light Effects */
.light {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    filter: blur(80px);
    z-index: 1;
    pointer-events: none;
    opacity: 0.6;
}

.l1 {
    top: -150px;
    left: -150px;
}

.l2 {
    bottom: -150px;
    right: -150px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.5) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1000px;
    text-align: center;
    color: #fff;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 15px;
    line-height: 1.1;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtext {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 40px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

/* Search Box refined to match 3rd image */
.search-box {
    background: #ffffff;
    border-radius: var(--border-radius);
    padding: 10px;
    margin: 0 auto;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: stretch;
}

.search-fields {
    flex: 1;
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border-radius: 10px 0 0 10px;
    padding: 5px 20px;
}

.select-field {
    flex: 1;
    text-align: left;
    display: flex;
    flex-direction: column;
    padding: 10px 0;
}

.field-label {
    color: #888;
    font-size: 0.75rem;
    font-weight: 800;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.select-field select {
    border: none;
    background: transparent;
    font-weight: 900;
    color: #2c3e50;
    outline: none;
    cursor: pointer;
    font-size: 1.1rem;
    width: 100%;
}

.field-divider {
    width: 1px;
    height: 50px;
    background-color: #dee2e6;
    margin: 0 20px;
}

.search-btn {
    background: linear-gradient(180deg, #0076df 0%, #0056b3 100%);
    color: #fff;
    border: none;
    padding: 20px 40px;
    border-radius: 0 10px 10px 0;
    font-weight: 900;
    font-size: 1.2rem;
    cursor: pointer;
    transition: transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-btn:hover {
    transform: scale(1.02);
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.cta-btn {
    padding: 20px 40px;
    border-radius: 16px;
    border: none;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s;
}

.btn-search {
    background: linear-gradient(180deg, #0076df 0%, #0056b3 100%);
    color: #fff;
    font-size: 1.1rem;
}

.btn-post {
    background: #35c459;
    color: #fff;
    text-align: left;
    font-size: 1rem;
    line-height: 1;
}

.btn-post span {
    font-weight: 900;
    font-size: 1.4rem;
}

/* Sell Section */
.sell-cta-section {
    margin: -80px auto 60px;
    position: relative;
    z-index: 10;
}

.sell-card {
    background: var(--bg-card);
    border-radius: 25px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 40px;
    gap: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

.sell-text {
    flex: 1.2;
}

.sell-text h2 {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 12px;
    color: #2c3e50;
}

.sell-text p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #7f8c8d;
    font-weight: 500;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(180deg, #2e7d32 0%, #1b5e20 100%);
    color: #fff;
    padding: 7px 15px;
    border-radius: 35px;
    text-decoration: none;
    font-weight: 900;
    font-size: 1.1rem;
}

.sell-image {
    flex: 1;
}

.sell-image img {
    width: 100%;
    border-radius: 20px;
    height: 300px;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Why Choose Us & Stats Split Layout */
.why-choose {
    display: flex;
    gap: 60px;
    padding: 80px 0;
    background: #fff;
    margin-bottom: 40px;
    border-radius: 30px;
    padding: 60px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
}

.why-content {
    flex: 1.2;
}

.why-content h3 {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 35px;
    color: #1a2a44;
}

.features-list {
    list-style: none;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 1.2rem;
    color: #34495e;
}

.features-list li i {
    color: #4caf50;
    font-size: 1.5rem;
}

.serving-locations {
    margin-top: 40px;
    color: #95a5a6;
    font-weight: 700;
    font-size: 0.95rem;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.stats-cards {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-card {
    border-radius: 18px;
    align-items: center;
    gap: 25px;
}


.stat-card i {
    font-size: 2.5rem;
    color: #ffffff;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    font-weight: 700;
    color: #e7e4e4;
    margin-top: 4px;
}

/* Bottom Contact */
.bottom-contact {
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    text-align: center;
    color: #fff;
    position: relative;
    border-radius: 0;
}

.bottom-contact h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 10px;
}

.bottom-contact p {
    font-size: 1.6rem;
    font-weight: 700;
}

.bottom-contact span {
    color: var(--accent-yellow);
    font-weight: 900;
}

/* Footer */
.main-footer {
    background-color: #fff;
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid #eee;
}

.main-footer p {
    color: #95a5a6;
    font-weight: 700;
    font-size: 1rem;
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #fff;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 9999;
}

/* Responsive - Mobile Specific */
@media (max-width: 768px) {
    .header-top {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 24px;
        background-color: white;
        border-top: 3px solid #2fbb7f;
        border-bottom: 2px solid #23332c;
    }

    .site-logo {
        height: 46px;
        margin-left: -13px;
        width: auto;
    }

    .contact-section {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 8px;
        padding-top: 5px;
        margin-right: -14px;
    }

    .brand-name {
        font-size: 1rem;
    }

    .tagline {
        font-size: 11px;
        margin-top: -5px;
    }

    .phone-number {
        font-size: 8px;
        text-decoration: none;
    }

    .whatsapp-top {
        padding: 5px 12px;
        font-size: 8px;
    }

    .search-nav {
        display: none;
    }

    .hero-section {
        min-height: 450px;
        padding: 30px 0;
    }

    .hero-section h1 {
        font-size: 1.8rem;
        margin-bottom: 9px;
    }

    .hero-subtext {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }

    .search-box {
        flex-direction: row;
        padding: 0;
        margin: 0 10px;
        background: #fff;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        height: 46px;
    }

    .search-fields {
        flex: 1;
        flex-direction: row;
        padding: 0 5px;
        align-items: center;
        display: flex;
    }

    .select-field {
        flex: 1;
        min-width: 0;
    }

    .field-label {
        display: none;
    }

    .select-field select {
        font-size: 0.7rem;
        padding: 0;
        font-weight: 800;
        width: 100%;
        border: none;
        background: transparent;
        text-align: center;
    }

    .field-divider {
        width: 1px;
        height: 15px;
        background-color: #eee;
        margin: 0 2px;
    }

    .search-btn {
        padding: 0 12px;
        font-weight: 900;
        height: 100%;
        margin-right: -5px;
    }

    .cta-buttons {
        flex-direction: row;
        padding: 0 10px;
        gap: 8px;
        margin-top: 20px;
        display: flex;
    }

    .cta-btn {
        flex: 1;
        padding: 12px 19px;
        font-size: 13px;
        gap: 5px;
        border-radius: 10px;
        justify-content: center;
        text-align: center;
    }

    .btn-post br {
        display: none;
    }

    .btn-post span {
        font-size: 0.75rem;
        margin-left: 2px;
    }

    .sell-cta-section {
        margin: -40px auto 40px;
    }

    .sell-card {
        flex-direction: row;
        padding: 20px;
        gap: 20px;
    }

    .sell-text h2 {
        font-size: 16px;
    }

    .sell-image img {
        height: 180px;
    }

    .whatsapp-btn {
        font-size: 12px;
    }

    .why-choose {
        flex-direction: column;
        padding: 30px 15px;
        gap: 30px;
    }

    .why-content h3 {
        font-size: 1.6rem;
    }

    .stats-cards {
        flex-direction: column;
    }

    .stat-card {
        width: 100%;
        padding: 15px;
    }

    .bottom-contact {
        padding: 50px 0;
    }

    .bottom-contact h2 {
        font-size: 1.8rem;
    }

    .bottom-contact p {
        font-size: 1.2rem;
    }
}

/* =========================
   POST PROPERTY MODAL
========================= */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: rgba(255, 255, 255, 0.9);
    width: 90%;
    max-width: 500px;
    padding: 30px;
    border-radius: 24px;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(20px);
    transition: transform 0.3s ease-out;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.glass-effect {
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}


.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    color: #888;
    cursor: pointer;
    line-height: 1;
    z-index: 1;
}

/* District Badge Positioning */
.property-badge.district {
    top: auto;
    left: auto;
    bottom: 12px;
    right: 12px;
    background-color: #1083b9;
}

.modal-header {
    text-align: center;
    margin-bottom: 25px;
}

.modal-header h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.modal-header p {
    color: #666;
    font-size: 0.95rem;
}

.modal-form .form-group {
    margin-bottom: 15px;
}

.form-row {
    display: flex;
    gap: 15px;
}

.form-row .form-group {
    flex: 1;
}

.modal-form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: #444;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modal-form input,
.modal-form select,
.modal-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #eee;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    outline: none;
    transition: all 0.2s;
    background: #fdfdfd;
}

.modal-form input:focus,
.modal-form select:focus,
.modal-form textarea:focus {
    border-color: var(--accent-blue);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(0, 118, 223, 0.1);
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #0076df 0%, #0056b3 100%);
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 800;
    cursor: pointer;
    margin-top: 10px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 10px 20px rgba(0, 118, 223, 0.2);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(0, 118, 223, 0.3);
}

/* Mobile Adjustments for Modal */
@media (max-width: 768px) {
    .modal-content {
        padding: 20px;
        max-height: 90vh;
        overflow-y: auto;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .modal-header h2 {
        font-size: 1.5rem;
    }
}

/* ===============================
   LPN WHY CHOOSE SECTION
=================================*/

.lpn-why-section {
    border-bottom:3px solid white;
    position: relative;
    padding: 80px 20px;
   background:linear-gradient(139deg, #0d4081 63%, #1873ea 108%);
    z-index: 1;
}

.lpn-why-section::before {
    display: none;
}

/* MAIN GRID */
.lpn-why-wrapper {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    color: #fff;
}
.lpn-why-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #0e448a;
    /* adjust darkness here */
    z-index: -1;
}

/* ===============================
   LEFT CONTENT
=================================*/

.lpn-why-title {
    font-size: 32px;
    margin-bottom: 20px;
    color: #ffffff;
}

.lpn-why-list {
    list-style: none;
    padding: 0;
}

.lpn-why-item {
    font-size: 18px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
}

.lpn-why-item::before {
    display: none;
}

.lpn-why-item i,
.lpn-why-item .why-icon-small {
    color: #2ecc71;
    margin-right: 12px;
    width: 30px;
    height: 30px;
    object-fit: contain;
    text-align: center;
    flex-shrink: 0;
}

.lpn-why-serving {
    font-size: 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 50px;
    padding: 10px 25px;
    margin-top: 35px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    font-weight: 800;
    gap: 10px;
    flex-wrap: wrap;
    border: 1px solid #e0e0e0;
}

.lpn-why-serving span {
    white-space: nowrap;
}

.loc-red {
    color: #e74c3c;
}

.loc-blue {
    color: #2980b9;
}

.loc-green {
    color: #27ae60;
}

.loc-gold {
    color: #f39c12;
}

.loc-sep {
    color: #2980b9;
    font-weight: 400;
    margin: 0 2px;
}

/* ===============================
   CENTER IMAGE
=================================*/

.lpn-why-image-box {
    flex: 1;
    text-align: center;
}

.lpn-why-image {
    max-width: 100%;
    height: auto;
}

.lpn-why-content {
    flex: 1;
}

.lpn-why-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.lpn-stat-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgb(255, 255, 255);
    padding: 15px 20px;
    border-radius: 10px;
    backdrop-filter: blur(6px);
}

.lpn-stat-card i {
    font-size: 22px;
    color: #00d4aa;
}

.lpn-stat-card:last-child {
    border-bottom: none;
}


.lpn-stat-number {
    margin: 0;
    font-size: 24px;
    color: #1a1a1a;
}

.lpn-stat-text {
    margin: 0;
    font-size: 14px;
    color: #555;
}

/* ===============================
   TABLET RESPONSIVE
=================================*/

@media (max-width: 992px) {

    .lpn-why-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    /* move stats below */
    .lpn-why-stats {
        grid-column: span 2;
    }
}

/* ===============================
   MOBILE RESPONSIVE
=================================*/

@media (max-width: 768px) {

    .lpn-why-section {
        padding: 50px 15px;
    }

    .lpn-why-wrapper {
        flex-direction: column;
        /* Stack left content and right stats */
        text-align: center;
        gap: 20px;
    }

    .lpn-why-title {
        font-size: 26px;
        margin-bottom: 20px;
        color: #fff;
        /* Ensure visibility over dark background */
    }

    .lpn-why-list {
        text-align: left;
        /* Keep list items left-aligned but centered as a block */
        margin: 0 30px;
    }

    .lpn-why-item {
        font-size: 15px;
        padding-left: 30px;
        /* Keep checkmarks visible */
    }

    .lpn-why-stats {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        width: 100%;
        margin-top: 25px;
    }

    .lpn-stat-card {
        flex: 1 1 calc(45% - 10px);
        /* 2 per row roughly */
        min-width: 140px;
        justify-content: center;
        padding: 12px 10px;
        text-align: center;
        flex-direction: column;
        /* Icon above text inside card for space */
        gap: 8px;
    }

    .lpn-stat-card i {
        font-size: 20px;
    }

    .lpn-stat-number {
        font-size: 18px;
    }

    .lpn-stat-text {
        font-size: 12px;
    }


}

/* ===============================
   SMALL MOBILE
=================================*/

@media (max-width: 480px) {

    .lpn-why-title {
        font-size: 22px;
    }

    .lpn-stat-number {
        font-size: 20px;
    }

    .lpn-why-serving {
        font-size: 9px;
        padding: 8px 15px;
        gap: 5px;
        display: flex;
        width: 100%;
        border-radius: 12px;
        /* Less rounding on mobile to save space */
    }
}

/* ===== HERO SECTION ===== */
.lpn-hero-section {
    position: relative;
    width: 84%;
    height: 283px;
    margin: -92px auto 0;
    /* THIS centers the section */
    border-radius: 20px;
    overflow: hidden;
    /* Ensure image doesn't bleed */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    /* Make it look premium */
    font-family: Arial, sans-serif;
}

.lpn-hero-bg {
    position: absolute;
    inset: 0;
    /* background: url(img/send.jpeg) bottom / cover no-repeat; */
    z-index: 1;
    background: #1977f2;
}

/* Softened overlay for better background visibility */
.lpn-hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(0, 0, 0, 0.5) 0%,
            rgba(0, 0, 0, 0.2) 50%,
            rgba(0, 0, 0, 0) 100%);
}

.lpn-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    /* center */
    padding: 40px;
}

.lpn-hero-content {
    color: #ffffff;
    text-align: center;
}

.lpn-hero-title {
    font-size: 38px;
    margin-bottom: 15px;
}

.lpn-hero-subtitle {
    font-size: 18px;
    margin-bottom: 25px;
}

/* WhatsApp Button */
.lpn-hero-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    background: #25D366;
    color: #fff;
    padding: 12px 22px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.lpn-hero-whatsapp:hover {
    transform: translateY(-3px);
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {

    .lpn-hero-section {
        height: 158px;
        width: 94%;
        margin-left: 12px;
        /*change here*/
        margin-top: -58px;
    }

    .lpn-hero-overlay {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        gap: 10px;
        /* Reduced gap for small height */
        padding: 20px;
        /* Reduced padding for mobile */
    }

    .lpn-hero-content {
        color: #ffffff;
        /* Use white text for visibility */
    }

    .lpn-hero-title {
        font-size: 15px;
        margin-bottom: 4px;
    }

    .lpn-hero-subtitle {
        font-size: 10px;
        margin-bottom: 8px;
        font-weight: 300;
        color: #fff9ed;
        align-items: center;
    }

    .lpn-hero-whatsapp {
        padding: 5px 11px;
        font-size: 11px;
    }
}

/* =========================
   MOBILE FOOTER HIDE SECTIONS
   ========================= */
@media (max-width: 768px) {

    /* Hide Quick Links (2nd column) */
    .footer-grid .footer-col:nth-child(2) {
        display: none;
    }

    /* Column 3 (Legal & Policies) is now visible on mobile */

    .lpn-language-switcher {
        margin-right: 0 !important;
        padding-right: 0 !important;
    }

}

/* ===== CHAIRMAN SECTION ===== */

.lpn-chairman-section {
    margin-top: 50px;
    padding: 62px 20px;
    background: #f7f9fc;
    font-family: Arial, sans-serif;
}

.lpn-chairman-section {
    padding: 50px 0;
    background-color: #ffffff;
}

.lpn-chairman-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
    align-items: center;
    padding: 0 20px;
}

/* IMAGE SIDE */
.lpn-chairman-image {
    position: relative;
}

.lpn-chairman-image img {
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: 24px;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    display: block;
}

/* CONTENT SIDE */
.lpn-chairman-content {
    text-align: left;
}

.lpn-chairman-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #0f172a;
    letter-spacing: -1px;
}

.lpn-chairman-tagline {
    font-size: 22px;
    color: #2563eb;
    margin-bottom: 25px;
    font-weight: 600;
    font-style: italic;
}

.lpn-chairman-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 10px;
}

.lpn-chairman-sign {
    margin-top: 35px;
    border-top: 1px solid #e2e8f0;
    padding-top: 25px;
}

.lpn-chairman-sign strong {
    font-size: 18px;
    color: #0f172a;
    display: block;
    margin-bottom: -25px;
}

.lpn-chairman-sign span {
    color: #64748b;
    font-size: 14px;
    font-weight: 500;
}

/* ===== TABLET ADJUSTMENTS (iPad Air, etc.) ===== */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-subtext {
        font-size: 1.1rem;
    }

    .search-box {
        flex-direction: column;
        padding: 15px;
    }

    .search-fields {
        flex-direction: row;
        gap: 10px;
        margin-bottom: 10px;
    }

    .field-divider {
        display: none;
    }

    .search-btn {
        width: 23%;
        border-radius: 8px !important;
    }

    .cta-buttons {
        gap: 15px;
    }

    .lpn-why-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .lpn-why-content {
        padding-right: 0;
        text-align: center;
    }

    .lpn-why-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        text-align: left;
    }

    .lpn-chairman-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Existing TABLET Breakpoint */
@media (max-width: 992px) {
    .lpn-chairman-section {
        padding: 60px 0;
    }

    .lpn-chairman-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .lpn-chairman-image {
        max-width: 500px;
        margin: 0 auto;
    }

    .lpn-chairman-content {
        text-align: center;
    }

    .lpn-chairman-title {
        font-size: 36px;
    }
}

/* ===== MOBILE ===== */
@media (max-width: 576px) {
    .lpn-chairman-section {
        padding: 60px 0;
    }

    .lpn-chairman-container {
        padding: 0 25px;
    }

    .lpn-chairman-title {
        font-size: 28px;
    }

    .lpn-chairman-tagline {
        font-size: 18px;
    }

    .lpn-chairman-content p {
        font-size: 16px;
        text-align: left;
    }

    .lpn-chairman-sign {
        text-align: center;
    }
}

.premium-lang-box {
    display: flex;
    gap: 10px;
    align-items: center;
}

.lang-btn:hover {
    transform: translateY(-3px);
}

.lang-active {
    background: #007bff;
    color: #fff;
    border-color: #007bff;
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.6);
}

/* Hide Google UI */
@media (max-width: 768px) {
    .premium-lang-box {
        margin-left: auto;
        margin-right: -15px; /* Offset container padding to hit edge */
        padding-right: 15px !important;
    }
}

.goog-te-spinner-pos,
.goog-te-balloon-frame,
.goog-tooltip,
.goog-text-highlight,
.goog-te-menu-frame,
.goog-te-banner-frame,
.skiptranslate iframe {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    height: 0 !important;
}

body {
    top: 0px !important;
}
