/* Contact Page Specific Styles */

.contact-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-header h2 {
    font-size: 2.5rem;
    color: #8B4513;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

/* Contact Form Styles */
.contact-form-section {
    background: linear-gradient(135deg, #fff, #f8f9fa);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 2px solid #8B4513;
}

.contact-form-section h3 {
    font-size: 1.8rem;
    color: #8B4513;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.form-group label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 1rem;
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8B4513;
    box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
}

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

.submit-btn {
    background: linear-gradient(135deg, #8B4513, #A0522D);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.3);
}

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

/* Contact Details Styles */
.contact-details-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-details-section h3 {
    font-size: 1.8rem;
    color: #8B4513;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
}

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

.contact-card {
    background: linear-gradient(135deg, #fff, #f8f9fa);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 2px solid #e9ecef;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-color: #8B4513;
}

.contact-icon {
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #8B4513, #A0522D);
    border-radius: 50%;
    color: white;
    flex-shrink: 0;
}

.contact-info h4 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-info p {
    color: #666;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.contact-link {
    display: inline-block;
    padding: 8px 16px;
    background: #8B4513;
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-link:hover {
    background: #A0522D;
    transform: translateY(-1px);
}

.whatsapp-link {
    background: #25D366;
}

.whatsapp-link:hover {
    background: #20BA5A;
}

.instagram-link {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.instagram-link:hover {
    opacity: 0.9;
}

.facebook-link {
    background: #1877F2;
}

.facebook-link:hover {
    background: #166FE5;
}

/* Business Hours */
.business-hours {
    background: linear-gradient(135deg, #8B4513, #A0522D);
    color: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
}

.business-hours h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

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

.hours-item span:first-child {
    font-weight: 500;
}

.hours-item span:last-child {
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-container {
        margin: 30px auto;
        padding: 0 30px;
    }
    
    .contact-content {
        gap: 40px;
    }
    
    .contact-header h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .contact-container {
        margin: 20px auto;
        padding: 0 20px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-header h2 {
        font-size: 2rem;
    }
    
    .contact-header p {
        font-size: 1.1rem;
    }
    
    .contact-form-section {
        padding: 30px 20px;
    }
    
    .contact-card {
        padding: 20px;
        gap: 15px;
    }
    
    .contact-icon {
        font-size: 2rem;
        width: 50px;
        height: 50px;
    }
    
    .contact-info h4 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .contact-container {
        margin: 15px auto;
        padding: 0 15px;
    }
    
    .contact-header h2 {
        font-size: 1.8rem;
    }
    
    .contact-header p {
        font-size: 1rem;
    }
    
    .contact-form-section {
        padding: 20px 15px;
    }
    
    .contact-form-section h3,
    .contact-details-section h3 {
        font-size: 1.5rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 0.95rem;
    }
    
    .submit-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .contact-card {
        padding: 15px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .contact-icon {
        font-size: 1.8rem;
        width: 45px;
        height: 45px;
    }
    
    .business-hours {
        padding: 20px 15px;
    }
    
    .hours-item {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
}

@media (max-width: 320px) {
    .contact-header h2 {
        font-size: 1.6rem;
    }
    
    .contact-form-section h3,
    .contact-details-section h3 {
        font-size: 1.3rem;
    }
    
    .contact-card {
        padding: 12px;
    }
    
    .contact-link {
        padding: 6px 12px;
        font-size: 0.85rem;
    }
}
