/* ===================================
   VISA PAGE - STYLES COMPLETS
   =================================== */

/* Visa Hero Section */
.visa-hero {
    padding: 60px 0 40px;
    background:
        linear-gradient(135deg, rgba(0, 102, 204, 0.92) 0%, rgba(0, 82, 163, 0.94) 50%, rgba(0, 61, 122, 0.96) 100%),
        url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?q=80&w=2000') center/cover;
    position: relative;
    overflow: hidden;
}

.visa-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.06) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.04) 0%, transparent 50%);
    opacity: 1;
}

.visa-hero-content {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.breadcrumb a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 500;
}

.breadcrumb a:hover {
    color: white;
}

.visa-hero-title {
    font-size: 48px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    line-height: 1.15;
    letter-spacing: -1px;
}

.visa-hero-subtitle {
    font-size: 17px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 32px;
    line-height: 1.65;
    max-width: 90%;
}

.visa-hero-badges {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.visa-hero-badges .badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.visa-hero-badges .badge-item:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.visa-hero-badges .badge-item i {
    font-size: 18px;
    color: #fbbf24;
}

/* Floating Cards Animation */
.floating-cards {
    position: relative;
    height: 320px;
}

.float-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 24px 28px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    animation: float 6s ease-in-out infinite;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.float-card:hover {
    transform: translateY(-8px) scale(1.03) !important;
    box-shadow: 0 15px 50px rgba(0,0,0,0.25);
}

.float-card i {
    font-size: 32px;
    background: linear-gradient(135deg, #0066cc 0%, #003d7a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.float-card span {
    font-weight: 600;
    color: #1e293b;
    font-size: 14px;
    letter-spacing: -0.2px;
}

.float-card.card-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.float-card.card-2 {
    top: 10%;
    right: 20%;
    animation-delay: 1.5s;
}

.float-card.card-3 {
    bottom: 30%;
    left: 25%;
    animation-delay: 3s;
}

.float-card.card-4 {
    bottom: 15%;
    right: 10%;
    animation-delay: 4.5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Visa Categories Section */
.visa-categories {
    padding: 100px 0;
    background: #f8fafc;
}

.section-intro {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    color: #667eea;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.section-intro h2 {
    font-size: 48px;
    color: #1e293b;
    margin-bottom: 20px;
    line-height: 1.2;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.category-card {
    background: white;
    border-radius: 24px;
    padding: 40px 30px;
    box-shadow: 0 8px 30px rgba(0, 102, 204, 0.15),
                0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 102, 204, 0.08);
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #0066cc 0%, #003d7a 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.category-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(0, 102, 204, 0.25),
                0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: rgba(0, 102, 204, 0.15);
}

.category-card:hover::before {
    transform: scaleX(1);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.category-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    background: linear-gradient(135deg, #0066cc 0%, #003d7a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.category-badge {
    background: #fbbf24;
    color: #1e293b;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-badge.express {
    background: #10b981;
    color: white;
}

.category-card h3 {
    font-size: 24px;
    color: #1e293b;
    margin-bottom: 15px;
    font-weight: 700;
}

.category-card > p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 25px;
}

.category-benefits {
    list-style: none;
    margin-bottom: 30px;
    padding: 0;
}

.category-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: #334155;
    font-size: 15px;
}

.category-benefits li i {
    color: #10b981;
    font-size: 18px;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 25px;
    border-top: 2px solid #f1f5f9;
}

.pricing {
    font-size: 14px;
    color: #64748b;
}

.pricing strong {
    font-size: 28px;
    color: #0066cc;
    font-weight: 700;
}

.btn-card {
    padding: 12px 28px;
    background: linear-gradient(135deg, #0066cc 0%, #003d7a 100%);
    color: white;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.btn-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.4);
}

/* Destinations Modern Section */
.destinations-modern {
    padding: 120px 0;
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #4facfe 75%, #00f2fe 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    overflow: hidden;
}

.destinations-modern::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 20% 30%, rgba(102, 126, 234, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(244, 114, 182, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(96, 165, 250, 0.2) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
    pointer-events: none;
}

.destinations-modern::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.03) 30%, rgba(255, 255, 255, 0.03) 70%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(255, 255, 255, 0.03) 30%, rgba(255, 255, 255, 0.03) 70%, transparent 70%);
    background-size: 60px 60px;
    opacity: 0.5;
    pointer-events: none;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.destinations-modern .container {
    position: relative;
    z-index: 1;
}

.destinations-modern .section-intro {
    position: relative;
    z-index: 2;
}

.destinations-modern .section-tag,
.destinations-modern .section-intro h2,
.destinations-modern .section-desc {
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.destinations-modern .section-tag {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.destinations-grid-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.dest-card-modern {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 350px;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.15);
}

.dest-card-modern:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        0 0 40px rgba(255, 255, 255, 0.1);
}

.dest-card-modern.featured {
    grid-column: span 2;
    height: 420px;
}

/* Les éléments 4 et suivants prennent 2 colonnes pour créer une grille de 2 */
.dest-card-modern:nth-child(n+4) {
    grid-column: span 2;
}

.dest-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.dest-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.dest-card-modern:hover .dest-bg-image img {
    transform: scale(1.15);
}

.dest-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.1) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.9) 100%
    );
    transition: background 0.5s ease;
}

