/* Landing New Page Styles */

/* Hero Section */
.hero-section-new {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0;
    color: white;
}

.hero-container-new {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 60px;
    align-items: start;
}

.hero-content-new {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.hero-title-new {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

.hero-subtitle-new {
    font-size: 1.25rem;
    line-height: 1.6;
    opacity: 0.95;
    margin: 0;
}

/* Benefits Section */
.visa-benefits {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefits-title {
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.benefit-check {
    color: #4ade80;
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Hero Button */
.hero-action-new {
    margin-top: 20px;
}

.hero-button-new {
    background: white;
    color: #667eea;
    font-size: 1.125rem;
    font-weight: 600;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 600px;
}

.hero-button-new:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Success Ticker Wrapper */
.hero-ticker-wrapper {
    align-self: center;
    position: sticky;
    top: 100px;
    width: 100%;
    display: flex;
    justify-content: center;
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero-container-new {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-ticker-wrapper {
        position: static;
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }

    .hero-title-new {
        font-size: 2.5rem;
    }

    .hero-subtitle-new {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .hero-section-new {
        padding: 60px 0;
    }

    .hero-title-new {
        font-size: 2rem;
        line-height: 1.3;
    }

    .hero-subtitle-new {
        font-size: 1rem;
    }

    .benefits-title {
        font-size: 1.25rem;
    }

    .benefit-item {
        font-size: 1rem;
    }

    .benefit-check {
        font-size: 1.25rem;
    }

    .hero-button-new {
        padding: 15px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-section-new {
        padding: 40px 0;
    }

    .hero-container-new {
        padding: 0 15px;
        gap: 30px;
    }

    .hero-title-new {
        font-size: 1.75rem;
    }

    .hero-subtitle-new {
        font-size: 0.95rem;
    }

    .benefits-title {
        font-size: 1.1rem;
    }

    .benefit-item {
        font-size: 0.95rem;
    }
}

/* Touch-friendly adjustments */
@media (hover: none) and (pointer: coarse) {
    .hero-button-new {
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }
}
