/**
 * Academic Partnership Page Styles
 * Gateway College - Academic Partners Page
 * 
 * @package Gateway_College
 * @since 1.0.0
 */

/* Reset */
.cpt-scope[data-page="academic-partnership"] * {
    box-sizing: border-box;
}

.cpt-scope[data-page="academic-partnership"] {
    background: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ==============================================
   HERO BANNER
   ============================================== */

.cpt-scope .ap-hero {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #262474 0%, #1b60aa 40%, #24906b 80%, #6db460 100%);
    min-height: 500px;
    display: flex;
    align-items: flex-end;
    margin-top: -4em !important;
}

.cpt-scope .ap-hero::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    top: -400px;
    right: -200px;
    border-radius: 50%;
    z-index: 1;
}

.cpt-scope .ap-hero-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 0px;
    position: relative;
    z-index: 2;
}

.cpt-scope .ap-hero-title {
    color: #ffffff;
    margin: 0 0 32px 0;
    opacity: 0;
    animation: apFadeUp 0.6s ease forwards 0.4s;
}

.cpt-scope .ap-hero-sub {
    max-width: 600px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    animation: apFadeUp 0.6s ease forwards 0.6s;
}

@keyframes apFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==============================================
   INTRO SECTION
   ============================================== */

.cpt-scope .ap-intro-section {
    margin-bottom: 0;
    padding: 120px 0;
    background: #ffffff;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    position: relative;
}

.cpt-scope .ap-intro-section > * {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 60px;
    padding-right: 60px;
}

.cpt-scope .ap-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.cpt-scope .ap-intro-img img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 60px 60px 0 60px;
}

.cpt-scope .ap-intro-label {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #24906b;
    margin: 0 0 20px 0;
}

.cpt-scope .ap-intro-text p {
    margin: 0 0 24px 0;
}

.cpt-scope .ap-intro-lead {
    font-size: 22px !important;
    color: #0a0a0a !important;
    font-weight: 400;
}

/* ==============================================
   VET SECTION
   ============================================== */

.cpt-scope .ap-vet-section {
    margin-bottom: 0;
    padding: 120px 0;
    background: #f9fafb;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    position: relative;
}

.cpt-scope .ap-vet-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.cpt-scope .ap-vet-header {
    margin-bottom: 48px;
}

.cpt-scope .ap-vet-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 500;
    color: #262474;
    line-height: 1.15;
    margin: 0 0 24px 0;
}

.cpt-scope .ap-vet-desc {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
    max-width: 680px;
    margin: 0;
}

/* Degree List - Aligned with header */
.cpt-scope .ap-degree-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 60px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.cpt-scope .ap-degree-list li {
    font-size: 16px;
    color: #0a0a0a;
    padding: 16px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 12px;
}

.cpt-scope .ap-degree-list li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #24906b;
    border-radius: 50%;
    flex-shrink: 0;
}

/* ==============================================
   UNIVERSITIES SECTION
   ============================================== */

.cpt-scope .ap-uni-section {
    margin-bottom: 0;
    padding: 160px 0;
    background: #262474;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    position: relative;
    overflow: hidden;
}

.cpt-scope .ap-uni-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.cpt-scope .ap-uni-img {
    border-radius: 60px 60px 0 60px;
    overflow: hidden;
    height: 400px;
}

.cpt-scope .ap-uni-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cpt-scope .ap-uni-title {
    font-size: 32px;
    color: #ffffff;
    font-weight: 500;
    margin: 0 0 16px 0;
}

.cpt-scope .ap-uni-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    margin: 0 0 40px 0;
    line-height: 1.8;
}

/* University Cards */
.cpt-scope .ap-uni-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.cpt-scope .ap-uni-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 60px 60px 0 60px;
    padding: 32px 12px;
    text-align: center;
    transition: all 0.4s ease;
}

.cpt-scope .ap-uni-card:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-4px);
}

.cpt-scope .ap-uni-initial {
    font-size: 32px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
    line-height: 1;
}

