/* 西班牙签证页面专用样式 */

.spain-hero {
    background: linear-gradient(135deg, #c41e3a 0%, #ff6b6b 50%, #feca57 100%);
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.spain-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="flag-pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><rect x="0" y="0" width="20" height="6.67" fill="%23ffffff"/><rect x="0" y="6.67" width="20" height="6.67" fill="%23ffc107"/><rect x="0" y="13.33" width="20" height="6.67" fill="%23dc3545"/></pattern></defs><rect width="100" height="100" fill="url(%23flag-pattern)" opacity="0.1"/></svg>') repeat;
    opacity: 0.1;
}

.spain-hero .hero-content {
    position: relative;
    z-index: 2;
}

.spain-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.spain-hero h1 i {
    color: #ffc107;
    margin-right: 15px;
}

.spain-hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-highlights {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.15);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.highlight i {
    color: #ffc107;
    font-size: 1.2rem;
}

.highlight span {
    font-weight: 500;
}

.visa-types {
    padding: 100px 0;
    background: #f8f9fa;
}

.visa-types h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1e3c72;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
}

.visa-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-top: 4px solid #c41e3a;
}

.visa-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.visa-card.featured {
    border-top-color: #ffc107;
    background: linear-gradient(135deg, #fff9c4 0%, #ffffff 100%);
}

.featured-badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background: #ffc107;
    color: #1e3c72;
    padding: 8px 40px;
    font-size: 0.9rem;
    font-weight: bold;
    transform: rotate(45deg);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.visa-icon {
    text-align: center;
    margin-bottom: 1.5rem;
}

.visa-icon i {
    font-size: 3.5rem;
    color: #c41e3a;
}

.visa-card.featured .visa-icon i {
    color: #ff6b35;
}

.visa-card h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    color: #1e3c72;
    text-align: center;
}

.visa-subtitle {
    text-align: center;
    color: #666;
    font-weight: 500;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.visa-details p {
    font-weight: bold;
    color: #2a5298;
    margin-bottom: 1rem;
}

.visa-details ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.visa-details li {
    padding: 0.4rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.visa-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.visa-info {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #666;
    background: #f8f9fa;
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.info-item i {
    color: #c41e3a;
}

.application-process {
    padding: 100px 0;
    background: white;
}

.application-process h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1e3c72;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #c41e3a, #ff6b6b);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 20px rgba(196, 30, 58, 0.3);
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1e3c72;
}

.step-content p {
    color: #666;
    line-height: 1.6;
}

.required-documents {
    padding: 100px 0;
    background: #f8f9fa;
}

.required-documents h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1e3c72;
}

.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.document-category {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.document-category:hover {
    transform: translateY(-5px);
}

.document-category h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: #1e3c72;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.document-category h3 i {
    color: #c41e3a;
    font-size: 1.6rem;
}

.document-category ul {
    list-style: none;
}

.document-category li {
    padding: 0.6rem 0;
    color: #666;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 1.5rem;
}

.document-category li:last-child {
    border-bottom: none;
}

.document-category li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #c41e3a;
    font-weight: bold;
    font-size: 1.2rem;
}

.important-notices {
    padding: 100px 0;
    background: white;
}

.important-notices h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1e3c72;
}

.notices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.notice-item {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    border-left: 5px solid #c41e3a;
}

.notice-icon {
    flex-shrink: 0;
}

.notice-icon i {
    font-size: 2.5rem;
    color: #c41e3a;
}

.notice-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1e3c72;
}

.notice-content p {
    color: #666;
    line-height: 1.6;
}

.contact {
    padding: 100px 0;
    background: #f8f9fa;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1e3c72;
}

.specialties {
    margin-top: 2rem;
}

.specialties h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1e3c72;
}

.specialties ul {
    list-style: none;
}

.specialties li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.specialties li::before {
    content: '★';
    position: absolute;
    left: 0;
    color: #ffc107;
    font-weight: bold;
}

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

    .spain-hero p {
        font-size: 1.1rem;
    }

    .hero-highlights {
        gap: 1rem;
    }

    .highlight {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    .types-grid {
        grid-template-columns: 1fr;
    }

    .visa-card {
        padding: 1.5rem;
    }

    .visa-info {
        flex-direction: column;
        gap: 0.5rem;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .documents-grid {
        grid-template-columns: 1fr;
    }

    .notices-grid {
        grid-template-columns: 1fr;
    }

    .notice-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .spain-hero {
        padding: 100px 0 60px;
    }

    .spain-hero h1 {
        font-size: 2rem;
    }

    .visa-card {
        padding: 1.2rem;
    }

    .visa-card h3 {
        font-size: 1.3rem;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .document-category {
        padding: 1.5rem;
    }

    .notice-item {
        padding: 1.5rem;
    }
}

/* 动画效果 */
.visa-card {
    animation: fadeInUp 0.6s ease forwards;
}

.visa-card:nth-child(1) { animation-delay: 0.1s; }
.visa-card:nth-child(2) { animation-delay: 0.2s; }
.visa-card:nth-child(3) { animation-delay: 0.3s; }
.visa-card:nth-child(4) { animation-delay: 0.4s; }
.visa-card:nth-child(5) { animation-delay: 0.5s; }
.visa-card:nth-child(6) { animation-delay: 0.6s; }

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

.step {
    animation: fadeInUp 0.6s ease forwards;
}

.step:nth-child(1) { animation-delay: 0.1s; }
.step:nth-child(2) { animation-delay: 0.2s; }
.step:nth-child(3) { animation-delay: 0.3s; }
.step:nth-child(4) { animation-delay: 0.4s; }
.step:nth-child(5) { animation-delay: 0.5s; }