/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 254, 253, 0.074)), 
                url('/assets/images/hero-index.jpg') center/cover no-repeat;
   /*  color: white; */
    padding: 5rem 0;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.contact-hero .container {
    position: relative;
    z-index: 2;
}

.contact-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: -1px;
}

.contact-hero p {
    font-size: 1.25rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
    text-shadow: 1px 1px 2px rgba(204, 24, 24, 0);
    line-height: 1.6;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 4rem;
}

.contact-column {
    position: relative;
    width: 100%;
}

@media (min-width: 768px) {
    .contact-column {
        flex: 1;
    }
}

/* Form Styles */
.contact-form-container {
    background: white;
    padding: 1.2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(241, 238, 238, 0.1);
    border: 1px solid #e9ecef;
    height: 100%;
    /* display: flex; */
    flex-direction: column;
}

.contact-form-container h2 {
    color: #343a40;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    position: relative;
}

.contact-form-container h2::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #ff4500;
    border-radius: 2px;
}

#contact-form {
    /* display: flex; */
    flex-direction: column;
}

#contact-form .mb-3 {
    margin-bottom: 0.4rem;
}

#contact-form .form-label {
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.1rem;
    font-size: 0.85rem;
}

#contact-form input,
#contact-form textarea,
#contact-form select {
    border-radius: 6px;
    border: 1px solid #ced4da;
    padding: 0.4rem 0.6rem;
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

#contact-form input:focus,
#contact-form textarea:focus,
#contact-form select:focus {
    border-color: #ff4500;
    box-shadow: 0 0 0 0.1rem rgba(255, 69, 0, 0.25);
}

#contact-form .form-check-label {
    font-size: 0.85rem;
    line-height: 1.3;
}

#contact-form .form-check-input {
    margin-top: 0.2rem;
}

#contact-form button {
    background: #ff4500;
    border: none;
    padding: 0.6rem 1.2rem;
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 1rem;
}

#contact-form button:hover {
    background: #e03e00;
    transform: translateY(-1px);
}

/* Info Section Styles */
.contact-info {
    background: white;
    padding: 1.2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    height: 100%;
   /*  display: flex; */
    flex-direction: column;
}

.contact-info h2 {
    color: #343a40;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    position: relative;
}

.contact-info h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: #ff4500;
    border-radius: 2px;
}

.info-items {
    flex: 1;
    /* display: flex; */
    flex-direction: column;
    gap: 0.3rem;
}

.info-item {
    display: flex;
    /* align-items: center; */
    /* padding: 0.5rem; */
    background: #f8f9fa;
    border-radius: 6px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.info-item:hover {
    background: #e9ecef;
    border-left-color: #ff4500;
    transform: translateX(3px);
}

.info-item i {
    font-size: 1rem;
    margin-right: 0.6rem;
    color: #ff4500;
    min-width: 16px;
    flex-shrink: 0;
}

.info-item div {
    /* flex: 1; */
    line-height: 1.3;
}

.info-item strong {
    color: #343a40;
    font-weight: 600;
    /* display: block; */
    margin-bottom: 0.05rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-item .info-content {
    font-size: 0.85rem;
    line-height: 1.2;
    color: #495057;
}

.info-item a {
    color: #ff4500;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: #e03e00;
    text-decoration: underline;
}

/* Map Section */
.map-section {
    margin-top: 4rem;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.map-container {
    background: #f8f9fa;
    /* padding: 3rem 0; */
    text-align: center;
}

.map-container h3 {
    color: #343a40;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.map-container p {
    color: #6c757d;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.map-embed {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 0;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.map-embed:hover {
    filter: grayscale(0%);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    justify-content: flex-start;
    padding-top: 0.75rem;
    border-top: 1px solid #e9ecef;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #ff4500;
    color: white;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

.social-links a:hover {
    background: #e03e00;
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(255, 69, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 767px) {
    .contact-hero {
        padding: 2rem 0 1rem;
        margin-bottom: 2rem;
        min-height: 300px;
    }
    
    .contact-hero h1 {
        font-size: 2rem;
    }
    
    .contact-hero p {
        font-size: 1.1rem;
    }
    
    .contact-form-container,
    .contact-info {
        padding: 1.25rem;
        height: auto;
    }
    
    .contact-grid {
        gap: 1.25rem;
        margin-bottom: 2rem;
    }
    
    .map-container {
        padding: 2rem 1rem;
    }
    
    .map-embed {
        height: 300px;
    }
    
    .info-item {
        padding: 0.6rem;
        min-height: 45px;
    }
    
    .info-item i {
        font-size: 1rem;
        margin-right: 0.5rem;
    }
    
    .info-item strong {
        font-size: 0.8rem;
    }
    
    .info-item .info-content {
        font-size: 0.85rem;
    }
    
    #contact-form .mb-3 {
        margin-bottom: 0.4rem;
    }
    
    #contact-form .form-check {
        margin-bottom: 0;
        padding-bottom: 0;
    }
    
    #contact-form .form-label {
        font-size: 0.85rem;
    }
    
    #contact-form .form-check-label {
        font-size: 0.8rem;
        line-height: 1.2;
    }
    
    #contact-form button {
        font-size: 0.85rem;
        padding: 0.6rem 1.2rem;
    }
    
    .social-links {
        justify-content: center;
        gap: 0.4rem;
    }
    
    .social-links a {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }
}