.cpt-scope .ap-uni-name {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

/* ==============================================
   GRADUATE CERTIFICATES SECTION
   ============================================== */

.cpt-scope .ap-grad-section {
    margin-bottom: 0;
    padding: 0;
    background: #ffffff;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    position: relative;
}

.cpt-scope .ap-grad-wrapper {
    display: grid;
    grid-template-columns: 50% 50%;
    min-height: 600px;
}

.cpt-scope .ap-grad-img {
    background: url('https://images.unsplash.com/photo-1434030216411-0b793f4b4173?w=1200&q=80') center/cover;
    border-radius: 0;
    margin: 0;
}

.cpt-scope .ap-grad-content {
    padding: 160px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cpt-scope .ap-grad-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 500;
    color: #262474;
    margin: 0 0 8px 0;
    line-height: 1.2;
}

.cpt-scope .ap-grad-title span {
    display: block;
    font-size: 18px;
    font-weight: 400;
    color: #24906b;
    margin-top: 12px;
}

.cpt-scope .ap-grad-text {
    font-size: 16px;
    color: #4a5568;
    margin: 24px 0 40px 0;
    line-height: 1.8;
}

.cpt-scope .ap-grad-list {
    columns: 2;
    column-gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.cpt-scope .ap-grad-list li {
    font-size: 14px;
    color: #0a0a0a;
    padding: 14px 0;
    border-bottom: 1px solid #eee;
    break-inside: avoid;
}

/* ==============================================
   MASTERS SECTION
   ============================================== */

.cpt-scope .ap-masters-section {
    margin-bottom: 0;
    padding: 160px 0;
    background: #0a0a14;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    position: relative;
}

.cpt-scope .ap-masters-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.cpt-scope .ap-masters-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 80px;
    align-items: center;
}

.cpt-scope .ap-masters-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 500;
    line-height: 1.1;
    margin: 0 0 24px 0;
    color: #ffffff;
}

.cpt-scope .ap-masters-intro {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin: 0 0 48px 0;
    max-width: 520px;
}

.cpt-scope .ap-masters-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cpt-scope .ap-masters-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6db460;
}

.cpt-scope .ap-masters-icon svg {
    width: 100%;
    height: 100%;
}

.cpt-scope .ap-masters-item span:last-child {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
}

.cpt-scope .ap-masters-img img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 60px 0 60px 60px;
}

/* ==============================================
   RESEARCH COLLABORATIONS SECTION
   ============================================== */

.cpt-scope .ap-research-section {
    margin-bottom: 0;
    padding: 160px 0;
    background: #ffffff;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    position: relative;
}

.cpt-scope .ap-research-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.cpt-scope .ap-research-header {
    text-align: center;
    margin-bottom: 100px;
}

.cpt-scope .ap-research-label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #24906b;
    margin: 0 0 20px 0;
}

.cpt-scope .ap-research-title {
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 500;
    line-height: 1.1;
    margin: 0 0 32px 0;
    color: #262474;
}

.cpt-scope .ap-research-intro {
    font-size: 17px;
    color: #4a5568;
    line-height: 1.7;
    max-width: 820px;
    margin: 0 auto;
}

.cpt-scope .ap-research-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 100px;
    align-items: flex-start;
}

.cpt-scope .ap-research-img {
    width: 100%;
    height: 500px;
    border-radius: 60px 60px 0 60px;
    overflow: hidden;
    position: relative;
}

.cpt-scope .ap-research-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cpt-scope .ap-research-content-blocks {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.cpt-scope .ap-research-block {
    padding: 0;
}

.cpt-scope .ap-research-block h3 {
    font-size: 18px;
    font-weight: 600;
    color: #262474;
    margin: 0 0 16px 0;
    letter-spacing: -0.2px;
}

.cpt-scope .ap-research-block p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.8;
    margin: 0 0 16px 0;
}

.cpt-scope .ap-research-block p:last-child {
    margin-bottom: 0;
}

/* Student Benefits Section */
.cpt-scope .ap-research-benefits-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 80px;
    align-items: center;
}

.cpt-scope .ap-research-benefits {
    padding: 0;
}

