/********** Bankole Pavilion Limited - Complete Responsive Design **********/
:root {
    --green-dark: #036934;
    --green-mid: #0a8a3e;
    --green-light: #e8f5e9;
    --red: #EC1007;
    --red-light: #ffeaea;
    --white: #FFFFFF;
    --off-white: #FAFBFA;
    --gray-100: #F5F5F5;
    --gray-200: #E8E8E8;
    --gray-600: #666666;
    --gray-900: #1A1A1A;
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.04);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--gray-900);
    line-height: 1.6;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* ============ CONTAINER ============ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============ TOP BAR ============ */
.top-bar {
    background: var(--gray-900);
    color: rgba(255,255,255,0.7);
    font-size: 0.8rem;
    padding: 10px 0;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-bar a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: var(--transition);
}

.top-bar a:hover {
    color: var(--white);
}

.top-bar i {
    color: var(--green-mid);
    margin-right: 5px;
}

.top-bar .badge-lasera {
    background: var(--red);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.7rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
}

/* ============ NAVBAR ============ */
.navbar {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.navbar-brand img {
    height: 45px;
}

.navbar-brand .brand-text {
    font-weight: 800;
    font-size: 1rem;
    color: var(--green-dark);
    letter-spacing: 1px;
    line-height: 1.2;
}

.navbar-brand .brand-text small {
    display: block;
    font-size: 0.55rem;
    color: var(--red);
    letter-spacing: 2px;
    font-weight: 600;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--gray-900);
    font-weight: 500;
    font-size: 0.85rem;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--green-dark);
    background: var(--green-light);
}

.nav-cta {
    background: var(--green-dark) !important;
    color: #fff !important;
    padding: 10px 20px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
}

.nav-cta:hover {
    background: #024d28 !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(3,105,52,0.3);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.6rem;
    cursor: pointer;
    color: var(--gray-900);
    padding: 5px 10px;
}

/* ============ HERO SLIDER ============ */
.hero-slider {
    position: relative;
    width: 100%;
    height: 550px;
    overflow: hidden;
    background: var(--gray-900);
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.3) 60%, rgba(0,0,0,0.1) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 0 60px;
    color: #fff;
}

.hero-badge {
    display: inline-block;
    background: var(--red);
    color: #fff;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 15px;
}

.hero-content h1 span {
    color: #4ade80;
}

.hero-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: 2px solid rgba(255,255,255,0.6);
    cursor: pointer;
    transition: var(--transition);
}

.hero-dot.active {
    background: #fff;
    border-color: #fff;
    transform: scale(1.2);
}

/* ============ BUTTONS ============ */
.btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--green-dark);
    color: #fff;
}

.btn-primary:hover {
    background: #024d28;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(3,105,52,0.3);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-outline:hover {
    background: #fff;
    color: var(--green-dark);
    transform: translateY(-3px);
}

.btn-outline-green {
    background: transparent;
    color: var(--green-dark);
    border: 2px solid var(--green-dark);
}

.btn-outline-green:hover {
    background: var(--green-dark);
    color: #fff;
    transform: translateY(-3px);
}

/* ============ SEARCH BAR ============ */
.search-section {
    margin-top: -35px;
    position: relative;
    z-index: 10;
}

.search-section .container {
    background: var(--green-dark);
    padding: 25px;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 50px rgba(3,105,52,0.3);
}

.search-form {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr auto;
    gap: 10px;
}

.search-form input,
.search-form select {
    padding: 14px 18px;
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-family: inherit;
    background: #fff;
    width: 100%;
}

.search-form input:focus,
.search-form select:focus {
    outline: none;
    border-color: #4ade80;
}

.search-form button {
    padding: 14px 28px;
    background: var(--gray-900);
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.search-form button:hover {
    background: #333;
}

/* ============ SECTIONS ============ */
.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.section-badge {
    display: inline-block;
    background: var(--red-light);
    color: var(--red);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.section-header p {
    color: var(--gray-600);
    font-size: 1rem;
}

/* ============ CATEGORY GRID ============ */
.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.category-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 30px 20px;
    text-align: center;
    text-decoration: none;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
}

.category-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.category-card:hover {
    border-color: var(--green-dark);
    transform: translateY(-8px) !important;
    box-shadow: var(--shadow-md);
}

.category-card .cat-icon {
    width: 65px;
    height: 65px;
    background: var(--green-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
    color: var(--green-dark);
    transition: var(--transition);
}

.category-card:hover .cat-icon {
    background: var(--green-dark);
    color: #fff;
}

.category-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 5px;
}

.category-card span {
    font-size: 0.8rem;
    color: var(--gray-600);
}

/* ============ PROPERTY GRID ============ */
.property-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.property-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--gray-200);
    opacity: 0;
    transform: translateY(30px);
}

.property-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.property-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: var(--shadow-lg);
}

.property-image {
    position: relative;
    overflow: hidden;
}

.property-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.property-card:hover .property-image img {
    transform: scale(1.08);
}

.property-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--red);
    color: #fff;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 2;
}

.property-type {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: var(--white);
    color: var(--green-dark);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

.property-body {
    padding: 20px;
}

.property-price {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--green-dark);
    margin-bottom: 6px;
}

.property-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 6px;
    text-decoration: none;
    display: block;
}

.property-title:hover {
    color: var(--green-dark);
}

.property-location {
    font-size: 0.8rem;
    color: var(--gray-600);
    margin-bottom: 12px;
}

