
.prepare-visit-hero {
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.prepare-visit-hero .container {
    position: relative;
    z-index: 2;
}

.prepare-visit-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    color: #fff;
    text-align: center;
}

.prepare-visit-hero .lead {
    font-size: 1.4rem;
    margin-bottom: 40px;
    opacity: 0.9;
    color: #9b9b9b;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.modern-card {
    background: #202020;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    padding: 40px;
    margin-bottom: 40px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.modern-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.modern-card h2 {
    color: #f36;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    text-align: center;
}

.modern-card h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #f36;
    border-radius: 2px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f36, #c7214a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.5rem;
}

.modern-card .subtitle {
    color: #9b9b9b;
    font-size: 0.9rem;
    margin-bottom: 25px;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
}

.modern-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #9b9b9b;
    margin-bottom: 15px;
}

.highlight-text {
    background: rgba(255,51,102,0.1);
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    border-left: 5px solid #f36;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #9b9b9b;
    text-align: center;
    font-weight: 600;
}

.info-list {
    list-style: none;
    padding: 0;
    margin-top: 25px;
}

.info-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    position: relative;
    padding-left: 30px;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #9b9b9b;
}

.info-list li:last-child {
    border-bottom: none;
}

.info-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #f36;
    font-weight: bold;
    font-size: 1.2rem;
}

.info-list h5 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-family: Montserrat, sans-serif;
}

.contact-modern {
    color: white;
    padding: 60px 0;
    margin-top: 60px;
}

.contact-modern h2 {
    color: #f36;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.contact-modern h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #f36;
    border-radius: 2px;
}

.contact-modern p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #9b9b9b;
    margin-bottom: 40px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.contact-item {
    background: rgba(255,51,102,0.1);
    padding: 25px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255,51,102,0.2);
}

.contact-item:hover {
    transform: scale(1.05);
    background: rgba(255,51,102,0.15);
}

.contact-item .feature-icon {
    margin-bottom: 15px;
}

.contact-item h5 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-family: Montserrat, sans-serif;
}

.contact-item p {
    color: #9b9b9b;
    font-size: 1rem;
    margin: 0;
}

.section-divider {
    height: 4px;
    background: #f36;
    width: 60px;
    margin: 30px auto;
    border-radius: 2px;
}

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

.animate-card {
    animation: fadeInUp 0.6s ease forwards;
}

@media (max-width: 768px) {
    .prepare-visit-hero h1 {
        font-size: 2.5rem;
    }

    .modern-card {
        padding: 25px;
    }

    .modern-card h2 {
        font-size: 1.8rem;
    }

    .contact-modern {
        padding: 40px 0;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
