/* Partner Page Specific Styles */

/* Hero Section */
.partner-hero {
    padding-left: 20px;
    padding-right: 20px;
    /* All vertical spacing handled by .hero-fullbleed in style.css */
}

.partner-hero h1 {
    font-size: clamp(42px, 9vw, 80px);
    font-weight: 500;
    letter-spacing: -1px;
    line-height: 1.2;
    max-width: 1200px;
    margin: 0 auto;
}

.partner-hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.partner-hero-graphic {
    display: block;
    max-width: 100%;
    height: auto;
    margin-top: 40px;
    max-height: 400px;
    object-fit: contain;
}

/* Info Section */
.partner-info {
    position: relative;
}

.partner-section-title {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 600;
    color: var(--dark-grey);
    text-align: center;
    margin-bottom: 30px;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.info-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
    border-radius: 20px;
    padding: 50px 45px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    max-width: 850px;
    margin: 0 auto;
}

.info-card h2 {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 600;
    color: var(--dark-grey);
    margin-bottom: 15px;
}

.info-card h3 {
    font-size: clamp(20px, 3vw, 24px);
    font-weight: 500;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.info-card p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--dark-grey);
    margin-bottom: 30px;
}

/* Partner List */
.partner-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.partner-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    font-size: 17px;
    color: var(--dark-grey);
    line-height: 1.5;
}

.partner-list li:last-child {
    border-bottom: none;
}

.list-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--primary-blue), #00a8d4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.list-icon svg {
    width: 14px;
    height: 14px;
    stroke: var(--white);
}

/* Form Section */
.partner-form-section {
    position: relative;
}

.partner-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
}

.partner-contact h2 {
    font-size: clamp(32px, 5vw, 42px);
    font-weight: 600;
    color: var(--dark-grey);
    margin-bottom: 20px;
}

.form-instructions {
    font-size: 17px;
    line-height: 1.7;
    color: var(--dark-grey);
    opacity: 0.9;
    margin-bottom: 35px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--dark-grey);
    opacity: 0.7;
}

.contact-item a {
    font-size: 17px;
    color: var(--primary-blue);
    text-decoration: none;
    transition: opacity 0.3s;
}

.contact-item a:hover {
    opacity: 0.7;
}

/* Form Wrapper */
.partner-form-wrapper {
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.partner-form .form-group {
    margin-bottom: 25px;
}

.partner-form label {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: var(--dark-grey);
    margin-bottom: 10px;
}

.partner-form label span {
    font-weight: 400;
    font-style: italic;
    opacity: 0.6;
}

.partner-form .name-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.partner-form .field small {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    color: var(--dark-grey);
    opacity: 0.7;
}

.partner-form input[type="text"],
.partner-form input[type="email"],
.partner-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    background-color: #fafafa;
    font-family: var(--font-primary);
    font-size: 16px;
    color: var(--dark-grey);
    border-radius: 8px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.partner-form input:focus,
.partner-form textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 140, 188, 0.15);
}

.partner-form input::placeholder,
.partner-form textarea::placeholder {
    color: var(--dark-grey);
    opacity: 0.5;
}

.field-description {
    font-size: 14px;
    color: var(--dark-grey);
    opacity: 0.7;
    margin-bottom: 10px;
    line-height: 1.5;
}

.partner-form textarea {
    resize: vertical;
    min-height: 120px;
}

.partner-form .btn-primary {
    margin-top: 10px;
    min-width: 140px;
    padding: 14px 30px;
}

/* Responsive */
@media (max-width: 900px) {
    .partner-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .partner-contact {
        text-align: center;
    }

    .contact-details {
        flex-direction: row;
        justify-content: center;
        gap: 40px;
    }

    .contact-item {
        align-items: center;
    }
}

@media (max-width: 600px) {
    /* hero padding handled by .hero-fullbleed in style.css */

    .info-card {
        padding: 35px 25px;
        border-radius: 16px;
    }

    .partner-form-wrapper {
        padding: 30px 25px;
    }

    .partner-form .name-inputs {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .contact-details {
        flex-direction: column;
        gap: 20px;
    }
}