:root {
    --main-color: #1a6b8e;
    --second-color: #294151;
    --rounded-edge: 30px;
    --rounded-edge-mobile: 20px;
}

.header-with-sky {
    background: url('/assets/images/sky.png');
    min-height: 100px;
}

a {
    color: var(--main-color);
    text-decoration: none;
}

.flag-icon {
    border-radius: 2px;
    transition: opacity 0.2s;
}
.flag-icon:hover {
    opacity: 0.8;
}
.navbar-brand img {
    max-height: 40px;
    width: auto;
}
.nav-link {
    color: #333 !important;
    font-weight: 500;
}
.nav-link:hover {
    color: #007bff !important;
}

header .container-fluid {
    padding-left: 2rem;
    padding-right: 2rem;
}

.home-banner {
    background-image: url('/assets/images/Banner.png');
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    display: flex;
    align-items: center;
}

.banner-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
}

.banner-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.95;
}

.travel-form {
    max-width: 450px;
    backdrop-filter: blur(10px);
}

.travel-form .form-select {
    border: 1px solid #e0e0e0;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 0.95rem;
}

.travel-form .form-select:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.travel-form .btn-primary {
    background: linear-gradient(45deg, #007bff, #0056b3);
    border: none;
    padding: 12px 24px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.travel-form .btn-primary:hover {
    background: linear-gradient(45deg, #0056b3, #004085);
    transform: translateY(-1px);
    transition: all 0.2s ease;
}

.min-vh-75 {
    min-height: 75vh;
}

/* Popular Destinations Section */

.destinations-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--second-color);
}

.destinations-title .highlight {
    color: var(--second-color);
    font-weight: 500;
}

.destination-card {
    background: white;
    border-radius: var(--rounded-edge);
    padding: 2rem 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.destination-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.destination-image {
    border-radius: var(--rounded-edge-mobile);
    margin-bottom: 1.5rem;
}

.destination-img {
    border-radius: var(--rounded-edge-mobile);
    transition: transform 0.3s ease;
}

.destination-card:hover .destination-img {
    transform: scale(1.05);
}

.destination-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--second-color);
    margin-bottom: 0.5rem;
}

.destination-subtitle {
    font-size: 1rem;
    font-weight: 600;
    color: var(--main-color);
    margin-bottom: 1rem;
}

.destination-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 2rem;
}

.btn-destination {
    background: linear-gradient(45deg, var(--main-color), #1e6b8c);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-destination:hover {
    background: linear-gradient(45deg, #1e6b8c, var(--second-color));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(39, 134, 174, 0.3);
    color: white;
}

@media (max-width: 768px) {
    .banner-title {
        font-size: 2.2rem;
    }
    
    .banner-subtitle {
        font-size: 1rem;
    }
    
    .travel-form {
        margin-top: 2rem;
    }
    
    .destinations-title {
        font-size: 2rem;
    }
    
    .destination-card {
        margin-bottom: 2rem;
    }
    
    .destination-name {
        font-size: 1.5rem;
    }
    
    .destination-img {
        height: 180px;
    }
}

.explore-btn {
    transition: all 0.3s ease;
    cursor: pointer;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

.explore-btn:hover {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 4px 15px rgba(26, 107, 142, 0.3));
}

.explore-btn:active {
    transform: scale(0.95);
    transition: all 0.1s ease;
}

/* Process Section */
.process-section {
    background-image: url('/assets/images/BG-Steps.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    min-height: 600px;
}

.process-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--second-color);
    margin-bottom: 3rem;
}

.process-title .highlight {
    color: var(--second-color);
}

.process-step {
    padding: 2rem 1rem;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.step-number-img {
    width: 80px;
    height: 80px;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.1));
}

.step-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--second-color);
    line-height: 1.3;
}

.step-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    max-width: 280px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .process-title {
        font-size: 2rem;
        margin-bottom: 0;
    }
    
    .step-number-img {
        width: 60px;
        height: 60px;
    }
    
    .step-title {
        font-size: 1.2rem;
    }
    
    .step-description {
        font-size: 0.9rem;
    }
    
    .process-section {
        min-height: 500px;
    }

    .process-step {
        margin-bottom: 0rem;
    }
}

