/* Contact Us Page Styles */
.contact-hero {
    width: 100%;
    padding: 150px 20px 80px;
    background: linear-gradient(135deg, #150B43 0%, #2a1b7a 100%);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    font-family: "Outfit", sans-serif;
    font-weight: 700;
}

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

.contact-main {
    max-width: 1200px;
    margin: -40px auto 60px;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    position: relative;
    z-index: 10;
}

.contact-info-col {
    flex: 1 1 350px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.02);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(173, 13, 41, 0.1);
    color: #AD0D29;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.info-content h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #150B43;
}

.info-content p, .info-content span {
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
}

.contact-form-col {
    flex: 2 1 500px;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-form-col h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: #150B43;
    font-family: "Outfit", sans-serif;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.form-group {
    flex: 1 1 calc(50% - 10px);
    display: flex;
    flex-direction: column;
}

.form-group.full {
    flex: 1 1 100%;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

.form-group input, 
.form-group textarea {
    padding: 14px 18px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fafafa;
}

.form-group input:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: #AD0D29;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(173, 13, 41, 0.1);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    background: #AD0D29;
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    width: auto;
    display: inline-block;
}

.submit-btn:hover {
    background: #8a0a20;
    transform: translateY(-2px);
}

.map-section {
    width: 100%;
    height: 400px;
    margin-bottom: -10px; /* To flush with footer if needed */
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-hero {
        padding: 120px 20px 60px;
    }
    .contact-hero h1 {
        font-size: 2.2rem;
    }
    .contact-main {
        margin-top: 20px;
    }
    .contact-form-col {
        padding: 30px 20px;
    }
    .form-group {
        flex: 1 1 100%;
    }
}
