/* ============================================
   VISA PAGE STYLES
   Clean, modern, and responsive design
   ============================================ */

:root {
    /* Color Variables */
    --primary-color: #BE9E4A;
    --primary-hover: #a08a42;
    --text-primary: #2E2E2E;
    --text-secondary: #6B7280;
    --border-color: #E5E7EB;
    --background-light: #F7F6F3;
    --white: #FFFFFF;
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
    --transition: all 0.2s ease;
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --gold-color: #BE9E4A;
    --dark-bg: #3a3a3a;
}

* {
    font-family: 'Open Sans', -apple-system, Roboto, Helvetica, sans-serif;
    box-sizing: border-box;
}

body {
    background: var(--white);
    margin: 0;
    padding: 0;
    color: var(--text-primary);
    font-size: 14px;
    line-height: 1.5;
}

/* ============================================
   LAYOUT
   ============================================ */
.main-container {
    background: var(--white);
    min-height: 100vh;
    margin: 0 auto;
    max-width: 1440px;
}

/* ============================================
   VISA HERO SECTION - MODERN DESIGN
   ============================================ */
.visa-hero-section {
    background: linear-gradient(135deg, #2d2d2d 0%, #3a3a3a 100%);
    position: relative;
    overflow: hidden;
}

.visa-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.visa-hero-section .container-fluid {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    padding: 0 40px;
}

/* Hero Content */
.hero-content {
    padding: 20px 0;
}

.badge-premium {
    display: inline-block;
    background: rgba(190, 158, 74, 0.2);
    color: var(--gold-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.hero-main-title {
    color: var(--white);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-main-title .text-gold {
    color: var(--gold-color);
}

.hero-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 90%;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 35px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.05);
    padding: 5px 8px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-badge i {
    color: var(--gold-color);
    font-size: 18px;
}

.hero-footer-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    margin-top: 20px;
    margin-bottom: 0;
}

.hero-footer-text i {
    color: var(--gold-color);
    font-size: 12px;
}

/* Advantages Card */
.advantages-card-wrapper {
    position: relative;
    padding: 0;
}

.advantages-card-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, #BE9E4A, #c39e36);
    border-radius: 24px;
    transform: rotate(3deg);
    opacity: 0.2;
    z-index: 0;
    pointer-events: none;
}

.advantages-card {
    background: var(--white);
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.card-header-custom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 15px 15px;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    z-index: 1;
}

.card-header-custom h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.card-header-custom i {
    color: var(--gold-color);
    font-size: 24px;
}

.advantages-list {
    padding: 25px 15px 19px;
    position: relative;
    z-index: 1;
}

.advantage-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 15px;
    border-bottom: none;
    background: #f7f6f2 !important;
    border-radius: 12px;
    margin-bottom: 15px;
}

.advantage-item:last-child {
    margin-bottom: 0;
}

.advantage-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold-color) 0%, #d4b067 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 22px;
}

.advantage-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 4px 0;
}

.advantage-content p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
}

.visa-hero-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 991px) {
    .visa-hero-section {
        padding: 60px 0;
    }

    .hero-main-title {
        font-size: 36px;
    }

    .hero-description {
        font-size: 16px;
        max-width: 100%;
    }

    .advantages-card {
        margin-top: 40px;
    }
}

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

    .visa-hero-section .container-fluid {
        padding: 0 20px;
    }

    .hero-main-title {
        font-size: 28px;
    }

    .hero-description {
        font-size: 15px;
    }

    .trust-badges {
        flex-direction: column;
        gap: 12px;
    }

    .trust-badge {
        width: 100%;
        justify-content: center;
    }

    .card-header-custom {
        padding: 20px;
    }

    .advantages-list {
        padding: 15px 20px 20px;
    }

    .advantage-item {
        padding: 15px 0;
    }
}

/* ============================================
   OTHER SECTIONS STYLES
   ============================================ */

/* Premium Services Section */
.premium-services-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.services-title {
    font-size: 36px;
    font-weight: 700;
    color: #000;
    margin-bottom: 16px;
}



.service-card {
    background: #f7f6f2;
    border-radius: 20px;
    padding: 20px 25px;
    text-align: left;
    transition: all 0.3s ease;
    height: 100%;
    border: none;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #c0a05a;
}

.service-icon {
    width: 65px;
    height: 65px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 28px 0;
    font-size: 32px;
    color: var(--white);
}

.service-icon-blue {
    background: #4285f4;
}

.service-icon-gold {
    background: #c0a05a;
}

.service-icon-green {
    background: #34a853;
}

.service-title {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 16px;
    line-height: 1.3;
}

