/* Hero */
.ct-hero {
    background: #fff;
    padding: 48px 0 32px;
}

.ct-breadcrumb {
    color: #1e63e6;
    font-size: 13px;
    margin-bottom: 4px;
}

.ct-title {
    color: var(--primary-color);
    font-weight: 800;
    font-size: 42px;
    margin: 8px 0 10px;
}

.ct-sub {
    color: #5b87d1;
    max-width: 540px;
    font-size: 15px;
    line-height: 1.6;
}

/* CTA split */
.ct-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #F2F8FF;
    border-top: 1px solid #e3edfc;
    border-bottom: 1px solid #e3edfc;
}

.ct-cta>a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 36px 10px;
    color: #1e63e6;
    font-weight: 700;
    font-size: 28px;
    text-decoration: none;
    border-right: 1px solid #dce8f8;
    transition: background 0.2s;
}

.ct-cta>a:hover {
    background: #e8f0fe;
}

.ct-cta>a:last-child {
    border-right: 0;
}

.ct-cta i {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #1e63e6;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

/* Office + Form */
.ct-section {
    padding: 40px 0;
}

.ct-h3 {
    color: var(--primary-color);
    font-weight: 700;
    font-style: italic;
    font-size: 24px;
    margin-bottom: 20px;
}

.ct-map {
    background: #e8f0fe;
    border: 1px solid #d5e3f7;
    border-radius: 10px;
    height: 220px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.ct-map-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ct-map-pin {
    color: #1e63e6;
    font-size: 28px;
}

.ct-directions-btn {
    position: absolute;
    left: 14px;
    bottom: 14px;
    background: #fff;
    color: #333;
    border: 1px solid #d5e3f7;
    border-radius: 6px;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.ct-directions-btn:hover {
    background: #F2F8FF;
}

.ct-photo {
    background: #eef5ff;
    border: 1px solid #d5e3f7;
    border-radius: 10px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.ct-photo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
}

.ct-section .form-control {
    background: #fff;
    border: 1px solid #c8d8f0;
    border-radius: 0px;
    height: 46px;
    font-size: 14px;
    color: #333;
    padding: 10px 14px;
}

.ct-section .form-control::placeholder {
    color: #9bb5d8;
}

.ct-section .form-control:focus {
    border-color: #1e63e6;
    box-shadow: 0 0 0 3px rgba(30, 99, 230, 0.08);
}

.ct-section textarea.form-control {
    height: 120px;
    resize: vertical;
}

.ct-submit {
    background: #1e63e6;
    color: #fff;
    border: none;
    height: 46px;
    width: 100%;
    font-weight: 700;
    font-size: 15px;
    border-radius: 0px;
    cursor: pointer;
    transition: background 0.2s;
}

.ct-submit:hover {
    background: #1854c9;
}

/* Addresses */
.ct-address h5 {
    color: #1e63e6;
    font-weight: 800;
    font-size: 15px;
    margin: 0 0 10px;
}

.ct-address p {
    color: #5b87d1;
    font-size: 13.5px;
    line-height: 1.8;
    margin: 0 0 16px;
}

/* Showrooms */
.ct-show {
    padding: 40px 0 60px;
    border-top: 1px solid #e3edfc;
}

.ct-show h4 {
    color: #1e63e6;
    font-weight: 700;
    font-style: italic;
    font-size: 22px;
    margin: 0 0 24px;
}

.ct-banner {
    background: #F2F8FF;
    border-radius: 12px;
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 576px) {
    .ct-title {
        font-size: 32px;
    }

    .ct-cta {
        grid-template-columns: 1fr;
    }

    .ct-cta>a {
        font-size: 20px;
        padding: 24px 10px;
        border-right: none;
        border-bottom: 1px solid #dce8f8;
    }

    .ct-cta>a:last-child {
        border-bottom: 0;
    }
}