/* Import modern fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    line-height: 1.7;
    color: #2D3748;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header and Navigation */
header {
    background: rgba(102, 51, 153, 0.95);
    backdrop-filter: blur(20px);
    color: white;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 8px 32px rgba(102, 51, 153, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    height: 48px;
    width: auto;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.logo-img:hover {
    transform: scale(1.08) rotate(2deg);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.logo-text h1 {
    color: #FFFFFF;
    font-size: 1.8rem;
    margin: 0;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.02em;
}

.logo-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.75rem;
    margin: 0;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    position: relative;
}

.nav-links a:hover {
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #663399 0%, #4A2C7E 30%, #5A4D7A 60%, #6B5B95 100%);
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 80px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    animation: heroEntrance 1.2s ease-out;
}

.hero-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 0.8rem;
    font-weight: 600;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    margin-bottom: 2rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    letter-spacing: 0.5px;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

.cta-button {
    background: linear-gradient(135deg, #FFFFFF 0%, #F7F7F7 100%);
    color: #663399;
    padding: 16px 40px;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.2);
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.3px;
}

.cta-button:hover {
    background: linear-gradient(135deg, #F0F0F0 0%, #E8E8E8 100%);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 48px rgba(255, 255, 255, 0.3);
}

/* Sections */
section {
    padding: 100px 0;
}

.about {
    background: #FAFBFC;
}

.about h2,
.team h2,
.resources h2,
.contact h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 4rem;
    color: #663399;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.about p {
    font-size: 1.2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    color: #4A5568;
    line-height: 1.8;
    font-weight: 400;
}

/* Features Grid */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.feature {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(102, 51, 153, 0.08);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(102, 51, 153, 0.05);
}

.feature:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(102, 51, 153, 0.15);
}

.feature h3 {
    color: #663399;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
}

/* Team Section */
.team {
    background: linear-gradient(135deg, #663399 0%, #5A4D7A 100%);
    color: white;
}

.team h2 {
    color: white;
}

.officers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.officer {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.officer:hover {
    transform: translateY(-12px);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.officer h3 {
    color: #FFFFFF;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
}

.officer .title {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-size: 0.85rem;
}

/* Resources Section */
.resources {
    background: #FAFBFC;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.resource {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(102, 51, 153, 0.08);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(102, 51, 153, 0.05);
}

.resource:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(102, 51, 153, 0.15);
}

.resource h3 {
    color: #663399;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
}

/* Contact Section */
.contact {
    text-align: center;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    margin-top: 4rem;
    text-align: left;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.contact-item {
    background: #FAFBFC;
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(102, 51, 153, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 24px rgba(102, 51, 153, 0.05);
}

.contact-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(102, 51, 153, 0.12);
}

.contact-item h3 {
    color: #663399;
    margin-bottom: 1.2rem;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.contact-item a {
    color: #663399;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    color: #4A2C7E;
}

/* Contact Form */
.contact-form-section {
    background: linear-gradient(135deg, #FAFBFC 0%, #F7F9FC 100%);
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid rgba(102, 51, 153, 0.1);
    box-shadow: 0 8px 40px rgba(102, 51, 153, 0.08);
}

.contact-form-section h3 {
    color: #663399;
    margin-bottom: 2.5rem;
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1.5rem;
}

.form-group label {
    color: #663399;
    font-weight: 600;
    margin-bottom: 0.6rem;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem 1.2rem;
    border: 2px solid #E2E8F0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
    font-family: 'Inter', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #663399;
    box-shadow: 0 0 0 4px rgba(102, 51, 153, 0.1);
    transform: translateY(-2px);
}

.submit-btn {
    background: linear-gradient(135deg, #663399 0%, #5A4D7A 100%);
    color: white;
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 1rem;
    box-shadow: 0 8px 32px rgba(102, 51, 153, 0.2);
}

.submit-btn:hover {
    background: linear-gradient(135deg, #552288 0%, #4A2C7E 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(102, 51, 153, 0.3);
}

/* Footer */
footer {
    background: linear-gradient(135deg, #663399 0%, #4A2C7E 100%);
    color: white;
    text-align: center;
    padding: 3rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(102, 51, 153, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem 0;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .features,
    .officers-grid,
    .resources-grid {
        grid-template-columns: 1fr;
    }
}

html {
    scroll-behavior: smooth;
}

/* Additional Mobile Optimizations for Contact Form */
@media (max-width: 600px) {
    .contact {
        padding: 80px 0 60px;
    }
    
    .contact-content {
        gap: 2.5rem;
        margin-top: 2.5rem;
    }
    
    .contact-form-section {
        padding: 2rem 1.5rem;
        margin: 0 10px;
        border-radius: 16px;
        max-width: none;
    }
    
    .contact-form-section h3 {
        font-size: 1.3rem;
        margin-bottom: 2rem;
    }
    
    .contact-form {
        gap: 1.8rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
        color: #663399;
        font-weight: 600;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 1.1rem 1.2rem;
        font-size: 1rem;
        border: 2px solid #E2E8F0;
        border-radius: 10px;
        background: white;
        transition: all 0.3s ease;
        width: 100%;
    }
    
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        border-color: #663399;
        box-shadow: 0 0 0 3px rgba(102, 51, 153, 0.08);
        transform: translateY(-1px);
    }
    
    .submit-btn {
        width: 100%;
        padding: 1.2rem;
        font-size: 1.05rem;
        margin-top: 1.5rem;
        border-radius: 10px;
    }
    
    .contact-item {
        padding: 1.8rem;
        border-radius: 14px;
        margin: 0 10px;
    }
    
    .contact p {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
        padding: 0 10px;
    }
}

/* Fix form error states - no red borders on load */
.form-group input,
.form-group select,
.form-group textarea {
    border-color: #E2E8F0 !important;
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #E53E3E !important;
    box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.08) !important;
    animation: shake 0.5s ease-in-out;
}

/* Legal Pages Styling */
.legal-page {
    background: #FAFBFC;
    padding: 140px 0 80px;
    min-height: 100vh;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 4rem;
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(102, 51, 153, 0.08);
    border: 1px solid rgba(102, 51, 153, 0.05);
}

.legal-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #663399;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.last-updated {
    text-align: center;
    color: #666;
    font-style: italic;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #E2E8F0;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #663399;
    margin-bottom: 1.5rem;
    font-weight: 600;
    border-left: 4px solid #663399;
    padding-left: 1rem;
}

.legal-section h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    color: #4A5568;
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.legal-section p {
    color: #4A5568;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.legal-section ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.legal-section li {
    color: #4A5568;
    line-height: 1.7;
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.legal-section strong {
    color: #663399;
    font-weight: 600;
}

/* Mobile optimizations for legal pages */
@media (max-width: 768px) {
    .legal-content {
        margin: 0 20px;
        padding: 2.5rem 2rem;
        border-radius: 16px;
    }
    
    .legal-content h1 {
        font-size: 2.2rem;
    }
    
    .legal-section h2 {
        font-size: 1.5rem;
        padding-left: 0.8rem;
    }
    
    .legal-section h3 {
        font-size: 1.2rem;
    }
    
    .legal-section p,
    .legal-section li {
        font-size: 0.95rem;
    }
    
    .legal-section ul {
        padding-left: 1.5rem;
    }
}

@media (max-width: 480px) {
    .legal-page {
        padding: 120px 0 60px;
    }
    
    .legal-content {
        margin: 0 15px;
        padding: 2rem 1.5rem;
    }
    
    .legal-content h1 {
        font-size: 2rem;
    }
    
    .legal-section h2 {
        font-size: 1.4rem;
    }
    
    .legal-section {
        margin-bottom: 2.5rem;
    }
}

/* Enhanced Mobile Footer Styles */
@media (max-width: 600px) {
    footer {
        padding: 3rem 0 0;
    }
    
    .footer-content {
        gap: 2.5rem;
        padding: 0 0.5rem;
    }
    
    .footer-section h4 {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .footer-logo {
        margin-bottom: 1.2rem;
    }
    
    .footer-logo-text h3 {
        font-size: 1.2rem;
    }
    
    .footer-description {
        font-size: 0.95rem;
        max-width: 350px;
        margin-bottom: 0;
    }
    
    .footer-links {
        gap: 0.8rem;
        max-width: 250px;
    }
    
    .footer-links a {
        padding: 0.7rem 1rem;
        margin-bottom: 0.3rem;
        border-radius: 6px;
        font-size: 0.95rem;
    }
    
    .newsletter-text {
        max-width: 350px;
        margin-bottom: 1.8rem;
    }
    
    .newsletter-input-group {
        max-width: 280px;
        gap: 1rem;
    }
    
    .newsletter-input-group input {
        padding: 1rem 1.2rem;
        font-size: 0.95rem;
    }
    
    .newsletter-btn {
        padding: 1rem;
        font-size: 0.95rem;
    }
    
    .footer-bottom {
        padding: 1.8rem 0;
    }
    
    .footer-bottom-content {
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .footer-legal {
        gap: 0.8rem;
    }
    
    .footer-legal a {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }
    
    .footer-bottom p {
        font-size: 0.9rem;
    }
}

/* Partnership Configurator Mobile Styles - Enhanced */
@media (max-width: 768px) {
    .partners {
        padding: 100px 0 60px;
    }
    
    .partnership-configurator {
        padding: 3rem 2rem;
        border-radius: 24px;
        margin: 0 1rem;
        min-height: 500px;
    }
    
    .step-content {
        min-height: 400px;
    }
    
    .step-header h3 {
        font-size: 2.2rem;
    }
    
    .step-header p {
        font-size: 1.1rem;
    }
    
    .welcome-content h3 {
        font-size: 2.5rem;
    }
    
    .opportunity-preview {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin: 3rem 0;
    }
    
    .opportunity-item {
        padding: 2.5rem 2rem;
        text-align: center;
        border-radius: 16px;
    }
    
    .opportunity-icon {
        font-size: 3rem;
        margin-bottom: 1.2rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .partner-type-grid {
        grid-template-columns: 1fr;
        gap: 1.8rem;
    }
    
    .partner-type-card {
        padding: 2.5rem 2rem;
        text-align: center;
        border-radius: 20px;
    }
    
    .type-icon {
        font-size: 3.5rem;
        margin-bottom: 1.5rem;
        flex-shrink: 0;
    }
    
    .partner-type-card h4 {
        font-size: 1.4rem;
    }
    
    .interest-option {
        padding: 1.8rem 2rem;
        margin-bottom: 1.2rem;
        border-radius: 14px;
        gap: 1.2rem;
    }
    
    .interest-icon {
        font-size: 1.8rem;
    }
    
    .interest-text h4 {
        font-size: 1.1rem;
    }
    
    .step-navigation {
        flex-direction: column;
        gap: 1.5rem;
        margin-top: 2.5rem;
    }
    
    .step-btn {
        width: 100%;
        padding: 1.3rem;
        font-size: 1.05rem;
        border-radius: 12px;
    }
    
    .progress-indicator {
        gap: 1rem;
        margin-top: 3rem;
        padding-top: 2rem;
        flex-wrap: wrap;
    }
    
    .progress-step {
        gap: 0.5rem;
    }
    
    .step-number {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
    
    .step-label {
        font-size: 0.75rem;
    }
}

/* Logistics Section Styling */
.logistics-section {
    background: linear-gradient(135deg, rgba(250, 251, 252, 0.9) 0%, rgba(255, 255, 255, 0.95) 100%);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    margin-bottom: 2.5rem;
    border: 1px solid rgba(102, 51, 153, 0.1);
    backdrop-filter: blur(10px);
}

.logistics-section h4 {
    color: #663399;
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    margin-bottom: 2rem;
    font-weight: 600;
    text-align: center;
    letter-spacing: -0.01em;
}

.logistics-section .form-grid {
    margin-bottom: 0;
}

.logistics-section .form-group input,
.logistics-section .form-group select,
.logistics-section .form-group textarea {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(102, 51, 153, 0.15);
    border-radius: 12px;
    padding: 1.3rem 1.6rem;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logistics-section .form-group input:focus,
.logistics-section .form-group select:focus,
.logistics-section .form-group textarea:focus {
    border-color: #663399;
    box-shadow: 0 0 0 4px rgba(102, 51, 153, 0.1);
    transform: translateY(-2px);
    background: white;
}

.logistics-section .form-group textarea {
    min-height: 120px;
    resize: vertical;
    line-height: 1.6;
}

/* Additional Logistics Styling */
.logistics-section {
    background: #FAFBFC;
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 2rem;
    border: 1px solid rgba(102, 51, 153, 0.08);
}

.logistics-section h4 {
    color: #663399;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-align: center;
}

.logistics-section .form-grid {
    margin-bottom: 0;
}

.logistics-section .form-group input,
.logistics-section .form-group select,
.logistics-section .form-group textarea {
    background: white;
    border: 1.5px solid #E2E8F0;
    border-radius: 8px;
    padding: 0.9rem 1.1rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.logistics-section .form-group input:focus,
.logistics-section .form-group select:focus,
.logistics-section .form-group textarea:focus {
    border-color: #663399;
    box-shadow: 0 0 0 3px rgba(102, 51, 153, 0.08);
    transform: translateY(-1px);
}

/* Summary Section Styling */
.summary-section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(102, 51, 153, 0.1);
}

.summary-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.summary-section h4 {
    color: #663399;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

/* Form validation states for configurator */
.partnership-configurator .form-group input.error,
.partnership-configurator .form-group select.error,
.partnership-configurator .form-group textarea.error {
    border-color: #E53E3E;
    box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.08);
    animation: shake 0.5s ease-in-out;
}

/* Success state for completed steps */
.step.completed::before {
    content: '✓';
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #28a745;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

/* Additional Contact Form Mobile Fixes */
@media (max-width: 768px) {
    .contact-content {
        gap: 2.5rem;
        margin-top: 3rem;
    }
    
    .contact-form-section {
        padding: 2.5rem 2rem;
        border-radius: 18px;
        margin: 0;
        max-width: none;
    }
    
    .contact-form {
        gap: 1.5rem;
    }
    
    .contact-form .form-group {
        margin-bottom: 0;
    }
    
    .contact-form .form-group label {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
        font-weight: 600;
    }
    
    .contact-form .form-group input,
    .contact-form .form-group select,
    .contact-form .form-group textarea {
        padding: 1rem 1.1rem;
        font-size: 1rem;
        border-radius: 10px;
        border: 1.5px solid #E2E8F0;
        line-height: 1.5;
        min-height: auto;
    }
    
    .contact-form .form-group textarea {
        min-height: 100px;
        resize: vertical;
    }
    
    .contact-form .submit-btn {
        margin-top: 1rem;
        padding: 1.1rem 2rem;
        font-size: 1rem;
        border-radius: 10px;
    }
}

@media (max-width: 480px) {
    .contact-form-section {
        padding: 2rem 1.5rem;
        margin: 0 10px;
    }
    
    .contact-form .form-group input,
    .contact-form .form-group select,
    .contact-form .form-group textarea {
        padding: 0.9rem 1rem;
        font-size: 0.95rem;
    }
    
    .contact-form .form-group textarea {
        min-height: 90px;
    }
}

/* Partners Section - Professional Typeform-Style Configurator */
.partners {
    background: linear-gradient(135deg, #663399 0%, #5A4D7A 30%, #8B69B8 100%);
    min-height: 100vh;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.partners::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    animation: float 25s ease-in-out infinite;
}

.partners .container {
    position: relative;
    z-index: 2;
}

/* Partnership Configurator - Modern Design */
.partnership-configurator {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(25px);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    box-shadow: 
        0 24px 80px rgba(0, 0, 0, 0.12),
        0 8px 32px rgba(102, 51, 153, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    min-height: 450px;
}

.step {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.step.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.step-content {
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.step-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.step-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #663399;
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.step-header p {
    color: #4A5568;
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 400;
}

/* Welcome Step - Hero-Style */
.welcome-content {
    text-align: center;
}

.welcome-content h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #663399, #8B69B8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.opportunity-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.opportunity-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(250, 251, 252, 0.9) 100%);
    padding: 2rem 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(102, 51, 153, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.opportunity-item:hover {
    transform: translateY(-12px) scale(1.05);
    box-shadow: 0 24px 64px rgba(102, 51, 153, 0.2);
    border-color: rgba(102, 51, 153, 0.25);
}

.opportunity-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
    filter: drop-shadow(0 2px 4px rgba(102, 51, 153, 0.15));
}

.opportunity-text h4 {
    color: #663399;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
}

.opportunity-text p {
    color: #4A5568;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
    font-weight: 400;
}

/* Form Grid - Professional Layout */
.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.partnership-configurator .form-group {
    position: relative;
}

.partnership-configurator .form-group label {
    color: #663399;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    letter-spacing: 0.2px;
    display: block;
}

.partnership-configurator .form-group input,
.partnership-configurator .form-group select {
    width: 100%;
    padding: 1.5rem 1.8rem;
    border: 2px solid rgba(102, 51, 153, 0.15);
    border-radius: 16px;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.9);
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    box-sizing: border-box;
}

.partnership-configurator .form-group input:focus,
.partnership-configurator .form-group select:focus {
    outline: none;
    border-color: #663399;
    box-shadow: 0 0 0 4px rgba(102, 51, 153, 0.1);
    transform: translateY(-3px);
    background: white;
}

/* Partner Type Selection - Enhanced Card Design */
.partner-type-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.partner-type-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(250, 251, 252, 0.9) 100%);
    padding: 3rem 2.5rem;
    border-radius: 24px;
    border: 2px solid rgba(102, 51, 153, 0.1);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}

.partner-type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(102, 51, 153, 0.05), rgba(139, 105, 184, 0.08));
    opacity: 0;
    transition: all 0.4s ease;
}

.partner-type-card:hover::before {
    opacity: 1;
}

.partner-type-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 24px 64px rgba(102, 51, 153, 0.2);
    border-color: rgba(102, 51, 153, 0.3);
}

.partner-type-card.selected {
    border-color: #663399;
    background: linear-gradient(135deg, rgba(102, 51, 153, 0.15) 0%, rgba(139, 105, 184, 0.12) 100%);
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 60px rgba(102, 51, 153, 0.3);
}

.type-icon {
    font-size: 4rem;
    display: block;
    margin-bottom: 2rem;
    filter: drop-shadow(0 4px 8px rgba(102, 51, 153, 0.2));
    position: relative;
    z-index: 2;
}

.partner-type-card h4 {
    color: #663399;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.01em;
    position: relative;
    z-index: 2;
}

.partner-type-card p {
    color: #4A5568;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
    position: relative;
    z-index: 2;
}

/* Interest Options - List Design */
.interests-container,
.logistics-container {
    margin-bottom: 3rem;
}

.interest-option {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(250, 251, 252, 0.8) 100%);
    padding: 2rem 2.5rem;
    margin-bottom: 1.5rem;
    border-radius: 16px;
    border: 2px solid rgba(102, 51, 153, 0.1);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    backdrop-filter: blur(10px);
}

.interest-option:hover {
    border-color: rgba(102, 51, 153, 0.25);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(250, 251, 252, 0.9) 100%);
    transform: translateX(8px);
    box-shadow: 0 8px 32px rgba(102, 51, 153, 0.1);
}

.interest-option.selected {
    border-color: #663399;
    background: linear-gradient(135deg, rgba(102, 51, 153, 0.1) 0%, rgba(139, 105, 184, 0.08) 100%);
    transform: translateX(12px);
    box-shadow: 0 12px 40px rgba(102, 51, 153, 0.2);
}

.interest-icon {
    font-size: 2rem;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(102, 51, 153, 0.15));
}

.interest-text h4 {
    color: #663399;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
}

.interest-text p {
    color: #4A5568;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
    font-weight: 400;
}

/* Progress Indicator - Enhanced Design */
.progress-indicator {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(102, 51, 153, 0.15);
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    opacity: 0.4;
    transition: all 0.4s ease;
    cursor: pointer;
}

.progress-step.active {
    opacity: 1;
    transform: scale(1.1);
}

.progress-step.completed {
    opacity: 0.8;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(102, 51, 153, 0.1);
    color: #663399;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.4s ease;
    border: 2px solid rgba(102, 51, 153, 0.2);
}

.progress-step.active .step-number {
    background: #663399;
    color: white;
    border-color: #663399;
    box-shadow: 0 8px 24px rgba(102, 51, 153, 0.3);
}

.progress-step.completed .step-number {
    background: #8B69B8;
    color: white;
    border-color: #8B69B8;
}

.step-label {
    font-size: 0.9rem;
    color: #4A5568;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Step Navigation - Professional Buttons */
.step-navigation {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 3rem;
}

.step-btn {
    padding: 1.3rem 3rem;
    border: none;
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}

.step-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
}

.step-btn:hover::before {
    width: 300px;
    height: 300px;
}

.step-btn.primary {
    background: linear-gradient(135deg, #663399 0%, #5A4D7A 100%);
    color: white;
    box-shadow: 0 12px 32px rgba(102, 51, 153, 0.3);
}

.step-btn.primary:hover:not(.disabled) {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 48px rgba(102, 51, 153, 0.4);
}

.step-btn.secondary {
    background: transparent;
    color: #663399;
    border: 2px solid #663399;
}

.step-btn.secondary:hover {
    background: #663399;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(102, 51, 153, 0.2);
}

.step-btn.disabled {
    background: rgba(102, 51, 153, 0.1);
    color: rgba(102, 51, 153, 0.5);
    cursor: not-allowed;
    box-shadow: none;
}

.step-btn.disabled::before {
    display: none;
}

/* Summary Content - Professional Layout */
.summary-content {
    background: linear-gradient(135deg, rgba(250, 251, 252, 0.9) 0%, rgba(255, 255, 255, 0.95) 100%);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(102, 51, 153, 0.1);
    margin-bottom: 3rem;
    backdrop-filter: blur(10px);
}

.summary-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(102, 51, 153, 0.1);
}

.summary-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.summary-section h4 {
    color: #663399;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(102, 51, 153, 0.05);
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-label {
    color: #663399;
    font-weight: 600;
    font-size: 1rem;
}

.summary-value {
    color: #4A5568;
    font-size: 1rem;
    text-align: right;
    max-width: 300px;
    font-weight: 400;
}

/* Ultra Mobile Optimization for Partnership Configurator */
@media (max-width: 480px) {
    .partnership-configurator {
        padding: 2rem 1.5rem;
        border-radius: 20px;
        margin: 0 0.5rem;
        min-height: 400px;
    }
    
    .step-header h3 {
        font-size: 1.8rem;
    }
    
    .welcome-content h3 {
        font-size: 2rem;
    }
    
    .opportunity-item {
        padding: 1.5rem 1rem;
        border-radius: 12px;
    }
    
    .opportunity-icon svg {
        width: 32px;
        height: 32px;
    }
    
    .partner-type-card {
        padding: 2rem 1.5rem;
        border-radius: 16px;
    }
    
    .type-icon svg {
        width: 40px;
        height: 40px;
    }
    
    .interest-option {
        padding: 1.5rem;
        gap: 1rem;
        border-radius: 12px;
    }
    
    .step-navigation {
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .step-btn {
        padding: 1.1rem;
        font-size: 1rem;
        border-radius: 10px;
    }
    
    .progress-indicator {
        gap: 0.8rem;
        margin-top: 2rem;
    }
    
    .step-number {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }
    
    .step-label {
        font-size: 0.7rem;
    }
}
