:root {
    --rb-navy: #071b33;
    --rb-navy-2: #092947;
    --rb-orange: #f36a2a;
    --rb-orange-dark: #df5718;
    --rb-text: #102033;
    --rb-muted: #667386;
    --rb-border: #e8edf4;
    --rb-soft: #f6f8fb;
    --rb-container: 1180px;
    --rb-shadow: 0 18px 45px rgba(7, 27, 51, .14);
    --rb-shadow-soft: 0 12px 34px rgba(7, 27, 51, .09);
}

body.rb-design1-contact {
    margin: 0;
    color: var(--rb-text);
    font-family: Poppins, Arial, sans-serif;
    background: #fff;
}

body.rb-design1-contact * {
    box-sizing: border-box;
}

body.rb-design1-contact a {
    color: inherit;
    text-decoration: none;
}

.rb-page {
    width: 100%;
    overflow: hidden;
    background: #fff;
}

.rb-container {
    width: min(var(--rb-container), calc(100% - 40px));
    margin: 0 auto;
}

.rb-topbar {
    background: linear-gradient(90deg, #06172d, #092844);
    color: rgba(255, 255, 255, .9);
    font-size: 13px;
    line-height: 1;
}

.rb-topbar-inner {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.rb-topbar-right {
    display: flex;
    align-items: center;
    gap: 24px;
    font-weight: 600;
}

.rb-topbar-right a {
    color: #fff;
}

.rb-header {
    background: #fff;
    box-shadow: 0 8px 30px rgba(7, 27, 51, .08);
    position: relative;
    z-index: 20;
}

.rb-header-inner {
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.rb-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--rb-navy);
    min-width: 218px;
}

.rb-logo-mark {
    width: 54px;
    height: 42px;
    color: var(--rb-orange);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.rb-logo-text {
    display: grid;
    line-height: 1.05;
}

.rb-logo-text strong {
    font-size: 18px;
    letter-spacing: .4px;
    color: var(--rb-navy);
}

.rb-logo-text small {
    font-size: 12px;
    color: #59687a;
}

.rb-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 26px;
    flex: 1;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--rb-navy);
}

.rb-nav a {
    position: relative;
    padding: 30px 0;
}

.rb-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 20px;
    height: 3px;
    border-radius: 999px;
    transform: scaleX(0);
    transform-origin: center;
    background: var(--rb-orange);
    transition: transform .2s ease;
}

.rb-nav a:hover::after,
.rb-nav a.is-active::after {
    transform: scaleX(1);
}

.rb-nav a:hover,
.rb-nav a.is-active {
    color: var(--rb-orange);
}

.rb-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
    padding: 14px 24px;
    border-radius: 5px;
    border: 1px solid transparent;
    font-size: 14px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.rb-btn:hover {
    transform: translateY(-2px);
}

.rb-btn-primary {
    background: linear-gradient(135deg, var(--rb-orange), #ff7d35);
    color: #fff !important;
    box-shadow: 0 12px 24px rgba(243, 106, 42, .26);
}

.rb-btn-primary:hover {
    background: linear-gradient(135deg, var(--rb-orange-dark), #f36a2a);
}

.rb-btn-outline {
    color: #fff !important;
    border-color: rgba(255, 255, 255, .5);
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(4px);
}

.rb-btn-outline:hover {
    background: #fff;
    color: var(--rb-navy) !important;
}

.rb-mobile-toggle {
    display: none;
    width: 44px;
    height: 42px;
    border: 0;
    border-radius: 7px;
    background: var(--rb-navy);
    padding: 9px;
}

.rb-mobile-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: #fff;
}

.rb-hero {
    min-height: 560px;
    position: relative;
    color: #fff;
    background-image: linear-gradient(90deg, rgba(7, 27, 51, .94) 0%, rgba(7, 27, 51, .78) 34%, rgba(7, 27, 51, .25) 68%, rgba(7, 27, 51, .1) 100%), var(--rb-hero-image);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.rb-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 78% 28%, rgba(243, 106, 42, .18), transparent 32%), linear-gradient(180deg, rgba(4, 12, 24, .08), rgba(4, 12, 24, .2));
    pointer-events: none;
}

.rb-hero-content {
    position: relative;
    z-index: 1;
}

.rb-hero-copy {
    max-width: 650px;
}

.rb-eyebrow {
    margin: 0 0 18px;
    color: #fff;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.rb-hero h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(42px, 5.4vw, 74px);
    line-height: .98;
    letter-spacing: -.04em;
    font-weight: 900;
}

.rb-hero-lead {
    margin: 26px 0 0;
    max-width: 620px;
    color: rgba(255, 255, 255, .94);
    font-size: 19px;
    line-height: 1.65;
    font-weight: 500;
}

