/* Strategic Partnerships Service Page - Unique Styles */

/* ================================
   HERO SECTION - Connection/Network Theme
================================ */
.sp-hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(160deg, #2d1b4e 0%, #1a1a3e 40%, #0f1628 100%);
    overflow: hidden;
    padding-top: 80px;
    display: flex;
    align-items: center;
}

.sp-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

/* Network Nodes Animation */
.network-nodes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.node {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--primary-gold);
    border-radius: 50%;
    opacity: 0.4;
    animation: nodeGlow 4s ease-in-out infinite;
}

.n1 { top: 15%; left: 20%; animation-delay: 0s; }
.n2 { top: 30%; right: 15%; animation-delay: 0.8s; }
.n3 { top: 60%; left: 10%; animation-delay: 1.6s; }
.n4 { top: 75%; right: 25%; animation-delay: 2.4s; }
.n5 { top: 45%; left: 45%; animation-delay: 3.2s; }

@keyframes nodeGlow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.4;
        box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
    }
    50% {
        transform: scale(1.5);
        opacity: 0.8;
        box-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
    }
}

.sp-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 4rem 2rem;
    position: relative;
    z-index: 10;
}

.sp-hero-content {
    color: white;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sp-hero .breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.85rem;
}

.sp-hero .breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.sp-hero .breadcrumb a:hover {
    color: var(--primary-gold);
}

.sp-hero .breadcrumb svg {
    width: 14px;
    height: 14px;
    color: rgba(255, 255, 255, 0.4);
}

.sp-hero .breadcrumb span {
    color: var(--primary-gold);
}

.sp-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.sp-hero h1 span {
    color: var(--primary-gold);
}

.sp-hero-description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 480px;
    font-weight: 300;
}

.sp-hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Hero Visual - Partnership Icon */
.sp-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.handshake-visual {
    position: relative;
    width: 320px;
    height: 320px;
}

.hand-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.4);
}

.hand-circle svg {
    width: 60px;
    height: 60px;
    color: var(--navy);
}

/* Orbit Rings */
.orbit-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px dashed rgba(212, 175, 55, 0.3);
    border-radius: 50%;
}

.ring-1 {
    width: 200px;
    height: 200px;
    animation: orbitRotate 20s linear infinite;
}

.ring-2 {
    width: 280px;
    height: 280px;
    animation: orbitRotate 30s linear infinite reverse;
}

@keyframes orbitRotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.orbit-dot {
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: var(--primary-gold);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
}

/* Partner Badges */
.partner-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 0.5rem 1rem;
    animation: badgeFloat 5s ease-in-out infinite;
}

.partner-badge span {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-gold);
}

.badge-1 { top: 5%; left: 15%; animation-delay: 0s; }
.badge-2 { top: 25%; right: 0; animation-delay: 1.5s; }
.badge-3 { bottom: 10%; left: 5%; animation-delay: 3s; }

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Hero Wave */
.sp-hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.sp-hero-wave svg {
    width: 100%;
    height: 120px;
    fill: var(--bg-white);
}

/* ================================
   SECTION HEADER
================================ */
.sp-section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.sp-section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.sp-section-header p {
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.8;
}

.sp-section-header.light h2 {
    color: white;
}

.sp-section-header.light p {
    color: rgba(255, 255, 255, 0.8);
}

/* ================================
   PARTNERSHIP TYPES SECTION
================================ */
.sp-types {
    padding: 8rem 2rem;
    background: var(--bg-white);
}

.sp-types-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.sp-type-card {
    background: linear-gradient(145deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(26, 35, 50, 0.08);
    box-shadow: 0 4px 24px rgba(26, 35, 50, 0.06);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.sp-type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-gold) 0%, var(--primary-gold-dark) 100%);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s ease;
}

.sp-type-card:hover::before {
    transform: scaleY(1);
}

.sp-type-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(26, 35, 50, 0.12);
}

.sp-type-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-gold);
    opacity: 0.2;
    margin-bottom: 1rem;
    line-height: 1;
}

.sp-type-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--navy);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.sp-type-content p {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
}

.sp-type-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.sp-type-content ul li {
    font-size: 0.8rem;
    color: var(--text-light);
    background: rgba(212, 175, 55, 0.1);
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

/* ================================
   BENEFITS SECTION
================================ */
.sp-benefits {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-light) 100%);
}

.sp-benefits-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.sp-benefits-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.sp-benefits-content > p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
}

.sp-benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sp-benefit-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.benefit-marker {
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-dark) 100%);
    border-radius: 50%;
    margin-top: 0.35rem;
    flex-shrink: 0;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.benefit-info h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 0.25rem;
    font-weight: 700;
}

