/* =========================================================
   CGFB BRAND SYSTEM
========================================================= */

:root {
    --cg-orange: #EDAA02;
    --cg-blue: #3DB3E5;
    --cg-grey: #9A999A;
    --cg-dark: #20251F;
    --cg-white: #FFFFFF;

    --cg-blue-hover: #2490CE;
    --cg-orange-hover: #D89500;

    --cg-text: #2D3437;
    --cg-muted: #646D72;
    --cg-border: #DDE3E6;
    --cg-soft-blue: #fff;
    --cg-soft-grey: #F6F7F7;
    --cg-soft-orange: #f9f9f9;

    --radius: 6px;

    --sp-1: 8px;
    --sp-2: 12px;
    --sp-3: 16px;
    --sp-4: 24px;
    --sp-5: 32px;
    --sp-6: 48px;
    --sp-7: 64px;
}


/* =========================================================
   RESET / BASE
========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Maven Pro", Arial, sans-serif;
    color: var(--cg-text);
    background: var(--cg-white);
    -webkit-font-smoothing: antialiased;
}

img {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    color: var(--cg-dark);
    font-weight: 700;
}

p {
    color: var(--cg-muted);
    color: var(--cg-dark);
    font-size: 18px;
    line-height: 1.35;
    font-weight: 500;
}

.cg-container {
    width: min(100% - 48px, 1360px);
    margin-inline: auto;
}

.eyebrow {
    margin-bottom: 10px;
    color: var(--cg-orange);
    font-size: 16px;
    line-height: 1.2;
    font-weight: 600;
}

.hero-section .eyebrow {
    margin-bottom: 20px;
}

.eyebrow.light {
    color: var(--cg-white);
}

.section {
    padding: 64px 0;
}

.soft-section {
    background: var(--cg-soft-grey);
}

.section-heading {
    margin-bottom: 32px;
}

.section-heading h2 {
    margin-bottom: 12px;
    font-size: 38px;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.section-heading>p:last-child {
    /**max-width: 650px;**/
    margin-bottom: 0;
}

.section-heading.center {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-heading.center>p:last-child {
    margin-left: auto;
    margin-right: auto;
}

.row-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
}


/* =========================================================
   BUTTONS
========================================================= */

.cg-btn {
    min-height: 50px;
    padding: 12px 22px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    border: 2px solid transparent;
    border-radius: var(--radius);

    font-size: 18px;
    line-height: 1.2;
    font-weight: 600;

    transition: .2s ease;
}

.cg-btn:hover {
    transform: translateY(-1px);
}

.cg-btn-small {
    min-height: 42px;
    padding: 10px 16px;
    font-size: 16px;
}

.cg-btn-blue {
    color: var(--cg-white);
    background: var(--cg-blue);
    border-color: var(--cg-blue);
}

.cg-btn-blue:hover {
    color: var(--cg-white);
    background: var(--cg-blue-hover);
    border-color: var(--cg-blue-hover);
}

.cg-btn-orange {
    color: var(--cg-white);
    background: var(--cg-orange);
    border-color: var(--cg-orange);
}

.cg-btn-orange:hover {
    color: var(--cg-white);
    background: var(--cg-orange-hover);
    border-color: var(--cg-orange-hover);
}

.cg-btn-outline {
    color: var(--cg-blue-hover);
    background: var(--cg-white);
    border-color: var(--cg-blue);
}

.cg-btn-outline:hover {
    color: var(--cg-white);
    background: var(--cg-blue);
}

.cg-btn-white {
    color: var(--cg-dark);
    background: var(--cg-white);
    border-color: var(--cg-white);
}

.cg-btn-white-outline {
    color: var(--cg-white);
    background: transparent;
    border-color: rgba(255, 255, 255, .75);
}

.cg-btn-white-outline:hover {
    color: var(--cg-dark);
    background: var(--cg-white);
}

.full {
    width: 100%;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--cg-blue-hover);
    font-size: 15px;
    font-weight: 600;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    background: var(--cg-white);
    border-bottom: 1px solid var(--cg-border);
    position: relative;
    z-index: 1000;
}

.site-header .navbar {
    padding: 0;
}

.header-inner {
    width: 100%;
    min-height: 88px;
    display: flex;
    align-items: center;
}

.site-logo {
    margin: 0;
    padding: 0;
}

.site-logo img {
    width: 178px;
}

.site-header .navbar-collapse {
    align-items: center;
}

.site-header .navbar-nav {
    gap: 22px;
    align-items: center;
}

.site-header .nav-link {
    padding: 30px 0 !important;
    color: var(--cg-dark) !important;
    font-size: 16px;
    font-weight: 600;
}

.site-header .nav-link:hover {
    color: var(--cg-blue-hover) !important;
}

.site-header .dropdown-toggle::after {
    margin-left: 5px;
    color: var(--cg-orange);
}

.site-header .dropdown-menu {
    min-width: 220px;
    padding: 8px;
    border: 1px solid var(--cg-border);
    border-radius: var(--radius);
    box-shadow: 0 12px 28px rgba(32, 37, 31, .08);
}

.site-header .dropdown-item {
    padding: 10px 12px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
}

.site-header .dropdown-item:hover {
    color: var(--cg-blue-hover);
    background: var(--cg-soft-blue);
}

.header-actions {
    margin-left: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-phone {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--cg-dark);
    font-size: 16px;
    font-weight: 700;
    white-space: nowrap;
}

.header-phone i {
    color: var(--cg-orange);
}


.desktop-only {
    display: block;
}

.only-mobile {
    display: none;
}


/* =========================================================
   HERO / PRIMARY PROMISE
========================================================= */

.property-hero {
    position: relative;
    min-height: 560px;
    /*overflow: hidden;*/
    display: flex;
    align-items: center;
    background: var(--cg-dark);
    background: #000;
}

.property-address-field small.d-block {
    font-size: 15px;
    font-weight: 500;
}


/* -----------------------------------------
   BACKGROUND IMAGE
----------------------------------------- */

.property-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}


.property-hero-bg img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}


/* -----------------------------------------
   DARK GRADIENT
----------------------------------------- */

.property-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    background:
        linear-gradient(90deg,
            rgba(16, 25, 22, .94) 0%,
            rgba(16, 25, 22, .86) 27%,
            rgba(16, 25, 22, .56) 48%,
            rgba(16, 25, 22, .08) 72%,
            rgba(16, 25, 22, 0) 100%);
}


/* -----------------------------------------
   CONTAINER
----------------------------------------- */

.property-hero-container {
    position: relative;
    z-index: 2;
    width: min(100% - 48px, 1360px);
    margin-inline: auto;
}


/* -----------------------------------------
   CONTENT
----------------------------------------- */

.property-hero-content {
    max-width: 650px;

    padding: 64px 0;
}


/* -----------------------------------------
   EYEBROW
----------------------------------------- */

.property-hero-eyebrow {
    margin: 0 0 14px;
    color: var(--cg-orange);
    font-size: 15px;
    line-height: 1.2;
    font-weight: 600;
    text-transform: uppercase;
}


/* -----------------------------------------
   HEADING
----------------------------------------- */

.property-hero h1 {
    max-width: 620px;

    margin: 0;

    color: var(--cg-white);

    font-size: clamp(44px, 4vw, 58px);
    line-height: 1.02;
    font-weight: 700;

    letter-spacing: -1.2px;
}


/* -----------------------------------------
   ORANGE ACCENT
----------------------------------------- */

.property-hero-line {
    width: 72px;
    height: 4px;

    margin: 20px 0;

    display: block;

    background: var(--cg-orange);
}


/* -----------------------------------------
   DESCRIPTION
----------------------------------------- */

.property-hero-description {
    max-width: 530px;

    margin: 0 0 24px;

    color: var(--cg-white);

    font-size: 18px;
    line-height: 1.5;
    font-weight: 500;
}


/* =========================================================
   PROPERTY SEARCH BOX
========================================================= */

.property-search-form {
    width: 100%;
    max-width: 620px;

    padding: 14px;

    background: var(--cg-white);

    border-radius: var(--radius);

    box-shadow:
        0 10px 32px rgba(0, 0, 0, .18);
}


/* -----------------------------------------
   SEARCH ROW
----------------------------------------- */

.property-search-row {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr) auto;

    gap: 10px;
}


/* -----------------------------------------
   ADDRESS FIELD
----------------------------------------- */

.property-address-field {
    min-height: 54px;

    padding: 0 16px;

    display: flex;
    align-items: center;
    gap: 11px;

    background: var(--cg-white);

    border: 1px solid var(--cg-border);
    border-radius: var(--radius);
}


.property-address-field i {
    flex: 0 0 auto;

    color: var(--cg-muted);

    font-size: 19px;
}


.property-address-field input {
    width: 100%;

    padding: 0;

    color: var(--cg-dark);
    background: transparent;

    border: 0;
    outline: 0;

    font-family: "Maven Pro", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.3;
    font-weight: 500;
}


.property-address-field input::placeholder {
    color: var(--cg-muted);
    opacity: 1;
}


.property-address-field:focus-within {
    border-color: var(--cg-blue);

    box-shadow:
        0 0 0 3px rgba(61, 179, 229, .12);
}


/* -----------------------------------------
   CHECK MY BLOCK BUTTON
----------------------------------------- */

.property-search-btn {
    min-width: 190px;
    min-height: 54px;

    padding: 12px 20px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    color: var(--cg-dark);
    background: var(--cg-orange);

    border: 2px solid var(--cg-orange);
    border-radius: var(--radius);

    font-family: "Maven Pro", Arial, sans-serif;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 600;

    white-space: nowrap;

    cursor: pointer;

    transition:
        background-color .2s ease,
        border-color .2s ease,
        transform .2s ease;
}


.property-search-btn:hover {
    color: var(--cg-dark);

    background: var(--cg-orange-hover);
    border-color: var(--cg-orange-hover);

    transform: translateY(-1px);
}


.property-search-btn i {
    transition: transform .2s ease;
}


.property-search-btn:hover i {
    transform: translateX(4px);
}


/* -----------------------------------------
   SECURITY NOTE
----------------------------------------- */

.property-search-note {
    margin-top: 11px;
    padding: 0 3px;

    display: flex;
    align-items: center;
    gap: 8px;

    color: var(--cg-muted);

    font-size: 14px;
    line-height: 1.3;
    font-weight: 500;
}


.property-search-note i {
    color: var(--cg-orange);

    font-size: 14px;
}


/* =========================================================
   TRUST & CREDIBILITY BAR
========================================================= */

.trust-bar-section {
    background: var(--cg-white);

    border-bottom: 1px solid var(--cg-border);
}


.trust-bar-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}