@media (max-width: 576px) {
    .process-step {
        margin-bottom: 0rem;
    }
    
    .process-section {
        min-height: 400px;
    }
}

/* Why Choose Us Section */
.why-choose-us {
    background-color: #f8f9fa;
    background-image: url('/assets/images/worldmap.png');
    background-repeat: no-repeat;
    background-position: center right;
    position: relative;
    min-height: 600px;
}

.why-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--second-color);
    margin-bottom: 3rem;
}

.benefits-list {
    padding-right: 2rem;
    position: relative;
    z-index: 2;
}

.benefit-item {
    position: relative;
    padding-left: 0;
}

.benefit-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: black;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.thin-title {
    font-weight: 400 !important;
}

.benefit-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 0;
}

.world-map-space {
    min-height: 400px;
    position: relative;
}

.disclaimer {
    padding: 1.5rem;
    border-radius: 8px;
    position: relative;
}

.disclaimer-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 0;
}

.disclaimer-text strong {
    color: var(--second-color);
}

/* Decorative elements */
.why-choose-us::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 0;
    width: 170px;
    height: 170px;
    background-image: url('/assets/images/Semi-Circle01.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left;
    opacity: 0.8;
    z-index: 1;
}

.why-choose-us::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background-image: url('/assets/images/Semi-Circle02.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right;
    opacity: 0.8;
    z-index: 1;
}

@media (max-width: 1200px) {
    .why-choose-us {
        background-size: 50%;
        background-position: right center;
    }
}

@media (max-width: 992px) {
    .benefits-list {
        padding-right: 0;
        margin-bottom: 3rem;
    }
    
    .why-choose-us {
        background-size: 60%;
        background-position: center bottom;
        min-height: 500px;
    }
    
    .world-map-space {
        min-height: 200px;
    }
}

@media (max-width: 768px) {
    .why-title {
        font-size: 2rem;
    }
    
    .benefit-title {
        font-size: 1.2rem;
    }
    
    .benefit-description {
        font-size: 0.95rem;
    }
    
    .disclaimer {
        padding: 1rem;
        background-color: rgba(255, 255, 255, 0.98);
    }
    
    .disclaimer-text {
        font-size: 0.85rem;
    }
    
    .why-choose-us {
        background-size: 80%;
        background-position: center bottom;
        min-height: 400px;
    }
}

@media (max-width: 576px) {
    .benefit-item {
        margin-bottom: 2rem !important;
    }
    
    .why-choose-us::before,
    .why-choose-us::after {
        display: none;
    }
    
    .why-choose-us {
        background-size: 100%;
        background-position: center right;
    }
    
    .world-map-space {
        display: none;
    }
}

/* Arrival Card Selection Section */
.arrival-card-section {
    /* background: linear-gradient(135deg, #e8ecf0 0%, #d6dde4 100%); */
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

/* Background gris uniquement pour la partie basse avec la femme et le formulaire */
.arrival-card-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #e8ecf0 0%, #d6dde4 100%);
    z-index: -5;
    height: 200px;
}

.woman-image-container {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.woman-img {
    max-width: 90%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
}

.arrival-card-content {
    padding: 4rem 3rem 4rem 0;
    max-width: 600px;
    margin: 0 auto;
}

.arrival-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--second-color);
    line-height: 1.2;
    margin-bottom: 2rem;
}

.arrival-title .highlight {
    color: var(--second-color);
}

.arrival-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 3rem;
}

.arrival-description p:first-child {
    font-weight: 600;
    color: var(--second-color);
}

.form-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--main-color);
    text-align: center;
    margin-bottom: 2rem;
}