.benefit-info p {
    color: var(--text-medium);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Partnership Stats */
.sp-benefits-visual {
    display: flex;
    justify-content: center;
}

.partnership-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-block {
    background: white;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 4px 24px rgba(26, 35, 50, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

.stat-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.15);
    border-color: var(--primary-gold);
}

.stat-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--primary-gold);
    display: block;
    margin-bottom: 0.25rem;
}

.stat-desc {
    font-size: 0.85rem;
    color: var(--text-medium);
}

/* ================================
   PROCESS SECTION
================================ */
.sp-process {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, #2d1b4e 0%, #1a1a3e 100%);
}

.sp-process-steps {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.sp-step {
    flex: 1;
    text-align: center;
    padding: 0 1rem;
}

.sp-step-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.sp-step:hover .sp-step-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
}

.sp-step-icon svg {
    width: 30px;
    height: 30px;
    color: var(--navy);
}

.sp-step h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: white;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.sp-step p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.sp-step-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-gold) 0%, rgba(212, 175, 55, 0.3) 100%);
    margin-top: 2.25rem;
    flex-shrink: 0;
}

/* ================================
   VALUES SECTION
================================ */
.sp-values {
    padding: 8rem 2rem;
    background: var(--bg-white);
}

.sp-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.sp-value-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: linear-gradient(145deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px;
    border: 1px solid rgba(26, 35, 50, 0.08);
    box-shadow: 0 4px 24px rgba(26, 35, 50, 0.06);
    transition: all 0.4s ease;
}

.sp-value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(26, 35, 50, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
}

.sp-value-card:hover .value-icon {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-dark) 100%);
}

.value-icon svg {
    width: 32px;
    height: 32px;
    color: var(--primary-gold);
    transition: color 0.4s ease;
}

.sp-value-card:hover .value-icon svg {
    color: var(--navy);
}

.sp-value-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--navy);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.sp-value-card p {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ================================
   CTA SECTION
================================ */
.sp-cta {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    position: relative;
    overflow: hidden;
}

.sp-cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.sp-cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.sp-cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.sp-cta-content > p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.sp-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.sp-cta-buttons .cta-button {
    min-width: 200px;
}

.sp-cta-buttons .cta-button.outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.sp-cta-buttons .cta-button.outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-gold);
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 1024px) {
    .sp-hero .container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .sp-hero-visual {
        order: -1;
    }
    
    .handshake-visual {
        width: 280px;
        height: 280px;
    }
    
    .sp-types-grid {
        grid-template-columns: 1fr;
    }
    
    .sp-benefits-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .sp-values-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .sp-hero {
        padding-top: 70px;
    }
    
    .sp-hero .container {
        padding: 2rem 1rem 6rem;
    }
    
    .sp-hero-content {
        text-align: center;
    }
    
    .sp-hero .breadcrumb {
        justify-content: center;
    }
    
    .sp-hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .sp-hero-cta {
        justify-content: center;
    }
    
    .handshake-visual {
        width: 240px;
        height: 240px;
    }
    
    .hand-circle {
        width: 90px;
        height: 90px;
    }
    
    .hand-circle svg {
        width: 45px;
        height: 45px;
    }
    
    .ring-1 { width: 160px; height: 160px; }
    .ring-2 { width: 220px; height: 220px; }
    
    .sp-hero-wave svg {
        height: 80px;
    }
    
    .sp-types,
    .sp-benefits,
    .sp-process,
    .sp-values,
    .sp-cta {
        padding: 5rem 1rem;
    }
    
    .sp-type-card {
        padding: 2rem;
    }
    
    .partnership-stats {
        grid-template-columns: 1fr 1fr;
    }
    
    .sp-process-steps {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }
    
    .sp-step-line {
        width: 2px;
        height: 40px;
        margin: 0;
        background: linear-gradient(180deg, var(--primary-gold) 0%, rgba(212, 175, 55, 0.3) 100%);
    }
    
    .sp-step {
        max-width: 280px;
    }
    
    .sp-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .sp-cta-buttons .cta-button {
        width: 100%;
        max-width: 280px;
    }
    
    .partner-badge {
        display: none;
    }
}

@media (max-width: 480px) {
    .partnership-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-block {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 1.75rem 1rem;
        border-radius: 18px;
        min-height: 120px;
    }
    
    .stat-value {
        font-size: 2.2rem;
        margin-bottom: 0.4rem;
    }
    
    .stat-desc {
        font-size: 0.85rem;
        text-align: center;
    }
}

/* Logo link fix */
.logo-link {
    text-decoration: none;
    display: block;
}

.logo-link .logo {
    cursor: pointer;
}

