/* =============================================
   PARTNERSHIP SECTION STYLES
   ============================================= */

.partnership-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.partnership-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.partnership-content {
    flex: 1;
    min-width: 300px;
    padding-right: 2rem;
}

/* Badge */
.partnership-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(249, 115, 22, 0.08);
    padding: 0.6rem 1.2rem;
    border-radius: 100px;
    margin-bottom: 2rem;
    border: 1px solid rgba(249, 115, 22, 0.15);
    backdrop-filter: blur(5px);
}

.partnership-badge-dot {
    display: block;
    width: 8px;
    height: 8px;
    background: #f97316;
    border-radius: 50%;
    box-shadow: 0 0 10px #f97316;
}

.partnership-badge-text {
    color: #f97316;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Title */
.partnership-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.partnership-title-plus {
    color: #64748b;
    font-weight: 300;
}

/* Description */
.partnership-description {
    color: #cbd5e1;
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    border-left: 2px solid #f97316;
    padding-left: 1.5rem;
}

.partnership-description strong {
    color: #fff;
}

/* CTA Button - Accessibility: Improved contrast ratio for WCAG AA compliance */
.partnership-cta {
    display: inline-flex;
    height: 50px;
    align-items: center;
    gap: 0.75rem;
    background: #c2410c;
    /* Darker orange for better contrast with white text (4.8:1 ratio) */
    color: #fff;
    font-weight: 600;
    padding: 0 2rem;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 10px 20px -5px rgba(194, 65, 12, 0.4);
}

.partnership-cta:hover {
    background: #9a3412;
    /* Even darker on hover */
    transform: translateY(-2px);
    box-shadow: 0 15px 25px -5px rgba(154, 52, 18, 0.5);
}

/* Visual */
.partnership-visual {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    position: relative;
}

/* Network Animation Container */
.network-container {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.net-node {
    position: absolute;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #0f172a;
    z-index: 10;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.main-node {
    width: 100px;
    height: 100px;
    border: 2px solid #f97316;
    z-index: 20;
    animation: pulse-main 3s infinite;
}

.main-node-text {
    font-weight: 800;
    color: #fff;
    font-size: 0.9rem;
}

.sat-node {
    width: 60px;
    height: 60px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(5px);
}

.sat-1 {
    top: 10%;
    right: 20%;
    border-color: #38bdf8;
    animation: float-sat 6s ease-in-out infinite;
}

.sat-2 {
    bottom: 20%;
    right: 10%;
    border-color: #a855f7;
    animation: float-sat 7s ease-in-out infinite 1s;
}

.sat-3 {
    top: 40%;
    left: 0%;
    border-color: #f97316;
    animation: float-sat 8s ease-in-out infinite 2s;
}

.node-icon {
    color: #fff;
}

.sat-1 .node-icon {
    color: #38bdf8;
}

.sat-2 .node-icon {
    color: #a855f7;
}

.sat-3 .node-icon {
    color: #f97316;
}

.lines-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.data-line {
    stroke-dasharray: 10;
    animation: dash-flow 1s linear infinite;
    opacity: 0.4;
}

.tech-label {
    position: absolute;
    bottom: -25px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #94a3b8;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Animations */
@keyframes pulse-main {
    0% {
        box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.4);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(249, 115, 22, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(249, 115, 22, 0);
    }
}

@keyframes float-sat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes dash-flow {
    to {
        stroke-dashoffset: -20;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .partnership-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }

    .partnership-content {
        padding-right: 0;
    }

    .partnership-description {
        border-left: none;
        padding-left: 0;
        border-top: 2px solid #f97316;
        padding-top: 1.5rem;
    }

    .partnership-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .partnership-section {
        padding: 4rem 0;
    }

    .network-container {
        height: 300px;
    }

    .main-node {
        width: 80px;
        height: 80px;
    }

    .sat-node {
        width: 50px;
        height: 50px;
    }
}