/* ── Landing Page ── */

/* ── Hero Section ── */
.hero-section {
    position: relative;
    min-height: 85vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.35) 50%, rgba(0,0,0,0.1) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
    width: 100%;
    padding: 2rem 1rem;
    margin-left: 0;
}

.hero-title {
    font-size: clamp(1.8rem, 5.5vw, 4rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: #fff;
    margin-bottom: .75rem;
    text-shadow: 0 2px 8px rgba(0,0,0,.15);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    opacity: 0.95;
    color: #fff;
    margin-bottom: 1.5rem;
    font-weight: 400;
    line-height: 1.5;
    text-shadow: 0 1px 4px rgba(0,0,0,.1);
}

.hero-search-card {
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 8px 40px rgba(0,0,0,.18);
    max-width: 780px;
    width: 100%;
}

.hero-search-card .form-label {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .04em;
    color: #495057;
}

.hero-search-card .form-control,
.hero-search-card .form-select {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: .88rem;
    padding: .55rem .8rem;
    height: 48px;
    background: #fff;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.hero-search-card .form-control:focus,
.hero-search-card .form-select:focus {
    border-color: #212529;
    box-shadow: 0 0 0 3px rgba(33,37,41,.1);
}

.hero-search-card .form-select {
    padding-right: 2rem;
}

.hero-search-card .input-group .input-group-text {
    background: #fff;
    border: 2px solid #e9ecef;
    border-right: none;
    border-radius: 10px 0 0 10px;
    height: 48px;
    color: #6c757d;
}

.hero-search-card .input-group .form-control {
    border-left: none;
    border-radius: 0 10px 10px 0;
    height: 48px;
}

.hero-search-card .btn-warning {
    height: 48px;
    border-radius: 12px;
    font-size: .92rem;
    white-space: nowrap;
    background: #212529;
    border: none;
    color: #fff;
    font-weight: 700;
    transition: all .25s ease;
}

.hero-search-card .btn-warning:hover {
    background: #000;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,.25);
}

.hero-search-card .btn-warning i {
    margin-right: 6px;
}

.btn-search {
    background: #212529;
    color: #fff;
    border-radius: 12px;
    font-weight: 600;
    padding: .6rem 1.5rem;
    border: none;
    transition: all .25s ease;
}

.btn-search:hover {
    background: #000;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,.2);
}

.popular-destinations .badge {
    font-size: .78rem;
    font-weight: 500;
    transition: all .25s ease;
}

/* ── Categories Section ── */
.categories-section {
    padding: 60px 0 40px;
}

.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 8px;
    border-radius: 16px;
    transition: all .25s ease;
    text-decoration: none;
    color: #212529;
    cursor: pointer;
}

.category-card:hover {
    background: #f7f7f7;
    color: #212529;
}

.category-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #f7f7f7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all .25s ease;
    color: #6c757d;
}

.category-card:hover .category-icon-wrap {
    background: #212529;
    color: #fff;
}

.category-icon {
    font-size: 1.6rem;
    color: #6c757d;
    transition: all .25s ease;
}

.category-card:hover .category-icon {
    color: #212529;
}

.category-name {
    font-size: .85rem;
    font-weight: 600;
    color: #212529;
}

/* ── Featured Section ── */
.featured-section {
    padding: 40px 0 60px;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.section-header h2 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 0;
}

.section-header .btn-outline-primary {
    border-radius: 20px;
    font-size: .88rem;
    padding: .4rem 1.2rem;
}

/* ── Property Cards (Landing) ── */
.property-card {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    transition: all .3s cubic-bezier(.4,0,.2,1);
    background: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,.08);
}

.property-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,.12);
}

.property-card .img-wrap {
    position: relative;
    overflow: hidden;
}

.property-card .img-wrap img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform .4s ease;
}

.property-card:hover .img-wrap img {
    transform: scale(1.05);
}

.property-card .featured-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #ffc107;
    color: #212529;
    border-radius: 20px;
    padding: 4px 12px;
    font-size: .75rem;
    font-weight: 600;
    z-index: 2;
}