/* -----------------------------------------
   ITEM
----------------------------------------- */

.trust-bar-item {
    min-height: 132px;

    padding: 24px 28px;

    display: flex;
    align-items: center;

    gap: 18px;

    position: relative;
}


.trust-bar-item:not(:last-child) {
    border-right: 1px solid var(--cg-border);
}


/* -----------------------------------------
   ICON
----------------------------------------- */

.trust-bar-icon {
    width: 62px;
    height: 62px;
    flex: 0 0 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cg-blue);
    background: rgba(61, 179, 229, .09);
    border-radius: 50%;
    transition:
        transform .2s ease,
        background-color .2s ease;
}


.trust-bar-icon svg {
    width: 36px;
    height: 36px;
    display: block;
}


.trust-bar-item:hover .trust-bar-icon {
    transform: translateY(-2px);
    background: rgba(61, 179, 229, .14);
}


/* -----------------------------------------
   CONTENT
----------------------------------------- */

.trust-bar-content {
    min-width: 0;
}

.trust-bar-content h2 {
    margin: 0 0 7px;
    color: var(--cg-dark);
    color: var(--cg-blue);
    font-size: 20px;
    line-height: 1.08;
    font-weight: 600;
}

.trust-bar-content h2 span {
    display: block;
    margin-top: 3px;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--cg-dark);
}

.trust-bar-item.small-font .trust-bar-content h2 span {
    font-size: 16px;
    color: var(--cg-blue);
}

.trust-bar-content p {
    max-width: 190px;
    margin: 0;
    color: var(--cg-dark);
    font-size: 14px;
    line-height: 1.4;
    font-weight: 500;
    opacity: 0.8;
}

.trust-bar-content .trust-rating-stars span {
    color: var(--cg-blue);
    font-size: 20px;
    line-height: 1.08;
    font-weight: 600;
    margin-right: 5px;
}

/* -----------------------------------------
   RATING
----------------------------------------- */

.trust-rating-stars {
    margin: -1px 0 5px;

    display: flex;
    align-items: center;

    gap: 3px;

    color: var(--cg-orange);

    font-size: 13px;
    line-height: 1;
}




























/* =========================================================
   HELP ME FIND MY DESIGN
========================================================= */

.find-design-section {
    padding: 50px 0;

    background: var(--cg-white);
}


.find-design-panel {
    /* padding: 36px; */
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.10fr);
    /* border: 1px solid var(--cg-border); */
    border-radius: var(--radius);
    /* box-shadow: 0 12px 35px rgba(32, 37, 31, .07); */
    background: var(--cg-white);
}


/* =========================================================
   LEFT
========================================================= */

.find-design-left {
    padding-right: 38px;

    border-right: 1px solid var(--cg-border);
}


.find-design-heading {
    margin-bottom: 26px;

    display: flex;
    align-items: center;

    gap: 16px;
}


.find-design-main-icon {
    width: 58px;
    height: 58px;

    flex: 0 0 58px;
}


.find-design-main-icon svg {
    width: 100%;
    height: 100%;
}

.find-design-left>h3 {
    margin-bottom: 10px;
    color: var(--cg-dark);
    font-size: 21px;
    line-height: 1.25;
    font-weight: 700;
}


.find-design-intro {
    /* max-width: 520px; */

    margin-bottom: 20px;

    font-size: 18px;
    line-height: 1.5;
}


.find-design-intro strong {
    color: var(--cg-blue-hover);
}


/* =========================================================
   TEXTAREA
========================================================= */

.find-design-input-wrap {
    min-height: 164px;

    position: relative;

    margin-bottom: 16px;

    border: 1px solid var(--cg-border);
    border-radius: var(--radius);

    background: var(--cg-white);
}


.find-design-input-icon {
    position: absolute;

    top: 18px;
    left: 18px;

    color: var(--cg-blue);

    font-size: 18px;
}


.find-design-input-wrap textarea {
    width: 100%;
    min-height: 164px;

    padding: 18px 20px 38px 50px;

    color: var(--cg-dark);
    background: transparent;

    border: 0;
    outline: 0;

    font-family: "Maven Pro", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 500;

    resize: none;
}


.find-design-input-wrap:focus-within {
    border-color: var(--cg-blue);

    box-shadow:
        0 0 0 3px rgba(61, 179, 229, .10);
}


.design-character-count {
    position: absolute;

    right: 14px;
    bottom: 10px;

    color: var(--cg-muted);

    font-size: 13px;
    font-weight: 500;
}


/* =========================================================
   BUTTON
========================================================= */

.find-design-btn {
    width: 100%;

    min-height: 54px;

}


.find-design-btn i {
    transition: transform .2s ease;
}


.find-design-btn:hover i {
    transform: translateX(4px);
}


.find-design-free {
    margin: 11px 0 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--cg-muted);
    font-size: 14px;
}


.find-design-free i {
    color: var(--cg-orange);
}


/* =========================================================
   EXAMPLES
========================================================= */

.find-design-examples {
    padding: 18px;
    background: rgba(61, 179, 229, .055);
    border-radius: var(--radius);
}


.find-design-examples h4 {
    margin: 0 0 9px;
    color: var(--cg-blue-hover);
    font-size: 18px;
    font-weight: 700;
}


.find-example {
    width: 100%;
    padding: 12px 2px;
    display: grid;
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 10px;
    color: var(--cg-dark);
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--cg-border);
    font-family: "Maven Pro", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
}


.find-example:last-child {
    border-bottom: 0;
}


.find-example i {
    color: var(--cg-blue);
    font-size: 19px;
}


.find-example:hover {
    color: var(--cg-blue-hover);
}


/* =========================================================
   RIGHT
========================================================= */

.find-design-right {
    padding-left: 38px;
    display: flex;
    flex-direction: column;
}


.how-heading {
    margin-bottom: 32px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 14px;
}






/* =========================================================
   STEPS
========================================================= */

.how-steps {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}


/* connecting line */

.how-steps::before {
    content: "";
    position: absolute;
    top: 18px;
    left: 12.5%;
    right: 12.5%;
    height: 1px;
    background: var(--cg-border);
}


.how-step {
    position: relative;
    z-index: 1;
    text-align: center;
}


.how-number {
    width: 36px;
    height: 36px;
    margin: 0 auto 22px;
    display: grid;
    place-items: center;
    color: var(--cg-white);
    background: var(--cg-blue);
    border-radius: 50%;
    font-size: 15px;
    font-weight: 700;
}


.how-icon {
    width: 82px;
    height: 82px;
    margin: 0 auto 18px;
    display: grid;
    place-items: center;
    color: var(--cg-dark);
    background: rgba(61, 179, 229, .07);
    border-radius: 50%;
}


.how-icon svg {
    width: 48px;
    height: 48px;
}


.how-step h4 {
    margin: 0 0 10px;
    color: var(--cg-dark);
    font-size: 16px;
    line-height: 1.25;
    font-weight: 700;
}


.how-step p {
    max-width: 170px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.55;
}


/* =========================================================
   PRIVACY
========================================================= */

.find-design-privacy {
    margin-top: auto;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(61, 179, 229, .055);
    border-radius: var(--radius);
}


.privacy-icon {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    display: grid;
    place-items: center;
    color: var(--cg-blue);
    border: 1px solid var(--cg-blue);
    border-radius: 50%;
    font-size: 22px;
}


.find-design-privacy p {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
}


.find-design-privacy a {
    color: var(--cg-blue-hover);
    font-weight: 700;
}










/* =========================================================
   HOW IT WORKS - VERTICAL
========================================================= */

.find-design-right {
    padding-left: 38px;

    display: flex;
    flex-direction: column;
}


.how-heading {
    margin-bottom: 15px;
    flex-direction: column;
    display: flex;
    align-items: baseline;
    gap: 9px;
}


.how-heading h3 {
    margin: 0;
    color: var(--cg-dark);
    font-size: 36px;
    line-height: 1.1;
    font-weight: 700;
}


.how-heading span {
    color: var(--cg-blue-hover);
    font-size: 18px;
    font-weight: 600;
}


/* -----------------------------------------
   VERTICAL TIMELINE
----------------------------------------- */

.how-steps-vertical {
    position: relative;
}


/* vertical line */

.how-steps-vertical::before {
    content: "";
    position: absolute;
    top: 32px;
    bottom: 35px;
    left: 20px;
    width: 1px;
    background: var(--cg-border);
}


/* -----------------------------------------
   EACH STEP
----------------------------------------- */

.how-step-row {
    position: relative;
    z-index: 1;

    min-height: 105px;

    padding: 10px 0;

    display: grid;
    grid-template-columns:
        42px
        72px
        minmax(0, 1fr);

    align-items: center;

    gap: 18px;
}


/* -----------------------------------------
   NUMBER
----------------------------------------- */

.how-step-side {
    display: flex;
    justify-content: center;
}


.how-number {
    width: 40px;
    height: 40px;

    display: grid;
    place-items: center;

    margin: 0;

    color: var(--cg-white);
    background: var(--cg-blue);

    border: 4px solid var(--cg-white);
    border-radius: 50%;

    box-shadow: 0 0 0 1px var(--cg-border);

    font-size: 14px;
    line-height: 1;
    font-weight: 700;
}


/* -----------------------------------------
   ICON
----------------------------------------- */

.how-step-icon {
    width: 68px;
    height: 68px;

    display: grid;
    place-items: center;

    color: var(--cg-dark);

    background: rgba(61, 179, 229, .08);

    border-radius: 50%;
}


.how-step-icon svg {
    width: 39px;
    height: 39px;
}


/* -----------------------------------------
   CONTENT
----------------------------------------- */

.how-step-copy {
    min-width: 0;
    padding: 4px 0;
}


.how-step-copy h4 {
    margin: 0 0 6px;
    color: var(--cg-dark);
    font-size: 18px;
    line-height: 1.2;
    font-weight: 700;
}


.how-step-copy p {
    /* max-width: 470px; */
    margin: 0;
    color: var(--cg-dark);
    font-size: 18px;
    line-height: 1.45;
    font-weight: 500;
}


/* subtle divider between rows */

.how-step-row:not(:last-child) .how-step-copy {
    border-bottom: 1px solid var(--cg-border);
    padding-bottom: 18px;
}


/* =========================================================
   PRIVACY
========================================================= */

.find-design-privacy {
    margin-top: 15px;

    padding: 16px 20px;

    display: flex;
    align-items: center;

    gap: 14px;

    background: rgba(61, 179, 229, .055);

    border-radius: var(--radius);
}


.privacy-icon {
    width: 44px;
    height: 44px;

    flex: 0 0 44px;

    display: grid;
    place-items: center;

    color: var(--cg-blue);

    border: 1px solid var(--cg-blue);
    border-radius: 50%;

    font-size: 21px;
}


