.visas-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--primary-navy) 100%);
    color: var(--white);
    text-align: center;
}

.visas-title {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 25px;
}

.visas-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.popular-countries {
    padding: 100px 0;
    background: var(--white);
}

.section-title {
    color: var(--dark-navy);
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 60px;
}

.country-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--white);
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
}

.country-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-xl);
    color: inherit;
}

.country-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
}

.country-flag {
    width: 104px;
    height: 104px;
    border-radius: 50%;
    margin: 0 auto 25px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.6rem;
    color: var(--primary-gold);
    box-shadow: 0 10px 30px rgba(43, 57, 144, 0.18);
    position: relative;
    overflow: hidden;
    border: 4px solid var(--white);
    outline: 3px solid rgba(197, 165, 114, 0.55);
    transition: transform .4s cubic-bezier(.34,1.56,.64,1), outline-color .3s ease;
}
.country-flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.country-card:hover .country-flag {
    transform: scale(1.06) rotate(-2deg);
    outline-color: var(--primary-gold);
}

.country-name {
    color: var(--dark-navy);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.country-description {
    color: var(--gray-600);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.country-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    width: 100%;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
    font-size: 0.9rem;
    color: var(--gray-600);
}

.country-name,
.country-description { width: 100%; }

.country-price {
    color: var(--primary-gold);
    font-weight: 600;
}

.continents-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--gray-100) 0%, var(--white) 100%);
}

.continent-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid var(--gray-200);
    text-decoration: none;
    color: inherit;
}

.continent-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    color: inherit;
}

.continent-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--white);
    font-size: 2rem;
}

.continent-name {
    color: var(--dark-navy);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.continent-count {
    color: var(--gray-600);
    font-size: 1rem;
}

.cta-section {
    padding: 80px 0;
    background: var(--dark-navy);
    color: var(--white);
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 100%);
    color: var(--white);
    padding: 18px 50px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s ease;
    box-shadow: 0 15px 40px rgba(197, 165, 114, 0.3);
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(197, 165, 114, 0.4);
    color: var(--white);
}

@media (max-width: 768px) {
    .visas-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .country-card {
        margin-bottom: 30px;
    }

    .cta-title {
        font-size: 2rem;
    }
}