.dest-overlay-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(102, 126, 234, 0.1) 0%,
        transparent 50%,
        rgba(244, 114, 182, 0.1) 100%
    );
    opacity: 0;
    transition: opacity 0.5s ease;
}

.dest-card-modern:hover .dest-overlay-gradient::before {
    opacity: 1;
}

.dest-card-modern:hover .dest-overlay-gradient {
    background: linear-gradient(
        to bottom,
        rgba(102, 126, 234, 0.2) 0%,
        rgba(102, 126, 234, 0.5) 50%,
        rgba(30, 41, 59, 0.95) 100%
    );
}

.dest-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 28px;
}

.dest-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.dest-flags-modern {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}

.dest-flags-modern img {
    width: 40px;
    height: 27px;
    border-radius: 6px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.dest-flags-modern img:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    border-color: white;
    z-index: 10;
}

.flag-more {
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.dest-badge-modern {
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.dest-badge-modern.popular {
    background: rgba(251, 191, 36, 0.9);
    color: white;
}

.dest-badge-modern.express {
    background: rgba(16, 185, 129, 0.9);
    color: white;
}

.dest-info {
    transform: translateY(0);
    transition: transform 0.4s ease;
}

.dest-card-modern:hover .dest-info {
    transform: translateY(-8px);
}

.dest-info h3 {
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.dest-card-modern.featured .dest-info h3 {
    font-size: 36px;
}

.dest-description {
    color: rgba(255, 255, 255, 0.95);
    font-size: 15px;
    margin-bottom: 16px;
    font-weight: 400;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.dest-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.dest-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 13px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 8px 14px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.dest-meta span:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.dest-meta i {
    font-size: 14px;
    opacity: 0.9;
}

.section-intro.centered {
    text-align: center;
}

.section-desc {
    color: #64748b;
    font-size: 18px;
    margin-top: 15px;
}

/* Requirements Section */
.requirements-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
}

.requirements-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.intro-paragraph {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 40px;
}

.documents-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.doc-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.doc-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.doc-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    flex-shrink: 0;
}

.doc-text h4 {
    font-size: 16px;
    color: #1e293b;
    margin-bottom: 5px;
    font-weight: 600;
}

.doc-text p {
    font-size: 13px;
    color: #64748b;
    margin: 0;
}

.requirements-note {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 12px;
    border-left: 4px solid #667eea;
}

.requirements-note i {
    color: #667eea;
    font-size: 20px;
    margin-top: 2px;
}

.requirements-note p {
    color: #334155;
    line-height: 1.6;
    margin: 0;
}

.requirements-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.requirements-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.image-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: white;
    padding: 25px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 20px;
}

.image-badge i {
    font-size: 36px;
    color: #10b981;
}

.badge-content h4 {
    font-size: 32px;
    color: #1e293b;
    font-weight: 700;
    margin-bottom: 2px;
}

.badge-content p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

/* Success Stories */
.success-stories {
    padding: 100px 0;
    background: white;
}

.stories-carousel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.story-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    padding: 35px;
    transition: all 0.3s;
}

.story-card:hover {
    border-color: #667eea;
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15);
}

.story-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.story-header img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #667eea;
}

.story-info {
    flex: 1;
}

.story-info h4 {
    font-size: 18px;
    color: #1e293b;
    margin-bottom: 4px;
    font-weight: 700;
}

.story-info span {
    font-size: 13px;
    color: #64748b;
}

.rating {
    display: flex;
    gap: 4px;
}

.rating i {
    color: #fbbf24;
    font-size: 14px;
}

.story-text {
    color: #334155;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 15px;
}

.story-date {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #64748b;
    font-size: 13px;
}

.story-date i {
    color: #667eea;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: #f8fafc;
}

.faq-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
}

.faq-intro h2 {
    font-size: 42px;
    color: #1e293b;
    margin-bottom: 20px;
    line-height: 1.2;
}

