/* =====================================================
   INTERNATIONAL COLLABORATION PAGE STYLES
   ===================================================== */

/* Hero Section */
.int-hero {
    position: relative;
    height: auto;
    width: 100%;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    background: none;
}

.int-hero::before {
    display: none;
}

.int-hero-content {
    text-align: center;
    color: #fff;
    padding: 3rem 1rem;
    max-width: 800px;
}

.int-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.int-hero-content h1 {
    font-family: 'Rubik', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.int-hero-content p {
    font-size: 1.2rem;
    opacity: 0.95;
    margin-bottom: 2rem;
}

.int-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #fff;
    color: #E8402A;
    font-weight: 700;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.int-hero-btn:hover {
    background: #E8402A;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* About/Hub Section */
.int-about {
    padding: 4rem 0 2rem;
    background: #fff;
}

.int-about-content h2 {
    font-family: 'Rubik', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 1.5rem;
}

.int-about-content h2 span {
    color: #E8402A;
}

.int-about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1rem;
}

.int-about-content .lead {
    font-size: 1.25rem;
    color: #333;
    font-weight: 500;
    border-left: 4px solid #F08C1C;
    padding-left: 1rem;
    margin-bottom: 1.5rem;
}

.int-about-img {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.int-about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.int-about-img:hover img {
    transform: scale(1.05);
}

/* Destinations Section */
.int-destinations {
    padding: 4rem 0 2rem;
    background: #FFFFFF;
}

.int-destinations .section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.int-destinations .section-title h2 {
    font-family: 'Rubik', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #222;
}

.int-destinations .section-title h2 span {
    color: #E8402A;
}

.int-destinations .section-title p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 1rem auto 0;
}

.destination-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    height: 100%;
}

.destination-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(232, 64, 42, 0.15);
    border-color: #E8402A;
}

.destination-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    font-size: 1.8rem;
    color: #fff;
}

.destination-icon.usa { background: #E8402A; }
.destination-icon.canada { background: #E8402A; }
.destination-icon.uk { background: #E8402A; }
.destination-icon.australia { background: #E8402A; }
.destination-icon.germany { background: #E8402A; }
.destination-icon.ireland { background: #E8402A; }
.destination-icon.nz { background: #E8402A; color: #FFFFFF; }
.destination-icon.europe { background: #E8402A; }

.destination-card h4 {
    font-family: 'Rubik', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 0.8rem;
}

.destination-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Services Section */
.int-services {
    padding: 4rem 0 2rem;
    background: #fff;
}

.int-services .section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.int-services .section-title h2 {
    font-family: 'Rubik', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #222;
}

.int-services .section-title h2 span {
    color: #E8402A;
}

.service-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 1.8rem 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    height: 100%;
    border-left: 4px solid #E8402A;
}

.service-card:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 30px rgba(232, 64, 42, 0.12);
}

.service-card .icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 12px;
    background: #E8402A;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3rem;
}

.service-card h5 {
    font-family: 'Rubik', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 0.5rem;
}

.service-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Test Prep Section */
.int-testprep {
    padding: 4rem 0 2rem;
    background: #E8402A;
}

.int-testprep .section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: #fff;
}

.int-testprep .section-title h2 {
    font-family: 'Rubik', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
}

.int-testprep .section-title p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 1rem auto 0;
}

.test-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    height: 100%;
}

.test-card:hover {
    transform: translateY(-5px) scale(1.02);
}

.test-card .icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #E8402A;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    font-size: 2rem;
    color: #fff;
}

.test-card h4 {
    font-family: 'Rubik', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 0.8rem;
}

.test-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Why Choose Section */
.int-why {
    padding: 4rem 0 2rem;
    background: #f8f9fa;
}

.int-why .section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.int-why .section-title h2 {
    font-family: 'Rubik', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #222;
}

.int-why .section-title h2 span {
    color: #E8402A;
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1.5rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.why-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(232, 64, 42, 0.1);
}

.why-item .icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    border-radius: 10px;
    background: #E8402A;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
}

.why-item h5 {
    font-family: 'Rubik', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 0.3rem;
}

.why-item p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

/* Process Timeline Section */
.int-process {
    padding: 4rem 0 2rem;
    background: #fff;
}

.int-process .section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.int-process .section-title h2 {
    font-family: 'Rubik', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #222;
}

.int-process .section-title h2 span {
    color: #E8402A;
}

.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #E8402A;
    border-radius: 2px;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem 0;
    position: relative;
}