.cpt-scope .ap-research-benefits h3 {
    font-size: 20px;
    font-weight: 600;
    color: #262474;
    margin: 0 0 28px 0;
}

.cpt-scope .ap-research-benefits ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.cpt-scope .ap-research-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 14px 0;
    font-size: 15px;
    color: #0a0a0a;
    line-height: 1.7;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.cpt-scope .ap-research-benefits li:last-child {
    border-bottom: none;
}

.cpt-scope .ap-research-benefits li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #6db460;
    border-radius: 50%;
    margin-top: 8px;
    flex-shrink: 0;
}

.cpt-scope .ap-research-benefits-img {
    width: 100%;
    height: 500px;
    border-radius: 0 60px 60px 60px;
    overflow: hidden;
}

.cpt-scope .ap-research-benefits-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cpt-scope .ap-research-footer {
    text-align: center;
    padding: 48px 0 0;
    border-top: 1px solid #e5e7eb;
}

.cpt-scope .ap-research-footer p {
    font-size: 17px;
    color: #4a5568;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

/* ==============================================
   PROFESSIONAL RECOGNITION SECTION
   ============================================== */

.cpt-scope .ap-pro-section {
    margin-bottom: 0;
    padding: 160px 0;
    background: #f9fafb;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    position: relative;
}

.cpt-scope .ap-pro-section > * {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 60px;
    padding-right: 60px;
}

.cpt-scope .ap-pro-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
    padding: 0;
}

.cpt-scope .ap-pro-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 500;
    color: #262474;
    margin: 0 0 20px 0;
}

.cpt-scope .ap-pro-desc {
    font-size: 17px;
    color: #4a5568;
    line-height: 1.8;
    margin: 0;
}

.cpt-scope .ap-pro-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-bottom: 80px;
}

.cpt-scope .ap-pro-card {
    background: #ffffff;
    padding: 24px 24px;
    text-align: center;
    transition: all 0.4s ease;
    border-radius: 60px 60px 60px 0;
    box-shadow: 0 8px 48px rgba(0, 0, 0, 0.04);
}

.cpt-scope .ap-pro-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 48px rgba(38, 36, 116, 0.1);
}

.cpt-scope .ap-pro-card strong {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #262474;
    margin-bottom: 10px;
}

.cpt-scope .ap-pro-card span {
    font-size: 12px;
    color: #4a5568;
    line-height: 1.5;
}

/* Disclaimer */
.cpt-scope .ap-disclaimer {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0;
}

