


.lp-widget-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.lp-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #f1f5f9;
}

.lp-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
    border-color: var(--accent);
}

.lp-card-img {
    height: 220px;
    background-size: cover;
    background-position: center;
    transition: transform 0.7s ease;
}

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

.lp-card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
    background: #ffffff;
    position: relative;
    z-index: 2;
}

.lp-card-title {
    font-size: 1.3rem;
    color: var(--primary);
    margin: 0 0 15px 0;
    font-weight: 700;
    line-height: 1.4;
}

.lp-card-btn {
    margin-top: auto;
    color: var(--accent);
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s;
}

.lp-card:hover .lp-card-btn {
    color: #b8932d;
}


.lp-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.lp-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.4), rgba(15, 23, 42, 0.8));
}

.lp-hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.lp-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    color: #ffffff;
    margin: 0;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.lp-content-wrapper {
    width: 100%;
    margin: 0 auto;
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-main);
}

.lp-content-wrapper::after {
    content: "";
    display: table;
    clear: both;
}

.lp-content-wrapper h2, .lp-content-wrapper h3 {
    color: var(--primary);
    margin-top: 2em;
    margin-bottom: 1em;
    font-family: 'Playfair Display', serif;
}

.lp-content-wrapper img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    margin: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}


.lp-tour-banner-section {
    padding: 60px 20px;
    background: #f8fafc;
}

.lp-tour-banner {
    display: flex;
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    flex-direction: row;
}

.lp-tour-banner-img {
    flex: 1;
    min-width: 40%;
    background-size: cover;
    background-position: center;
    min-height: 300px;
}

.lp-tour-banner-content {
    flex: 1.5;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.lp-tour-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    align-self: flex-start;
}

.lp-tour-title {
    font-size: 2.2rem;
    color: var(--primary);
    margin: 0 0 15px 0;
    font-family: 'Playfair Display', serif;
}

.lp-tour-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.lp-tour-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 30px;
    border-top: 1px solid #f1f5f9;
    flex-wrap: wrap;
    gap: 20px;
}

.lp-tour-price {
    display: flex;
    flex-direction: column;
}

.lp-tour-price .label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 600;
}

.lp-tour-price .value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

.lp-tour-price .value small {
    font-size: 1.2rem;
    color: var(--accent);
    font-weight: 600;
}

.lp-tour-btn {
    padding: 16px 40px;
    font-size: 1.1rem;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

@media (max-width: 992px) {
    .lp-tour-banner {
        flex-direction: column;
    }
    .lp-tour-banner-img {
        min-height: 250px;
    }
    .lp-tour-banner-content {
        padding: 30px;
    }
    .lp-tour-title {
        font-size: 1.8rem;
    }
}