.find-design-privacy p {
    margin: 0;

    font-size: 14px;
    line-height: 1.45;
}


.find-design-privacy a {
    color: var(--cg-blue-hover);

    font-weight: 700;
}











/* =========================================================
   BROWSE / SEARCH DESIGNS
========================================================= */

.browse-designs-section {
    padding: 50px 0;

    background: #f8f9f8;
}


/* =========================================================
   TOP
========================================================= */

.browse-designs-top {
    min-height: 290px;

    position: relative;

    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);

    overflow: hidden;

    background: var(--cg-white);

    border: 1px solid var(--cg-border);
    border-radius: var(--radius);
}


.browse-designs-copy {
    position: relative;
    z-index: 2;

    padding: 42px 20px 38px 40px;
}


.section-eyebrow {
    margin: 0 0 10px;

    color: var(--cg-orange);

    font-size: 15px;
    line-height: 1.2;
    font-weight: 600;

    text-transform: uppercase;
}


.browse-designs-copy h2 {
    max-width: 610px;
}


.browse-designs-copy > p:last-child {
    max-width: 570px;

    margin: 0;

    color: var(--cg-dark);

    font-size: 18px;
    line-height: 1.5;
    font-weight: 500;
}


/* =========================================================
   TOP IMAGE
========================================================= */

.browse-designs-visual {
    /* min-height: 370px; */

    position: relative;
}


.browse-designs-visual::before {
    content: "";

    position: absolute;
    z-index: 1;

    top: 0;
    bottom: 0;
    left: 0;

    width: 180px;

    background:
        linear-gradient(
            90deg,
            var(--cg-white) 0%,
            rgba(255,255,255,.80) 30%,
            rgba(255,255,255,0) 100%
        );
}


.browse-designs-visual img {
    width: 100%;
    height: 100%;

    position: absolute;
    inset: 0;

    display: block;

    object-fit: cover;
}


/* COUNT BADGE */

.design-count-badge {
    position: absolute;
    z-index: 2;
    right: 40px;
    top: 20px;
    padding: 13px 17px;
    display: flex;
    align-items: center;
    gap: 11px;
    background: var(--cg-white);
    border-radius: var(--radius);
    box-shadow: 0 8px 25px rgba(32, 37, 31, .12);
}


.design-count-icon {
    width: 42px;
    height: 42px;

    color: var(--cg-blue);
}


.design-count-icon svg {
    width: 100%;
    height: 100%;
}


.design-count-badge strong,
.design-count-badge span {
    display: block;
}


.design-count-badge strong {
    color: var(--cg-dark);

    font-size: 18px;
    font-weight: 700;
}


.design-count-badge span {
    margin-top: 0px;

    color: var(--cg-muted);
    font-weight: 500;
    font-size: 14px;
}


/* =========================================================
   QUICK SEARCH
========================================================= */

.quick-design-search {
    position: absolute;
    width: 94%;
    z-index: 2;
    grid-column: 1 / -1;
    bottom: 25px;
    left: 0;
    right: 0;
    margin: auto;
}


.quick-design-search h3 {
    margin: 0 0 12px;

    color: var(--cg-dark);

    font-size: 18px;
    font-weight: 700;
}


.quick-filter-list {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}


.quick-filter {
    min-height: 54px;

    padding: 10px 15px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    color: var(--cg-dark);
    background: var(--cg-white);

    border: 1px solid var(--cg-border);
    border-radius: var(--radius);

    font-family: "Maven Pro", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 600;

    cursor: pointer;

    box-shadow: 0 3px 10px rgba(32,37,31,.035);

    transition:
        border-color .2s ease,
        color .2s ease,
        background-color .2s ease,
        transform .2s ease;
}


.filter-icon {
    width: 24px;
    height: 24px;

    flex: 0 0 24px;

    color: var(--cg-blue);
}

.filter-chevron {
    width: 16px;
    height: 16px;

    margin-left: auto;

    color: var(--cg-dark);
}

.quick-filter:hover .filter-icon,
.quick-filter.is-active .filter-icon {
    color: var(--cg-blue-hover);
}


.quick-filter:hover,
.quick-filter.is-active {
    color: var(--cg-dark);

    border-color: var(--cg-blue);

    transform: translateY(-2px);
}


.quick-filter.is-active {
    background: rgba(61,179,229,.08);
}


.quick-filter-more i:last-child {
    margin-left: auto;

    font-size: 13px;
}


/* =========================================================
   DESIGN GRID
========================================================= */

.browse-design-grid {
    margin-top: 22px;

    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 22px;
}


/* CARD */

.browse-design-card {
    overflow: hidden;

    background: var(--cg-white);

    border: 1px solid var(--cg-border);
    border-radius: var(--radius);

    box-shadow: 0 5px 16px rgba(32,37,31,.045);

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}


.browse-design-card:hover {


    border-color: rgba(61,179,229,.5);

    box-shadow: 0 16px 32px rgba(32,37,31,.11);
}


/* IMAGE */

.browse-card-image {
    position: relative;

    aspect-ratio: 16 / 9;

    overflow: hidden;
}


.browse-card-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform .35s ease;
}


.browse-design-card:hover .browse-card-image img {
    transform: scale(1.035);
}


/* SAVE */

.browse-save {
    width: 40px;
    height: 40px;

    position: absolute;

    top: 12px;
    right: 12px;

    display: grid;
    place-items: center;

    padding: 0;

    color: var(--cg-blue);
    background: var(--cg-white);

    border: 1px solid var(--cg-border);
    border-radius: 50%;

    font-size: 18px;

    cursor: pointer;

    box-shadow: 0 4px 13px rgba(32,37,31,.12);

    transition:
        transform .2s ease,
        border-color .2s ease;
}


.browse-save:hover {
    transform: scale(1.08);

    border-color: var(--cg-blue);
}


/* BODY */

.browse-card-body {
    padding: 20px;
}


.browse-card-heading {
    margin-bottom: 14px;

    display: flex;
    align-items: baseline;
    justify-content: space-between;

    gap: 12px;
}





.browse-card-heading > span {
    color: var(--cg-blue);

    font-size: 15px;
    font-weight: 700;
}


/* SPECS */

.browse-card-specs {
    margin-bottom: 15px;

    display: flex;
    flex-wrap: wrap;

    gap: 18px;
}


.browse-card-specs span {
    display: flex;
    align-items: center;

    gap: 7px;

    color: var(--cg-dark);

    font-size: 16px;
    font-weight: 500;
}


.browse-card-specs i {
    color: var(--cg-orange);

    font-size: 16px;
}


.browse-card-description {
    min-height: 64px;

    margin: 0 0 16px;

    color: var(--cg-dark);

    font-size: 16px;
    line-height: 1.5;
}


/* FOOT */

.browse-card-footer {
    padding-top: 16px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 14px;

    border-top: 1px solid var(--cg-border);
}


.browse-card-footer > span {
    color: var(--cg-dark);

    font-size: 14px;
    font-weight: 600;
}


.browse-card-footer a {
    display: inline-flex;
    align-items: center;

    gap: 7px;

    color: var(--cg-blue);

    font-size: 18px;
    font-weight: 700;
}


.browse-card-footer a i {
    transition: transform .2s ease;
}


.browse-card-footer a:hover i {
    transform: translateX(4px);
}


/* =========================================================
   CTA
========================================================= */

.browse-designs-action {
    margin-top: 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 24px;
}


.browse-all-btn {
    min-width: 340px;
}


.browse-all-btn i {
    transition: transform .2s ease;
}


.browse-all-btn:hover i {
    transform: translateX(4px);
}


.browse-designs-action p {
    max-width: 260px;
    margin: 0;
    color: var(--cg-muted);
    font-size: 14px;
    line-height: 1.4;
}



/* =========================================================
   CHECK MY BLOCK
========================================================= */

.block-check-section {
    padding: 50px 0;

    background: var(--cg-white);
}


.block-check-panel {
    overflow: hidden;

    /* border: 1px solid var(--cg-border); */
    border-radius: var(--radius);

    background: var(--cg-white);

    /* box-shadow: 0 12px 32px rgba(32, 37, 31, .07); */
}


/* =========================================================
   TOP
========================================================= */

.block-check-top {
    min-height: 255px;

    position: relative;

    display: grid;
    grid-template-columns:
        minmax(0, .95fr)
        minmax(0, 1.05fr);

    overflow: hidden;

    background:
        linear-gradient(
            90deg,
            rgba(61, 179, 229, .06) 0%,
            rgba(61, 179, 229, .025) 100%
        );
}


.block-check-intro {
    position: relative;
    z-index: 2;

    padding: 38px 20px 34px 38px;
}


.block-check-intro h2,
.browse-designs-copy h2,
.find-design-heading h2,
.real-projects-copy h2,
.qa-intro h2,
.why-cgfb-intro h2 {
    margin: 0 0 10px;
    color: var(--cg-dark);
    font-size: 36px;
    line-height: 1.08;
    font-weight: 700;
}
.find-design-heading h2 {
    margin: 0;
}

.block-check-intro > p:not(.section-eyebrow) {
    max-width: 480px;

    margin: 0 0 22px;

    color: var(--cg-dark);

    font-size: 18px;
    line-height: 1.5;
    font-weight: 500;
}


/* =========================================================
   ADDRESS SEARCH
========================================================= */

.block-address-search {
    width: 100%;
    max-width: 560px;

    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;

    gap: 10px;
}


.block-address-field {
    min-height: 52px;

    padding: 0 15px;

    display: flex;
    align-items: center;

    gap: 10px;

    background: var(--cg-white);

    border: 1px solid var(--cg-border);
    border-radius: var(--radius);

    box-shadow: 0 3px 12px rgba(32, 37, 31, .05);
}


.block-address-field svg {
    width: 20px;
    height: 20px;

    flex: 0 0 20px;

    color: var(--cg-muted);
}


.block-address-field input {
    width: 100%;

    padding: 0;

    color: var(--cg-dark);
    background: transparent;

    border: 0;
    outline: 0;

    font-family: "Maven Pro", Arial, sans-serif;
    font-size: 15px;
    font-weight: 500;
}


.block-new-search {
    min-height: 52px;

    padding: 10px 22px;

    color: #fff;
    background: var(--cg-orange);

    border: 2px solid var(--cg-orange);
    border-radius: var(--radius);

    font-family: "Maven Pro", Arial, sans-serif;
    font-size: 18px;
    font-weight: 600;

    cursor: pointer;

    transition:
        background-color .2s ease,
        transform .2s ease;
}


.block-new-search:hover {
    background: var(--cg-orange-hover);

    transform: translateY(-1px);
}