.cpt-scope .ap-disclaimer-title {
    font-size: 11px;
    font-weight: 600;
    color: #9ca3af;
    margin: 0 0 16px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cpt-scope .ap-disclaimer-content {
    font-size: 11px;
    color: #9ca3af;
    line-height: 1.8;
}

.cpt-scope .ap-disclaimer-content p {
    margin: 0 0 12px 0;
}

.cpt-scope .ap-disclaimer-content ul {
    list-style: none;
    margin: 12px 0;
    padding: 0;
}

.cpt-scope .ap-disclaimer-content li {
    margin: 8px 0;
    padding-left: 14px;
    position: relative;
}

.cpt-scope .ap-disclaimer-content li::before {
    content: '';
    position: absolute;
    left: 0;
    color: #d1d5db;
    font-size: 14px;
}

/* ==============================================
   SUPPORT SECTION
   ============================================== */

.cpt-scope .ap-support-section {
    margin-bottom: 0;
    padding: 0;
    background: #ffffff;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    position: relative;
}

.cpt-scope .ap-support-wrapper {
    display: grid;
    grid-template-columns: 50% 50%;
}

.cpt-scope .ap-support-img {
    background: url('https://images.unsplash.com/photo-1541888894402-f3b1af908be4?w=1200&q=80') center/cover;
    min-height: 500px;
    border-radius: 0;
    margin: 0;
}

.cpt-scope .ap-support-content {
    padding: 160px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cpt-scope .ap-support-title {
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 500;
    color: #262474;
    margin: 0 0 24px 0;
    line-height: 1.2;
}

.cpt-scope .ap-support-intro {
    font-size: 16px;
    color: #4a5568;
    margin: 0 0 40px 0;
    line-height: 1.8;
}

.cpt-scope .ap-support-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.cpt-scope .ap-support-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 0;
    font-size: 15px;
    color: #0a0a0a;
    border-bottom: 1px solid #f0f0f0;
}

.cpt-scope .ap-support-list li::before {
    content: '';
    width: 10px;
    height: 10px;
    background: #6db460;
    border-radius: 50%;
    margin-top: 5px;
    flex-shrink: 0;
}

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

.cpt-scope .ap-cta-section {
    padding: 160px 60px;
    background: linear-gradient(135deg, #262474 0%, #1b60aa 50%, #24906b 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cpt-scope .ap-cta-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    top: -300px;
    right: -200px;
    border-radius: 50%;
}

.cpt-scope .ap-cta-inner {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cpt-scope .ap-cta-title {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 500;
    color: #ffffff;
    margin: 0 0 32px 0;
    line-height: 1.2;
}

.cpt-scope .ap-cta-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin: 0;
}

/* ==============================================
   FOOTER BAR
   ============================================== */

.cpt-scope .ap-footer-bar {
    height: 4px;
    background: linear-gradient(90deg, #262474, #1b60aa, #24906b, #6db460);
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

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

@media (max-width: 1024px) {
    .cpt-scope .ap-intro-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .cpt-scope .ap-uni-wrapper {
        grid-template-columns: 1fr;
    }
    
    .cpt-scope .ap-uni-img {
        height: 280px;
    }
    
    .cpt-scope .ap-grad-wrapper {
        grid-template-columns: 1fr;
    }
    
    .cpt-scope .ap-grad-img {
        height: 300px;
    }
    
    .cpt-scope .ap-masters-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .cpt-scope .ap-research-grid,
    .cpt-scope .ap-research-benefits-section {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .cpt-scope .ap-research-img {
        height: 400px;
    }
    
    .cpt-scope .ap-research-benefits-img {
        height: 400px;
    }
    
    .cpt-scope .ap-pro-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .cpt-scope .ap-support-wrapper {
        grid-template-columns: 1fr;
    }
    
    .cpt-scope .ap-support-img {
        order: -1;
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .cpt-scope .ap-hero {
        min-height: 400px;
    }
    
    .cpt-scope .ap-hero-content {
        padding: 40px 24px;
    }
    
    .cpt-scope .ap-intro-section,
    .cpt-scope .ap-masters-section,
    .cpt-scope .ap-research-section,
    .cpt-scope .ap-pro-section {
        padding: 80px 0;
    }
    
    .cpt-scope .ap-intro-section > *,
    .cpt-scope .ap-pro-section > * {
        padding-left: 24px;
        padding-right: 24px;
    }
    
    .cpt-scope .ap-vet-section {
        padding: 80px 0;
    }
    
    .cpt-scope .ap-vet-inner {
        padding: 0 24px;
    }
    
    .cpt-scope .ap-uni-wrapper,
    .cpt-scope .ap-masters-wrapper,
    .cpt-scope .ap-research-wrapper {
        padding: 0 24px;
    }
    
    .cpt-scope .ap-degree-list {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .cpt-scope .ap-uni-section {
        padding: 80px 0;
    }
    
    .cpt-scope .ap-uni-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cpt-scope .ap-research-grid {
        gap: 40px;
    }
    
    .cpt-scope .ap-research-content-blocks {
        gap: 36px;
    }
    
    .cpt-scope .ap-research-benefits-section {
        gap: 40px;
    }
    
    .cpt-scope .ap-grad-content {
        padding: 60px 24px;
    }
    
    .cpt-scope .ap-grad-list {
        columns: 1;
    }
    
    .cpt-scope .ap-pro-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cpt-scope .ap-support-content {
        padding: 60px 24px;
    }
    
    .cpt-scope .ap-cta-section {
        margin: 100px 0 0;
        border-radius: 0;
        padding: 80px 24px;
    }
}