/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #6EC1E4;
    --secondary: #54595F;
    --text: #7A7A7A;
    --accent: #61CE70;
    --dark: #111111;
    --navy: #0F172A;
    --gold: #D9C2AC;
    --white: #FFFFFF;
    --light-bg: #EDF3F5;
    --copyright-color: #0D1529;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--white);
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    text-align: center;
}

.btn-dark {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

.btn-dark:hover {
    background: transparent;
    color: var(--navy);
}

.btn-outline-dark {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
}

.btn-outline-dark:hover {
    background: var(--navy);
    color: var(--white);
}

.btn-accent {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

.btn-accent:hover {
    background: #4db85a;
    border-color: #4db85a;
}

/* ===== HEADER ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0px 0px 80px 0px rgba(0, 0, 0, 0.08);
}

.header-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--light-bg);
    border-radius: 0 0 10px 10px;
}

.logo img {
    height: 60px;
    width: auto;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.main-nav ul {
    display: flex;
    gap: 25px;
}

.main-nav a {
    font-family: 'Mulish', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    padding: 8px 0;
    position: relative;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--navy);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--navy);
    transition: width 0.3s;
}

.main-nav a:hover::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    background: var(--navy);
    color: var(--white);
    border: none;
    padding: 10px 14px;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 999;
    padding: 20px;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav a {
    display: block;
    padding: 14px 0;
    font-weight: 600;
    color: var(--dark);
    border-bottom: 1px solid #eee;
}

/* ===== HERO ===== */
.hero {
    min-height: 80vh;
    background: url('https://myvisioncanada.com/wp-content/uploads/2025/10/1920x725.jpg') center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 20px 80px;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.0);
}

.hero-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
}

.hero-content h1 {
    font-size: 60px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    line-height: 80px;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-content h5 {
    font-size: 22px;
    font-weight: 600;
    color: #333399;
    margin-bottom: 10px;
    text-shadow: 0 1px 5px rgba(255,255,255,0.8);
}

.hero-content h6 {
    font-size: 15px;
    font-weight: 400;
    color: var(--dark);
    max-width: 700px;
    margin: 0 auto;
    text-shadow: 0 1px 3px rgba(255,255,255,0.6);
}

/* ===== ABOUT ===== */
.about {
    padding: 80px 0 40px;
}

.about-row {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.about-img {
    flex: 0 0 45%;
}

.about-img img {
    width: 100%;
    border-radius: 10px;
}

.about-text {
    flex: 1;
}

.subtitle {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.about-text h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--dark);
    text-transform: uppercase;
    line-height: 50px;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 16px;
    color: var(--text);
    line-height: 28px;
    margin-bottom: 15px;
}

.about-author {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.author-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
}

.author-role {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
}

/* ===== MISSION ===== */
.mission {
    padding: 60px 0 40px;
}

.mission-banner {
    background: var(--light-bg) url('https://myvisioncanada.com/wp-content/uploads/2025/10/service-bg.png') center center / cover no-repeat;
    border-radius: 20px;
    padding: 80px 40px;
    text-align: center;
    min-height: 470px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.mission-banner h2 {
    font-size: 50px;
    font-weight: 700;
    color: var(--navy);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.mission-banner p {
    font-size: 18px;
    color: var(--text);
    max-width: 800px;
    margin-bottom: 30px;
    line-height: 30px;
}

.mission-banner strong {
    color: var(--navy);
}

/* Mission Cards */
.mission-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mission-card {
    background: var(--light-bg);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.11);
    transition: transform 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-8px);
}

.card-img {
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.mission-card:hover .card-img img {
    transform: scale(1.08);
}

.card-body {
    padding: 25px 20px;
}

.card-body h3 {
    font-size: 26px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 12px;
}

.card-body p {
    font-size: 15px;
    color: var(--text);
    line-height: 26px;
    margin-bottom: 12px;
}

details summary {
    color: var(--accent);
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
}

details summary:hover {
    color: #4db85a;
}

details[open] summary {
    margin-bottom: 10px;
}

details p {
    font-size: 14px;
}

/* ===== OFFICES IMAGE SECTION ===== */
.offices-img {
    padding: 60px 0 40px;
}

.offices-img-row {
    display: flex;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 40px;
}

.offices-img-left {
    flex: 0 0 55%;
    background: var(--light-bg) url('https://myvisioncanada.com/wp-content/uploads/2025/10/our-office-bg.png') 300px 0 / 100% auto no-repeat;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 600px;
}

.offices-img-left h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--dark);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.offices-img-left p {
    font-size: 16px;
    color: var(--text);
    line-height: 28px;
    margin-bottom: 20px;
}

.offices-img-left .italic {
    font-style: italic;
    margin-top: 20px;
    margin-bottom: 0;
}

.offices-img-right {
    flex: 0 0 45%;
    background: var(--light-bg);
}

.offices-img-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* City Cards */
.city-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.city-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.11);
    transition: transform 0.3s ease;
}