.service-description {
    font-size: 14px;
    color: #7d8a99;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

/* Typography */
.hero-title {
    color: var(--text-primary);
    font-size: 24px;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 10px;
}

.hero-subtitle {
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    margin: 0 0 40px;
}

.heading-primary {
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.heading-secondary {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.text-muted {
    color: var(--text-secondary);
    font-size: 14px;
    margin: 0;
}

/* Requirement Box */
.requirement-box {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    border: 1px solid #c8a648;
    background-color: #fdfcf9;
    border-radius: 6px;
    padding: 20px;
    margin-bottom: 20px;
}

.requirement-icon {
    font-size: 40px;
    color: #444;
    flex-shrink: 0;
}

.requirement-content h4 {
    margin: 0 0 8px 0;
    font-size: 18px;
    font-weight: 700;
    color: #1d1d1f;
}

.requirement-content p {
    margin: 0;
    font-size: 16px;
    color: #333;
    line-height: 1.5;
}

/* Nationality Grid */
.nationality-subtitle {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 16px;
    margin-top: 8px;
}

.nationality-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
    margin-top: 16px;
    margin-bottom: 20px;
}

.nationality-option {
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 12px 8px;
    cursor: default;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-height: 85px;
    text-align: center;
}

.nationality-flag {
    width: 32px;
    height: 24px;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.flag-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.nationality-name {
    font-size: 0.85rem;
    font-weight: 500;
    color: #1e293b;
    line-height: 1.2;
}

/* ============================================
   COMMENT ÇA MARCHE SECTION (HOW IT WORKS)
   ============================================ */
.how-it-works-section {
    padding: 40px 0;
}

.how-it-works-section .section-header {
    margin-bottom: 60px;
}

.how-it-works-section .section-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.how-it-works-section .section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    font-weight: 400;
}

/* Step Cards */
.step-card {
    background: #FFF;
    border-radius: 20px;
    padding: 40px 25px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: none;
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(190, 158, 74, 0.15);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #BE9E4A 0%, #d4b067 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 25px;
    box-shadow: 0 4px 15px rgba(190, 158, 74, 0.3);
}

.step-icon {
    color: #BE9E4A;
    margin-bottom: 25px;
    opacity: 0.9;
}

.step-icon svg {
    width: 60px;
    height: 60px;
}

.step-title {
    color: #2E2E2E;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}

.step-description {
    color: #6B7280;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .how-it-works-section {
        padding: 60px 0;
    }

    .how-it-works-section .section-title {
        font-size: 32px;
    }

    .how-it-works-section .section-subtitle {
        font-size: 16px;
    }

    .step-card {
        padding: 35px 20px;
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .how-it-works-section {
        padding: 50px 0;
    }

    .how-it-works-section .section-title {
        font-size: 28px;
    }

    .how-it-works-section .section-subtitle {
        font-size: 15px;
    }

    .step-card {
        padding: 30px 20px;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .step-icon svg {
        width: 50px;
        height: 50px;
    }

    .step-title {
        font-size: 18px;
    }

    .step-description {
        font-size: 14px;
    }
}

/* ============================================
   CTA SECTION (CALL TO ACTION)
   ============================================ */
.cta-section {
    background: #c39e36;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="cta-grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23cta-grid)"/></svg>');
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    color: #ffffff;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-subtitle {
    color: rgba(255, 255, 255, 0.95);
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta {
    background: #ffffff;
    color: #BE9E4A !important;
    font-size: 18px;
    font-weight: 700;
    padding: 18px 45px;
    border-radius: 8px;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

.btn-cta:hover {
    background: #f8f8f8;
    color: #BE9E4A;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.btn-cta i {
    font-size: 16px;
}

/* Responsive */
@media (max-width: 991px) {
    .cta-section {
        padding: 60px 0;
    }

    .cta-title {
        font-size: 32px;
    }

    .cta-subtitle {
        font-size: 16px;
        margin-bottom: 35px;
    }

    .btn-cta {
        font-size: 16px;
        padding: 16px 35px;
    }
}

@media (max-width: 767px) {
    .cta-section {
        padding: 50px 20px;
    }

    .cta-title {
        font-size: 26px;
        margin-bottom: 16px;
    }

    .cta-subtitle {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .btn-cta {
        font-size: 15px;
        padding: 14px 30px;
        width: 100%;
        justify-content: center;
    }

    /* Trust Badges Responsive Alignment */
    .trust-badges {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        width: 100%;
        margin-bottom: 1.5rem;
    }

    .trust-badge {
        width: 90%;
        max-width: 350px;
        text-align: left;
        margin: 0 auto;
        justify-content: flex-start;
        display: flex;
        align-items: center;
        gap: 8px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 10px;
        padding: 10px 0 10px 18px;
    }

    .trust-badge i {
        font-size: 1.2rem;
        color: #c9a14a;
    }

    .trust-badge small {
        font-size: 1rem;
        color: #fff;
        font-weight: 600;
    }
}