.process-step .step-number {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 50%;
    background: #E8402A;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Rubik', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    z-index: 1;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.process-step .step-content {
    flex: 1;
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.process-step .step-content h5 {
    font-family: 'Rubik', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 0.5rem;
}

.process-step .step-content p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

/* CTA Section */
.int-cta {
    padding: 4rem 0 2rem;
    background: #000000;
    text-align: center;
}

.int-cta h2 {
    font-family: 'Rubik', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.int-cta p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.int-cta .cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #E8402A;
    color: #fff;
    font-weight: 700;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.int-cta .cta-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Stats Section */
.int-stats {
    padding: 4rem 0;
    background: #E8402A;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
}

.stat-item .number {
    font-family: 'Rubik', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-item .label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Partnership Section */
.int-partnership {
    padding: 4rem 0 2rem;
    background: #F7F6EC;
}

.int-partnership .section-title h2 span {
    color: #E8402A;
}

.partnership-content {
    padding-right: 2rem;
}

.partner-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #E8402A;
    color: #fff;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.partner-badge i {
    font-size: 1rem;
}

.partnership-content h3 {
    font-family: 'Rubik', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.partnership-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.partnership-highlights {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.partnership-highlights li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: #333;
    font-weight: 500;
}

.partnership-highlights li i {
    color: #28a745;
    font-size: 1.1rem;
}

.btn-view-universities {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #000000;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(26, 26, 46, 0.3);
}

.btn-view-universities:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(26, 26, 46, 0.4);
    color: #fff;
}

.btn-view-universities i {
    font-size: 1.2rem;
}

.partnership-visual {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.partner-logo-box {
    background: #fff;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid #f0f0f0;
}

.partner-logo-box i {
    font-size: 4rem;
    color: #E8402A;
    margin-bottom: 1rem;
}

.partner-logo-box h4 {
    font-family: 'Rubik', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.partner-logo-box p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

.universities-count {
    display: flex;
    gap: 1rem;
}

.universities-count .count-item {
    flex: 1;
    background: #E8402A;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    color: #fff;
}

.universities-count .number {
    font-family: 'Rubik', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.universities-count .label {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.95;
}

@media (max-width: 991px) {
    .partnership-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .partnership-content h3 {
        font-size: 1.75rem;
    }
    
    .int-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .int-hero-content p {
        font-size: 1rem;
    }
    
    .int-about,
    .int-destinations,
    .int-services,
    .int-process,
    .int-testimonials,
    .int-stats,
    .int-cta,
    .int-partnership {
        padding: 3.5rem 0;
    }
    
    .int-about-content h2,
    .int-destinations h2,
    .int-services h2,
    .int-process h2,
    .int-testimonials h2,
    .int-stats h2 {
        font-size: 1.8rem;
    }
    
    .process-timeline {
        flex-direction: column;
        gap: 2rem;
    }
    
    .process-timeline::before {
        left: 30px;
        top: 0;
        bottom: 0;
        width: 4px;
        height: auto;
    }
    
    .process-step {
        flex-direction: row;
        text-align: left;
        gap: 1.5rem;
        align-items: flex-start;
    }
    
    .step-number {
        flex-shrink: 0;
    }
}

@media (max-width: 768px) {
    .int-hero-content {
        padding: 2rem 1rem;
    }
    
    .int-hero-content h1 {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .int-hero-content p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .int-hero-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }
    
    .int-hero-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }
    
    /* About Section */
    .int-about,
    .int-destinations,
    .int-services,
    .int-process,
    .int-testimonials,
    .int-stats,
    .int-cta,
    .int-partnership {
        padding: 2.5rem 0;
    }
    
    .int-about-content h2,
    .int-destinations h2,
    .int-services h2,
    .int-process h2,
    .int-testimonials h2,
    .int-stats h2 {
        font-size: 1.5rem;
    }
    
    .int-about-content p,
    .int-about-content .lead {
        font-size: 1rem;
    }
    
    /* Destinations */
    .destination-card {
        padding: 1.5rem;
    }
    
    .destination-card h4 {
        font-size: 1.1rem;
    }
    
    .destination-card p {
        font-size: 0.9rem;
    }
    
    /* Services */
    .service-card {
        padding: 1.5rem;
    }
    
    .service-card h4 {
        font-size: 1.1rem;
    }
    
    .service-card p {
        font-size: 0.9rem;
    }
    
    /* Process */
    .process-timeline {
        padding-left: 0;
    }
    
    .process-timeline::before {
        left: 25px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .step-content h5 {
        font-size: 1rem;
    }
    
    .step-content p {
        font-size: 0.85rem;
    }
    
    /* Testimonials */
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-card p {
        font-size: 0.95rem;
    }
    
    /* Stats */
    .stat-box {
        padding: 1.5rem;
    }
    
    .stat-box h3 {
        font-size: 2rem;
    }
    
    .stat-box p {
        font-size: 0.9rem;
    }
    
    /* CTA */
    .int-cta-box {
        padding: 2.5rem 1.5rem;
    }
    
    .int-cta-box h2 {
        font-size: 1.5rem;
    }
    
    .int-cta-box p {
        font-size: 1rem;
    }
    
    .int-cta-btns {
        flex-direction: column;
        align-items: center;
    }
    
    .int-cta-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    /* Partnership */
    .partnership-content h3 {
        font-size: 1.4rem;
    }
    
    .partnership-content p {
        font-size: 0.95rem;
    }
    
    .partner-logo-box {
        padding: 1.5rem;
    }
    
    .partner-logo-box h4 {
        font-size: 1.2rem;
    }
    
    .universities-count {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .universities-count .count-item {
        padding: 1.2rem;
    }
    
    .universities-count .number {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .int-partnership {
        padding: 3rem 0;
    }
    
    .universities-count {
        flex-direction: column;
    }
    
    .universities-count .number {
        font-size: 2rem;
    }
}

/* Responsive Styles */
@media (max-width: 991px) {
    .int-hero-content h1 {
        font-size: 2.5rem;
    }

    .int-about-img {
        margin-top: 2rem;
    }

    .process-timeline::before {
        left: 25px;
    }

    .process-step .step-number {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .int-hero {
        height: auto;
    }

    .int-hero-content h1 {
        font-size: 2rem;
    }

    .int-hero-content p {
        font-size: 1rem;
    }

    .int-destinations,
    .int-services,
    .int-testprep,
    .int-why,
    .int-process,
    .int-about {
        padding: 3.5rem 0;
    }

    .destination-card,
    .test-card {
        margin-bottom: 1.5rem;
    }

    .service-card {
        margin-bottom: 1rem;
    }

    .stat-item .number {
        font-size: 2.5rem;
    }

    .int-cta h2 {
        font-size: 2rem;
    }

    .process-timeline::before {
        display: none;
    }

    .process-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .process-step .step-content {
        width: 100%;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