/* =========================================================
   TOP HOUSE VISUAL
========================================================= */

.block-check-building {
    position: relative;

    min-height: 255px;
}


.block-check-building::before {
    content: "";

    width: 160px;

    position: absolute;
    z-index: 1;

    top: 0;
    bottom: 0;
    left: 0;

    background:
        linear-gradient(
            90deg,
            #f5fafc 0%,
            rgba(245,250,252,.75) 35%,
            rgba(245,250,252,0) 100%
        );
}


.block-check-building img {
    width: 100%;
    height: 100%;

    position: absolute;
    inset: 0;

    object-fit: cover;
}


/* =========================================================
   RESULT GRID
========================================================= */

.block-result-grid {
    /* padding: 24px; */
padding: 24px 0 0 0;
    display: grid;
    grid-template-columns: 455px minmax(0, 1fr);

    gap: 18px;
}


/* =========================================================
   SUMMARY CARD
========================================================= */

.block-summary-card {
    padding: 20px;

    background: var(--cg-white);

    border: 1px solid var(--cg-border);
    border-radius: var(--radius);
}


.block-summary-heading {
    margin-bottom: 18px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 10px;
}


.block-summary-title {
    display: flex;
    align-items: center;

    gap: 8px;

    color: var(--cg-dark);

    font-size: 16px;
    line-height: 1.2;
    font-weight: 700;

    text-transform: uppercase;
}


.block-summary-title svg {
    width: 21px;
    height: 21px;
}


.address-status {
    padding: 5px 8px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--cg-blue-hover);
    background: rgba(61, 179, 229, .08);
    border-radius: 20px;
    font-size: 14px;
    line-height: 1;
    font-weight: 500;
    white-space: nowrap;
}


.block-address {
    margin-bottom: 14px;
}


.block-address strong,
.block-address span {
    display: block;
}


.block-address strong {
    color: var(--cg-dark);

    font-size: 18px;
    line-height: 1.25;
}


.block-address span {
    margin-top: 2px;

    color: var(--cg-dark);

    font-size: 16px;
    font-weight: 500;
}


/* =========================================================
   PROPERTY DATA
========================================================= */

.property-data-list {
    border-top: 1px solid var(--cg-border);
}


.property-data-row {
    min-height: 40px;

    padding: 8px 0;

    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;

    align-items: center;

    gap: 12px;

    border-bottom: 1px solid var(--cg-border);
}


.property-data-row > span {
    display: flex;
    align-items: center;

    gap: 8px;

    color: var(--cg-dark);

    font-size: 16px;
    line-height: 1.3;
    font-weight: 500;
}


.property-data-row > span i {
    width: 20px;
    color: var(--cg-muted);
    text-align: center;
    font-size: 18px;
}


.property-data-row > strong {
    max-width: 175px;

    color: var(--cg-dark);

    font-size: 16px;
    line-height: 1.3;
    font-weight: 600;

    text-align: right;
}


.block-ok {
    margin-right: 3px;

    color: var(--cg-blue);
}


.planning-details-btn {
    margin-top: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: var(--cg-orange);
    min-height: 52px;
    padding: 10px 22px;
    border: 2px solid var(--cg-orange);
    border-radius: var(--radius);
    font-family: "Maven Pro", Arial, sans-serif;
    font-size: 18px;
    font-weight: 600;
}


.planning-details-btn:hover {
    color: #fff;
    background: var(--cg-orange);
}


/* =========================================================
   MAP
========================================================= */

.block-map-card {
    min-height: 520px;

    position: relative;

    overflow: hidden;

    background: #eeeeee;

    border-radius: var(--radius);
}


.block-map-image {
    width: 100%;
    height: 100%;

    position: absolute;
    inset: 0;

    object-fit: cover;
}


/* =========================================================
   PROPERTY BOUNDARY
========================================================= */

.property-boundary {
    width: 36%;
    height: 67%;

    position: absolute;

    top: 14%;
    left: 32%;

    display: grid;
    place-items: center;

    background: rgba(237, 170, 2, .30);

    border: 3px dashed var(--cg-orange);

    transform: rotate(-6deg);

    color: var(--cg-white);
}


.property-boundary strong {
    font-size: 31px;
    line-height: 1;
    font-weight: 700;

    text-shadow: 0 2px 5px rgba(0, 0, 0, .5);
}


.property-boundary > span {
    position: absolute;

    color: var(--cg-white);

    font-size: 13px;
    font-weight: 700;

    text-shadow: 0 1px 4px rgba(0,0,0,.7);
}


.boundary-top {
    top: -22px;
    left: 50%;

    transform: translateX(-50%);
}


.boundary-bottom {
    bottom: -22px;
    left: 50%;

    transform: translateX(-50%);
}


.boundary-left {
    left: -42px;
    top: 50%;

    transform: translateY(-50%);
}


.boundary-right {
    right: -44px;
    top: 50%;

    transform: translateY(-50%);
}


/* =========================================================
   MAP UI
========================================================= */

.map-compass {
    width: 46px;
    height: 55px;

    position: absolute;

    top: 14px;
    left: 14px;

    display: flex;
    flex-direction: column;
    align-items: center;

    padding: 4px;

    color: var(--cg-dark);
    background: rgba(255,255,255,.92);

    border-radius: 24px;

    box-shadow: 0 4px 12px rgba(0,0,0,.12);
}


.map-compass span {
    font-size: 10px;
    font-weight: 700;
}


.map-compass svg {
    width: 28px;
    height: 28px;
}


.view-street-btn {
    position: absolute;

    top: 14px;
    right: 14px;

    min-height: 38px;

    padding: 7px 12px;

    display: flex;
    align-items: center;

    gap: 7px;

    color: var(--cg-dark);
    background: var(--cg-white);

    border: 1px solid var(--cg-border);
    border-radius: var(--radius);

    font-family: inherit;
    font-size: 12px;
    font-weight: 600;

    box-shadow: 0 4px 12px rgba(0,0,0,.10);
}


.map-zoom {
    position: absolute;

    right: 14px;
    bottom: 68px;

    overflow: hidden;

    border-radius: var(--radius);

    box-shadow: 0 4px 12px rgba(0,0,0,.12);
}


.map-zoom button {
    width: 36px;
    height: 36px;

    display: block;

    color: var(--cg-dark);
    background: var(--cg-white);

    border: 0;

    font-size: 20px;
}


.map-zoom button + button {
    border-top: 1px solid var(--cg-border);
}


/* =========================================================
   BOTTOM MAP CONTROLS
========================================================= */

.map-bottom-controls {
    position: absolute;

    left: 14px;
    right: 58px;
    bottom: 14px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 10px;
    z-index: 9999;
}


.map-overlay-button,
.map-tabs {
    min-height: 38px;

    display: flex;
    align-items: center;

    background: rgba(255,255,255,.95);

    border-radius: var(--radius);

    box-shadow: 0 4px 12px rgba(0,0,0,.12);
}


.map-overlay-button {
    padding: 7px 10px;

    gap: 10px;

    border: 0;

    font-family: inherit;
    font-size: 11px;
    font-weight: 600;
}


.fake-switch {
    width: 30px;
    height: 17px;

    position: relative;

    display: block;

    background: var(--cg-border);

    border-radius: 20px;
}


.fake-switch::after {
    content: "";

    width: 13px;
    height: 13px;

    position: absolute;

    top: 2px;
    left: 2px;

    background: var(--cg-white);

    border-radius: 50%;
}


.fake-switch.is-on {
    background: var(--cg-orange);
}


.fake-switch.is-on::after {
    left: 15px;
}


.map-tabs {
    padding: 4px;
}


.map-tabs button {
    min-height: 30px;

    padding: 5px 11px;

    color: var(--cg-dark);
    background: transparent;

    border: 0;
    border-radius: 4px;

    font-family: inherit;
    font-size: 10px;
    font-weight: 600;
}


.map-tabs button.is-active {
    color: var(--cg-dark);
    background: var(--cg-orange);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1199.98px) {

    .block-result-grid {
        grid-template-columns: 320px minmax(0, 1fr);
    }

}


@media (max-width: 991.98px) {

    .block-check-top {
        grid-template-columns: 1fr;
    }

    .block-check-building {
        min-height: 280px;
    }

    .block-check-building::before {
        display: none;
    }

    .block-result-grid {
        grid-template-columns: 1fr;
    }

    .block-summary-card {
        max-width: none;
    }

    .block-map-card {
        min-height: 480px;
    }

}


@media (max-width: 767.98px) {
.block-possibilities {
    margin-top: 40px;
}
    .block-check-section {
        padding: 48px 0;
    }

    .block-check-intro {
        padding: 28px 22px;
    }

    .block-check-intro h2 {
        font-size: 32px;
    }

    .block-address-search {
        grid-template-columns: 1fr;
    }

    .block-new-search {
        width: 100%;
    }

    .block-check-building {
        min-height: 230px;
    }

    .block-result-grid {
        padding: 16px 0 0 0;
    }

    .block-map-card {
        min-height: 420px;
    }

    .map-bottom-controls {
        right: 14px;

        align-items: stretch;
        flex-direction: column;
    }

    .map-tabs {
        overflow-x: auto;
    }

    .map-tabs button {
        flex: 1;
    }

    .map-zoom {
        bottom: 120px;
    }

}


