/* Corporate Cab Service — wide single-column */

.corp_page {
    background: #fafafa;
    padding: 48px 0 72px;
}

.corp_inner {
    max-width: 1040px;
    margin: 0 auto;
    padding: 0 12px;
}

/* Section blocks */
.corp_block {
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: 2rem 2.25rem;
    margin-bottom: 1.5rem;
}

.corp_block:last-child {
    margin-bottom: 0;
}

/* Typography */
.corp_inner h2 {
    font-family: var(--font-heading, 'Poppins', sans-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: #111;
    line-height: 1.3;
    margin: 0 0 0.75rem;
}

.corp_section_desc {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #444;
    margin: 0 0 1.5rem;
    max-width: 820px;
}

.corp_inner h3 {
    font-family: var(--font-heading, 'Poppins', sans-serif);
    font-size: 1.0625rem;
    font-weight: 600;
    color: #111;
    line-height: 1.4;
    margin: 0 0 0.5rem;
}

.corp_inner h4 {
    font-family: var(--font-heading, 'Poppins', sans-serif);
    font-size: 0.9375rem;
    font-weight: 600;
    color: #111;
    margin: 0 0 0.5rem;
}

.corp_inner p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #444;
    margin: 0 0 0.875rem;
}

.corp_inner a {
    color: #111;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.corp_lead {
    font-size: 1rem;
    line-height: 1.75;
    color: #333;
    margin: 0 0 1.25rem;
}

/* Bullet lists */
.corp_list {
    margin: 0 0 1rem;
    padding-left: 1.35rem;
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #444;
}

.corp_list li {
    margin-bottom: 0.35rem;
}

.corp_list li:last-child {
    margin-bottom: 0;
}

/* Tables */
.corp_table_wrap {
    overflow-x: auto;
    margin: 0 0 1rem;
    -webkit-overflow-scrolling: touch;
}

.corp_table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9375rem;
    line-height: 1.5;
    color: #333;
}

.corp_table th,
.corp_table td {
    padding: 0.75rem 1rem;
    text-align: left;
    border: 1px solid #ddd;
    vertical-align: top;
}

.corp_table thead th {
    font-weight: 600;
    color: #111;
    background: #f5f5f5;
}

.corp_table tbody tr:nth-child(even) {
    background: #fafafa;
}

.corp_table td:first-child {
    font-weight: 500;
    color: #111;
    white-space: nowrap;
}

/* Two-column content row (coverage + benefits) */
.corp_cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 0.5rem;
}

.corp_col h3 {
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e0e0e0;
}

/* Services */
.corp_service {
    padding: 1.5rem 0;
    border-bottom: 1px solid #eee;
}

.corp_service:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.corp_service:first-of-type {
    padding-top: 0;
}

.corp_service h3 {
    margin-bottom: 0.625rem;
}

/* Enquiry form */
.corp_form {
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: 2rem 2.25rem;
    margin-bottom: 1.5rem;
}

.corp_form_heading {
    font-family: var(--font-heading, 'Poppins', sans-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: #111;
    margin: 0 0 0.375rem;
}

.corp_form_note {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.5;
    margin: 0 0 1.5rem;
}

.corp_form_row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem 1.25rem;
}

.corp_form_row .corp_field--full {
    grid-column: 1 / -1;
}

.corp_form_row .corp_field--half {
    grid-column: span 1;
}

.corp_field label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 0.375rem;
}

.corp_field label .corp_req {
    color: #c00;
}

.corp_field input,
.corp_field select,
.corp_field textarea {
    width: 100%;
    padding: 0.625rem 0.75rem;
    font-size: 0.9375rem;
    line-height: 1.4;
    color: #111;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 2px;
}

.corp_field input:focus,
.corp_field select:focus,
.corp_field textarea:focus {
    outline: 1px solid #111;
    outline-offset: 0;
    border-color: #111;
}

.corp_field textarea {
    resize: vertical;
    min-height: 80px;
}

.corp_form_actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.25rem;
    margin-top: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.corp_form_legal {
    font-size: 0.8125rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
    flex: 1;
    min-width: 200px;
}

.corp_form_legal a {
    color: #111;
}

.corp_submit {
    padding: 0.75rem 2rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #fff;
    background: #111;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    white-space: nowrap;
}

.corp_submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.corp_form_contact {
    margin: 1rem 0 0;
    font-size: 0.875rem;
    color: #666;
}

.corp_form_contact a {
    color: #111;
    font-weight: 500;
    text-decoration: none;
}

/* FAQ */
.corp_faq .faq_accodian_item {
    background: transparent;
    border: none;
    border-bottom: 1px solid #eee;
    border-radius: 0;
    margin-bottom: 0;
}

.corp_faq .faq_title h3 {
    font-size: 0.9375rem;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 991.98px) {
    .corp_cols {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .corp_form_row {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 575.98px) {
    .corp_page {
        padding: 32px 0 48px;
    }

    .corp_block,
    .corp_form {
        padding: 1.25rem 1rem;
    }

    .corp_form_row {
        grid-template-columns: 1fr;
    }

    .corp_form_actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .corp_table td:first-child {
        white-space: normal;
    }
}
