.contact-container {
    background: #f8f9fa;
    min-height: 100vh;
    padding: 40px 0;
}

.page-header {
    text-align: center;
    margin-bottom: 40px;
}

.page-header h1 {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 12px;
}

.page-header p {
    font-size: 16px;
    color: #6c757d;
    margin: 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.contact-form-section {
    background: white;
    border-radius: 4px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.success-message-box {
    padding: 60px 40px;
    text-align: center;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    animation: successPulse 1.5s ease-in-out infinite;
}

@keyframes successPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(40, 167, 69, 0);
    }
}

.success-icon i {
    font-size: 40px;
    color: white;
}

.success-message-box h2 {
    font-size: 28px;
    font-weight: 700;
    color: #28a745;
    margin: 0 0 16px 0;
}

.success-message-box p {
    font-size: 16px;
    color: #6c757d;
    margin: 0 0 32px 0;
    line-height: 1.6;
}

.btn-new-message {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fa5675;
    color: white;
    padding: 14px 28px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.2s ease;
}

.btn-new-message:hover {
    background: #e84a68;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(250, 86, 117, 0.3);
    text-decoration: none;
    color: white;
}

.btn-new-message i {
    font-size: 16px;
}

.form-card {
    padding: 0;
}

.form-header {
    background: #fa5675;
    color: white;
    padding: 32px;
    text-align: center;
}

