/**
 * Contact Page Specific Styles
 * Extracted from inline styles for better performance
 */

/* Contact Section */
.contact-section {
    padding: 3rem 0;
}

/* Contact Methods Grid */
.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.contact-method-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-method-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.method-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 2.5rem;
}

.whatsapp .method-icon {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
}

.email .method-icon {
    background: linear-gradient(135deg, #EA4335 0%, #C5221F 100%);
    color: white;
}

.phone .method-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.support .method-icon {
    background: linear-gradient(135deg, #ff6b00 0%, #ff8c00 100%);
    color: white;
}

.contact-method-card h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.contact-method-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.contact-details {
    margin: 1.5rem 0;
}

.contact-link {
    display: block;
    color: #ff6b00;
    text-decoration: none;
    font-weight: bold;
    margin: 0.5rem 0;
    font-size: 1.1rem;
}

.contact-link:hover {
    color: #ff8c00;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background: #128C7E;
}

.btn-email {
    background: #EA4335;
    color: white;
}

.btn-email:hover {
    background: #C5221F;
}

.btn-phone {
    background: #667eea;
    color: white;
}

.btn-phone:hover {
    background: #764ba2;
}

.btn-support {
    background: #ff6b00;
    color: white;
}

.btn-support:hover {
    background: #ff8c00;
}

.availability {
    margin-top: 1rem;
    color: #28a745;
    font-weight: bold;
}

.availability i {
    margin-left: 0.5rem;
}

/* Company Info Section */
.company-info-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 3rem;
    border-radius: 15px;
    margin: 3rem 0;
}

.company-info-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
}

.company-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.company-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
}

.company-detail i {
    font-size: 2rem;
    color: #ff6b00;
    margin-top: 0.5rem;
}

.company-detail strong {
    display: block;
    color: #333;
    margin-bottom: 0.5rem;
}

.company-detail p {
    color: #666;
    margin: 0;
}

/* Contact Form Section */
.contact-form-section {
    max-width: 800px;
    margin: 3rem auto;
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-form-section h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: #333;
}

.contact-form-section > p {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
}

.contact-form {
    margin-top: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #333;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Tajawal', 'Arial', 'Helvetica', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b00;
}

.form-notice {
    background: #e3f2fd;
    padding: 1rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.form-notice i {
    color: #2196F3;
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.form-notice p {
    color: #1976D2;
    margin: 0;
}

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, #ff6b00 0%, #ff8c00 100%);
    color: white;
    padding: 1.2rem;
    font-size: 1.1rem;
}

.btn-submit:hover {
    background: linear-gradient(135deg, #ff8c00 0%, #ffa500 100%);
}

.form-message {
    margin-top: 2rem;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    font-weight: bold;
}

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

.form-message i {
    margin-left: 0.5rem;
    font-size: 1.5rem;
}

/* FAQ Quick Section */
.faq-quick-section {
    margin: 3rem 0;
}

.faq-quick-section h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: #333;
}

.faq-quick-section > p {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.faq-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.faq-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.faq-card i {
    font-size: 3rem;
    color: #ff6b00;
    margin-bottom: 1rem;
}

.faq-card h3 {
    color: #333;
    margin-bottom: 0.5rem;
}

.faq-card p {
    color: #666;
    margin: 0;
}

/* Business Hours Section */
.business-hours-section {
    margin: 3rem 0;
}

.business-hours-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.hours-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.hours-card i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hours-card h3 {
    color: white;
    margin-bottom: 1rem;
}

.hours-time {
    font-size: 2rem;
    font-weight: bold;
    margin: 1rem 0;
}

.hours-desc {
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-methods-grid,
    .company-details-grid,
    .faq-grid,
    .hours-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-section {
        padding: 2rem 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Tablet Breakpoint */
@media (min-width: 768px) and (max-width: 992px) {
    .contact-methods-grid,
    .company-details-grid,
    .faq-grid,
    .hours-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