.arrival-card-form .form-label {
    font-weight: 600;
    color: var(--second-color);
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.arrival-card-form .form-select {
    border: 1px solid #ccc;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 0.95rem;
    background-color: white;
    color: #666;
    transition: all 0.3s ease;
    height: 55px;
}

.arrival-card-form .form-select:focus {
    border-color: var(--main-color);
    box-shadow: 0 0 0 0.2rem rgba(39, 134, 174, 0.25);
    outline: none;
}

.btn-validate {
    background: var(--main-color);
    color: white;
    border: none;
    padding: 15px 50px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    min-width: 180px;
}

.btn-validate:hover {
    background: #1e6b8c;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(39, 134, 174, 0.3);
    color: white;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .arrival-title {
        font-size: 2.5rem;
    }
    
    .arrival-card-content {
        padding: 3rem 2rem;
    }
}

@media (max-width: 992px) {
    .arrival-card-section {
        min-height: auto;
        padding: 4rem 0;
    }
    
    .woman-image-container {
        margin-bottom: 3rem;
        text-align: center;
    }
    
    .arrival-card-content {
        padding: 2rem;
    }
    
    .arrival-title {
        font-size: 2.2rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .arrival-title {
        font-size: 1.8rem;
    }
    
    .form-title {
        font-size: 1.4rem;
    }
    
    .arrival-card-content {
        padding: 1.5rem;
    }
    
    .arrival-description {
        font-size: 1rem;
    }
    
    .woman-img {
        max-width: 100%;
        max-height: 400px;
    }
}

@media (max-width: 576px) {
    .arrival-card-content {
        padding: 1rem;
    }
    
    .arrival-title {
        font-size: 1.6rem;
    }
    
    .btn-validate {
        padding: 12px 40px;
        font-size: 0.9rem;
        min-width: 160px;
    }
    
    .arrival-card-form .form-select {
        padding: 12px 15px;
        height: 50px;
    }
}

/* Footer Styles */
.top-footer {
    margin-bottom: -120px;
    z-index: 10;
}

#travel-assistance-card {
    position: relative;
    z-index: 10;
}

footer .rounded-4 {
    border-top-left-radius: var(--rounded-edge) !important;
    border-top-right-radius: var(--rounded-edge) !important;
}

footer h6 {
    font-weight: 600;
    font-size: 1.1rem;
}

footer ul li a {
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

footer ul li a:hover {
    color: var(--main-color) !important;
    padding-left: 8px;
}

footer ul li a svg {
    transition: transform 0.3s ease;
}

footer ul li a:hover svg {
    transform: translateX(3px);
}

.border-white {
    border-radius: 15px;
}

@media (max-width: 768px) {
    .top-footer {
        margin-bottom: -80px;
    }
    
    #travel-assistance-card {
        margin: 0 1rem;
    }
    
    footer .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    footer .col-11 {
        padding: 2rem 1.5rem !important;
    }

    .arrival-card-section::before {
        top: 15%;
        height: 150px;
    }
}

@media (max-width: 576px) {
    .top-footer {
        margin-bottom: -60px;
    }
    
    footer .col-11 {
        padding: 1.5rem 1rem !important;
    }
    
    footer .col-11 p {
        font-size: 0.9rem;
    }
}

@media (min-width: 768px) {
    footer .main {
        border-radius: 30px 30px 0 0 !important;
    }

    footer .info {
        left: 25% !important;
    }
}

/* Section Choix de la destination par continent */
.choose-destination-section .continent-title {
    font-size: 1.25rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    border-bottom: 2px solid #2786ae;
}
.choose-destination-section a {
    color: black;
}
.choose-destination-section .continent-title img {
    width: 30px;
    vertical-align: middle;
}
.choose-destination-section .country-list {
    columns: 2;
    column-gap: 1.5rem;
    padding-left: 0.5rem;
    font-size: 1rem;
    margin-bottom: 0;
    list-style: disc inside;
}
.choose-destination-section .one-col {
    columns: 1 !important;
}
.choose-destination-section .country-list li {
    margin-bottom: 0.3rem;
    break-inside: avoid;
}
.choose-destination-section .country-list li::marker {
    color: #47a20c;
}
@media (max-width: 992px) {
    .choose-destination-section .country-list {
        columns: 1;
        font-size: 0.97rem;
    }
}
@media (max-width: 576px) {
    .choose-destination-section .continent-title {
        font-size: 1.1rem;
        margin-bottom: 0.7rem;
    }
    .choose-destination-section .country-list {
        font-size: 0.93rem;
    }
}