@media (max-width: 479.98px) {

    .block-check-intro h2 {
        font-size: 29px;
    }

    .block-check-building {
        min-height: 200px;
    }

    .block-summary-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .property-data-row {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .property-data-row > strong {
        max-width: none;

        padding-left: 25px;

        text-align: left;
    }

    .block-map-card {
        min-height: 370px;
    }

    .property-boundary {
        width: 42%;
        left: 29%;
    }

    .property-boundary strong {
        font-size: 24px;
    }

}

/* =========================================================
   WHAT COULD BE POSSIBLE ON THIS PROPERTY?
========================================================= */

.block-possibilities {
    margin-top: 50px;

   

    background:
        linear-gradient(
            180deg,
            rgba(61, 179, 229, .025) 0%,
            rgba(61, 179, 229, .045) 100%
        );
	background:#fff;
	/**
    border: 1px solid rgba(61, 179, 229, .08);
    border-radius: var(--radius);
	 padding: 30px 20px 32px;
	 **/
}


/* =========================================================
   SECTION HEADING
========================================================= */

.block-possibilities-heading {
    margin-bottom: 22px;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 20px;
}


.block-possibilities-heading h3 {
    margin: 0 0 10px;
    color: var(--cg-dark);
    font-size: 36px;
    line-height: 1.08;
    font-weight: 700;
}


.block-possibilities-heading p {
    max-width: 850px;

    margin: 0;

}


/* =========================================================
   SLIDER WRAPPER
========================================================= */

.block-options-wrap {
    position: relative;
}


/* =========================================================
   PROPERTY OPTIONS SLIDER
========================================================= */

.block-options-slider {
    display: grid;

    grid-auto-flow: column;

    /*
       Desktop = approximately 5 cards.
       Existing slider JS can still move these horizontally.
    */
    grid-auto-columns:
        calc((100% - 56px) / 5);

    gap: 14px;

    overflow-x: auto;
    overflow-y: hidden;

    padding: 2px 2px 8px;

    scroll-behavior: smooth;
    scroll-snap-type: x proximity;

    scrollbar-width: none;
}


.block-options-slider::-webkit-scrollbar {
    display: none;
}


/* =========================================================
   PROPERTY OPTION CARD
========================================================= */

.property-option-card {
    min-width: 0;
    min-height: 360px;

    padding: 20px 18px 18px;

    display: flex;
    flex-direction: column;

    background: var(--cg-white);

    border: 1px solid var(--cg-border);
    border-radius: var(--radius);

    scroll-snap-align: start;

    box-shadow:
        0 5px 16px rgba(32, 37, 31, .035);

    transition:
        transform .22s ease,
        border-color .22s ease,
        box-shadow .22s ease;
}


.property-option-card:hover {
   

    border-color: rgba(61, 179, 229, .42);

  
}


/* =========================================================
   CARD TITLE / ICON
========================================================= */

.property-option-top {
    min-height: 82px;

    margin-bottom: 13px;

    display: flex;
    align-items: flex-start;

    gap: 11px;
	    flex-direction: column
}


.property-option-icon {
    width: 55px;
    height: 55px;

    flex: 0 0 55px;

    display: grid;
    place-items: center;

    color: var(--cg-blue);

    background: rgba(61, 179, 229, .07);

    border-radius: 50%;
}


.property-option-icon svg {
   width: 35px;
    height: 35px;

    display: block;
}


.property-option-icon-orange {
    color: var(--cg-orange);

    background: rgba(237, 170, 2, .08);
}


.property-option-icon-muted {
    color: var(--cg-grey);

    background: rgba(154, 153, 154, .08);
}


.property-option-top h4, .browse-card-heading h3 {
    margin: 3px 0 0;

    color: var(--cg-dark);

    font-size: 17px;
    line-height: 1.22;
    font-weight: 600;
}


.property-option-top h4 span {
    display: block;

    margin-top: 2px;

    font-size: 14px;
    line-height: 1.25;
    font-weight: 500;
}


/* =========================================================
   OPTION IMAGE
========================================================= */

.property-option-image {
    width: 100%;
    height: 180px;

    margin-bottom: 15px;

    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #F7F8F8;

    border-radius: 6px;
}


.property-option-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform .3s ease;
}


.property-option-card:hover .property-option-image img {
    transform: scale(1.035);
}


/* =========================================================
   CARD DESCRIPTION
========================================================= */

.property-option-card > p {
    margin: 0 0 17px;

    color: var(--cg-dark);

    font-size: 16px;
    line-height: 1.48;
    font-weight: 500;
}


/* =========================================================
   LEARN MORE LINK
========================================================= */

.property-option-link {
    margin-top: auto;

    display: inline-flex;
    align-items: center;

    gap: 8px;

    color: var(--cg-orange);

    line-height: 1.25;
	font-family: "Maven Pro", Arial, sans-serif;
    font-size: 18px;
    font-weight: 600;
}


.property-option-link i {
    transition: transform .2s ease;
}


.property-option-link:hover {
    color: var(--cg-orange-hover);
}


.property-option-link:hover i {
    transform: translateX(4px);
}


/* =========================================================
   NEXT SLIDER BUTTON
========================================================= */

.block-options-next {
    width: 48px;
    height: 48px;

    position: absolute;
    z-index: 5;

    top: 50%;
    right: -22px;

    display: grid;
    place-items: center;

    color: var(--cg-dark);
    background: var(--cg-white);

    border: 1px solid var(--cg-border);
    border-radius: 50%;

    box-shadow:
        0 6px 18px rgba(32, 37, 31, .14);

    font-size: 19px;

    transform: translateY(-50%);

    transition:
        color .2s ease,
        border-color .2s ease,
        transform .2s ease;
}


.block-options-next:hover {
    color: var(--cg-blue);

    border-color: var(--cg-blue);

    transform:
        translateY(-50%)
        scale(1.06);
}

/* card */
.property-option-card{
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* top area same height for all cards */
.property-option-top{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    min-height: 110px; /* adjust if needed */
}

/* icon */
.property-option-icon{
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* title */
.property-option-top h4{
    margin: 0;
    font-size: 18px;
    line-height: 1.25;
    font-weight: 700;
    min-height: 54px; /* keeps headings aligned */
}

/* subtitle */
.property-option-top h4 span{
    display: block;
    font-size: 14px;
    line-height: 1.3;
    font-weight: 500;
    margin-top: 2px;
}

/* image */
.property-option-image{
    width: 100%;
    height: 160px;
    margin-top: 0;
    margin-bottom: 16px;
    overflow: hidden;
    border-radius: 8px;
}

.property-option-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
/* =========================================================
   <= 1199px
========================================================= */

@media (max-width: 1199.98px) {
 .property-option-image {
        height: 180px;
    }
    .block-options-slider {
        grid-auto-columns:
            calc((100% - 28px) / 3);
    }


    .block-options-next {
        right: -12px;
    }

}


/* =========================================================
   <= 991px
========================================================= */

@media (max-width: 991.98px) {

    


  


    .block-options-slider {
        grid-auto-columns:
            calc((100% - 14px) / 2);
    }

}


/* =========================================================
   <= 767px
========================================================= */

@media (max-width: 767.98px) {

    .block-possibilities {
        margin-top: 40px;

	}


    .block-possibilities-heading {
        margin-bottom: 18px;
    }


   


  


    .block-options-slider {
        /*
           Gives a slight preview of the next card
           so mobile users understand it scrolls.
        */
        grid-auto-columns: 78%;
    }


    .property-option-card {
        min-height: 350px;
    }


    .block-options-next {
        width: 43px;
        height: 43px;

        right: -10px;
    }

}


/* =========================================================
   <= 479px
========================================================= */

@media (max-width: 479.98px) {

 


    .block-options-slider {
        grid-auto-columns: 88%;
    }


    .property-option-card {
        padding: 17px;
    }


  


    .property-option-image {
        height: 135px;
    }

}


/* =========================================================
   REAL CANBERRA PROJECTS
========================================================= */

.real-projects-section {
    padding:50px 0;
    background: #f8f9f8;
}


/* INTRO */

.real-projects-intro {
    min-height: 250px;

    display: grid;
    grid-template-columns: .8fr 1.2fr;

    overflow: hidden;

    /* border: 1px solid var(--cg-border); */
    border-radius: var(--radius);

    background: var(--cg-white);
}


.real-projects-copy {
    position: relative;
    z-index: 2;

    padding: 36px 20px 34px 36px;
}


.real-projects-copy h2 {
    margin: 0 0 13px;
}


.real-projects-copy > p:not(.section-eyebrow) {
    max-width: 480px;

    margin: 0 0 20px;

    font-size: 18px;
    line-height: 1.5;
}


.real-projects-points {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
}


.real-projects-points span {
    display: inline-flex;
    align-items: center;

    gap: 7px;

    color: var(--cg-dark);

    font-size: 16px;
    font-weight: 600;
}


.real-projects-points i {
    color: var(--cg-orange);
}


/* HERO IMAGE */

.real-projects-hero {
    min-height: 250px;

    position: relative;
}


.real-projects-hero::before {
    content: "";

    width: 180px;

    position: absolute;
    z-index: 1;

    top: 0;
    bottom: 0;
    left: 0;

    background:
        linear-gradient(
            90deg,
            var(--cg-white),
            rgba(255,255,255,.65),
            transparent
        );
}


.real-projects-hero img {
    width: 100%;
    height: 100%;

    position: absolute;
    inset: 0;

    object-fit: cover;
}


/* =========================================================
   SLIDER HEADER
========================================================= */

.slider-section {
    margin-top: 28px;
}


.slider-heading {
    margin-bottom: 16px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 24px;
}


.slider-heading > div:first-child {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;

    gap: 8px 18px;
}


.slider-heading h3 {
    margin: 0;

    color: var(--cg-dark);

    font-size: 21px;
    font-weight: 700;
}


.slider-heading h3 i {
    margin-right: 7px;

    color: var(--cg-blue);
}


.slider-heading p {
    margin: 0;

    color: var(--cg-muted);

    font-size: 16px;
}


.slider-heading-actions {
    display: flex;
    align-items: center;

    gap: 15px;
}


.slider-heading-actions > a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--cg-blue);
    font-size: 18px;
    font-weight: 600;
}


.slider-heading-actions > a i {
    transition: transform .2s ease;
}


.slider-heading-actions > a:hover i {
    transform: translateX(4px);
}


/* ARROWS */

.slider-arrows {
    display: flex;
    gap: 7px;
}


.slider-arrow {
    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    padding: 0;

    color: var(--cg-blue);
    background: var(--cg-white);

    border: 1px solid var(--cg-border);
    border-radius: 50%;

    cursor: pointer;

    transition:
        background-color .2s ease,
        color .2s ease,
        border-color .2s ease;
}


.slider-arrow:hover {
    color: var(--cg-white);
    background: var(--cg-blue);

    border-color: var(--cg-blue);
}


.slider-arrow:disabled {
    opacity: .35;
    cursor: default;
}


/* =========================================================
   COMMON CAROUSEL
========================================================= */

.card-slider {
    display: grid;

    overflow-x: auto;
    overflow-y: hidden;

    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;

    scrollbar-width: none;

    overscroll-behavior-inline: contain;
}


.card-slider::-webkit-scrollbar {
    display: none;
}


/* =========================================================
   PROJECT CAROUSEL - 3 VISIBLE
========================================================= */

.project-slider {
    grid-auto-flow: column;

    grid-auto-columns:
        calc((100% - 36px) / 3);

    gap: 18px;
}


.project-card {
    min-width: 0;

    overflow: hidden;

    scroll-snap-align: start;

    background: var(--cg-white);

    border: 1px solid var(--cg-border);
    border-radius: var(--radius);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}


.project-card:hover {
    /* transform: translateY(-4px); */

    box-shadow: 0 12px 28px rgba(32, 37, 31, .10);
}


/* VIDEO */

.project-video,
.testimonial-video {
    position: relative;
    display: block;
    overflow: hidden;
}


