/* =========================================
   CONTACT US PAGE STYLES
   ========================================= */

/* Page Title */
.page-title {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 0;
    border-bottom: 1px solid #dee2e6;
}

.page-title h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 10px;
    font-weight: 700;
}

.breadcrumbs {
    color: #666;
    font-size: 14px;
}

.breadcrumbs a {
    color: #f15a2b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumbs a:hover {
    color: #d1481e;
}

.breadcrumbs .current {
    color: #999;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Contact Form */
.contact-form-wrapper {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    overflow: hidden;
}

.contact-form {
    padding: 40px;
}

.contact-form h3 {
    font-size: 1.75rem;
    color: #333;
    margin-bottom: 30px;
    font-weight: 600;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #f15a2b;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(241, 90, 43, 0.1);
}

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

.submit-btn {
    background: linear-gradient(135deg, #f15a2b 0%, #d1481e 100%);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(241, 90, 43, 0.3);
}

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

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Contact Info */
.contact-info-wrapper {
    display: flex;
    align-items: center;
}

.contact-info {
    width: 100%;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    line-height: 1.2;
}

.contact-info h2 .highlight {
    color: #f15a2b;
    display: block;
}

.contact-details {
    margin-top: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 15px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-item:hover {
    background: #fff;
    border-color: #f15a2b;
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 20px;
    flex-shrink: 0;
}

/* Specific icon colors */
.contact-item:nth-child(1) .contact-icon {
    background: linear-gradient(135deg, #f15a2b 0%, #d1481e 100%);
    color: white;
}

.contact-item:nth-child(2) .contact-icon {
    background: #25D366;
    color: white;
}

.contact-item:nth-child(3) .contact-icon {
    background: linear-gradient(135deg, #f15a2b 0%, #d1481e 100%);
    color: white;
}

.contact-item:nth-child(4) .contact-icon {
    background: #1877F2;
    color: white;
}

.contact-text a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.contact-text a:hover {
    color: #f15a2b;
}

/* Map Section */
.map-section {
    background: #f8f9fa;
    padding: 60px 0;
}

.container-fluid {
    width: 100%;
    padding: 0;
}

.map-container {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    margin: 0 20px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(0.2);
    transition: filter 0.3s ease;
}

.map-container:hover iframe {
    filter: grayscale(0);
}

/* Quick Contact */
.quick-contact {
    background: linear-gradient(135deg, #333 0%, #2c2c2c 100%);
    color: white;
    padding: 60px 0;
}

.quick-contact-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.quick-contact-text h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: white;
}

.quick-contact-text p {
    color: #ccc;
    font-size: 1.1rem;
}

.quick-contact-actions {
    display: flex;
    gap: 20px;
}

.quick-btn {
    padding: 15px 30px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 2px solid transparent;
}

.quick-btn.phone {
    background: #f15a2b;
    color: white;
}

.quick-btn.phone:hover {
    background: #d1481e;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(241, 90, 43, 0.3);
}

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

.quick-btn.whatsapp:hover {
    background: #1da851;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.quick-btn.email {
    background: transparent;
    color: white;
    border-color: #666;
}

.quick-btn.email:hover {
    background: #f15a2b;
    border-color: #f15a2b;
    transform: translateY(-3px);
}

/* Business Info */
.business-info {
    padding: 80px 0;
    background: #fff;
}

.business-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.business-item {
    text-align: center;
    padding: 40px 30px;
    background: #f8f9fa;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.business-item:hover {
    background: #fff;
    border-color: #f15a2b;
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.business-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f15a2b 0%, #d1481e 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
}

.business-item h4 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #333;
    font-weight: 600;
}

.business-item p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.business-hours {
    text-align: left;
    max-width: 250px;
    margin: 0 auto;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

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

.day {
    font-weight: 500;
    color: #333;
}

.time {
    color: #666;
}

.time.closed {
    color: #f15a2b;
    font-weight: 500;
}

.location-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #f15a2b;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.location-link:hover {
    color: #d1481e;
}

.support-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
}

.feature i {
    color: #f15a2b;
    font-size: 12px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-title {
        padding: 40px 0;
    }
    
    .page-title h1 {
        font-size: 2rem;
    }
    
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form {
        padding: 30px;
    }
    
    .contact-info h2 {
        font-size: 2rem;
        text-align: center;
    }
    
    .quick-contact-content {
        flex-direction: column;
        text-align: center;
    }
    
    .quick-contact-actions {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .business-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .map-container {
        height: 300px;
        margin: 0 10px;
        border-radius: 15px;
    }
}

@media (max-width: 480px) {
    .contact-form {
        padding: 20px;
    }
    
    .business-item {
        padding: 30px 20px;
    }
    
    .quick-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }
    
    .contact-icon {
        margin: 0 auto 15px;
    }
    
    .contact-item:hover {
        transform: translateY(-5px);
    }
}

/* Animation for form submission */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.fa-spinner {
    animation: spin 1s linear infinite;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
.contact-form input:focus,
.contact-form textarea:focus,
.submit-btn:focus,
.quick-btn:focus {
    outline: 2px solid #f15a2b;
    outline-offset: 2px;
}