/* ===== Contact Page Styles ===== */

:root {
    --accent-color: #f2443b;
    --accent-hover: #ff5a52;
    --accent-light: rgba(242, 68, 59, 0.1);
    --accent-shadow: 0 4px 15px rgba(242, 68, 59, 0.25);
    --accent-shadow-hover: 0 8px 25px rgba(242, 68, 59, 0.35);
}

/* Hero Section */
.contact-hero-section {
    padding: 150px 0 100px;
    background: linear-gradient(to right, rgba(20, 40, 80, 0.85), rgba(20, 40, 80, 0.80)), url('../images/contact-hero-bg.jpg') no-repeat center 65%;
    background-size: cover;
    text-align: center;
    color: #fff;
    position: relative;
}

.contact-hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.contact-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-hero-content h1:after {
    background: var(--accent-color);
}

.contact-hero-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Contact Form Section */
.contact-form-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
}

.contact-info h2 {
    font-size: 2.5rem;
    color: #001c3a;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-info p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-item i {
    font-size: 1.5rem;
    color: #ff6b35;
    margin-right: 15px;
    margin-top: 5px;
}

.contact-item h3 {
    font-size: 1.2rem;
    color: #001c3a;
    margin: 0 0 5px;
    font-weight: 600;
}

.contact-item p {
    font-size: 1rem;
    color: #555;
    margin: 0;
    line-height: 1.5;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f0f0f0;
    color: #001c3a;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #ff6b35;
    color: #fff;
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
}

.contact-form h2 {
    font-size: 2.5rem;
    color: #001c3a;
    margin-bottom: 30px;
    font-weight: 700;
}

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

.form-group label {
    display: block;
    font-size: 1rem;
    color: #555;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    color: #333;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent-color);
}

.form-group button {
    padding: 15px 30px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.contact-info-item:hover {
    border-color: var(--accent-color);
    box-shadow: var(--accent-shadow);
}

.contact-info-icon {
    color: var(--accent-color);
}

.form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem var(--accent-light);
}

.btn-submit {
    background-color: var(--accent-color);
    box-shadow: var(--accent-shadow);
}

.btn-submit:hover {
    background-color: var(--accent-hover);
    box-shadow: var(--accent-shadow-hover);
}

.social-icon:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

/* Map Section */
.map-section {
    padding: 0;
    height: 450px;
}

.map-container {
    width: 100%;
    height: 100%;
}

.map-container iframe {
    display: block;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .contact-hero-content h1 {
        font-size: 3.5rem;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-info,
    .contact-form {
        max-width: 700px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .contact-hero-section {
        padding: 120px 0 80px;
    }
    
    .contact-hero-content h1 {
        font-size: 3rem;
    }
    
    .contact-info h2,
    .contact-form h2 {
        font-size: 2.2rem;
    }
    
    .contact-form-section {
        padding: 80px 0;
    }
    
    .map-section {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .contact-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .contact-hero-content p {
        font-size: 1.1rem;
    }
    
    .contact-info,
    .contact-form {
        padding: 30px 20px;
    }
    
    .contact-info h2,
    .contact-form h2 {
        font-size: 2rem;
    }
    
    .form-group button {
        width: 100%;
    }
    
    .map-section {
        height: 300px;
    }
}

.contact-info i {
    color: var(--accent-color);
}

.contact-form .btn {
    background-color: var(--accent-color);
} 