.project-video {
    aspect-ratio: 16 / 8.8;
}


.project-video img,
.testimonial-video img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform .3s ease;
}


.project-card:hover .project-video img,
.testimonial-card:hover .testimonial-video img {
    transform: scale(1.035);
}


/* PLAY BUTTON */

.video-play {
    width: 58px;
    height: 58px;

    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    display: grid;
    place-items: center;

    padding: 0;

    color: var(--cg-white);
    background: rgba(32, 37, 31, .60);

    border: 3px solid var(--cg-white);
    border-radius: 50%;

    font-size: 28px;

    cursor: pointer;

    transition:
        background-color .2s ease,
        transform .2s ease;
}


.video-play i {
    margin-left: 3px;
}


.video-play:hover {
    background: var(--cg-orange);

    transform:
        translate(-50%, -50%)
        scale(1.07);
}


.video-play.small {
    width: 50px;
    height: 50px;

    font-size: 24px;
}


.video-time {
    position: absolute;

    right: 8px;
    bottom: 8px;

    padding: 4px 7px;

    color: var(--cg-white);
    background: rgba(32,37,31,.80);

    border-radius: 3px;

    font-size: 11px;
    font-weight: 600;
}


.project-location-price {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 8px;
    color: #ffffff;
    background: var(--cg-orange);
    border-radius: 3px;
    font-size: 13px;
    font-weight: 600;
}


/* PROJECT BODY */

.project-card-body {
    padding: 18px;
}


.project-suburb {
    margin: 0 0 6px;
    color: var(--cg-blue);
    font-size: 16px;
    line-height: 1.2;
    font-weight: 600;
  
}


.project-card-body h4 {
    margin: 0 0 7px;

    color: var(--cg-dark);

    font-size: 21px;
    line-height: 1.2;
    font-weight: 700;
}


.project-description {
    min-height: 43px;

    margin: 0 0 17px;

    font-size: 13px;
    line-height: 1.45;
}


.project-specs {
    padding-top: 15px;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 5px;

    border-top: 1px solid var(--cg-border);
}


.project-specs span {
    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 5px;

    color: var(--cg-dark);

    font-size: 11px;
    line-height: 1.2;

    text-align: center;
}


.project-specs i {
    color: var(--cg-blue);

    font-size: 18px;
}


/* =========================================================
   TESTIMONIAL SLIDER - 4 VISIBLE
========================================================= */

.testimonial-section {
    margin-top: 40px;
}


.testimonial-slider {
    grid-auto-flow: column;

    grid-auto-columns:
        calc((100% - 54px) / 4);

    gap: 18px;
}


.testimonial-card {
    overflow: hidden;

    scroll-snap-align: start;

    background: var(--cg-white);

    border: 1px solid var(--cg-border);
    border-radius: var(--radius);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}


.testimonial-card:hover {
    /* transform: translateY(-4px); */

    box-shadow: 0 12px 28px rgba(32,37,31,.09);
}


.testimonial-video {
    aspect-ratio: 16 / 9;
}


.testimonial-body {
    padding: 15px;
}


.testimonial-body blockquote {
    min-height: 68px;

    margin: 0 0 9px;

    color: var(--cg-dark);

    font-size: 18px;
    line-height: 1.45;
    font-weight: 500;
}


.testimonial-stars {
    margin-bottom: 12px;

    color: var(--cg-orange);

    font-size: 21px;
    letter-spacing: 1px;
}


.testimonial-person strong,
.testimonial-person span {
    display: block;
}


.testimonial-person strong {
    color: var(--cg-dark);

    font-size: 18px;
    font-weight: 700;
}

.testimonial-person span {
    margin-top: 2px;
    color: var(--cg-muted);
    font-size: 16px;
    font-weight: 500;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {

    .real-projects-intro {
        grid-template-columns: 1fr;
    }

    .real-projects-hero {
        min-height: 280px;
    }

    .real-projects-hero::before {
        display: none;
    }

    .project-slider {
        grid-auto-columns:
            calc((100% - 16px) / 2);

        gap: 16px;
    }

    .testimonial-slider {
        grid-auto-columns:
            calc((100% - 32px) / 3);

        gap: 16px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

    .real-projects-section {
        padding: 48px 0;
    }

    .real-projects-copy {
        padding: 27px 22px;
    }

 

    .slider-heading {
        align-items: flex-start;
    }

    .slider-heading > div:first-child {
        display: block;
    }

    .slider-heading h3 {
        margin-bottom: 4px;
        font-size: 20px;
    }

    .slider-heading-actions > a {
        display: none;
    }

    .project-slider {
        grid-auto-columns: 84%;
    }

    .testimonial-slider {
        grid-auto-columns: 55%;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 479.98px) {

  

    .real-projects-hero {
        min-height: 220px;
    }

    .real-projects-points {
        align-items: flex-start;
        flex-direction: column;

        gap: 9px;
    }

    .project-slider {
        grid-auto-columns: 90%;
    }

    .testimonial-slider {
        grid-auto-columns: 78%;
    }

    .slider-arrow {
        width: 35px;
        height: 35px;
    }

}



/* =========================================================
   QUESTIONS & ANSWERS
========================================================= */

.qa-section {
    padding: 50px 0;

    background: var(--cg-white);
}


.qa-panel {
    overflow: hidden;

    background: var(--cg-white);

    /* border: 1px solid var(--cg-border); */
    border-radius: var(--radius);

    /* box-shadow: 0 10px 30px rgba(32, 37, 31, .055); */
}


/* =========================================================
   MAIN
========================================================= */

.qa-main {
    padding:0px 0px 30px;

    display: grid;
    grid-template-columns:
        minmax(0, .82fr)
        minmax(0, 1.35fr);

    gap: 38px;
}


/* =========================================================
   INTRO
========================================================= */

.qa-intro {
    padding-right: 34px;

    border-right: 1px solid var(--cg-border);
}




.qa-description {
    /* max-width: 350px; */

    margin: 0 0 27px;

    color: var(--cg-dark);

    font-size: 18px;
    line-height: 1.5;
    font-weight: 500;
}


/* BENEFITS */

.qa-benefits {
    display: grid;

    gap: 18px;
}


.qa-benefit {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);

    align-items: center;

    gap: 11px;
}


.qa-benefit-icon {
    width: 40px;
    height: 40px;

    display: grid;
    place-items: center;

    color: var(--cg-blue);
}


.qa-benefit-icon svg {
    width: 40px;
    height: 40px;
}


.qa-benefit strong,
.qa-benefit span {
    display: block;
}


.qa-benefit strong {
    margin-bottom: 2px;

    color: var(--cg-dark);

    font-size: 18px;
    line-height: 1.25;
    font-weight: 700;
}


.qa-benefit span {
    color: var(--cg-muted);

    font-size: 16px;
    line-height: 1.4;
    font-weight: 500;
}


/* =========================================================
   SEARCH AREA
========================================================= */

.qa-search-area {
    min-width: 0;
}


/* SEARCH */

.qa-search-form {
    margin-bottom: 30px;

    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;

    gap: 10px;
}


.qa-search-field {
    min-height: 54px;

    padding: 0 16px;

    display: flex;
    align-items: center;

    gap: 11px;

    background: var(--cg-white);

    border: 1px solid var(--cg-border);
    border-radius: var(--radius);
}


.qa-search-field:focus-within {
    border-color: var(--cg-blue);

    box-shadow:
        0 0 0 3px rgba(61,179,229,.10);
}


.qa-search-field svg {
    width: 22px;
    height: 22px;

    flex: 0 0 22px;

    color: var(--cg-muted);
}


.qa-search-field input {
    width: 100%;

    padding: 0;

    color: var(--cg-dark);
    background: transparent;

    border: 0;
    outline: 0;

    font-family: "Maven Pro", Arial, sans-serif;
    font-size: 15px;
    font-weight: 500;
}


.qa-search-field input::placeholder {
    color: var(--cg-muted);
}


.qa-search-btn {
    min-width: 115px;
    min-height: 54px;

    padding: 10px 20px;

    color: #fff;
    background: var(--cg-orange);

    border: 2px solid var(--cg-orange);
    border-radius: var(--radius);

    font-family: "Maven Pro", Arial, sans-serif;
    font-size: 18px;
    font-weight: 700;



    cursor: pointer;

    transition:
        background-color .2s ease,
        transform .2s ease;
}


.qa-search-btn:hover {
    background: var(--cg-orange-hover);

    transform: translateY(-1px);
}


/* =========================================================
   POPULAR QUESTIONS
========================================================= */

.qa-popular-head {
    margin-bottom: 10px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}


.qa-popular-head h3 {
    margin: 0;

    color: var(--cg-dark);

    font-size: 21px;
    font-weight: 700;
}


.qa-popular-head a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--cg-blue);
    font-size: 18px;
    font-weight: 700;
}


.qa-popular-head a i {
    transition: transform .2s ease;
}


.qa-popular-head a:hover i {
    transform: translateX(4px);
}


/* QUESTION LIST */

.qa-question-list {
    display: grid;

    gap: 8px;
}


.qa-question-card {
    min-height: 72px;

    padding: 10px 14px;

    display: grid;
    grid-template-columns:
        48px
        minmax(0, 1fr)
        20px;

    align-items: center;

    gap: 12px;

    color: var(--cg-dark);
    background: var(--cg-white);

    border: 1px solid var(--cg-border);
    border-radius: var(--radius);

    box-shadow: 0 2px 8px rgba(32,37,31,.025);

    transition:
        border-color .2s ease,
        transform .2s ease,
        box-shadow .2s ease;
}


.qa-question-card:hover {
    color: var(--cg-dark);

    border-color: var(--cg-blue);

    transform: translateX(3px);

    box-shadow: 0 5px 15px rgba(32,37,31,.07);
}


.qa-question-icon {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    color: var(--cg-blue);
    background: rgba(61, 179, 229, .08);
    border-radius: 50%;
}


.qa-question-icon svg {
    width: 36px;
    height: 36px;
}


.qa-question-copy strong,
.qa-question-copy span {
    display: block;
}


.qa-question-copy strong {
    margin-bottom: 3px;
    color: var(--cg-dark);
    font-size: 18px;
    line-height: 1.3;
    font-weight: 700;
}


.qa-question-copy span {
    color: var(--cg-muted);
    font-weight: 500;
    font-size: 16px;
    line-height: 1.4;
}


.qa-question-card > i {
    color: var(--cg-blue);

    font-size: 16px;

    transition: transform .2s ease;
}


.qa-question-card:hover > i {
    transform: translateX(3px);
}


/* =========================================================
   TOPICS
========================================================= */

.qa-topics {
    padding: 0 0px 28px;
}


