/* Contact Section */
.contact-section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    position: relative;
    margin-bottom: 60px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color) 0%, var(--accent-color) 100%);
}

/* Contact Card */
.contact-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    padding: 50px;
    height: 100%;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-right: 20px;
    margin-top: 5px;
    min-width: 30px;
    text-align: center;
}

.contact-info-content h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.contact-info-content p {
    margin-bottom: 0;
    color: #666;
}

.contact-info-content a {
    color: #666;
    text-decoration: none;
    transition: var(--transition);
}

.contact-info-content a:hover {
    color: var(--secondary-color);
}

/* Social Icons */
.social-icons2 {
    display: flex;
    margin-top: 40px;
}

.social-icons2 a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(231, 76, 60, 0.1);
    border-radius: 50%;
    color: var(--secondary-color);
    margin-right: 15px;
    transition: var(--transition);
}

.social-icons2 a:hover {
    background-color: var(--secondary-color);
    color: white;
    transform: translateY(-5px);
}

/* Contact Form */
.contact-form .form-control {
    height: 50px;
    border: 1px solid #eee;
    margin-bottom: 20px;
    border-radius: 8px;
    padding: 10px 15px;
    transition: var(--transition);
}

.contact-form .form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.25rem rgba(231, 76, 60, 0.15);
}

.contact-form textarea.form-control {
    height: auto;
    min-height: 150px;
}

/* Map */
.contact-map {
    height: 100%;
    min-height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Hours */
.hours-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dashed #eee;
}

.hours-list li:last-child {
    border-bottom: none;
}

/* Button */
.btn-primary {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(231, 76, 60, 0.3);
}

/* Responsive */
@media (max-width: 991.98px) {
    .contact-card {
        margin-bottom: 50px;
    }
    
    .contact-map {
        min-height: 300px;
    }
}