.form-header h2 {
    margin: 0 0 10px 0;
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.form-header p {
    margin: 0;
    opacity: 0.95;
    font-size: 14px;
}

.form-error-message {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
    padding: 16px 20px;
    margin: 20px 32px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    position: relative;
}

.form-error-message i {
    font-size: 18px;
    color: #dc3545;
    flex-shrink: 0;
}

.form-error-message span {
    flex: 1;
}

.error-close {
    background: rgba(0, 0, 0, 0.05);
    border: none;
    color: #721c24;
    cursor: pointer;
    padding: 4px 8px;
    opacity: 0.7;
    transition: all 0.2s;
    border-radius: 4px;
    font-size: 14px;
}

.error-close:hover {
    opacity: 1;
    background: rgba(0, 0, 0, 0.1);
}

.contact-form {
    padding: 32px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

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

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 13px;
}

.form-group label i {
    color: #fa5675;
    font-size: 14px;
    width: 16px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    font-family: var(--font-family);
    font-size: 14px;
    transition: all 0.2s ease;
    box-sizing: border-box;
    background: #fff;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #fa5675;
    box-shadow: 0 0 0 3px rgba(250, 86, 117, 0.1);
}

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

.textarea-help {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 6px;
    font-size: 12px;
    color: #6c757d;
}

.char-count {
    font-weight: 600;
    color: #fa5675;
}

.submit-btn {
    width: 100%;
    background: #fa5675;
    color: white;
    border: none;
    padding: 16px 24px;
    border-radius: 4px;
    font-family: var(--font-family);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-arrow {
    transition: transform 0.2s ease;
}

.submit-btn:hover {
    background: #e84a68;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(250, 86, 117, 0.3);
}

.submit-btn:hover .btn-arrow {
    transform: translateX(3px);
}

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

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card,
.quick-actions-card,
.faq-card {
    background: white;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: all 0.2s ease;
}

.info-card:hover,
.quick-actions-card:hover,
.faq-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.info-header,
.quick-header,
.faq-header {
    background: #f8f9fa;
    padding: 20px;
    border-bottom: 1px solid #e9ecef;
}

.info-header h3,
.quick-header h3,
.faq-header h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-header h3 i,
.quick-header h3 i,
.faq-header h3 i {
    color: #fa5675;
    font-size: 18px;
}

.quick-header p {
    margin: 6px 0 0 0;
    font-size: 13px;
    color: #6c757d;
}

.info-list {
    padding: 20px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 0px;
    padding: 12px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.info-item:hover {
    background: #f8f9fa;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-icon {
    width: 44px;
    height: 44px;
    background: #fa5675;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    color: white;
    font-size: 18px;
}

.info-content h4 {
    margin: 0 0 4px 0;
    font-size: 14px;
    font-weight: 700;
    color: #2c3e50;
}

.info-content p {
    margin: 0;
    font-size: 13px;
    color: #6c757d;
    line-height: 1.6;
}

.info-content a {
    color: #fa5675;
    text-decoration: none;
    font-weight: 600;
}

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

.quick-actions {
    padding: 16px;
}

.quick-action {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.2s ease;
    margin-bottom: 10px;
    background: #f8f9fa;
}

.quick-action:last-child {
    margin-bottom: 0;
}

.quick-action:hover {
    background: #e9ecef;
    transform: translateX(3px);
    text-decoration: none;
}

.quick-action.whatsapp:hover {
    background: #e8f5e9;
}

.quick-action.phone:hover {
    background: #e3f2fd;
}

.quick-action.email:hover {
    background: #fff3e0;
}

.action-icon {
    width: 44px;
    height: 44px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.whatsapp .action-icon {
    background: #25d366;
}

.phone .action-icon {
    background: #2196f3;
}

.email .action-icon {
    background: #ff9800;
}

.action-icon i {
    color: white;
    font-size: 20px;
}

.action-content {
    flex: 1;
}

.action-content h4 {
    margin: 0 0 2px 0;
    font-size: 14px;
    font-weight: 700;
    color: #2c3e50;
}

.action-content p {
    margin: 0;
    font-size: 12px;
    color: #6c757d;
}

.action-arrow {
    color: #dee2e6;
    transition: all 0.2s ease;
    font-size: 16px;
}

.quick-action:hover .action-arrow {
    color: #fa5675;
    transform: translateX(2px);
}

.faq-list {
    padding: 20px;
}

.faq-item {
    margin-bottom: 16px;
    padding: 14px;
    border-radius: 4px;
    background: #f8f9fa;
    border-left: 3px solid #fa5675;
    transition: all 0.2s ease;
}

.faq-item:hover {
    background: #e9ecef;
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-item h4 {
    margin: 0 0 6px 0;
    font-size: 14px;
    font-weight: 700;
    color: #2c3e50;
}

.faq-item p {
    margin: 0;
    font-size: 13px;
    color: #6c757d;
    line-height: 1.6;
}

.alert {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-radius: 4px;
    margin-bottom: 30px;
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 500;
}

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

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

.alert-content {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.alert-content i {
    font-size: 18px;
}

.alert-close {
    background: rgba(0, 0, 0, 0.05);
    border: none;
    color: inherit;
    cursor: pointer;
    padding: 4px 8px;
    margin-left: 10px;
    opacity: 0.7;
    transition: all 0.2s;
    border-radius: 4px;
    font-size: 14px;
}

.alert-close:hover {
    opacity: 1;
    background: rgba(0, 0, 0, 0.1);
}

.validation-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    color: #721c24;
    padding: 16px 20px;
    border-radius: 4px;
    border: 2px solid #dc3545;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 500;
    z-index: 10000;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease;
}

.validation-toast.show {
    opacity: 1;
    transform: translateY(0);
}

.validation-toast i {
    font-size: 18px;
    color: #dc3545;
}

@media (max-width: 992px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .contact-info-section {
        order: 1;
    }
    
    .contact-form-section {
        order: 2;
    }
}

@media (max-width: 768px) {
    .contact-container {
        padding: 30px 0;
    }
    
    .page-header h1 {
        font-size: 28px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .form-header {
        padding: 28px 20px;
    }
    
    .form-header h2 {
        font-size: 22px;
    }
    
    .contact-form {
        padding: 28px 20px;
    }
    
    .info-list,
    .quick-actions,
    .faq-list {
        padding: 16px;
    }
    
    .info-header,
    .quick-header,
    .faq-header {
        padding: 16px;
    }
}

@media (max-width: 480px) {
    .contact-container {
        padding: 20px 0;
    }
    
    .page-header {
        margin-bottom: 30px;
    }
    
    .page-header h1 {
        font-size: 24px;
    }
    
    .page-header p {
        font-size: 15px;
    }
    
    .contact-content {
        gap: 20px;
    }
    
    .form-header {
        padding: 24px 16px;
    }
    
    .form-header h2 {
        font-size: 20px;
    }
    
    .contact-form {
        padding: 24px 16px;
    }
    
    .info-list,
    .quick-actions,
    .faq-list {
        padding: 14px;
    }
    
    .info-header,
    .quick-header,
    .faq-header {
        padding: 14px;
    }
    
    .quick-action {
        padding: 12px;
    }
    
    .submit-btn {
        padding: 14px 20px;
        font-size: 14px;
    }
}