.qa-topics > h3 {
    margin: 0 0 13px;

    color: var(--cg-dark);

    font-size: 21px;
    font-weight: 700;
}


.qa-topic-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));

    border: 1px solid var(--cg-border);
}


.qa-topic {
    min-height: 115px;

    padding: 18px 10px 23px 10px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 9px;

    color: var(--cg-dark);

    text-align: center;

    border-right: 1px solid var(--cg-border);

    transition:
        background-color .2s ease,
        color .2s ease;
}


.qa-topic:last-child {
    border-right: 0;
}


.qa-topic:hover {
    color: var(--cg-blue-hover);

    background: rgba(61,179,229,.045);
}


.qa-topic-icon {
    width: 45px;
    height: 45px;

    color: var(--cg-blue);
}


.qa-topic-icon svg {
    width: 100%;
    height: 100%;
}


.qa-topic strong {
    font-size: 16px;
    line-height: 1.25;
    font-weight: 700;
}


/* =========================================================
   BOTTOM CTA
========================================================= */

.qa-footer {
   

    padding: 15px 38px 0px 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 24px;

   
}


.qa-browse-btn {
    min-width: 390px;
}


.qa-browse-btn i {
    transition: transform .2s ease;
}


.qa-browse-btn:hover i {
    transform: translateX(4px);
}


.qa-footer p {
    max-width: 285px;

    margin: 0;

    color: var(--cg-muted);

    font-size: 14px;
    line-height: 1.4;
}


/* =========================================================
   <= 1199
========================================================= */

@media (max-width: 1199.98px) {

    .qa-main {
        grid-template-columns:
            minmax(0, .8fr)
            minmax(0, 1.3fr);

        gap: 28px;
    }


    .qa-intro {
        padding-right: 25px;
    }


    .qa-intro h2 {
        font-size: 34px;
    }

}


/* =========================================================
   <= 991
========================================================= */

@media (max-width: 991.98px) {

    .qa-main {
        grid-template-columns: 1fr;

        gap: 32px;
    }


    .qa-intro {
        padding-right: 0;
        padding-bottom: 30px;

        border-right: 0;
        border-bottom: 1px solid var(--cg-border);
    }


    .qa-description {
        max-width: 600px;
    }


    .qa-benefits {
        grid-template-columns: repeat(3, minmax(0, 1fr));

        gap: 18px;
    }


    .qa-topic-grid {
        grid-template-columns: repeat(3, 1fr);
    }


    .qa-topic:nth-child(3) {
        border-right: 0;
    }


    .qa-topic:nth-child(-n+3) {
        border-bottom: 1px solid var(--cg-border);
    }

}


/* =========================================================
   <= 767
========================================================= */

@media (max-width: 767.98px) {

    .qa-section {
        padding: 48px 0;
    }


   


    .qa-intro h2 {
        font-size: 31px;
    }


    .qa-benefits {
        grid-template-columns: 1fr;
    }


    .qa-search-form {
        grid-template-columns: 1fr;
    }


    .qa-search-btn {
        width: 100%;
    }


    .qa-popular-head {
        align-items: flex-start;
        flex-direction: column;

        gap: 5px;
    }


    .qa-question-card {
        grid-template-columns:
            44px
            minmax(0, 1fr)
            16px;

        padding: 10px;
    }


    .qa-topics {
        padding: 0 0px 24px;
    }


    .qa-footer {
        padding: 20px 0 0 0;

        align-items: stretch;
        flex-direction: column;

        gap: 12px;
    }


    .qa-browse-btn {
        width: 100%;
        min-width: 0;
    }


    .qa-footer p {
        max-width: none;

        text-align: center;
    }

}


/* =========================================================
   <= 479
========================================================= */

@media (max-width: 479.98px) {

    .qa-intro h2 {
        font-size: 28px;
    }


 




    .qa-question-copy strong {
        font-size: 18px;
    }

   
    .qa-question-copy span {
   
    }


    .qa-topic-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    .qa-topic {
        border-bottom: 1px solid var(--cg-border);
    }


    .qa-topic:nth-child(odd) {
        border-right: 1px solid var(--cg-border);
    }


    .qa-topic:nth-child(even) {
        border-right: 0;
    }


    .qa-topic:nth-last-child(-n+2) {
        border-bottom: 0;
    }

}





/* =========================================================
   WHY CHOOSE CGFB
========================================================= */

.why-cgfb-section {
    padding: 50px 0;
    background: #f8f9f8;
}


.why-cgfb-layout {
    display: grid;
    grid-template-columns: 340px minmax(0, 1fr);

    gap: 42px;

    align-items: stretch;
}


/* =========================================================
   LEFT
========================================================= */

.why-cgfb-intro {
    padding: 0px 0;
}


.why-cgfb-intro h2 {
    margin: 0;
    text-wrap-style: balance;   
}


.why-cgfb-line {
    width: 64px;
    height: 4px;

    margin: 18px 0;

    display: block;

    background: var(--cg-orange);
}


.why-cgfb-description {
    max-width: 330px;

    margin: 0 0 18px;

    color: var(--cg-dark);

    font-size: 18px;
    line-height: 1.55;
    font-weight: 500;
}


.why-cgfb-signoff {
    margin: 0 0 20px;

    color: var(--cg-blue);

    font-size: 18px;
    line-height: 1.4;
    font-weight: 600;

    font-style: italic;
}


.why-cgfb-btn {
    min-height: 50px;

    padding-left: 20px;
    padding-right: 20px;
}


.why-cgfb-btn i {
    transition: transform .2s ease;
}


.why-cgfb-btn:hover i {
    transform: translateX(4px);
}


/* RATING */

.why-rating {
    margin-top: 18px;

    display: flex;
    align-items: center;

    gap: 10px;
}


.why-stars {
    display: flex;

    gap: 2px;

    color: var(--cg-orange);

    font-size: 13px;
}


.why-rating > span {
    color: var(--cg-muted);
 font-weight: 500;
    font-size: 16px;
    line-height: 1.3;
}


.why-rating strong {
    color: var(--cg-dark);
    font-weight: 500;
}


/* =========================================================
   CARDS GRID
========================================================= */

.why-cgfb-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 16px;
}


/* CARD */

.why-card {
    min-height: 220px;

    padding: 22px;

    display: flex;
    flex-direction: column;

    background: var(--cg-white);

    border: 1px solid var(--cg-border);
    border-radius: var(--radius);

    box-shadow: 0 5px 18px rgba(32,37,31,.045);

    transition:
        transform .25s ease,
        border-color .25s ease,
        box-shadow .25s ease;
}


.why-card:hover {
    transform: translateY(-4px);

    border-color: rgba(61,179,229,.55);

    box-shadow: 0 12px 27px rgba(32,37,31,.09);
}


/* TOP */

.why-card-top {
    margin-bottom: 15px;

    display: flex;
    align-items: center;

    gap: 14px;
}


.why-card-icon {
    width: 52px;
    height: 52px;

    flex: 0 0 52px;

    display: grid;
    place-items: center;

    color: var(--cg-blue);

    background: rgba(61,179,229,.08);

    border-radius: 50%;
}


.why-card-icon svg {
    width: 32px;
    height: 32px;
}


.why-card h3 {
    margin: 0;

    color: var(--cg-dark);

    font-size: 21px;
    line-height: 1.2;
    font-weight: 700;
}


/* DESCRIPTION */

.why-card > p {
    margin: 0 0 16px;

    color: var(--cg-dark);

    font-size: 16px;
    line-height: 1.5;
    font-weight: 500;
}
.why-card > p:last-child {
    margin: 0 0 0;
}

/* PROOF */

.why-card-proof {
    margin-top: auto;
    padding-top: 18px;

    display: flex;
    align-items: center;

    gap: 7px;

    border-top: 1px solid var(--cg-border);

    color: var(--cg-dark);

    font-size: 14px;
    line-height: 1.3;
    font-weight: 600;
}


.why-card-proof i {
    color: var(--cg-blue);

    font-size: 15px;
}


/* =========================================================
   <= 1199
========================================================= */

@media (max-width: 1199.98px) {

    .why-cgfb-layout {
        grid-template-columns: 300px minmax(0, 1fr);

        gap: 30px;
    }


    .why-cgfb-intro h2 {
        font-size: 32px;
    }


    .why-card {
        padding: 18px;
    }


    .why-card-icon {
        width: 46px;
        height: 46px;

        flex-basis: 46px;
    }


    .why-card-icon svg {
        width: 28px;
        height: 28px;
    }

}


/* =========================================================
   <= 991
========================================================= */

@media (max-width: 991.98px) {

    .why-cgfb-layout {
        grid-template-columns: 1fr;

        gap: 30px;
    }


    .why-cgfb-intro {
        max-width: 680px;
    }


    .why-cgfb-description {
        max-width: 600px;
    }


    .why-cgfb-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}


/* =========================================================
   <= 767
========================================================= */

@media (max-width: 767.98px) {

    .why-cgfb-section {
        padding: 48px 0;
    }


    .why-cgfb-intro h2 {
        font-size: 30px;
    }


    .why-cgfb-btn {
        width: 100%;
    }


    .why-cgfb-grid {
        gap: 14px;
    }

}


/* =========================================================
   <= 575
========================================================= */

@media (max-width: 575.98px) {

    .why-cgfb-grid {
        grid-template-columns: 1fr;
    }


    .why-card {
        min-height: auto;

        padding: 18px;
    }


    .why-card h3  br, .qa-intro h2 br{
   display: none;
    }


   


  


    .why-rating {
        align-items: flex-start;
        flex-direction: column;

        gap: 6px;
    }

}



/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    padding-top: 50px;

    color: var(--cg-dark);
    background: var(--cg-white);

    border-top: 1px solid var(--cg-border);
}


/* =========================================================
   QUESTION SEARCH BAR
========================================================= */

.footer-question-bar {
    padding: 22px 28px;

    display: grid;
    grid-template-columns:
        minmax(280px, .72fr)
        minmax(0, 1.28fr);

    align-items: center;

    gap: 34px;

    background: rgba(61, 179, 229, .055);

    border: 1px solid var(--cg-border);
    border-radius: var(--radius);
}


.footer-question-intro {
    display: flex;
    align-items: center;

    gap: 16px;
}


.footer-question-icon {
    width: 58px;
    height: 58px;

    flex: 0 0 58px;

    display: grid;
    place-items: center;

    color: var(--cg-blue);

    background: var(--cg-white);

    border-radius: 50%;
}


.footer-question-icon svg {
    width: 44px;
    height: 44px;
}


.footer-question-intro h3 {
    margin: 0 0 4px;

    color: var(--cg-dark);

    font-size: 19px;
    line-height: 1.2;
    font-weight: 700;
}


