/* Contact Us page */

.ct-hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 340px;
    padding: 56px 24px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)), url('../images/about/contact-hero.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
}

.ct-hero-inner {
    max-width: 820px;
}

.ct-hero h1 {
    margin: 0;
    font-family: 'Poppins', Rubik, Arial, sans-serif;
    font-size: 40px;
    font-weight: 800;
    color: #ffffff;
}

.ct-hero-divider {
    width: 50px;
    height: 3px;
    margin: 20px auto;
    background-color: #da090e;
}

.ct-hero p {
    margin: 0;
    font-family: 'Poppins', Rubik, Arial, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.ct-main {
    padding: 64px 0;
    background-color: #ffffff;
}

.ct-row {
    display: flex;
    align-items: flex-start;
    gap: 48px;
}

.ct-col-info {
    flex: 0 0 400px;
    max-width: 400px;
}

.ct-col-form {
    flex: 1 1 auto;
    min-width: 0;
}

.ct-heading {
    margin: 0 0 6px;
    font-family: 'Poppins', Rubik, Arial, sans-serif;
    font-size: 30px;
    font-weight: 800;
    color: #101010;
}

.ct-subtitle {
    margin: 0 0 28px;
    font-family: 'Poppins', Rubik, Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #6b7280;
}

/* Info cards */
.ct-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 22px 24px;
    margin-bottom: 20px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
}

.ct-card-icon {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background-color: #fde8ec;
    color: #c8102e;
}

.ct-card-icon svg {
    width: 22px;
    height: 22px;
}

.ct-card-label {
    margin: 0 0 6px;
    font-family: 'Poppins', Rubik, Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #6b7280;
}

.ct-card-body p {
    margin: 0;
    font-family: 'Poppins', Rubik, Arial, sans-serif;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.4;
    color: #111827;
}

/* Business hours */
.ct-hours {
    margin-bottom: 20px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
}

.ct-hours-title {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 24px;
    background-color: #f9fafb;
    font-family: 'Poppins', Rubik, Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #6b7280;
}

.ct-hours-title svg {
    width: 18px;
    height: 18px;
    color: #c8102e;
}

.ct-hours-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    font-family: 'Poppins', Rubik, Arial, sans-serif;
    font-size: 16px;
}

.ct-hours-row:nth-child(odd) {
    background-color: #f9fafb;
}

.ct-hours-row:nth-child(even) {
    background-color: #ffffff;
}

.ct-hours-day {
    color: #6b7280;
}

.ct-hours-time {
    font-weight: 700;
    color: #111827;
}

.ct-hours-time.is-closed {
    color: #c8102e;
}

.ct-hours-time.is-open {
    color: #059669;
}

/* Map */
.ct-map {
    position: relative;
    height: 280px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
}

.ct-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.ct-map-caption {
    position: absolute;
    left: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background-color: rgba(255, 255, 255, 0.92);
    font-family: 'Poppins', Rubik, Arial, sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #111827;
}

.ct-map-caption svg {
    width: 14px;
    height: 14px;
    color: #c8102e;
}

/* Form card */
.ct-form-card {
    padding: 40px;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
}

.ct-form-card .ct-heading {
    font-size: 26px;
}

.ct-form-card .ct-subtitle {
    margin-bottom: 28px;
}

.ct-form .field-row {
    display: flex;
    gap: 24px;
    margin-bottom: 20px;
}

.ct-form .field {
    flex: 1 1 0;
}

.ct-form label {
    display: block;
    margin-bottom: 8px;
    font-family: 'Poppins', Rubik, Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #374151;
}

.ct-form input[type="text"],
.ct-form input[type="email"],
.ct-form textarea {
    width: 100%;
    padding: 13px 16px;
    font-family: 'Poppins', Rubik, Arial, sans-serif;
    font-size: 15px;
    color: #111827;
    background-color: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    box-sizing: border-box;
}

.ct-form input::placeholder,
.ct-form textarea::placeholder {
    color: #9ca3af;
}

.ct-form textarea {
    min-height: 150px;
    margin-bottom: 24px;
    resize: vertical;
}

.ct-form .field:not(.field-full) {
    margin-bottom: 0;
}

.ct-form-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    height: 54px;
    font-family: 'Poppins', Rubik, Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: none;
    letter-spacing: normal;
    color: #ffffff;
    background-color: #da090e;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.ct-form-submit:hover {
    background-color: #b6070c;
}

.ct-form-submit svg {
    width: 18px;
    height: 18px;
}

/* Responsive */
@media (max-width: 991px) {
    .ct-row {
        flex-direction: column;
    }

    .ct-col-info {
        flex: 1 1 100%;
        max-width: none;
        width: 100%;
    }

    .ct-col-form {
        width: 100%;
    }

    .ct-hero h1 {
        font-size: 32px;
    }
}

@media (max-width: 600px) {
    .ct-hero {
        min-height: 280px;
        padding: 40px 20px;
    }

    .ct-hero h1 {
        font-size: 26px;
    }

    .ct-hero p {
        font-size: 15px;
    }

    .ct-main {
        padding: 40px 0;
    }

    .ct-form-card {
        padding: 24px;
    }

    .ct-form .field-row {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 0;
    }

    .ct-form .field {
        margin-bottom: 20px;
    }
}
