/**
 * Partner-Landingpages Styling
 */

/* Container */
.plp-landingpage {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    line-height: 1.6;
    color: #333;
}

.plp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Hero Section */
.plp-hero {
    margin-bottom: 40px;
}

.plp-hero-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
}

.plp-hero-text {
    flex: 1;
    min-width: 300px;
}

.plp-hero-image {
    flex: 0 0 350px;
    max-width: 100%;
}

.plp-hero-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Partner Name */
.plp-partner-name {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 20px 0;
    color: #1a1a1a;
}

/* Partner Text */
.plp-partner-text {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.plp-partner-text p {
    margin-bottom: 1em;
}

/* Contact Info */
.plp-contact-info {
    margin-top: 20px;
    padding: 15px 20px;
    background: #f8f9fa;
    border-radius: 6px;
}

.plp-contact-info p {
    margin: 5px 0;
}

.plp-contact-info a {
    color: #0066cc;
    text-decoration: none;
}

.plp-contact-info a:hover {
    text-decoration: underline;
}

/* Bulletpoints Section */
.plp-bullets {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 40px;
}

.plp-bullet-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.plp-bullet-list li {
    flex: 1 1 250px;
    max-width: 350px;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
    position: relative;
    padding-left: 50px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.plp-bullet-list li::before {
    content: "✓";
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: #667eea;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
}

/* Contact Section */
.plp-contact-section {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.plp-contact-section h2 {
    font-size: 1.8rem;
    margin: 0 0 30px 0;
    color: #1a1a1a;
    text-align: center;
}

/* Contact Form */
.plp-contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.plp-form-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.plp-form-row .plp-form-group {
    flex: 1;
    min-width: 200px;
}

.plp-form-group {
    margin-bottom: 20px;
}

.plp-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #444;
}

.plp-form-group input,
.plp-form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    box-sizing: border-box;
}

.plp-form-group input:focus,
.plp-form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.plp-form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Submit Button */
.plp-form-submit {
    text-align: center;
    margin-top: 10px;
}

.plp-submit-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.plp-submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.plp-submit-button:active {
    transform: translateY(0);
}

.plp-submit-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Form Message */
.plp-form-message {
    margin-top: 20px;
    padding: 15px 20px;
    border-radius: 6px;
    text-align: center;
    font-weight: 500;
}

.plp-form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.plp-form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Loading State */
.plp-contact-form.loading .plp-submit-button {
    position: relative;
    color: transparent;
}

.plp-contact-form.loading .plp-submit-button::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: plp-spin 0.8s linear infinite;
}

@keyframes plp-spin {
    to {
        transform: rotate(360deg);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .plp-container {
        padding: 20px 15px;
    }

    .plp-hero-content {
        flex-direction: column-reverse;
        gap: 30px;
    }

    .plp-hero-image {
        flex: none;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .plp-hero-text {
        min-width: 100%;
    }

    .plp-partner-name {
        font-size: 2rem;
        text-align: center;
    }

    .plp-bullets {
        padding: 25px 20px;
    }

    .plp-bullet-list li {
        flex: 1 1 100%;
        max-width: none;
    }

    .plp-contact-section {
        padding: 30px 20px;
    }

    .plp-form-row {
        flex-direction: column;
        gap: 0;
    }

    .plp-submit-button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .plp-partner-name {
        font-size: 1.6rem;
    }

    .plp-partner-text {
        font-size: 1rem;
    }

    .plp-contact-section h2 {
        font-size: 1.5rem;
    }
}