.rb-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin: 28px 0 34px;
}

.rb-hero-badges span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
}

.rb-hero-badges span::before {
    content: "✓";
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--rb-orange);
    color: #fff;
    font-size: 12px;
}

.rb-hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.rbc-contact-section {
    padding: 74px 0 64px;
    background: #fff;
}

.rbc-contact-grid {
    display: grid;
    grid-template-columns: .86fr 1.3fr;
    gap: 64px;
    align-items: start;
}

.rbc-contact-info {
    position: relative;
}

.rbc-form-panel {
    padding-left: 42px;
    border-left: 1px solid var(--rb-border);
}

.rbc-section-label {
    margin: 0 0 8px;
    color: var(--rb-orange);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: 12px;
}

.rbc-contact-info h2,
.rbc-form-panel h2 {
    margin: 0;
    color: var(--rb-navy);
    font-size: clamp(30px, 3vw, 42px);
    line-height: 1.15;
    font-weight: 900;
    letter-spacing: -.03em;
}

.rbc-orange-line {
    width: 50px;
    height: 3px;
    background: var(--rb-orange);
    border-radius: 99px;
    margin: 18px 0 34px;
}

.rbc-info-list {
    display: grid;
    gap: 20px;
}

.rbc-info-item {
    display: grid;
    grid-template-columns: 62px 1fr;
    gap: 18px;
    align-items: center;
    padding: 6px 0;
}

.rbc-info-icon {
    width: 62px;
    height: 62px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--rb-navy);
    color: var(--rb-orange);
    font-size: 25px;
    box-shadow: var(--rb-shadow-soft);
}

.rbc-info-item small {
    display: block;
    color: var(--rb-muted);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 5px;
}

.rbc-info-item strong {
    display: block;
    color: var(--rb-navy);
    font-size: 19px;
    line-height: 1.35;
    font-weight: 900;
}

.rbc-inspection-card {
    margin-top: 36px;
    padding: 32px;
    border-radius: 8px;
    background: linear-gradient(135deg, #06172d, #092947);
    color: #fff;
    box-shadow: var(--rb-shadow);
}

.rbc-inspection-icon {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, .2);
    color: var(--rb-orange);
    font-size: 28px;
    margin-bottom: 18px;
}

.rbc-inspection-card h3 {
    margin: 0 0 12px;
    color: #fff;
    font-size: 23px;
    font-weight: 900;
}

.rbc-inspection-card p {
    margin: 0 0 24px;
    color: rgba(255, 255, 255, .78);
    line-height: 1.7;
}

.rbc-form-wrap {
    margin-top: 10px;
}

.rbc-form-wrap form {
    display: grid;
    gap: 15px;
}

.rbc-form-wrap p {
    margin: 0 0 14px;
}

.rbc-form-wrap label {
    display: block;
    font-size: 13px;
    font-weight: 800;
    color: var(--rb-navy);
    margin-bottom: 8px;
}

.rbc-form-wrap input[type="text"],
.rbc-form-wrap input[type="email"],
.rbc-form-wrap input[type="tel"],
.rbc-form-wrap input[type="url"],
.rbc-form-wrap select,
.rbc-form-wrap textarea,
.rbc-form-wrap .wpcf7-form-control:not(.wpcf7-submit):not(.wpcf7-checkbox):not(.wpcf7-radio) {
    width: 100%;
    min-height: 58px;
    padding: 16px 18px;
    border: 1px solid #dfe6ef;
    border-radius: 3px;
    background: #fff;
    color: var(--rb-text);
    font: inherit;
    font-size: 15px;
    box-shadow: none;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.rbc-form-wrap textarea,
.rbc-form-wrap .wpcf7-textarea {
    min-height: 170px;
    resize: vertical;
}

.rbc-form-wrap input:focus,
.rbc-form-wrap textarea:focus,
.rbc-form-wrap select:focus {
    border-color: var(--rb-orange);
    box-shadow: 0 0 0 3px rgba(243, 106, 42, .12);
}

.rbc-form-wrap input[type="submit"],
.rbc-form-wrap .wpcf7-submit {
    width: 100%;
    min-height: 58px;
    border: 0;
    border-radius: 5px;
    background: linear-gradient(135deg, var(--rb-orange), #ff7d35);
    color: #fff;
    font: inherit;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .03em;
    cursor: pointer;
    box-shadow: 0 12px 24px rgba(243, 106, 42, .24);
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.rbc-form-wrap input[type="submit"]:hover,
.rbc-form-wrap .wpcf7-submit:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, var(--rb-orange-dark), var(--rb-orange));
}

.rbc-form-wrap .wpcf7-response-output {
    margin: 14px 0 0 !important;
    padding: 12px 14px !important;
    border-radius: 6px;
    font-size: 14px;
}

.rbc-form-fallback {
    padding: 24px;
    background: var(--rb-soft);
    border: 1px solid var(--rb-border);
    border-radius: 8px;
    color: var(--rb-navy);
}

.rbc-map-section {
    background: #eef3f8;
}

.rbc-map-wrap {
    width: 100%;
    height: 440px;
    overflow: hidden;
    box-shadow: inset 0 1px 0 rgba(0, 0, 0, .05);
}

.rbc-map-wrap iframe {
    width: 100% !important;
    height: 440px !important;
    display: block;
    filter: saturate(.95) contrast(.98);
}

.rb-cta {
    position: relative;
    color: #fff;
    background-image: linear-gradient(90deg, rgba(7, 27, 51, .96), rgba(7, 27, 51, .82)), var(--rb-cta-image);
    background-size: cover;
    background-position: center;
    padding: 42px 0;
}

.rb-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.rb-cta h2 {
    margin: 0;
    color: #fff;
    max-width: 650px;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.15;
    font-weight: 900;
    letter-spacing: -.03em;
}

.rb-cta-actions {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}

.rb-phone {
    color: #fff;
    font-size: 30px;
    font-weight: 900;
    white-space: nowrap;
}

.rb-footer {
    background: #06172d;
    color: rgba(255, 255, 255, .78);
    padding: 58px 0 24px;
}

.rb-footer-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr 1fr 1fr;
    gap: 44px;
}

