
.page-hero {
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--dark-blue);
    overflow: hidden;
}

.page-hero img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 15px;
}

.breadcrumb {
    font-size: 0.9rem;
    color: #cbd5e1;
}

.breadcrumb a { color: var(--brand-red); text-decoration: none; }
.breadcrumb .sep { margin: 0 10px; }

.contact-section {
    padding: 80px 5%;
    background-color: var(--bg-body);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-card {
    background: var(--card-bg);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: var(--shadow-sm);
    transition: 0.3s;
}

.info-card:hover {
    border-color: var(--brand-red);
    transform: translateX(-5px);
}

.info-card i {
    font-size: 24px;
    color: var(--brand-red);
    background: rgba(221, 24, 59, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.info-content h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--dark-blue);
}

[data-theme="dark"] .info-content h3 { color: white; }

.info-content p, .info-content a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.95rem;
}

.contact-form {
    flex: 1.5;
    background: var(--card-bg);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
}

.contact-form h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--dark-blue);
}

[data-theme="dark"] .contact-form h2 { color: white; }

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border-radius: 8px; 
    border: 1px solid var(--border-color);
    background: var(--bg-body);
    color: var(--text-main);
    font-size: 1rem;
    transition: 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--brand-red);
    box-shadow: 0 0 0 3px rgba(221, 24, 59, 0.1);
}

textarea.form-control {
    height: 150px;
    resize: none;
}

.btn-submit {
    width: 100%;
    padding: 14px;
    background-color: var(--brand-red);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
}

.btn-submit:hover {
    background-color: #b0132f;
    box-shadow: 0 5px 15px rgba(221, 24, 59, 0.3);
}

.map-section {
    line-height: 0; 
}

.map-section iframe {
    filter: grayscale(0.2) contrast(1.1);
}

@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }

    .page-hero { height: 200px; }
    .hero-content h1 { font-size: 1.8rem; }

    .contact-section { padding: 40px 15px; }

    .contact-form {
        padding: 25px 20px;
        width: 100%;
    }

    .info-card { padding: 15px; }
}