/* Contact Page Styles */
.contact-page {
    max-width: 1200px;
    margin: 40px auto;
    padding: 2rem;
}

/* WhatsApp Support Box */
.whatsapp-support-box {
    max-width: 700px;
    margin: 0 auto 40px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.whatsapp-icon {
    margin-bottom: 20px;
}

.whatsapp-icon i {
    font-size: 64px;
    color: white;
}

.whatsapp-content h3 {
    color: white;
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 600;
}

.whatsapp-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 16px;
    margin-bottom: 25px;
    line-height: 1.6;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: #25D366;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.whatsapp-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: #f0f0f0;
}

.whatsapp-button i {
    font-size: 24px;
}

/* Contact Separator */
.contact-separator {
    text-align: center;
    margin: 40px 0;
    position: relative;
}

.contact-separator::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    background: #ddd;
}

.contact-separator span {
    position: relative;
    background: white;
    padding: 0 20px;
    color: #666;
    font-weight: 600;
    font-size: 16px;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.contact-info {
    padding: 30px;
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
}

.contact-info h1 {
    margin-bottom: 15px;
    font-size: 2rem;
}

.contact-methods {
    margin-top: 30px;
}

.contact-method {
    margin-bottom: 25px;
    padding: 20px;
    background: white;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.contact-method h3 {
    margin-bottom: 10px;
    color: #000000;
}

.contact-method a {
    color: #000000;
    text-decoration: none;
    font-weight: 500;
}

.contact-method a:hover {
    text-decoration: underline;
}

.contact-form {
    padding: 30px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.contact-form h2 {
    margin-bottom: 25px;
    font-size: 1.8rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #000000;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    color: #000000;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

button[type="submit"] {
    width: 100%;
    padding: 12px;
    background: #000000;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

button[type="submit"]:hover {
    background: #000000;
}

.faq {
    margin-top: 60px;
}

.faq h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.faq-item {
    padding: 25px;
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
}

.faq-item h3 {
    margin-bottom: 15px;
    color: #000000;
}

/* Responsive Design */
@media (max-width: 900px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .contact-page {
        padding: 1rem;
    }
    
    .contact-container,
    .contact-form,
    .contact-info {
        padding: 20px;
    }
}