/* ── How It Works Section ── */
.how-section {
    padding: 80px 0;
    background: #f7f7f7;
}

.step-card {
    text-align: center;
    padding: 32px 24px;
    border-radius: 16px;
    background: #fff;
    transition: all .3s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,.06);
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,.08);
}

.step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #212529;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 16px;
}

.step-icon {
    font-size: 2.2rem;
    color: #0d6efd;
    margin-bottom: 8px;
    display: block;
}

/* ── Plans Section ── */
.plans-section {
    padding: 80px 0;
}

.plan-card {
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    position: relative;
    transition: all .3s ease;
    height: 100%;
}

.plan-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0,0,0,.1);
}

.plan-card-popular {
    border-color: #ffc107;
    box-shadow: 0 8px 32px rgba(255,193,7,.2);
    transform: scale(1.03);
}

.plan-card-popular:hover {
    transform: scale(1.03) translateY(-6px);
}

.plan-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffc107;
    color: #212529;
    padding: 4px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: .85rem;
    white-space: nowrap;
}

.plan-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    color: #212529;
}

.plan-name {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.plan-desc {
    font-size: .9rem;
    color: #6c757d;
    margin-bottom: 20px;
    line-height: 1.5;
}

.plan-price {
    margin-bottom: 24px;
}

.plan-amount {
    font-size: 2.8rem;
    font-weight: 800;
    color: #212529;
    line-height: 1;
}

.plan-period {
    font-size: 1rem;
    color: #6c757d;
    font-weight: 400;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    text-align: left;
}

.plan-features li {
    padding: 8px 0;
    font-size: .92rem;
    color: #495057;
    display: flex;
    align-items: center;
    gap: 10px;
}

.plan-features li i {
    font-size: 1.1rem;
    flex-shrink: 0;
}

.plan-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 600;
    width: 100%;
    text-decoration: none;
    transition: all .25s ease;
    font-size: 1rem;
}

.plan-btn-primary {
    background: #212529;
    color: #fff;
    border: 2px solid #212529;
}

.plan-btn-primary:hover {
    background: #000;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0,0,0,.2);
}

.plan-btn-outline {
    background: transparent;
    color: #212529;
    border: 2px solid #e9ecef;
}

.plan-btn-outline:hover {
    border-color: #212529;
    background: #f8f9fa;
    transform: translateY(-1px);
}

/* ── Testimonials Section ── */
.testimonials-section {
    padding: 80px 0;
}

.testimonial-card {
    background: #f7f7f7;
    border-radius: 16px;
    padding: 32px;
    transition: all .3s ease;
    height: 100%;
}

.testimonial-card:hover {
    background: #efefef;
    transform: translateY(-2px);
}

.testimonial-stars i {
    font-size: .95rem;
    margin-right: 2px;
}

.testimonial-quote {
    font-size: .95rem;
    line-height: 1.7;
    color: #495057;
    font-style: italic;
}