.footer-question-intro p {
    max-width: 300px;

    margin: 0;

    color: var(--cg-dark);

    font-size: 12px;
    line-height: 1.45;
}


/* SEARCH */

.footer-search-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;

    gap: 9px;
}


.footer-search-field {
    min-height: 48px;

    padding: 0 15px;

    display: flex;
    align-items: center;

    gap: 10px;

    background: var(--cg-white);

    border: 1px solid var(--cg-border);
    border-radius: var(--radius);
}


.footer-search-field i {
    color: var(--cg-muted);

    font-size: 18px;
}


.footer-search-field input {
    width: 100%;

    padding: 0;

    color: var(--cg-dark);
    background: transparent;

    border: 0;
    outline: 0;

    font-family: "Maven Pro", Arial, sans-serif;
    font-size: 13px;
    font-weight: 500;
}


.footer-search-field:focus-within {
    border-color: var(--cg-blue);
}


.footer-search-form button {
    min-width: 145px;

    padding: 10px 18px;

    color: var(--cg-dark);
    background: var(--cg-orange);

    border: 2px solid var(--cg-orange);
    border-radius: var(--radius);

    font-family: "Maven Pro", Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;

    cursor: pointer;
}


.footer-search-form button:hover {
    background: var(--cg-orange-hover);
    border-color: var(--cg-orange-hover);
}


/* =========================================================
   FOOTER COLUMNS
========================================================= */

.footer-main {
    padding: 38px 0 34px;

    display: grid;
    grid-template-columns:
        1.15fr
        1.25fr
        1fr
        1.15fr
        1.15fr
        .85fr;

    gap: 30px;
}


.footer-column h4 {
    position: relative;
    margin: 0 0 16px;
    padding-bottom: 8px;
    color: var(--cg-dark);
    font-size: 19px;
    line-height: 1.15;
    font-weight: 600;
}

.footer-column h4::after {
    content: "";

    width: 24px;
    height: 2px;

    position: absolute;

    left: 0;
    bottom: 0;

    background: var(--cg-orange);
}


.footer-column .footer-subheading {
    margin-top: 25px;
}


.footer-column ul {
    margin: 0;
    padding: 0;

    list-style: none;
}


.footer-column li {
    margin-bottom: 12px;
}


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


.footer-column a {
    color: var(--cg-dark);

    font-size: 16px;
    line-height: 1;
    font-weight: 500;

    text-decoration: none;

    transition: color .2s ease;
}


.footer-column a:hover {
    color: var(--cg-blue-hover);
}


/* =========================================================
   CONTACT
========================================================= */

.footer-contact {
    margin-top: 30px;
}


.footer-socials {
    margin-bottom: 18px;

    display: flex;

    gap: 9px;
}


.footer-socials a {
    width: 30px;
    height: 30px;

    display: grid;
    place-items: center;

    color: var(--cg-blue);

    border: 1px solid var(--cg-blue);
    border-radius: 50%;

    font-size: 14px;
}


.footer-socials a:hover {
    color: var(--cg-white);
    background: var(--cg-blue);
}


.footer-contact-link {
    margin-bottom: 18px;

    display: flex;
    align-items: flex-start;

    gap: 8px;

    color: var(--cg-dark);
 font-weight: 500;
    font-size: 16px;
    line-height: 1;
}


.footer-contact-link i {
    margin-top: 1px;

    color: var(--cg-blue);

    font-size: 20px;
}


.footer-contact-link span {
    display: block;
}


.footer-contact-link strong {
    display: block;
    margin-bottom: 3px;
    font-weight: 700;
}


/* =========================================================
   ACCREDITATION LOGOS
========================================================= */

.footer-accreditations {
    min-height: 90px;

    padding: 20px 0;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    border-top: 1px solid var(--cg-border);
}


.footer-accreditation-text {
    color: var(--cg-muted);

        font-size: 16px;
    font-weight: 500;
}


.footer-logo-list {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    flex-wrap: wrap;

    gap: 38px;
}


.footer-logo-list img {
    width: auto;
    max-width: 110px;
    max-height: 48px;

    object-fit: contain;
}


/* =========================================================
   COPYRIGHT
========================================================= */

.footer-bottom {
    min-height: 64px;

    padding: 16px 0;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 24px;

    border-top: 1px solid var(--cg-border);
}


.footer-bottom p {
    margin: 0;

    color: var(--cg-muted);

    font-size: 15px;
    line-height: 1.4;
}


.footer-legal {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 0;
}


.footer-legal a {
    padding: 0 15px;

    color: var(--cg-muted);

    border-right: 1px solid var(--cg-border);

    font-size: 16px;
    line-height: 1.2;
    font-weight: 500;
}


.footer-legal a:last-child {
    padding-right: 0;

    border-right: 0;
}


.footer-legal a:hover {
    color: var(--cg-blue);
}


/* =========================================================
   BOTTOM TRUST STRIP
========================================================= */

.footer-trust-strip {
    padding: 20px 0;

    color: var(--cg-white);
    background: var(--cg-dark);
}


.footer-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 25px;
}


.footer-trust-item {
    display: flex;
    align-items: center;

    gap: 13px;
}


.footer-trust-icon {
    width: 44px;
    height: 44px;

    flex: 0 0 44px;

    display: grid;
    place-items: center;

    color: var(--cg-blue);

    font-size: 25px;
}


.footer-trust-item strong,
.footer-trust-item span {
    display: block;
}


.footer-trust-item strong {
    margin-bottom: 3px;

    color: var(--cg-white);

    font-size: 16px;
    line-height: 1.25;
    font-weight: 600;
}


.footer-trust-item span {
    color: rgba(255, 255, 255, .72);

    font-size: 14px;
    line-height: 1.3;
}


/* =========================================================
   <= 1199
========================================================= */

@media (max-width: 1199.98px) {

    .footer-main {
        grid-template-columns: repeat(3, minmax(0, 1fr));

        row-gap: 38px;
    }

}


/* =========================================================
   <= 991
========================================================= */

@media (max-width: 991.98px) {

    .footer-question-bar {
        grid-template-columns: 1fr;

        gap: 20px;
    }


    .footer-main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }


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


    .footer-logo-list {
        justify-content: flex-start;
    }


    .footer-trust-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));

        row-gap: 22px;
    }

}


/* =========================================================
   <= 767
========================================================= */

@media (max-width: 767.98px) {

    .site-footer {
        padding-top: 32px;
    }


    .footer-question-bar {
        padding: 20px;
    }


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


    .footer-search-form button {
        width: 100%;

        min-height: 48px;
    }


    .footer-main {
        padding-top: 32px;

        grid-template-columns: 1fr 1fr;

        gap: 32px 24px;
    }


    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;

        gap: 12px;
    }


    .footer-legal {
        gap: 8px 0;
    }


    .footer-legal a:first-child {
        padding-left: 0;
    }

}


/* =========================================================
   <= 575
========================================================= */

@media (max-width: 575.98px) {

    .footer-question-intro {
        align-items: flex-start;
    }


    .footer-question-icon {
        width: 50px;
        height: 50px;

        flex-basis: 50px;
    }


    .footer-question-icon svg {
        width: 38px;
        height: 38px;
    }


    .footer-main {
        grid-template-columns: 1fr;

        gap: 30px;
    }


    .footer-logo-list {
        gap: 22px;
    }


    .footer-logo-list img {
        max-width: 90px;
        max-height: 42px;
    }


    .footer-trust-grid {
        grid-template-columns: 1fr;

        gap: 18px;
    }


    .footer-trust-item {
        padding-bottom: 16px;

        border-bottom:
            1px solid rgba(255,255,255,.12);
    }


    .footer-trust-item:last-child {
        padding-bottom: 0;

        border-bottom: 0;
    }


    .footer-legal {
        display: grid;
        grid-template-columns: 1fr 1fr;

        width: 100%;

        gap: 10px;
    }


    .footer-legal a {
        padding: 0;

        border: 0;
    }

}




/* =========================================================
   FOOTER FIND YOUR DESIGN CTA
========================================================= */

.footer-design-cta {
    min-height: 100px;

    padding: 20px 28px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    background: rgba(61, 179, 229, .055);

    border: 1px solid var(--cg-border);
    border-radius: var(--radius);
}


.footer-design-cta-content {
    min-width: 0;

    display: flex;
    align-items: center;

    gap: 16px;
}


.footer-design-cta-icon {
    width: 58px;
    height: 58px;

    flex: 0 0 58px;

    display: grid;
    place-items: center;

    color: var(--cg-blue);

    background: var(--cg-white);

    border-radius: 50%;
}


.footer-design-cta-icon svg {
    width: 42px;
    height: 42px;
}


.footer-design-cta-content h3 {
    margin: 0 0 4px;

    color: var(--cg-dark);

    font-size: 21px;
    line-height: 1.2;
    font-weight: 700;
}


.footer-design-cta-content p {
    max-width: 550px;

    margin: 0;

    color: var(--cg-dark);

    font-size: 16px;
    line-height: 1.45;
    font-weight: 500;
}


/* CTA BUTTON */

.footer-find-design-btn {
    min-width: 190px;
    min-height: 50px;

    padding: 11px 20px;

    flex: 0 0 auto;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    color: var(--cg-white);

    background: var(--cg-blue);

    border: 2px solid var(--cg-blue);
    border-radius: var(--radius);

    font-family: "Maven Pro", Arial, sans-serif;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 700;

    text-decoration: none;

    transition:
        background-color .2s ease,
        border-color .2s ease,
        transform .2s ease;
}


.footer-find-design-btn:hover {
    color: var(--cg-white);

    background: var(--cg-blue-hover);
    border-color: var(--cg-blue-hover);

    transform: translateY(-1px);
}


.footer-find-design-btn i {
    transition: transform .2s ease;
}


.footer-find-design-btn:hover i {
    transform: translateX(4px);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

    .footer-design-cta {
        padding: 20px;

        align-items: stretch;
        flex-direction: column;

        gap: 18px;
    }


    .footer-find-design-btn {
        width: 100%;
    }

}


@media (max-width: 479.98px) {
.footer-trust-strip{
    display: none;
}
    .footer-design-cta-content {
        align-items: flex-start;
                flex-direction: column;
    }
.footer-legal a, .footer-bottom p{
        font-size: 14px;
}
    .footer-bottom {
        align-items: flex-start;
        flex-direction: column-reverse;
        gap: 23px;
    }

    .footer-design-cta-icon {
        width: 50px;
        height: 50px;

        flex-basis: 50px;
    }


    .footer-design-cta-icon svg {
        width: 36px;
        height: 36px;
    }


  


   

}








