/* Contact Page Styles */

/* Contact Info Section */
.contact-info-section {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.contact-info-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.contact-info-subtitle {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Contact Cards */
.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, #f8fdf5 0%, #f0f7eb 100%);
    border-radius: 16px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(139, 195, 74, 0.1);
}

.contact-card:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(139, 195, 74, 0.15);
}

.contact-card-icon {
    width: 55px;
    height: 55px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-card-icon.location {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.contact-card-icon.email {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: #fff;
}

.contact-card-icon.phone {
    background: linear-gradient(135deg, #0d8a81 0%, #2ecc71 100%);
    color: #fff;
}

.contact-card-icon.hours {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    color: #fff;
}

.contact-card-content h6 {
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

.contact-card-content p {
    color: #666;
    margin-bottom: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.contact-card-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-card-content a:hover {
    color: var(--primary-dark);
}

/* Quick Contact */
.quick-contact {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.quick-contact-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.quick-contact-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.quick-link {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.quick-link:hover {
    transform: translateY(-5px);
}

.quick-link.facebook {
    background: rgba(59, 89, 152, 0.1);
    color: #3b5998;
}

.quick-link.facebook:hover {
    background: #3b5998;
    color: #fff;
    box-shadow: 0 8px 20px rgba(59, 89, 152, 0.4);
}

.quick-link.twitter {
    background: rgba(29, 161, 242, 0.1);
    color: #1da1f2;
}

.quick-link.twitter:hover {
    background: #1da1f2;
    color: #fff;
    box-shadow: 0 8px 20px rgba(29, 161, 242, 0.4);
}

.quick-link.linkedin {
    background: rgba(0, 119, 181, 0.1);
    color: #0077b5;
}

.quick-link.linkedin:hover {
    background: #0077b5;
    color: #fff;
    box-shadow: 0 8px 20px rgba(0, 119, 181, 0.4);
}

.quick-link.youtube {
    background: rgba(255, 0, 0, 0.1);
    color: #ff0000;
}

.quick-link.youtube:hover {
    background: #ff0000;
    color: #fff;
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.4);
}

.quick-link.whatsapp {
    background: rgba(37, 211, 102, 0.1);
    color: #25d366;
}

.quick-link.whatsapp:hover {
    background: #25d366;
    color: #fff;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

/* Contact Form Section */
.contact-form-section {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-form-title i {
    color: var(--primary-color);
}

.contact-form-subtitle {
    color: #888;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

/* Form Styling */
.contact-form .form-label {
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.contact-form .form-control {
    border: 2px solid #eee;
    border-radius: 12px;
    padding: 0.85rem 1rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(139, 195, 74, 0.1);
}

.contact-form .form-control::placeholder {
    color: #aaa;
}

.contact-form textarea.form-control {
    resize: none;
}

/* Submit Button */
.contact-submit-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(139, 195, 74, 0.4);
}

.contact-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 195, 74, 0.5);
    color: #fff;
}

.contact-submit-btn i {
    transition: transform 0.3s ease;
}

.contact-submit-btn:hover i {
    transform: translateX(5px);
}

/* Alert Styling */
.contact-alert {
    border-radius: 12px;
    border: none;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
}

.contact-alert.alert-success {
    background: linear-gradient(135deg, rgba(139, 195, 74, 0.1) 0%, rgba(104, 159, 56, 0.1) 100%);
    color: var(--primary-dark);
}

.contact-alert.alert-danger {
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.1) 0%, rgba(192, 57, 43, 0.1) 100%);
    color: #c0392b;
}

/* Map Section */
.map-section {
    position: relative;
    margin-top: 4rem;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 400px;
    border: none;
}

.map-overlay-card {
    position: absolute;
    top: 30px;
    left: 30px;
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    max-width: 300px;
    z-index: 10;
}

.map-overlay-card h5 {
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.map-overlay-card h5 i {
    color: var(--primary-color);
}

.map-overlay-card p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.map-direction-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: #fff;
    padding: 0.6rem 1.25rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.map-direction-btn:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 195, 74, 0.4);
}

/* Responsive */
@media (max-width: 992px) {
    .contact-info-section,
    .contact-form-section {
        padding: 2rem;
    }

    .map-overlay-card {
        position: relative;
        top: 0;
        left: 0;
        max-width: 100%;
        margin-bottom: 1rem;
        border-radius: 16px 16px 0 0;
    }

    .map-container {
        border-radius: 0 0 20px 20px;
    }
}

@media (max-width: 768px) {
    .contact-info-section,
    .contact-form-section {
        padding: 1.5rem;
    }

    .contact-info-title {
        font-size: 1.5rem;
    }

    .contact-card {
        padding: 1rem;
    }

    .contact-card-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .quick-link {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .contact-submit-btn {
        width: 100%;
        justify-content: center;
    }

    .map-container iframe {
        height: 300px;
    }
}