.property-location i {
    color: var(--green-dark);
    margin-right: 5px;
}

.property-meta {
    display: flex;
    border-top: 1px solid var(--gray-200);
    padding-top: 12px;
}

.property-meta span {
    flex: 1;
    text-align: center;
    font-size: 0.75rem;
    color: var(--gray-600);
    border-right: 1px solid var(--gray-200);
}

.property-meta span:last-child {
    border-right: none;
}

.property-meta i {
    color: var(--green-dark);
    margin-right: 3px;
}

/* ============ ABOUT ============ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    width: 120px;
    height: 120px;
    background: var(--green-light);
    border-radius: var(--radius-md);
    z-index: -1;
}

.about-image::after {
    content: '';
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 100px;
    height: 100px;
    background: var(--red-light);
    border-radius: var(--radius-md);
    z-index: -1;
}

.about-content h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 18px;
}

.about-content p {
    color: var(--gray-600);
    margin-bottom: 18px;
    font-size: 0.95rem;
}

.check-list {
    list-style: none;
    margin-bottom: 25px;
}

.check-list li {
    padding: 8px 0;
    color: var(--gray-900);
    font-weight: 500;
    font-size: 0.9rem;
}

.check-list i {
    color: var(--green-dark);
    margin-right: 10px;
}

/* ============ DUE DILIGENCE ============ */
.due-diligence-bg {
    background: var(--off-white);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.step-card {
    text-align: center;
    padding: 20px 15px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.step-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.step-icon {
    width: 75px;
    height: 75px;
    background: var(--white);
    border: 2px solid var(--green-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
    color: var(--green-dark);
    transition: var(--transition);
}

.step-card:hover .step-icon {
    background: var(--green-dark);
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(3,105,52,0.2);
}

.step-card h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 6px;
}

.step-card p {
    font-size: 0.78rem;
    color: var(--gray-600);
}

/* ============ CTA ============ */
.cta-section {
    background: linear-gradient(135deg, var(--green-dark) 0%, #024d28 100%);
    color: #fff;
    padding: 60px 0;
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.cta-content h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.cta-content p {
    opacity: 0.9;
    margin-bottom: 25px;
    font-size: 1rem;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-white {
    background: #fff;
    color: var(--green-dark);
}

.btn-white:hover {
    background: #f0f0f0;
    transform: translateY(-3px);
}

.btn-dark-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.5);
}

.btn-dark-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
    transform: translateY(-3px);
}

.cta-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    border: 4px solid rgba(255,255,255,0.2);
}

/* ============ FOOTER ============ */
.footer {
    background: #0A0A0A;
    color: rgba(255,255,255,0.6);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer h4 {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 12px;
    position: relative;
}

.footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--red);
}

.footer p {
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.footer i {
    color: var(--green-mid);
    margin-right: 8px;
    width: 14px;
}

.footer a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 10px;
    transition: var(--transition);
}

.footer a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer .social-links {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.footer .social-links a {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
}

.footer .social-links a:hover {
    background: var(--green-dark);
    border-color: var(--green-dark);
    padding-left: 0;
}

.footer-newsletter input {
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255,255,255,0.2);
    background: transparent;
    color: #fff;
    margin-bottom: 10px;
    font-family: inherit;
}

.footer-newsletter input::placeholder {
    color: rgba(255,255,255,0.4);
}

.footer-newsletter button {
    width: 100%;
    padding: 12px;
    background: var(--green-dark);
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.footer-newsletter button:hover {
    background: var(--green-mid);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 0.8rem;
}

.footer-bottom a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    margin-left: 15px;
    display: inline;
}

/* ============ RESPONSIVE - TABLET ============ */
@media (max-width: 992px) {
    /* Navbar */
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 15px 20px;
        border-bottom: 2px solid var(--gray-200);
        box-shadow: var(--shadow-lg);
        gap: 5px;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links a {
        padding: 12px 15px;
        width: 100%;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    /* Hero */
    .hero-slider {
        height: 450px;
    }
    
    .hero-content {
        padding: 0 30px;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content p {
        font-size: 0.95rem;
    }
    
    /* Search */
    .search-form {
        grid-template-columns: 1fr 1fr;
    }
    
    /* Category */
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Property */
    .property-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* About */
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image::before,
    .about-image::after {
        display: none;
    }
    
    /* Steps */
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* CTA */
    .cta-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ============ RESPONSIVE - MOBILE ============ */
@media (max-width: 576px) {
    /* Top Bar */
    .top-bar .container {
        justify-content: center;
        text-align: center;
    }
    
    .top-bar .container > div {
        width: 100%;
        text-align: center;
    }
    
    /* Hero */
    .hero-slider {
        height: 500px;
    }
    
    .hero-content {
        padding: 0 20px;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 0.9rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    /* Search */
    .search-section {
        margin-top: -20px;
    }
    
    .search-form {
        grid-template-columns: 1fr;
    }
    
    /* Category */
    .category-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    .category-card {
        padding: 20px 10px;
    }
    
    .category-card .cat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .category-card h4 {
        font-size: 0.8rem;
    }
    
    /* Property */
    .property-grid {
        grid-template-columns: 1fr;
    }
    
    /* Section */
    .section {
        padding: 50px 0;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    /* Steps */
    .steps-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom a {
        margin: 0 8px;
    }
}

/* ============ ANIMATIONS ============ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: var(--green-dark); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: #024d28; }
::selection { background: var(--green-dark); color: #fff; }