/* ========================================= */
/*               VISA PAGE CSS               */
/* ========================================= */

/* ========================================= */
/*              HERO SECTION                 */
/* ========================================= */

.visa-hero {
    padding: 50px 20px 50px;
    background: linear-gradient(135deg, #fff5e6, #ffe0d6);
    text-align: center;
}

.visa-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* ========================================= */
/*           MAIN CONTENT SECTION            */
/* ========================================= */

.visa-section {
    padding: 50px 20px;
    background: #ffffff;
    position: relative;
}

/* Soft curved separator */
.visa-section::before {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 40px;
    background: #ffffff;
}

/* ========================================= */
/*                HEADINGS                   */
/* ========================================= */

.visa-container h1 {
    font-size: 44px;
    color: #c62828;
    margin-bottom: 15px;
    font-weight: 700;
}

.visa-container h2 {
    font-size: 22px;
    color: #444;
    margin-bottom: 40px;
    font-weight: 500;
}

.intro {
    font-size: 16px;
    line-height: 1.9;
    color: #555;
}

/* ========================================= */
/*           WHY CHOOSE SECTION              */
/* ========================================= */

.why-choose {
    margin-bottom: 80px;
}

.why-choose h3 {
    font-size: 26px;
    color: #c62828;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

/* Accent underline */
.why-choose h3::after {
    content: "";
    width: 60%;
    height: 3px;
    background: linear-gradient(135deg, #ffb74d, #e53935);
    display: block;
    margin: 8px auto 0;
    border-radius: 10px;
}

.why-choose ul {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.why-choose li {
    margin: 15px 0;
    font-size: 16px;
    color: #555;
    padding-left: 30px;
    text-align: left;
    position: relative;
    transition: 0.3s ease;
}

/* Check icon */
.why-choose li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
    color: #e53935;
    font-size: 16px;
}

/* Hover effect */
.why-choose li:hover {
    transform: translateX(6px);
    color: #c62828;
}

/* ========================================= */
/*              JOURNEY SECTION              */
/* ========================================= */

.journey {
    margin-bottom: 80px;
}

.journey h3 {
    font-size: 26px;
    color: #c62828;
    margin-bottom: 25px;
}

.journey p {
    font-size: 16px;
    line-height: 1.9;
    color: #555;
}

/* ========================================= */
/*                CTA SECTION                */
/* ========================================= */

.cta-box {
    padding: 60px 40px;
    border-radius: 25px;
    background: linear-gradient(135deg, #fff5e6, #ffe0d6);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    transition: 0.3s ease;
}

.cta-box:hover {
    transform: translateY(-5px);
}

.cta-box h3 {
    font-size: 28px;
    color: #c62828;
    margin-bottom: 20px;
}

.cta-box p {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
}

.bold-line {
    font-weight: 600;
    color: #c62828;
    margin-top: 10px;
}

/* ========================================= */
/*               CTA BUTTON                  */
/* ========================================= */

.primary-btn {
    margin-top: 30px;
    padding: 14px 40px;
    border: none;
    border-radius: 30px;
    background: linear-gradient(135deg, #ffb74d, #e53935);
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.primary-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(229, 57, 53, 0.3);
}


/* ========================================= */
/*               RESPONSIVE                  */
/* ========================================= */

/* ---------- Large Tablets ---------- */
@media (max-width: 1024px) {

    .visa-section {
        padding: 60px 30px;
    }

    .visa-container h1 {
        font-size: 36px;
    }

    .visa-container h2 {
        font-size: 20px;
    }

    .cta-box {
        padding: 50px 30px;
    }
}


/* ---------- Tablets ---------- */
@media (max-width: 768px) {

    .visa-hero {
        padding: 50px 20px;
    }

    .visa-section {
        padding: 50px 20px;
    }

    .visa-container {
        text-align: center;
    }

    .visa-container h1 {
        font-size: 28px;
    }

    .visa-container h2 {
        font-size: 18px;
        margin-bottom: 25px;
    }

    .intro {
        font-size: 15px;
        padding: 0 5px;
    }

    .why-choose h3,
    .journey h3 {
        font-size: 20px;
    }

    .why-choose ul {
        padding: 0 10px;   /* FIX: prevents tick touching screen edge */
    }

    .why-choose li {
        font-size: 14px;
        padding-left: 26px;
        line-height: 1.6;
    }

    .journey p {
        font-size: 15px;
    }

    .cta-box {
        padding: 40px 20px;
        border-radius: 18px;
    }

    .cta-box h3 {
        font-size: 22px;
    }

    .primary-btn {
        font-size: 15px;
        padding: 14px 30px;
    }
}


/* ---------- Mobile ---------- */
@media (max-width: 480px) {

    .visa-hero {
        padding: 40px 15px;
    }

    .visa-section {
        padding: 40px 15px;
    }

    .visa-container h1 {
        font-size: 24px;
        line-height: 1.3;
    }

    .visa-container h2 {
        font-size: 16px;
    }

    .intro {
        font-size: 14px;
    }

    .why-choose ul {
        padding: 0 12px;  /* extra safety for small screens */
    }

    .why-choose li {
        font-size: 13px;
        padding-left: 24px;
    }

    .journey p {
        font-size: 14px;
    }

    .cta-box {
        padding: 30px 18px;
        border-radius: 16px;
    }

    .primary-btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
}


.visa-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 600;
    color: #1565c0;
    text-decoration: underline;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: 0.3s ease;
}

.visa-btn:hover {
    color: #0d47a1;
}