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

/* Page Header */
.vc-page-header {
    background: #1a1a2e;
    padding: 1.5rem 0;
    color: #fff;
}

.vc-breadcrumb {
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
}

.vc-breadcrumb a {
    color: #ccc;
    text-decoration: none;
}

.vc-breadcrumb a:hover {
    color: #fff;
}

.vc-breadcrumb__sep {
    margin: 0 0.4rem;
    color: #999;
}

.vc-breadcrumb span:last-child {
    color: #fff;
}

.vc-page-header__title {
    font-family: 'Roboto', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    text-align: right;
    color: #fff;
}

/* Contact Section */
.vc-contact {
    padding: 2.5rem 0;
}

/* Google Map */
.vc-contact__map {
    margin-bottom: 2.5rem;
}

.vc-contact__map iframe {
    width: 100%;
    height: 400px;
    border: 0;
    border-radius: var(--vc-radius, 8px);
}

/* Two-column grid */
.vc-contact__grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: start;
}

/* Form section */
.vc-contact__form h2 {
    font-family: 'Roboto', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 1.5rem 0;
}

/* CF7 form styling */
.vc-contact__form .wpcf7-form p {
    margin-bottom: 1.25rem;
}

.vc-contact__form .wpcf7-form label {
    display: block;
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.4rem;
}

.vc-contact__form .wpcf7-form input[type="text"],
.vc-contact__form .wpcf7-form input[type="email"],
.vc-contact__form .wpcf7-form input[type="tel"],
.vc-contact__form .wpcf7-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fff;
    color: #333;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.vc-contact__form .wpcf7-form input:focus,
.vc-contact__form .wpcf7-form textarea:focus {
    outline: none;
    border-color: #333;
}

.vc-contact__form .wpcf7-form textarea {
    min-height: 180px;
    resize: vertical;
}

.vc-contact__form .wpcf7-form input[type="submit"] {
    display: inline-block;
    padding: 0.75rem 2.5rem;
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    background: #000;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.vc-contact__form .wpcf7-form input[type="submit"]:hover {
    background: #333;
}

/* Required asterisk */
.vc-contact__form .wpcf7-form .wpcf7-not-valid-tip {
    color: #e43f5a;
    font-size: 0.8rem;
}

/* Contact Info sidebar */
.vc-contact__info-block {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.vc-contact__info-block:last-child {
    border-bottom: none;
}

.vc-contact__info-block h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 0.5rem 0;
}

.vc-contact__info-block p {
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    color: #555;
    margin: 0;
}

.vc-contact__info-block a {
    color: var(--vc-accent, #BD0028);
    text-decoration: none;
}

.vc-contact__info-block a:hover {
    text-decoration: underline;
}

/* Opening Hours Table */
.vc-contact__hours-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
}

.vc-contact__hours-table tr {
    border-bottom: 1px solid #e0e0e0;
}

.vc-contact__hours-table td {
    padding: 0.6rem 0.75rem;
    color: #333;
}

.vc-contact__hours-table td:first-child {
    font-weight: 600;
}

/* Responsive */
@media (max-width: 767px) {
    .vc-contact__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .vc-contact__map iframe {
        height: 250px;
    }

    .vc-page-header__title {
        text-align: left;
        font-size: 1.5rem;
    }
}
