/* Classic Travel - Shared SEO landing page styles */

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

/* Hero (background image is set inline per page) */
.lp-header {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    width: 100vw;
    height: calc(100vh - 80px);
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white-color);
    margin-top: 80px;
    margin-left: calc(-50vw + 50%);
    position: relative;
    overflow: hidden;
}

.lp-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
}

.lp-header > * {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 0 2rem;
}

.lp-header h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: var(--white-color);
    animation: fadeInUp 0.8s ease;
}

.lp-header p {
    font-size: 1.35rem;
    max-width: 720px;
    margin: 0 auto;
    color: var(--white-color);
    animation: fadeInUp 0.8s ease 0.2s both;
}

/* Intro */
.lp-intro {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

.lp-intro h2 {
    margin-bottom: 1.5rem;
}

.lp-intro p {
    color: var(--grey-color);
    font-size: 1.12rem;
    line-height: 1.9;
    margin-bottom: 1.25rem;
}

.lp-intro-buttons {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Features */
.lp-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1300px;
    margin: 0 auto;
}

.lp-card {
    background: var(--white-color);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid transparent;
    transition: all 0.4s ease;
}

.lp-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

@media (max-width: 768px) {
    .lp-card.in-view {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        border-color: var(--primary-color);
    }

    .lp-card.in-view .lp-icon {
        transform: rotateY(360deg);
    }
}

.lp-icon {
    width: 78px;
    height: 78px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
}

.lp-icon i {
    font-size: 2.1rem;
    color: var(--white-color);
}

.lp-card:hover .lp-icon {
    transform: rotateY(360deg);
}

.lp-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.9rem;
    color: var(--black-color);
}

.lp-card p {
    color: var(--grey-color);
    line-height: 1.7;
}

/* What's included / Why us */
.lp-incl {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.lp-incl h2 {
    margin-bottom: 2.5rem;
}

.lp-incl-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.25rem;
    text-align: left;
}

.lp-incl-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    background: var(--white-color);
    padding: 1.1rem 1.4rem;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
    color: var(--black-color);
    line-height: 1.6;
}

.lp-incl-list li i {
    color: var(--primary-color);
    font-size: 1.4rem;
    flex-shrink: 0;
    line-height: 1.4;
}

/* CTA */
.lp-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white-color);
    text-align: center;
    padding: 5rem 2rem;
}

.lp-cta h2 {
    font-size: 3rem;
    margin-bottom: 1.25rem;
    color: var(--white-color);
}

.lp-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

.lp-cta-buttons {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
}

.lp-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.3);
}

/* RTL */
html[dir="rtl"] .lp-incl-list { text-align: right; }
html[dir="rtl"] .footer-links i { margin-right: 0; margin-left: 0.5rem; }

@media (max-width: 768px) {
    .lp-header {
        height: 70vh;
        min-height: 480px;
        background-attachment: scroll;
    }

    .lp-header h1 { font-size: 2.4rem; }
    .lp-header p { font-size: 1.1rem; }
    .lp-intro-buttons .btn,
    .lp-cta-buttons .btn { width: 100%; max-width: 320px; }
    .lp-cta h2 { font-size: 2.1rem; }
}
