/* ====================================
   CONTACT & PARTNERSHIP SECTION
==================================== */
.partnership-section {
    padding: 8rem 0;
    background: #000;
    color: var(--text-white);
    position: relative;
    overflow: hidden;
}

/* Background Effect */
.partnership-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 209, 106, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(0, 209, 106, 0.05) 0%, transparent 40%);
    animation: pulseBackground 15s ease-in-out infinite alternate;
}

/* Content Layout */
.partnership-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    position: relative;
    z-index: 2;
}

/* Left Column */
.info-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Contact Info */
.contact-info {
    background: rgba(0, 0, 0, 0.95);
    border: 1px solid rgba(0, 209, 106, 0.15);
    border-radius: 1.5rem;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Contact Item */
.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    background: rgba(0, 209, 106, 0.03);
    border: 1px solid rgba(0, 209, 106, 0.08);
    transition: all 0.4s ease;
}

/* Contact Links */
.contact-item p a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.contact-item:hover p a {
    color: var(--primary);
    text-shadow: 0 0 10px rgba(0, 209, 106, 0.3);
}

.contact-item p a:hover {
    color: var(--primary);
    text-shadow: 0 0 15px rgba(0, 209, 106, 0.5);
}

/* SVG Icons */
.contact-icon-svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    filter: drop-shadow(0 0 8px rgba(0, 209, 106, 0.3));
    transition: all 0.3s ease;
}

.benefit-icon-svg {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    margin-bottom: 0.75rem;
    filter: drop-shadow(0 0 8px rgba(0, 209, 106, 0.3));
    transition: all 0.3s ease;
}

.contact-icon-svg path,
.contact-icon-svg circle,
.contact-icon-svg rect,
.benefit-icon-svg path,
.benefit-icon-svg circle,
.benefit-icon-svg rect {
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.benefit-card {
    background: rgba(0, 0, 0, 0.95);
    border: 1px solid rgba(0, 209, 106, 0.15);
    border-radius: 1.5rem;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Card Border Effect */
.benefit-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 1.5rem;
    padding: 2px;
    background: linear-gradient(
        45deg,
        transparent 0%,
        rgba(0, 209, 106, 0.3) 50%,
        transparent 100%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.benefit-card h4 {
    color: var(--primary);
    font-size: 1rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 15px rgba(0, 209, 106, 0.2);
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Form Section */
.partnership-form {
    background: rgba(0, 0, 0, 0.95);
    border: 1px solid rgba(0, 209, 106, 0.15);
    border-radius: 1.5rem;
    padding: 1rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.form-title {
    color: var(--primary);
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    text-align: center;
    text-shadow: 0 0 15px rgba(0, 209, 106, 0.3);
    font-weight: 600;
}

.form-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.4;
}

/* Form Elements */
.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    color: var(--primary);
    font-size: 0.9rem;
    text-shadow: 0 0 10px rgba(0, 209, 106, 0.2);
}

.form-input {
    width: 100%;
    padding: 1.1rem 1.2rem;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 209, 106, 0.5);
    border-radius: 8px;
    color: var(--text-white);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

/* Submit Button */
.form-submit {
    width: 100%;
    padding: 0.75rem;
    background: rgba(0, 209, 106, 0.1);
    border: 1px solid rgba(0, 209, 106, 0.2);
    border-radius: 8px;
    color: var(--primary);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-shadow: 0 0 10px rgba(0, 209, 106, 0.3);
}

/* Hover Effects */
.contact-item:hover {
    background: rgba(0, 209, 106, 0.08);
    border-color: rgba(0, 209, 106, 0.2);
    transform: translateX(8px);
}

.contact-item:hover .contact-icon-svg {
    transform: scale(1.1);
    filter: drop-shadow(0 0 12px rgba(0, 209, 106, 0.5));
}

.benefit-card:hover {
    transform: translateY(-5px) scale(1.01);
    border-color: rgba(0, 209, 106, 0.3);
    box-shadow: 
        0 20px 40px rgba(0, 209, 106, 0.15),
        0 0 50px rgba(0, 209, 106, 0.1) inset;
}

.benefit-card:hover .benefit-icon-svg {
    transform: scale(1.1);
    filter: drop-shadow(0 0 12px rgba(0, 209, 106, 0.5));
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 15px rgba(0, 209, 106, 0.1);
}

.form-submit:hover {
    background: rgba(0, 209, 106, 0.2);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 209, 106, 0.15);
}