.rb-footer .rb-logo-text strong,
.rb-footer .rb-logo-text small,
.rb-logo-footer .rb-logo-text strong,
.rb-logo-footer .rb-logo-text small {
    color: #fff;
}

.rb-footer h3 {
    margin: 0 0 20px;
    color: #fff;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.rb-footer p,
.rb-footer a {
    display: block;
    margin: 0 0 10px;
    line-height: 1.7;
}

.rb-footer a:hover {
    color: var(--rb-orange);
}

.rb-footer-phone {
    color: #fff !important;
    font-weight: 900;
    font-size: 18px;
}

.rb-copyright {
    margin-top: 34px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    font-size: 13px;
}

.rbc-debug-box {
    position: fixed;
    left: 12px;
    bottom: 12px;
    z-index: 999999;
    padding: 10px 12px;
    border-radius: 6px;
    background: #06172d;
    color: #fff;
    font-size: 12px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, .28);
}

@media (max-width: 1024px) {
    .rb-header-inner {
        height: auto;
        min-height: 74px;
        flex-wrap: wrap;
        padding: 14px 0;
    }

    .rb-mobile-toggle {
        display: block;
        order: 3;
    }

    .rb-header-cta {
        margin-left: auto;
    }

    .rb-nav {
        order: 4;
        display: none;
        width: 100%;
        flex: auto;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 10px 0 2px;
        border-top: 1px solid var(--rb-border);
    }

    .rb-nav.is-open {
        display: flex;
    }

    .rb-nav a {
        padding: 14px 2px;
    }

    .rb-nav a::after {
        bottom: 8px;
        right: auto;
        width: 54px;
    }

    .rbc-contact-grid {
        grid-template-columns: 1fr;
        gap: 46px;
    }

    .rbc-form-panel {
        padding-left: 0;
        border-left: 0;
        padding-top: 44px;
        border-top: 1px solid var(--rb-border);
    }

    .rb-footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .rb-cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 760px) {
    .rb-container {
        width: min(100% - 28px, var(--rb-container));
    }

    .rb-topbar-inner,
    .rb-topbar-right {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 10px 0;
    }

    .rb-logo {
        min-width: 0;
    }

    .rb-logo-mark {
        width: 44px;
    }

    .rb-logo-text strong {
        font-size: 15px;
    }

    .rb-header-cta {
        display: none;
    }

    .rb-hero {
        min-height: 520px;
        background-position: 60% center;
    }

    .rb-hero-lead {
        font-size: 16px;
    }

    .rb-hero-badges {
        gap: 12px;
    }

    .rb-hero-badges span {
        width: 100%;
    }

    .rb-hero-actions .rb-btn {
        width: 100%;
    }

    .rbc-contact-section {
        padding: 54px 0;
    }

    .rbc-info-item {
        grid-template-columns: 52px 1fr;
        gap: 14px;
    }

    .rbc-info-icon {
        width: 52px;
        height: 52px;
        font-size: 20px;
    }

    .rbc-info-item strong {
        font-size: 17px;
    }

    .rbc-inspection-card {
        padding: 26px;
    }

    .rbc-map-wrap,
    .rbc-map-wrap iframe {
        height: 360px !important;
    }

    .rb-phone {
        font-size: 24px;
    }

    .rb-footer-grid {
        grid-template-columns: 1fr;
    }
}