.city-card:hover {
    transform: translateY(-5px);
}

.city-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.city-info {
    padding: 20px;
}

.city-info h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.city-info p {
    font-size: 14px;
    color: var(--text);
    line-height: 22px;
}

/* ===== ADMISSIBILITÉ ===== */
.admissibility {
    padding: 60px 0;
    background: var(--light-bg);
    position: relative;
}

.admissibility::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://myvisioncanada.com/wp-content/uploads/2025/10/service-bg.png') center center / cover no-repeat;
    opacity: 0.5;
}

.admissibility .container {
    position: relative;
    z-index: 1;
}

.admissibility-row {
    display: flex;
    gap: 60px;
    align-items: center;
}

.admissibility-left {
    flex: 0 0 48%;
}

.admissibility-left h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--dark);
    text-transform: uppercase;
    margin-bottom: 15px;
}

.admissibility-left p {
    font-size: 16px;
    color: var(--text);
    margin-bottom: 25px;
    line-height: 28px;
}

.admissibility-right {
    flex: 1;
    text-align: center;
}

.admissibility-right blockquote {
    font-size: 22px;
    font-style: italic;
    color: var(--dark);
    line-height: 36px;
    margin-bottom: 15px;
    position: relative;
    padding: 20px 30px;
}

.admissibility-right blockquote::before {
    content: '\201C';
    font-size: 60px;
    color: var(--gold);
    position: absolute;
    top: -10px;
    left: 0;
    font-family: Georgia, serif;
}

.admissibility-right cite {
    font-size: 18px;
    font-weight: 600;
    color: var(--navy);
    font-style: normal;
}

/* ===== LIVE ===== */
.live {
    padding: 60px 0 40px;
}

.live-row {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.live-text {
    flex: 0 0 40%;
}

.live-text h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--dark);
    text-transform: uppercase;
    margin-bottom: 15px;
}

.live-text p {
    font-size: 16px;
    color: var(--text);
    line-height: 28px;
    margin-bottom: 25px;
}

.live-videos {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.video-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}

.video-item img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.video-item:hover img {
    transform: scale(1.08);
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-size: 18px;
    transition: all 0.3s ease;
    opacity: 0;
}

.video-item:hover .play-btn {
    opacity: 1;
    background: var(--accent);
    color: var(--white);
}

/* ===== OFFICES CONTACT ===== */
.offices-contact {
    padding: 60px 0 40px;
}

