/* Contact Page Styles */



/* Contact Hero Section */
.contact-hero-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.contact-hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #1e1e1f;
    margin-bottom: 20px;
    line-height: 1.2;
}

.contact-hero-description {
    font-size: 18px;
    line-height: 1.6;
    color: #6c757d;
    margin-bottom: 40px;
}

.contact-info-list {
    margin-top: 40px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: #c0943a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-info-icon i {
    color: #fff;
    font-size: 20px;
}

.contact-info-details h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1e1e1f;
    margin-bottom: 5px;
}

.contact-info-details p {
    font-size: 16px;
    color: #6c757d;
    margin: 0;
}

.contact-hero-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.contact-form-wrapper {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #1e1e1f;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 16px;
    color: #6c757d;
    margin-bottom: 30px;
    line-height: 1.5;
}

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

.contact-form .form-label {
    font-size: 14px;
    font-weight: 600;
    color: #1e1e1f;
    margin-bottom: 8px;
    display: block;
}

.contact-form .form-control {
    width: 100%;
    padding: 12px 15px;
    font-size: 15px;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    background: #fff;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    outline: none;
    border-color: #c0943a;
    box-shadow: 0 0 0 3px rgba(192, 148, 58, 0.1);
}

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

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

.contact-form .form-check {
    margin-bottom: 25px;
}

.contact-form .form-check-input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    border-color: #e9ecef;
}

.contact-form .form-check-input:checked {
    background-color: #c0943a;
    border-color: #c0943a;
}

.contact-form .form-check-label {
    font-size: 14px;
    color: #6c757d;
    margin-left: 8px;
}

.contact-submit-btn {
    background: linear-gradient(135deg, #c0943a 0%, #a67c28 100%);
    color: #fff;
    border: none;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(192, 148, 58, 0.3);
}

.contact-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(192, 148, 58, 0.4);
}

/* Contact Sidebar */
.contact-sidebar {
    margin-top: 40px;
}

.quick-contact-card,
.office-hours-card,
.social-media-card {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.quick-contact-card:hover,
.office-hours-card:hover,
.social-media-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.card-title {
    font-size: 20px;
    font-weight: 600;
    color: #1e1e1f;
    margin-bottom: 10px;
}

.card-description {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 20px;
    line-height: 1.5;
}

.quick-contact-info {
    margin-top: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 16px;
    color: #1e1e1f;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item i {
    color: #c0943a;
    margin-right: 15px;
    font-size: 18px;
    width: 20px;
}

.hours-list {
    margin-top: 20px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f1f1f1;
}

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

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

.time {
    color: #6c757d;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e1e1f;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #c0943a;
    color: #fff;
    transform: translateY(-2px);
}

.social-link i {
    font-size: 18px;
}

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

.map-wrapper {
    text-align: center;
}

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

/* Responsive Design */
@media (max-width: 991px) {
    .contact-hero-section {
        padding: 60px 0;
    }
    
    .contact-hero-title {
        font-size: 36px;
    }
    
    .contact-form-section {
        padding: 60px 0;
    }
    
    .map-section {
        padding: 60px 0;
    }
    
    .contact-form-wrapper {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .contact-hero-section {
        padding: 40px 0;
    }
    
    .contact-hero-title {
        font-size: 28px;
    }
    
    .contact-hero-description {
        font-size: 16px;
    }
    
    .contact-info-item {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
    
    .contact-info-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .contact-form-section {
        padding: 40px 0;
    }
    
    .contact-form-wrapper {
        padding: 20px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .contact-sidebar {
        margin-top: 30px;
    }
    
    .quick-contact-card,
    .office-hours-card,
    .social-media-card {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .map-section {
        padding: 40px 0;
    }
    
    .map-container iframe {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .contact-hero-title {
        font-size: 24px;
    }
    
    .contact-info-item {
        padding: 10px;
    }
    
    .contact-form-wrapper {
        padding: 15px;
    }
    
    .quick-contact-card,
    .office-hours-card,
    .social-media-card {
        padding: 15px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .hours-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}
