.contact-section {
    padding: 120px 0;
    background: linear-gradient(to bottom right, #080122, #1e1046);
    position: relative;
    overflow: hidden;
    z-index: 1;
    color: var(--color-white);
}

.contact-shape {
    position: absolute;
    z-index: 0;
    opacity: 0.3;
}

.top-shape {
    top: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(205, 86, 255, 0.3) 0%, rgba(205, 86, 255, 0) 70%);
    filter: blur(40px);
}

.bottom-shape {
    bottom: -200px;
    left: -150px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(205, 86, 255, 0.2) 0%, rgba(205, 86, 255, 0) 60%);
    filter: blur(50px);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.contact-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.contact-header h2 {
    font-size: 3rem;
    font-weight: var(--font-medium);
    margin-bottom: 20px;
    color: var(--color-white);
}

.contact-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-form-container {
    background: rgba(8, 1, 34, 0.8);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 28px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    width: 100%;
    transition: all 0.3s ease;
}

.contact-form-container:hover {
    transform: translateY(-5px);
    border-color: rgba(205, 86, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(205, 86, 255, 0.1);
}

.contact-form-container h3 {
    font-size: 1.5rem;
    margin: 0 0 20px;
    font-weight: var(--font-medium);
    color: var(--color-white);
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row {
    display: flex;
    gap: 16px;
    width: 100%;
}

.form-field {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 8px;
    margin: 12px 0px 0px 0px;
}

.form-field label {
    color: var(--color-white);
    font-size: 0.9rem;
    font-weight: 500;
}

.form-field input,
.form-field textarea {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 16px;
    border-radius: 8px;
    color: var(--color-white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-field textarea {
    min-height: 120px;
    resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: rgba(205, 86, 255, 0.5);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 3px rgba(205, 86, 255, 0.15);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-field.checkbox {
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
    margin-top: 4px;
}

.form-field.checkbox input {
    margin-top: 3px;
    accent-color: var(--color-purple, #CD56FF);
    width: auto;
}

.form-field.checkbox label {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.form-field.checkbox a {
    color: var(--color-purple, #CD56FF);
    text-decoration: none;
    transition: all 0.2s ease;
}

.form-field.checkbox a:hover {
    text-decoration: underline;
}

.submit-btn {
    background: rgba(205, 86, 255, 0.8);
    color: white;
    border: none;
    padding: 14px;

    width: 100%;

    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 12px;
    font-size: 1rem;
}

.submit-btn:hover {
    background: rgba(205, 86, 255, 1);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.connect-card {
    background: rgba(8, 1, 34, 0.8);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    width: 100%;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.connect-card:hover {
    transform: translateY(-5px);
    border-color: rgba(205, 86, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(205, 86, 255, 0.1);
}

.connect-header {
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.connect-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(205, 86, 255, 0.1);
    border-radius: 50%;
    padding: 10px;
}

.connect-header h3 {
    font-size: 1.5rem;
    margin: 0;
    font-weight: var(--font-medium);
}

.connect-options {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex-grow: 1;
}

.connect-option {
    display: flex;
    align-items: center;
    padding: 15px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    color: var(--color-white);
    text-decoration: none;
    position: relative;
    z-index: 1;
}

.connect-option:hover {
    transform: translateY(-3px);
    background: rgba(205, 86, 255, 0.1);
    border-color: rgba(205, 86, 255, 0.3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.option-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(205, 86, 255, 0.1);
    margin-right: 15px;
    position: relative;
    z-index: 1;
}

.option-info {
    flex: 1;
    position: relative;
    z-index: 1;
}

.option-info h4 {
    margin: 0 0 5px;
    font-size: 1.1rem;
    font-weight: var(--font-medium);
}

.option-info p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.option-arrow {
    color: var(--text-muted);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.connect-option:hover .option-arrow {
    color: #CD56FF;
    transform: translateX(3px);
}


.connect-option.facebook .option-icon {
    background: rgba(66, 103, 178, 0.1);
}

.connect-option.facebook:hover {
    background: rgba(66, 103, 178, 0.1);
}

.connect-option.whatsapp .option-icon {
    background: rgba(37, 211, 102, 0.1);
}

.connect-option.whatsapp:hover {
    background: rgba(37, 211, 102, 0.1);
}

.connect-option.email .option-icon {
    background: rgba(205, 86, 255, 0.1);
}

.connect-option.email:hover {
    background: rgba(205, 86, 255, 0.1);
}

.connect-option.distributor.featured {
    background: rgba(205, 86, 255, 0.15);
    border-color: rgba(205, 86, 255, 0.4);
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    padding: 20px 15px;
}

.connect-option.distributor.featured::before {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(205, 86, 255, 0.2) 0%, rgba(205, 86, 255, 0) 70%);
    top: -75px;
    right: -75px;
    border-radius: 50%;
    z-index: 0;
}

.connect-option.distributor.featured .option-icon {
    background: rgba(205, 86, 255, 0.2);
    box-shadow: 0 0 0 5px rgba(205, 86, 255, 0.1);
}

.connect-option.distributor.featured h4 {
    color: var(--color-purple, #CD56FF);
    font-weight: 600;
    font-size: 1.2rem;
}

.connect-option.distributor.featured p {
    color: rgba(255, 255, 255, 0.7);
}

.connect-option.distributor.featured:hover {
    transform: translateY(-5px);
    background: rgba(205, 86, 255, 0.2);
    border-color: rgba(205, 86, 255, 0.6);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3), 0 0 15px rgba(205, 86, 255, 0.2);
}

.connect-option.distributor.featured .option-arrow {
    color: rgba(205, 86, 255, 0.6);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(205, 86, 255, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(205, 86, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(205, 86, 255, 0);
    }
}

.connect-option.distributor.featured .option-icon {
    animation: pulse 2s infinite;
}

.business-hours-section {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
}

.business-hours-section h4 {
    font-size: 1.2rem;
    margin: 0 0 15px 0;
    font-weight: var(--font-medium);
    color: var(--color-white);
    display: flex;
    align-items: center;
    gap: 10px;
}

.business-hours-section h4::before {
    content: "";
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='10' stroke='%23CD56FF' stroke-width='1.5'/%3E%3Cpath d='M12 6V12L16 14' stroke='%23CD56FF' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

.business-hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.business-hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.business-hours-list li:last-child {
    border-bottom: none;
}

.business-hours-list .day {
    color: var(--color-white);
    font-weight: var(--font-medium);
}

.business-hours-list .hours {
    color: var(--text-muted);
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 800px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 80px 0;
    }
    
    .contact-header h2 {
        font-size: 2.2rem;
    }
    
    .contact-subtitle {
        font-size: 1.1rem;
    }
    
    .form-row {
        flex-direction: column;
        gap: 16px;
    }
    
    .submit-btn {
        padding: 12px;
    }
    
    .contact-form-container {
        padding: 20px;
    }
    
    .business-hours-list li {
        flex-direction: column;
        gap: 5px;
    }
}

@media (max-width: 480px) {
    .contact-header h2 {
        font-size: 2rem;
    }
    
    .contact-subtitle {
        font-size: 1rem;
    }
    
    .connect-header {
        flex-direction: column;
        text-align: center;
        padding: 20px 15px;
    }
    
    .business-hours-section h4 {
        justify-content: center;
    }
    
    .business-hours-section h4::before {
        display: none;
    }

    .connect-option.distributor.featured {
        padding: 15px;
    }
    
    .form-field.checkbox label {
        font-size: 0.75rem;
    }
    
    .contact-form-container h3 {
        font-size: 1.3rem;
    }
    
    .form-field input,
    .form-field textarea {
        padding: 10px 14px;
        font-size: 0.95rem;
    }
}
