/* Contact Us Page Styles */

/* Hero Section */
.contact-hero {
    background: var(--primary-light);
    color: var(--primary-red);
    text-align: center;
    padding: 80px 20px;
    position: relative;
}

.contact-hero .hero-text h1 {
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--primary-red);
    margin-top: 100px;
    margin-bottom: 20px;
    text-shadow: none;
    position: relative;
}

.hero-underline {
    width: 200px;
    height: 4px;
    background: #FFD700;
    margin: 0 auto 30px auto;
    border-radius: 2px;
}

.contact-hero .hero-text p {
    font-size: 1.0rem;
    color: black;
    width: 70%;
    margin: 0 auto;
    line-height: 1.6;
    opacity: 1;
}

/* Main Content Layout */
.contact-main {
    padding: 60px 0;
}

.container {
    margin: 0 auto;
}



/* Main Content */
.main-content {
    background: white;
    border-radius: 0;
    padding: 0px 40px;
    box-shadow: none;
    width: 100%;
    max-width: 100%;
}

.content-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
    position: relative;
}

.content-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: #FFD700;
    /* border-radius: 2px; */
}

.content-intro {
    margin-bottom: 40px;
    padding: 20px;
    background: #f8f9fa;
    /* border-radius: 8px; */
    /* border-left: 4px solid #8B0000; */
}

.content-intro p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Contact Content Layout */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    width: 100%;
    margin-bottom: 0;
    align-items: start;
    max-width: 100%;
}

/* Contact Information */
.contact-info {
    padding: 30px;
    /* background: white;
    border-radius: 12px;
    border-left: 4px solid #8B0000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1); */
}

.contact-info h3 {
    color: #8B0000;
    font-size: 1.8rem;
    margin-bottom: 25px;
    font-weight: 600;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-item i {
    color: #8B0000;
    font-size: 1.2rem;
    margin-top: 2px;
    min-width: 20px;
}

.contact-item span {
    color: #555;
    line-height: 1.6;
}

.contact-item.address span {
    line-height: 1.5;
}

/* Contact Form */
.contact-form {
    padding: 30px;
    /* background: white; */
    /* border-radius: 12px;
    border-left: 4px solid #8B0000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1); */
}

.contact-form h3 {
    color: #8B0000;
    font-size: 1.8rem;
    margin-bottom: 25px;
    font-weight: 600;
}

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

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

.form-group label {
    color: #333;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #8B0000;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: #f8f9fa;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8B0000;
    background: white;
}

.name-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.submit-btn {
    background: #8B0000;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: block;
    margin: 0 auto;
    min-width: 120px;
}

.submit-btn:hover {
    background: #660000;
}

/* Map & Contact Section */
.map-contact {
    background: var(--white);
    position: relative;
}

.map-container {
    position: relative;
    width: 100%;
}

.google-maps-embed {
    width: 100%;
    height: 700px;
    overflow: hidden;
}

.google-maps-embed iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Contact Map */
.contact-map {
    padding: 25px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #8B0000;
}

.contact-map h3 {
    color: #8B0000;
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

/* Map Section */
.map-section {
    margin-top: 40px;
}

.map-section h3 {
    color: #8B0000;
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

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

.google-maps-btn {
    background: #8B0000;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.google-maps-btn:hover {
    background: #660000;
}

.google-maps-btn i {
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-content {
        padding: 30px 20px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 100%;
        margin: 0 20px;
    }
    
    .full-width-map {
        margin-top: 50px;
        padding: 30px 20px;
    }
    
    .google-maps-embed {
        height: 600px;
    }
    
    .contact-hero .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .contact-hero .hero-text p {
        font-size: 1.2rem;
    }
    
    .content-header h2 {
        font-size: 2rem;
    }
    
    .name-fields {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        padding: 60px 15px;
    }
    
    .contact-hero .hero-text h1 {
        font-size: 2rem;
    }
    
    .main-content {
        padding: 20px 15px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .contact-content {
        gap: 25px;
    }
    
    .contact-info,
    .contact-form {
        padding: 20px 15px;
    }
    

    
    .google-maps-embed {
        height: 350px;
    }
    
    .submit-btn,
    .google-maps-btn {
        width: 100%;
        justify-content: center;
    }
}