.offices-title-banner {
    background: var(--light-bg) url('https://myvisioncanada.com/wp-content/uploads/2025/10/service-bg.png') center center / cover no-repeat;
    border-radius: 20px;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.badge {
    background: var(--gold);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Office Cards */
.office-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.office-card {
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0px 0px 80px 0px rgba(0, 0, 0, 0.07);
    padding: 20px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.office-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.office-flag {
    flex: 0 0 50px;
}

.office-flag img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 5px;
}

.office-details {
    flex: 1;
}

.office-details h6 {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 5px;
    text-transform: uppercase;
}

.office-details p {
    font-size: 12px;
    color: var(--text);
    line-height: 18px;
    margin-bottom: 8px;
}

.office-details a {
    font-size: 12px;
    color: var(--navy);
    font-weight: 600;
    display: block;
}

.office-details a:hover {
    color: var(--accent);
}

.office-details a i {
    margin-right: 5px;
}

/* ===== CONTACT ===== */
.contact {
    padding: 60px 0 40px;
}

.contact-banner {
    background: var(--light-bg) url('https://myvisioncanada.com/wp-content/uploads/2025/10/service-bg.png') center center / cover no-repeat;
    border-radius: 20px;
    min-height: 470px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 40px;
    margin-bottom: 40px;
}

.contact-banner h2 {
    font-size: 50px;
    font-weight: 700;
    color: var(--navy);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.contact-banner p {
    font-size: 18px;
    color: var(--text);
    max-width: 700px;
    margin-bottom: 30px;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--navy);
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 23% 46% 23%;
    gap: 40px;
    padding: 80px 0 60px;
}

.footer-about img {
    height: 80px;
    margin-bottom: 20px;
}

.footer-about p {
    color: #94a3b8;
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-size: 16px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-links h4 {
    font-size: 22px;
    font-weight: 600;
    color: var(--light-bg);
    text-transform: uppercase;
    margin-bottom: 25px;
}

.footer-links ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.footer-links ul li i {
    color: var(--light-bg);
    font-size: 12px;
}

.footer-links a {
    font-family: 'Mulish', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--light-bg);
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-office h4 {
    font-size: 22px;
    font-weight: 600;
    color: var(--light-bg);
    text-transform: uppercase;
    margin-bottom: 25px;
}

.footer-office-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.footer-office-item i {
    color: var(--accent);
    font-size: 16px;
    margin-top: 5px;
}

.footer-office-item strong {
    display: block;
    color: var(--white);
    font-size: 16px;
    margin-bottom: 5px;
}

.footer-office-item p {
    font-family: 'Mulish', sans-serif;
    font-size: 12px;
    color: #969696;
    line-height: 18px;
}

.footer-bottom {
    background: var(--light-bg);
    padding: 15px 0;
    text-align: center;
}

.footer-bottom p {
    font-family: 'Mulish', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--copyright-color);
}

/* ===== RESPONSIVE — LAPTOP (max-width: 1366px) ===== */
@media (max-width: 1366px) {
    .container {
        max-width: 1140px;
    }
}

/* ===== RESPONSIVE — TABLET (max-width: 1024px) ===== */
@media (max-width: 1024px) {
    .container {
        max-width: 1024px;
        padding: 0 10px;
    }

    .main-nav {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .btn-dark, .header-right > .btn-outline-dark {
        display: none;
    }

    .hero {
        background-image: url('https://myvisioncanada.com/wp-content/uploads/2025/10/mobile.jpg');
        background-position: center right;
        min-height: 100vh;
    }

    .hero-content h1 {
        font-size: 52px;
        line-height: 72px;
    }

    .about-img img {
        height: 1200px;
        object-fit: cover;
    }

    .mission-cards {
        grid-template-columns: repeat(2, 1fr);
        margin-top: -120px;
    }

    .offices-img-row {
        flex-direction: column;
    }

    .offices-img-left, .offices-img-right {
        flex: none;
    }

    .offices-img-left {
        min-height: auto;
        padding: 60px 30px;
    }

    .offices-img-right img {
        height: 750px;
    }

    .office-cards {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        gap: 50px 20px;
    }

    .footer-col.footer-about {
        flex: 0 0 48%;
    }

    .footer-col.footer-links {
        flex: 0 0 60%;
        order: 3;
    }

    .footer-col.footer-office {
        flex: 0 0 41%;
        order: 2;
    }
}

/* ===== RESPONSIVE — MOBILE (max-width: 767px) ===== */
@media (max-width: 767px) {
    .container {
        max-width: 767px;
        padding: 0 10px;
    }

    /* Header mobile */
    .header-inner {
        padding: 8px 10px;
        flex-wrap: nowrap;
        gap: 5px;
    }

    .logo img {
        height: 70px;
        width: auto;
    }

    .header-right {
        gap: 5px;
        flex-wrap: nowrap;
    }

    /* Hero mobile */
    .hero {
        min-height: 80vh;
        padding: 60px 10px 60px;
        background-image: url('https://myvisioncanada.com/wp-content/uploads/2025/10/mobile.jpg');
        background-position: top center;
    }

    .hero-content h1 {
        font-size: 26px;
        line-height: 34px;
    }

    .hero-content h5 {
        font-size: 14px;
    }

    .hero-content h6 {
        font-size: 13px;
    }

    /* About mobile */
    .about {
        padding: 60px 0 30px;
    }

    .about-row {
        flex-direction: column;
        gap: 30px;
    }

    .about-img {
        flex: none;
        text-align: center;
    }

    .about-img img {
        height: 600px;
        object-fit: cover;
        width: 100%;
    }

    .about-text {
        text-align: center;
    }

    .about-text h2 {
        font-size: 32px;
        line-height: 45px;
    }

    .about-text p {
        font-size: 18px;
        line-height: 28px;
    }

    .about-author {
        align-items: center;
    }

    /* Mission mobile */
    .mission {
        padding: 40px 0 40px;
    }

    .mission-banner {
        padding: 40px 15px;
        min-height: auto;
        margin-bottom: 20px;
    }

    .mission-banner h2 {
        font-size: 32px;
        line-height: 45px;
    }

    .mission-banner p {
        font-size: 18px;
        line-height: 28px;
    }

    .mission-cards {
        grid-template-columns: 1fr;
        margin-top: 0;
    }

    .card-img img {
        height: auto;
    }

    .card-body {
        padding: 15px 10px;
    }

    .card-body h3 {
        font-size: 22px;
        line-height: 32px;
    }

    .card-body p {
        font-size: 18px;
        line-height: 28px;
    }

    /* Offices image section mobile */
    .offices-img {
        padding: 40px 0 40px;
    }

    .offices-img-left {
        padding: 30px 10px;
        border-radius: 20px 20px 0 0;
    }

    .offices-img-left h2 {
        font-size: 32px;
        line-height: 45px;
    }

    .offices-img-left p {
        font-size: 18px;
        line-height: 28px;
    }

    .offices-img-left .italic {
        max-width: 100%;
        text-align: center;
    }

    .offices-img-right {
        border-radius: 0 0 20px 20px;
    }

    .offices-img-right img {
        height: 550px;
    }

    .city-cards {
        grid-template-columns: 1fr;
    }

    /* Admissibility mobile */
    .admissibility {
        padding: 40px 0;
        margin-top: 30px;
    }

    .admissibility-row {
        flex-direction: column;
        text-align: center;
    }

    .admissibility-left {
        flex: none;
        width: 100%;
    }

    .admissibility-left h2 {
        font-size: 32px;
        line-height: 45px;
    }

    .admissibility-left p {
        font-size: 18px;
        line-height: 28px;
    }

    .admissibility-right {
        flex: none;
        width: 100%;
    }

    .admissibility-right blockquote {
        font-size: 18px;
        line-height: 28px;
    }

    /* Live mobile */
    .live {
        padding: 40px 0 40px;
    }

    .live-row {
        flex-direction: column;
        text-align: center;
    }

    .live-text {
        flex: none;
        width: 100%;
    }

    .live-text h2 {
        font-size: 32px;
        line-height: 45px;
    }

    .live-text p {
        font-size: 18px;
        line-height: 28px;
    }

    .live-videos {
        grid-template-columns: 1fr;
        width: 90%;
        margin: 0 auto;
    }

    /* Offices contact mobile */
    .offices-contact {
        padding: 40px 0 40px;
    }

    .offices-title-banner {
        min-height: auto;
        padding: 30px 15px;
    }

    .office-cards {
        grid-template-columns: 1fr;
    }

    .office-card {
        padding: 10px;
    }

    /* Contact mobile */
    .contact {
        padding: 40px 0 40px;
    }

    .contact-banner {
        padding: 40px 15px;
        min-height: auto;
    }

    .contact-banner h2 {
        font-size: 32px;
        line-height: 45px;
    }

    .contact-banner p {
        font-size: 18px;
        line-height: 28px;
    }

    /* Footer mobile — garde padding desktop */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 80px 0 60px;
    }

    .footer-col.footer-about,
    .footer-col.footer-links,
    .footer-col.footer-office {
        flex: none;
        width: 100%;
        order: unset;
    }

    .footer-links ul li {
        gap: 10px;
    }
}

/* ===== RESPONSIVE — SMALL MOBILE (max-width: 480px) ===== */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 22px;
        line-height: 30px;
    }

    .hero-content h5 {
        font-size: 13px;
    }

    .hero-content h6 {
        font-size: 12px;
    }

    .about-text h2 {
        font-size: 26px;
        line-height: 36px;
    }

    .mission-banner h2,
    .contact-banner h2,
    .offices-img-left h2,
    .admissibility-left h2,
    .live-text h2 {
        font-size: 26px;
        line-height: 36px;
    }

    .logo img {
        height: 55px;
    }

    .btn {
        padding: 12px 20px;
        font-size: 13px;
    }

    .about-img img {
        height: 450px;
    }
}