/* ── CTA Banner ── */
.cta-banner {
    background: linear-gradient(135deg, #212529 0%, #343a40 100%);
    padding: 80px 0;
    color: #fff;
    text-align: center;
}

.cta-banner h2 {
    font-size: 2.2rem;
}

.btn-cta {
    background: #fff;
    color: #212529;
    border-radius: 12px;
    padding: 16px 48px;
    font-weight: 700;
    font-size: 1.05rem;
    border: none;
    transition: all .25s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-cta:hover {
    background: #f8f9fa;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255,255,255,.15);
}

/* ── Landing Footer ── */
.landing-footer {
    background: #f7f7f7;
    padding: 48px 0 24px;
}

.landing-footer h5,
.landing-footer h6 {
    color: #212529;
}

.landing-footer a {
    transition: all .2s ease;
}

.landing-footer a:hover {
    color: #0d6efd !important;
}

/* ── Animations ── */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp .6s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up-delay-1 { animation-delay: .1s; }
.fade-in-up-delay-2 { animation-delay: .2s; }
.fade-in-up-delay-3 { animation-delay: .3s; }
.fade-in-up-delay-4 { animation-delay: .4s; }

/* ── Transparent Navbar (Landing) ── */
.navbar-transparent {
    background: transparent !important;
    transition: all .3s ease;
}

.navbar-transparent .navbar-brand {
    color: #fff;
}

.navbar-transparent .nav-link {
    color: rgba(255,255,255,.85) !important;
}

.navbar-transparent .nav-link:hover {
    color: #fff !important;
    background: rgba(255,255,255,.1);
}

.navbar-transparent .navbar-toggler {
    border-color: rgba(255,255,255,.5);
}

.navbar-transparent .navbar-toggler-icon {
    filter: brightness(0) invert(1);
}

.navbar-transparent .dropdown-menu {
    margin-top: .5rem;
    border: none;
    box-shadow: 0 8px 32px rgba(0,0,0,.12);
    border-radius: 12px;
}

.navbar-transparent .btn-warning {
    background: #fff;
    color: #212529;
    border: none;
}

.navbar-transparent .btn-warning:hover {
    background: #f8f9fa;
}

/* ── Responsive ── */
@media (min-width: 768px) and (max-width: 991.98px) {
    .hero-search-card .row > .col-md-2 .btn {
        font-size: .8rem;
        padding: .45rem .5rem;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        min-height: 80vh;
        justify-content: flex-end;
    }

    .hero-content {
        max-width: 100%;
        padding: 5rem 1rem 2rem;
    }

    .hero-search-card {
        padding: 20px;
        max-width: 100%;
        border-radius: 12px;
        background: #fff;
    }

    .hero-search-card .row > div {
        margin-bottom: 6px;
    }

    .hero-search-card .form-control,
    .hero-search-card .form-select,
    .hero-search-card .input-group .input-group-text,
    .hero-search-card .btn-warning {
        height: 44px;
        font-size: .85rem;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .section-header h2 {
        font-size: 1.4rem;
    }

    .categories-section {
        padding: 40px 0 24px;
    }

    .featured-section {
        padding: 24px 0 40px;
    }

    .how-section {
        padding: 50px 0;
    }

    .plans-section {
        padding: 50px 0;
    }

    .plan-card {
        padding: 28px 20px;
    }

    .plan-card-popular {
        transform: none;
    }

    .plan-card-popular:hover {
        transform: translateY(-4px);
    }

    .plan-amount {
        font-size: 2.2rem;
    }

    .testimonials-section {
        padding: 50px 0;
    }

    .cta-banner {
        padding: 50px 0;
    }

    .cta-banner h2 {
        font-size: 1.6rem;
    }

    .btn-cta {
        padding: 14px 32px;
        font-size: .95rem;
    }

    .landing-footer {
        padding: 32px 0 16px;
    }

    .navbar-transparent {
        background: rgba(0,0,0,.5) !important;
    }

    .navbar-transparent .navbar-nav .nav-link {
        color: rgba(255,255,255,.9) !important;
        padding: .5rem 0 !important;
    }

    .navbar-transparent .btn-warning {
        margin-left: 0 !important;
        margin-top: .5rem;
    }
}

@media (max-width: 575.98px) {
    .hero-section {
        min-height: 60vh;
    }

    .hero-search-card {
        padding: 16px;
        border-radius: 12px;
    }

    .category-card {
        padding: 12px 6px;
    }

    .category-icon-wrap {
        width: 52px;
        height: 52px;
        font-size: 1.2rem;
    }

    .category-name {
        font-size: .75rem;
    }

    .step-card {
        padding: 24px 16px;
    }

    .step-number {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }

    .testimonial-card {
        padding: 24px;
    }

    .property-card .img-wrap img {
        height: 160px;
    }

    .property-card .card-body {
        padding: 10px;
    }

    .cta-banner {
        text-align: center;
    }

    .cta-banner .text-lg-end {
        text-align: center !important;
    }
}