.faq-intro p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 30px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-question h4 {
    font-size: 17px;
    color: #1e293b;
    font-weight: 600;
    margin: 0;
}

.faq-question i {
    color: #667eea;
    font-size: 18px;
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 30px 25px;
    color: #64748b;
    line-height: 1.8;
    margin: 0;
}

/* Visa Contact Section */
.visa-contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.visa-contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.05"><path d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/></g></g></svg>');
    opacity: 0.3;
}

.visa-contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.contact-intro h2 {
    font-size: 42px;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.contact-intro p {
    color: rgba(255,255,255,0.9);
    line-height: 1.7;
    margin-bottom: 40px;
}

.contact-guarantees {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
    font-weight: 500;
}

.guarantee-item i {
    font-size: 24px;
    color: #fbbf24;
}

.visa-contact-form {
    background: white;
    padding: 45px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.modern-form .form-group {
    margin-bottom: 25px;
}

.modern-form label {
    display: block;
    margin-bottom: 8px;
    color: #334155;
    font-weight: 600;
    font-size: 14px;
}

.modern-form input,
.modern-form select,
.modern-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.3s;
    font-family: inherit;
}

.modern-form input:focus,
.modern-form select:focus,
.modern-form textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.btn-submit {
    width: 100%;
    padding: 16px 32px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.form-note {
    text-align: center;
    color: #64748b;
    font-size: 13px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.form-note i {
    color: #667eea;
}

/* ===================================
   RESPONSIVE
   =================================== */

@media (max-width: 1200px) {
    .visa-hero-content {
        gap: 60px;
    }

    .visa-hero-title {
        font-size: 48px;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .destinations-grid-modern {
        grid-template-columns: repeat(3, 1fr);
    }

    .dest-card-modern.featured {
        grid-column: span 1;
        height: 350px;
    }

    /* Annuler le span 2 pour les éléments 4+ sur les écrans moyens */
    .dest-card-modern:nth-child(n+4) {
        grid-column: span 1;
    }

    .dest-card-modern.featured .dest-info h3 {
        font-size: 28px;
    }
}

@media (max-width: 968px) {
    .visa-hero {
        padding: 80px 0 60px;
    }

    .visa-hero-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .floating-cards {
        height: 400px;
    }

    .visa-hero-title {
        font-size: 42px;
    }

    .section-intro h2 {
        font-size: 38px;
    }

    .categories-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .destinations-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .dest-card-modern {
        height: 320px;
    }

    .dest-card-modern.featured {
        grid-column: span 2;
        height: 380px;
    }

    .dest-content {
        padding: 24px;
    }

    .dest-info h3 {
        font-size: 24px;
    }

    .dest-card-modern.featured .dest-info h3 {
        font-size: 30px;
    }

    .requirements-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .requirements-image {
        order: -1;
    }

    .requirements-image img {
        height: 400px;
    }

    .stories-carousel {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .faq-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .visa-contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-row-2 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .visa-hero {
        padding: 60px 0 40px;
    }

    .visa-hero-title {
        font-size: 32px;
    }

    .visa-hero-subtitle {
        font-size: 16px;
    }

    .visa-hero-badges {
        flex-direction: column;
        gap: 15px;
    }

    .floating-cards {
        display: none;
    }

    .section-intro h2 {
        font-size: 28px;
    }

    .category-card {
        padding: 30px 25px;
    }

    .category-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .category-card h3 {
        font-size: 20px;
    }

    .pricing strong {
        font-size: 24px;
    }

    .destinations-grid-modern {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .dest-card-modern {
        height: 300px;
    }

    .dest-card-modern.featured {
        grid-column: span 1;
        height: 350px;
    }

    .dest-content {
        padding: 20px;
    }

    .dest-info h3 {
        font-size: 22px;
    }

    .dest-card-modern.featured .dest-info h3 {
        font-size: 26px;
    }

    .dest-flags-modern img {
        width: 36px;
        height: 24px;
    }

    .dest-description {
        font-size: 14px;
    }

    .dest-meta {
        gap: 12px;
    }

    .dest-meta span {
        font-size: 12px;
        padding: 6px 12px;
    }

    .documents-list {
        grid-template-columns: 1fr;
    }

    .requirements-image img {
        height: 300px;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-question h4 {
        font-size: 15px;
        padding-right: 10px;
    }

    .visa-contact-form {
        padding: 25px;
    }

    .modern-form input,
    .modern-form select,
    .modern-form textarea {
        padding: 12px 15px;
        font-size: 14px;
    }

    .btn-submit {
        padding: 14px 28px;
        font-size: 15px;
    }
}