/* ===== JOBS HOME SECTION ===== */
.jobs-home {
    padding: 60px 0 40px;
    background: var(--light-bg);
}

.jobs-home-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 40px;
}

.jobs-home-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--dark);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.jobs-home-header p {
    font-size: 16px;
    color: var(--text);
    line-height: 28px;
}

.jobs-home-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.job-home-card {
    background: var(--white);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.job-home-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.job-home-img {
    position: relative;
    overflow: hidden;
}

.job-home-img .job-placeholder {
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--white);
}

.job-placeholder.j1 { background: linear-gradient(135deg, #0F172A, #1e3a5f); }
.job-placeholder.j2 { background: linear-gradient(135deg, #1e3a5f, #2563eb); }
.job-placeholder.j3 { background: linear-gradient(135deg, #2563eb, #6EC1E4); }

.job-home-type {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--accent);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.job-home-body {
    padding: 20px;
}

.job-home-body h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 10px;
    line-height: 1.3;
}

.job-home-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 10px;
}

.job-home-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: var(--text);
}

.job-home-meta span strong {
    color: var(--primary);
    font-size: 12px;
}

.job-home-salary {
    font-size: 16px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 10px;
}

.job-home-desc {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.job-home-card.expanded .job-home-desc {
    max-height: 300px;
    padding-bottom: 12px;
}

.job-home-desc p {
    font-size: 13px;
    color: var(--text);
    line-height: 20px;
    margin-bottom: 8px;
    padding: 0 20px;
}

.job-home-req {
    font-size: 12px;
    color: var(--secondary);
    background: #f8fafc;
    padding: 8px 12px;
    border-radius: 8px;
    margin: 0 20px 10px;
}

.job-home-expand {
    text-align: center;
    padding: 6px 0;
    color: #cbd5e1;
    transition: transform 0.3s;
    font-size: 12px;
}

.job-home-card.expanded .job-home-expand {
    transform: rotate(180deg);
    color: var(--primary);
}

.btn-postuler {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    padding: 12px;
    background: var(--accent);
    color: var(--white);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

.btn-postuler:hover {
    background: #4db85a;
    transform: translateY(-1px);
    color: var(--white);
}

/* ===== JOBS PAGE ===== */
.jobs-hero {
    min-height: 250px;
    background: url('https://myvisioncanada.com/wp-content/uploads/2025/10/1920x725.jpg') center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 60px;
    text-align: center;
}

.jobs-hero h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
}

.jobs-hero p {
    color: rgba(255,255,255,0.8);
    font-size: 18px;
    margin-top: 10px;
}

.jobs-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 40px 0 60px;
}

/* ===== MODAL GLOBALE ===== */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(4px);
    z-index: 2000;
    align-items: flex-end;
    justify-content: center;
    padding: 0;
}

.modal-overlay.active {
    display: flex;
}

.modal-dialog {
    width: 100%;
    max-width: 580px;
    max-height: 92vh;
    animation: modalSlideUp 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.modal-box {
    background: var(--white);
    border-radius: 24px 24px 0 0;
    overflow: hidden;
    position: relative;
    max-height: 92vh;
    overflow-y: auto;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.2);
}

@keyframes modalSlideUp {
    from { transform: translateY(100%); opacity: 0.6; }
    to { transform: translateY(0); opacity: 1; }
}

.modal-close-x {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 10;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.2);
    color: var(--white);
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.modal-close-x:hover {
    background: rgba(255,255,255,0.35);
    transform: rotate(90deg);
}

.modal-hero {
    background: linear-gradient(135deg, var(--navy) 0%, #1e3a5f 50%, var(--primary) 100%);
    padding: 40px 30px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.modal-hero::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.modal-hero::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 100px;
    height: 100px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.modal-hero-icon {
    width: 64px;
    height: 64px;
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 24px;
    color: var(--white);
    backdrop-filter: blur(10px);
}

.modal-hero h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
    position: relative;
}

.modal-hero p {
    font-size: 13px;
    color: rgba(255,255,255,0.75);
    position: relative;
}

.modal-form {
    padding: 24px 24px 30px;
}

.mf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.mf-field {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #f8fafc;
    border: 1px solid #e8edf3;
    border-radius: 12px;
    padding: 12px 14px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.mf-field:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(110, 193, 228, 0.12);
    background: #fff;
}

.mf-full {
    grid-column: 1 / -1;
}

.mf-icon {
    flex: 0 0 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--navy), #1e3a5f);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 13px;
    margin-top: 2px;
}

.mf-input {
    flex: 1;
    min-width: 0;
}

.mf-input label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.req {
    color: #ef4444;
}

.mf-optional {
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    color: #94a3b8;
    font-size: 11px;
}

.mf-control {
    width: 100%;
    padding: 8px 0;
    border: none;
    background: transparent;
    font-size: 14px;
    font-family: inherit;
    color: var(--dark);
    outline: none;
}

.mf-control::placeholder {
    color: #b0bec5;
}

select.mf-control {
    appearance: none;
    cursor: pointer;
}

.mf-submit {
    width: 100%;
    padding: 16px;
    margin-top: 20px;
    background: linear-gradient(135deg, var(--accent) 0%, #4db85a 100%);
    color: var(--white);
    border: none;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(97, 206, 112, 0.35);
}

.mf-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(97, 206, 112, 0.45);
}


/* ===== RESPONSIVE JOBS & MODAL ===== */
@media (max-width: 1024px) {
    .jobs-home-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

@media (max-width: 767px) {
    .jobs-home { padding: 40px 0; }
    .jobs-home-header h2 { font-size: 32px; line-height: 45px; }
    .jobs-home-grid { grid-template-columns: 1fr; }
    .jobs-page-grid { grid-template-columns: 1fr; }
    .jobs-hero h1 { font-size: 32px; }
    .modal-dialog { max-width: 100%; max-height: 100vh; }
    .modal-box { border-radius: 20px 20px 0 0; max-height: 100vh; }
    .modal-hero { padding: 35px 20px 25px; }
    .modal-form { padding: 20px 16px 24px; }
    .mf-row { grid-template-columns: 1fr; gap: 12px; }
    .mf-field { padding: 10px 12px; }
}

@media (max-width: 480px) {
    .jobs-hero h1 { font-size: 26px; line-height: 36px; }
}

/* File upload styles */
.mf-file {
    padding: 10px;
    border: 2px dashed #1B3A4B;
    background: #f8f9fa;
    cursor: pointer;
    font-size: 14px;
}
.mf-file::-webkit-file-upload-button {
    background: #F7C948;
    color: #1B3A4B;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    margin-right: 10px;
}
.mf-hint {
    display: block;
    color: #888;
    font-size: 12px;
    margin-top: 5px;
}

