/* =====================================================
   GLOBAL
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    color: #10213d;
    background: #ffffff;
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
select {
    font-family: inherit;
}

.container {
    width: min(1200px, 92%);
    margin: auto;
}


/* =====================================================
   COLORS
===================================================== */

:root {

    --navy: #071a32;
    --dark-navy: #041326;
    --red: #ed1c24;
    --red-dark: #c90f16;

    --text: #14233b;
    --muted: #687386;

    --light-bg: #f6f8fa;
    --border: #e5e9ef;

    --white: #ffffff;
}


/* =====================================================
   HEADER
===================================================== */

.site-header {
    height: 76px;
    background: #fff;
    border-bottom: 1px solid #e7e7e7;
    position: relative;
    z-index: 100;
}

.header-inner {
    width: min(1200px, 92%);
    height: 100%;
    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    width: 350px;
}

.logo img {
    width: 100%;
    height: auto;
}

.main-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-menu > a {
    font-size: 13px;
    font-weight: 600;
    color: #162238;
}

.main-menu i {
    font-size: 9px;
    margin-left: 4px;
}

.header-btn {
    background: var(--red);
    color: white !important;
    padding: 13px 20px;
    border-radius: 5px;
    transition: .3s;
}

.header-btn:hover {
    background: var(--red-dark);
}










.mobile-menu {
    display: none;
    background: none;
    border: 0;
    font-size: 24px;
    cursor: pointer;
}

.mobile-nav {
    display: none;
}

@media (max-width: 768px) {

    .main-menu {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    .mobile-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 20px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        z-index: 999;
    }

    .mobile-nav.active {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .mobile-nav a {
        text-decoration: none;
        color: #10213d;
        font-weight: 600;
        padding: 8px 0;
    }

    .mobile-assessment {
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }
}

/* =====================================================
   HERO
===================================================== */

.hero {
    min-height: 455px;
    position: relative;

    background-image:
        url("images/sudbrix-properties.png");

    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(3,20,40,.98) 0%,
            rgba(3,20,40,.88) 34%,
            rgba(3,20,40,.25) 72%,
            rgba(3,20,40,.05) 100%
        );
}

.hero-container {
    width: min(1200px, 92%);
    margin: auto;
    position: relative;
    z-index: 2;
    padding-top: 65px;
}

.hero-content1 {
    max-width: 520px;
    color: white;
}

.hero-small-title {
    color: #ff343b;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.hero h1 {
    margin-top: 10px;
    font-size: clamp(42px, 5vw, 65px);
    line-height: 1.02;
    font-weight: 800;
}

.hero h1 span {
    color: var(--red);
}

.hero p {
    max-width: 480px;
    margin: 15px 0 25px;
    font-size: 16px;
    color: #e5e9ef;
}

.hero-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    padding-bottom:100px;
}


/* BUTTONS */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 14px 22px;

    font-size: 13px;
    font-weight: 700;

    border-radius: 5px;

    transition: .3s;
}

.btn-red {
    color: white;
    background: var(--red);
}

.btn-red:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
}

.btn-outline {
    color: white;
    border: 1px solid rgba(255,255,255,.8);
}

.btn-outline:hover {
    background: white;
    color: var(--navy);
}


/* HERO FEATURES */

.hero-features {
    position: absolute;

    bottom: -85px;
    left: 50%;
    transform: translateX(-50%);

    width: min(1100px, 90%);

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    background: rgba(4,22,43,.96);

    border-radius: 7px;

    padding: 18px 20px;

    box-shadow: 0 10px 30px rgba(0,0,0,.2);

    z-index: 5;
}

.hero-feature {
    display: flex;
    gap: 14px;
    align-items: center;

    padding: 10px 20px;

    border-right: 1px solid rgba(255,255,255,.2);
}

.hero-feature:last-child {
    border: none;
}

.feature-icon {
    min-width: 40px;
    width: 40px;
    height: 40px;

    border: 1px solid var(--red);
    border-radius: 50%;

    display: grid;
    place-items: center;

    color: var(--red);
}

.hero-feature h4 {
    color: white;
    font-size: 13px;
}

.hero-feature p {
    color: #b8c1ce;
    font-size: 10px;
    line-height: 1.4;
}


/* =====================================================
   TOOLS
===================================================== */

.tools-section {
    width: 100%;
    padding: 120px 0 45px;
    background: #f8f9fb;
    box-sizing: border-box;
}

.tools-section *,
.tools-section *::before,
.tools-section *::after {
    box-sizing: border-box;
}


/* =========================================
   TWO COLUMN LAYOUT
========================================= */

.tools-grid {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;

    align-items: stretch;
}


/* =========================================
   LEFT CARD
========================================= */

.sudbrix-left-card {
    position: relative;
    /*min-height: 500px;*/

    overflow: hidden;

    background: #ffffff;

    border: 1px solid #e8ebef;
    border-radius: 8px;

    box-shadow: 0 5px 20px rgba(13,30,50,.06);
}


/* =========================================
   PROPERTY IMAGE
========================================= */

.sudbrix-property-image {
    position: absolute;

    top: 0;
    right: 0;

    width: 75%;
    height: 58%;

    background-image:
        linear-gradient(
            to right,
            rgba(255,255,255,1) 0%,
            rgba(255,255,255,.85) 18%,
            rgba(255,255,255,.15) 60%,
            rgba(255,255,255,0) 100%
        ),
        linear-gradient(
            to bottom,
            rgba(255,255,255,0) 45%,
            rgba(255,255,255,.8) 90%,
            #ffffff 100%
        ),
        /*url("images/sudbrix-properties.png");*/

    background-size: cover;
    background-position: center;

    opacity: .95;

    z-index: 0;
}


/* =========================================
   LEFT CONTENT
========================================= */

.sudbrix-left-content {
    position: relative;
    z-index: 2;

    height: 100%;

    padding: 27px 30px 22px;

    display: flex;
    flex-direction: column;
}


/* =========================================
   HEADING
========================================= */

.sudbrix-heading {
    margin-bottom: 8px;
}

.sudbrix-heading span {
    display: block;

    color: #f21d25;

    font-size: 13px;
    font-weight: 800;

    letter-spacing: .4px;
}

.sudbrix-heading h2 {
    margin: 2px 0 0;

    color: #06203d;

    font-size: 27px;
    line-height: 1.15;

    font-weight: 800;
}


/* =========================================
   MAIN TITLE
========================================= */

.sudbrix-main-title {
    margin: 17px 0 8px;

    color: #06203d;

    font-size: 34px;
    line-height: 1.12;

    font-weight: 800;
}

.sudbrix-main-title strong {
    color: #f21d25;
}


/* =========================================
   DESCRIPTION
========================================= */

.sudbrix-description {
    max-width: 510px;

    margin: 0;

    color: #667085;

    font-size: 14px;
    line-height: 1.55;
}


/* =========================================
   RED LINE
========================================= */

.sudbrix-red-line {
    width: 55px;
    height: 3px;

    margin: 12px 0 7px;

    background: #f21d25;
}


/* =========================================
   BENEFITS
========================================= */

.sudbrix-benefits-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    margin-top: 2px;
}


.sudbrix-benefit-item {
    min-width: 0;

    display: flex;
    align-items: center;

    gap: 12px;

    padding: 12px 10px;

    border-bottom: 1px solid #e5e7eb;
}


/* Vertical divider */
.sudbrix-benefit-item:nth-child(odd) {
    border-right: 1px solid #e5e7eb;
}


/* =========================================
   BENEFIT ICON
========================================= */

.sudbrix-benefit-icon {
    width: 46px;
    height: 46px;

    min-width: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #ffffff;

    border: 1px solid #dce1e8;

    color: #f21d25;

    font-size: 25px;
    font-weight: 600;
}


.sudbrix-benefit-icon span {
    line-height: 1;
}


/* =========================================
   BENEFIT TEXT
========================================= */

.sudbrix-benefit-item h4 {
    margin: 0 0 3px;

    color: #06203d;

    font-size: 14px;
    line-height: 1.3;

    font-weight: 700;
}


.sudbrix-benefit-item p {
    margin: 0;

    color: #667085;

    font-size: 11px;
    line-height: 1.4;
}


/* =========================================
   BOTTOM INFO
========================================= */

.sudbrix-bottom-info {
    margin-top: 20px;

    min-height: 48px;

    padding: 8px 14px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 20px;

    background: #fff2f2;

    border-radius: 6px;
}


.sudbrix-info-item {
    display: flex;
    align-items: center;

    gap: 8px;

    color: #06203d;

    font-size: 12px;
    font-weight: 600;
}


.info-icon {
    color: #f21d25;

    font-size: 20px;
}


.info-divider {
    width: 1px;
    height: 22px;

    background: #d5d9df;
}



/* ASSESSMENT */

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 10px;
}

.assessment-card input,
.assessment-card select {
    width: 100%;

    padding: 12px;

    border: 1px solid #dce1e8;
    border-radius: 4px;

    outline: none;

    font-size: 12px;
}

.form-submit {
    width: 100%;

    border: 0;
    border-radius: 4px;

    background: var(--red);
    color: white;

    padding: 13px;

    font-weight: 700;

    cursor: pointer;
}


/* =====================================================
   ABOUT
===================================================== */

.about-section {
    padding: 60px 0;
    background: white;
}

.about-grid {
    display: grid;

    grid-template-columns:
        1fr
        1fr
        ;

    gap: 25px;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

.section-label {
    color: var(--red);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
}

.about-content h2 {
    font-size: 32px;
    line-height: 1.1;
    margin: 8px 0 15px;
}

.about-content h2 span {
    color: var(--red);
}

.about-content p {
    color: #687386;
    font-size: 13px;
}

.about-content ul {
    list-style: none;
    margin-top: 15px;
}

.about-content li {
    font-size: 12px;
    margin: 8px 0;
    font-weight: 600;
}

.about-content li i {
    color: var(--red);
    margin-right: 7px;
}


/* COMPARISON */

.switch-card {
    background: white;
    padding: 20px;

    border-radius: 8px;

    border: 1px solid #e2e6eb;

    box-shadow: 0 5px 20px rgba(0,0,0,.06);
    display:none;
}

.switch-card h3 {
    text-align: center;
    font-size: 16px;
    margin-bottom: 15px;
}

.comparison-table {
    font-size: 10px;
}

.comparison-head,
.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.comparison-head span {
    padding: 10px;
    background: var(--navy);
    color: white;
    text-align: center;
    font-weight: 700;
}

.comparison-head span:last-child {
    background: var(--red);
}

.comparison-row span,
.comparison-row strong {
    padding: 9px;
    border-bottom: 1px solid #e5e7eb;
    text-align: center;
}

.comparison-row strong {
    color: #30455f;
}

.switch-card > p {
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    margin-top: 10px;
}

.switch-card > a {
    display: block;
    text-align: center;
    color: var(--red);
    font-size: 11px;
    font-weight: 700;
}


/* =====================================================
   SERVICES
===================================================== */

.services-section {
    /*padding: 65px 0;*/
    background: #f7f8fa;
}

.section-heading {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 35px;
}

.section-heading h2 {
    font-size: 30px;
    line-height: 1.2;
    margin: 5px 0;
}

.section-heading p {
    color: var(--muted);
    font-size: 13px;
}

.services-grid {
    display: grid;

    grid-template-columns:
        repeat(6, 1fr);

    gap: 10px;
}

.service-card {
    background: white;

    padding: 20px 12px;

    text-align: center;

    border: 1px solid #e7e9ed;

    border-radius: 7px;

    transition: .3s;
}

.service-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 12px 30px rgba(0,0,0,.08);

    border-color: var(--red);
}

.service-card i {
    color: var(--red);
    font-size: 25px;
    margin-bottom: 10px;
}

.service-card h3 {
    font-size: 11px;
    line-height: 1.3;
}

.service-card p {
    color: #778191;
    font-size: 9px;
    line-height: 1.4;
    margin-top: 5px;
}

.center-button {
    text-align: center;
    margin-top: 25px;
}

.dark-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    background: var(--navy);
    color: white;

    padding: 12px 25px;

    border-radius: 4px;

    font-size: 12px;
    font-weight: 700;
}


/* =====================================================
   REVIEWS
===================================================== */

.reviews-section {
    padding: 55px 0;
    background: white;
}

.reviews-grid {
     /*display: grid; */
    grid-template-columns: .95fr 1.4fr;
    gap: 35px;
    align-items: center;
}

.stats-card {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    background: var(--navy);
    color: white;

    border-radius: 7px;

    overflow: hidden;
}

.stat {
    padding: 22px;
    text-align: center;

    border-right: 1px solid rgba(255,255,255,.12);
    border-bottom: 1px solid rgba(255,255,255,.12);
}

.stat i {
    display: block;
    color: var(--red);
    font-size: 20px;
}

.stat strong {
    display: block;
    color: var(--red);
    font-size: 27px;
    margin: 3px 0;
}

.stat span {
    font-size: 9px;
    color: #d7dde5;
}

/* =========================================
   TESTIMONIAL SECTION
========================================= */



.testimonial-section {
    width: 100%;
    /*padding: 75px 0;*/
    background: var(--light-bg);
    overflow: hidden;
}


/* =========================================
   HEADING
========================================= */

.testimonial-section h2 {
    margin-bottom: 40px;
    text-align: center;

    font-size: 36px;
    font-weight: 700;

    color: var(--navy);
}


/* =========================================
   SLIDER
========================================= */

.testimonial-slider {
    position: relative;

    width: min(1200px, 92%);
    margin: auto;

    display: flex;
    align-items: center;

    gap: 20px;
}


/* =========================================
   TESTIMONIAL TRACK
========================================= */

/* TESTIMONIAL TRACK */
.testimonial-track {
    flex: 1;
    min-width: 0;
    width: 100%;

    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;

    gap: 25px;

    overflow-x: auto;
    overflow-y: hidden;

    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;

    scrollbar-width: none;
}

.testimonial-track::-webkit-scrollbar {
    display: none;
}


/* TESTIMONIAL CARD */
.testimonial-card {
    position: relative;

    flex: 0 0 calc((100% - 50px) / 3);
    width: calc((100% - 50px) / 3);

    min-width: calc((100% - 50px) / 3);

    min-height: 270px;

    padding: 40px 35px;

    background: var(--white);

    border: 1px solid var(--border);
    border-radius: 14px;

    box-shadow: 0 8px 30px rgba(7, 26, 50, .07);

    overflow: hidden;

    scroll-snap-align: start;

    box-sizing: border-box;
}

/* =========================================
   RED TOP LINE
========================================= */

.testimonial-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background: var(--red);
}


/* =========================================
   QUOTE
========================================= */

.testimonial-card::after {
    content: "“";

    position: absolute;

    top: 5px;
    right: 25px;

    font-size: 100px;
    line-height: 1;

    font-family: Georgia, serif;

    color: rgba(7, 26, 50, .06);
}


/* =========================================
   STARS
========================================= */

.stars {
    position: relative;
    z-index: 2;

    margin-bottom: 15px;

    color: var(--red);

    font-size: 18px;
    letter-spacing: 3px;
}


/* =========================================
   REVIEW TEXT
========================================= */

.testimonial-card p {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: none;

    margin: 0 0 25px;

    font-size: 17px;
    line-height: 1.7;

    color: var(--muted);

    word-break: normal;
    overflow-wrap: break-word;
}


/* =========================================
   NAME
========================================= */

.testimonial-card strong {
    display: block;

    margin-bottom: 3px;

    font-size: 15px;
    font-weight: 700;

    color: var(--navy);
}


/* =========================================
   LOCATION
========================================= */

.testimonial-card span {
    display: block;

    font-size: 13px;

    color: var(--muted);
}


/* =========================================
   ARROWS
========================================= */

.slider-arrow {
    flex-shrink: 0;

    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--border);
    border-radius: 50%;

    background: var(--white);

    color: var(--navy);

    font-size: 17px;

    cursor: pointer;

    box-shadow: 0 5px 15px rgba(7, 26, 50, .08);

    transition: .3s ease;

    z-index: 5;
}


/* =========================================
   ARROW HOVER
========================================= */

.slider-arrow:hover {
    background: var(--red);

    border-color: var(--red);

    color: var(--white);

    transform: scale(1.08);
}



/* =========================================
   TABLET - 901px to 1200px
========================================= */

@media (max-width: 1200px) {

    .testimonial-slider {
        width: 94%;
        gap: 15px;
    }

    .testimonial-track {
        gap: 20px;
    }

    .testimonial-card {
        flex: 0 0 calc((100% - 40px) / 3);
        width: calc((100% - 40px) / 3);
        min-width: calc((100% - 40px) / 3);

        padding: 35px 28px;
    }

    .testimonial-card p {
        font-size: 16px;
        line-height: 1.65;
    }
    .testimonial-card .extra-text {
    display: none;
    font-size:16px;
}

    .testimonial-section h2 {
        font-size: 34px;
    }
}


/* =========================================
   TABLET - 651px to 900px
   2 CARDS
========================================= */

@media (max-width: 900px) {

    .testimonial-section {
        padding: 60px 0;
    }

    .testimonial-section h2 {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .testimonial-slider {
        width: 94%;
        gap: 12px;
    }

    .testimonial-track {
        gap: 20px;
        overflow-x: auto;
        overflow-y: hidden;
    }

    .testimonial-card {
        flex: 0 0 calc((100% - 20px) / 2);
        width: calc((100% - 20px) / 2);
        min-width: calc((100% - 20px) / 2);

        min-height: 300px;

        padding: 35px 30px;
    }

    .testimonial-card p {
        font-size: 16px;
        line-height: 1.6;
    }
    .testimonial-card .extra-text {
    display: none;
    font-size:16px;
}

    .stars {
        font-size: 17px;
        letter-spacing: 2px;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;

        font-size: 15px;
    }
}


/* =========================================
   MOBILE - UP TO 650px
   1 CARD
========================================= */

@media (max-width: 650px) {

    .testimonial-section {
        padding: 50px 0;
    }

    .testimonial-section h2 {
        font-size: 28px;
        line-height: 1.3;
        margin-bottom: 25px;
        padding: 0 15px;
    }

    .testimonial-slider {
        width: 96%;
        gap: 8px;
    }

    .testimonial-track {
        gap: 0;

        overflow-x: auto;
        overflow-y: hidden;

        scroll-snap-type: x mandatory;
    }

    .testimonial-card {
        flex: 0 0 100%;
        width: 100%;
        min-width: 100%;

        min-height: 320px;

        padding: 35px 25px;

        border-radius: 10px;

        scroll-snap-align: start;
    }

    .testimonial-card p {
        font-size: 16px;
        line-height: 1.6;
    }
    .testimonial-card .extra-text {
    display: none;
    font-size:16px;
}

    .stars {
        font-size: 16px;
        letter-spacing: 2px;
        margin-bottom: 12px;
    }

    .testimonial-card strong {
        font-size: 14px;
    }

    .testimonial-card span {
        font-size: 12px;
    }

    .slider-arrow {
        width: 36px;
        height: 36px;

        font-size: 13px;
    }

    .testimonial-card::after {
        right: 15px;
        font-size: 75px;
    }
}


/* =========================================
   SMALL MOBILE - UP TO 420px
========================================= */

@media (max-width: 420px) {

    .testimonial-section {
        padding: 45px 0;
    }

    .testimonial-section h2 {
        font-size: 25px;
        margin-bottom: 22px;
    }

    .testimonial-slider {
        width: 97%;
        gap: 5px;
    }

    .testimonial-card {
        min-height: 330px;

        padding: 30px 20px;
    }

    .testimonial-card p {
        font-size: 15px;
        line-height: 1.6;
    }

    .stars {
        font-size: 15px;
        letter-spacing: 1px;
    }

    .testimonial-card strong {
        font-size: 13px;
    }

    .testimonial-card span {
        font-size: 11px;
    }

    .slider-arrow {
        width: 32px;
        height: 32px;

        font-size: 12px;
    }

    .testimonial-card::after {
        right: 10px;
        font-size: 65px;
    }
    .testimonial-card .extra-text {
    display: none;
    font-size:15px;
}
}
/* =====================================================
   PROPERTIES
===================================================== */
/* ================================
   PROPERTY SLIDER
================================ */

/* =========================================
   PROPERTIES SECTION
========================================= */

.properties-section {
    width: 100%;
    padding: 80px 0;
    overflow: hidden;
}

.properties-section .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


/* =========================================
   SECTION HEADING
========================================= */

.section-heading {
    margin-bottom: 35px;
}

.section-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.section-heading h2 {
    margin: 0;
    font-size: 42px;
    line-height: 1.2;
}


/* =========================================
   SLIDER WRAPPER
========================================= */

.property-slider-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
}


/* =========================================
   SLIDER VIEWPORT
========================================= */

.property-slider {
    width: 100%;
    overflow: hidden;
}


/* =========================================
   SLIDER TRACK
========================================= */

.property-list {
    display: flex;
    gap: 20px;
    width: 100%;
    transition: transform 0.5s ease;
    will-change: transform;
}


/* =========================================
   PROPERTY CARD
========================================= */

.property-card {
    flex: 0 0 calc((100% - 60px) / 4);
    min-width: 0;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-sizing: border-box;
}


/* =========================================
   PROPERTY IMAGE
========================================= */

.property-card img {
    display: block;
    width: 100%;
    height: 240px;
    object-fit: cover;
}


/* =========================================
   PROPERTY INFORMATION
========================================= */

.property-info {
    padding: 18px 15px 20px;
}

.property-info h3 {
    margin: 0 0 6px;
    font-size: 20px;
    line-height: 1.3;
}

.property-info p {
    margin: 0;
    font-size: 15px;
}


/* =========================================
   ARROWS
========================================= */

.property-arrow {
    flex: 0 0 45px;
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: none;
    border-radius: 50%;

    cursor: pointer;

    font-size: 16px;

    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}

.property-arrow:hover {
    transform: scale(1.08);
}


/* Disabled arrow */

.property-arrow:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    transform: none;
}


/* =========================================
   TABLET
   768px - 1024px
========================================= */

@media (max-width: 1024px) {

    .properties-section {
        padding: 60px 0;
    }

    .section-heading h2 {
        font-size: 36px;
    }

    .property-card {
        flex: 0 0 calc((100% - 20px) / 2);
    }

    .property-card img {
        height: 230px;
    }

}


/* =========================================
   MOBILE
   767px AND BELOW
========================================= */

@media (max-width: 767px) {

    .properties-section {
        padding: 50px 0;
    }

    .properties-section .container {
        padding: 0 15px;
    }

    .section-heading {
        margin-bottom: 25px;
    }

    .section-heading h2 {
        font-size: 30px;
    }

    .section-label {
        font-size: 12px;
        letter-spacing: 1.5px;
    }


    .property-slider-wrapper {
        gap: 8px;
    }


    .property-arrow {
        flex: 0 0 38px;
        width: 38px;
        height: 38px;
        font-size: 13px;
    }


    .property-list {
        gap: 0;
    }


    .property-card {
        flex: 0 0 100%;
    }


    .property-card img {
        height: 220px;
    }


    .property-info {
        padding: 15px;
    }


    .property-info h3 {
        font-size: 19px;
    }

}
/* =====================================================
   PROCESS
===================================================== */

.process-section {
    padding: 60px 0;
}

.process-grid {
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
}

.process-number {
    color: var(--red);
    font-size: 11px;
    font-weight: 800;
}

.process-icon {
    width: 70px;
    height: 70px;

    border-radius: 50%;

    border: 2px solid #e8ebef;

    margin: 7px auto;

    display: grid;
    place-items: center;

    font-size: 25px;

    color: var(--navy);

    background: white;
}

.process-step h3 {
    font-size: 13px;
}

.process-step p {
    color: #778191;
    font-size: 10px;
    max-width: 170px;
    margin: 5px auto;
}

.process-line {
    width: 60px;
    border-top: 2px dashed #ccd2da;
}


/* =====================================================
   LOCATION / FAQ
===================================================== */

.location-section {
    padding: 55px 0;
    background: #f7f8fa;
}

.location-grid {
    display: grid;

    grid-template-columns:
        1.2fr
        1fr
        .55fr;

    gap: 15px;
}

.map-card,
.faq-card,
.contact-card {
    background: white;
    border-radius: 7px;

    border: 1px solid #e3e6ea;

    overflow: hidden;
}

.map-placeholder {
    min-height: 320px;
    position: relative;

    background:
        linear-gradient(
            120deg,
            #dfead9,
            #f4f2df
        );
}

.map-title {
    position: absolute;
    top: 15px;
    left: 15px;

    font-size: 14px;
    font-weight: 800;

    z-index: 2;
}

.map-title i {
    color: var(--red);
}

.map-area {
    position: absolute;
    inset: 0;

    background-image:
        radial-gradient(#ffffff 1px, transparent 1px);

    background-size: 20px 20px;
}

.map-pin {
    position: absolute;

    color: var(--red);

    font-size: 9px;
    font-weight: 700;
}

.map-pin i {
    display: block;
    font-size: 18px;
}

.pin-1 {
    left: 18%;
    top: 32%;
}

.pin-2 {
    left: 50%;
    top: 30%;
}

.pin-3 {
    right: 15%;
    top: 25%;
}

.pin-4 {
    left: 25%;
    top: 55%;
}

.pin-5 {
    left: 47%;
    top: 50%;
}

.pin-6 {
    left: 55%;
    bottom: 18%;
}


/* FAQ */

.faq-card {
    padding: 20px;
}

.faq-card h2 {
    font-size: 17px;
    margin-bottom: 8px;
}

.faq-item {
    border-bottom: 1px solid #e7e9ed;
}

.faq-item button {
    width: 100%;

    display: flex;
    justify-content: space-between;

    background: none;
    border: 0;

    padding: 11px 0;

    text-align: left;

    cursor: pointer;

    font-size: 10px;
    font-weight: 600;
    color: var(--text);
}

.faq-answer {
    display: none;

    padding: 0 0 10px;

    color: #748091;
    font-size: 9px;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active i {
    transform: rotate(45deg);
}


/* CONTACT */

.contact-card {
    background: var(--navy);
    color: white;

    padding: 25px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-card h3 {
    font-size: 20px;
}

.contact-card p {
    color: #c9d1db;
    font-size: 11px;
    margin: 5px 0 20px;
}

.contact-call {
    background: var(--red);
    color: white;

    padding: 13px;

    text-align: center;

    border-radius: 4px;

    font-size: 11px;
}

.contact-card > span {
    text-align: center;
    margin: 12px;
    font-size: 9px;
}

.message-btn {
    text-align: center;

    border: 1px solid white;

    padding: 11px;

    border-radius: 4px;

    font-size: 10px;
}


/* =====================================================
   FINAL CTA
===================================================== */

.final-cta {
    position: relative;

    padding: 65px 0;

    color: white;

    background:
        url("images/cta-house.jpg")
        center/cover no-repeat;
}

.cta-overlay {
    position: absolute;
    inset: 0;

    background: rgba(3,20,40,.9);
}

.cta-content {
    position: relative;
    text-align: center;
}

.cta-content h2 {
    font-size: 32px;
}

.cta-content p {
    color: #cfd6df;
    margin: 5px 0 20px;
}


/* =====================================================
   FOOTER
===================================================== */

.footer {
    background: #041427;
    color: white;

    padding-top: 50px;
}

.footer-grid {
    display: grid;

    grid-template-columns: 1.5fr 1fr 1fr 1fr;

    gap: 30px;

    padding-bottom: 35px;
}

.footer-about img {
    width: 300px;
    margin-bottom: 15px;
}

.footer-about p {
    color: #aeb8c5;
    font-size: 10px;
    max-width: 220px;
}

.footer-column h3 {
    font-size: 12px;
    margin-bottom: 13px;
}

.footer-column a,
.footer-column p {
    display: block;

    color: #aeb8c5;

    font-size: 10px;

    margin-bottom: 8px;
}

.footer-column a:hover {
    color: white;
}

.footer-column i {
    color: var(--red);
    margin-right: 5px;
}

.social-links {
    display: flex;
    gap: 8px;
    margin-top: 15px;
}

.social-links a {
    width: 30px;
    height: 30px;

    display: grid;
    place-items: center;

    border: 1px solid #536174;
    border-radius: 50%;

    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);

    padding: 15px 4%;

    display: flex;
    justify-content: space-between;

    color: #8793a3;

    font-size: 9px;
}

.footer-bottom div {
    display: flex;
    gap: 20px;
}


/* =====================================================
   FLOATING BUTTONS
===================================================== */

.floating-buttons {
    position: fixed;

    right: 20px;
    bottom: 20px;

    display: flex;
    flex-direction: column;

    gap: 8px;

    z-index: 99;
}

.phone-float,
.chat-float {
    width: 48px;
    height: 48px;

    border-radius: 50%;

    display: grid;
    place-items: center;

    color: white;

    box-shadow: 0 5px 20px rgba(0,0,0,.2);
}

.phone-float {
    background: var(--red);
}

.chat-float {
    background: #13a36d;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1100px) {

    .main-menu {
        gap: 15px;
    }

    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .property-list {
        grid-template-columns: repeat(3, 1fr);
    }

    .location-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-card {
        grid-column: span 2;
    }

}


@media (max-width: 850px) {

    .main-menu {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    .hero {
        min-height: 600px;
    }

    .hero-features {
        position: relative;

        bottom: auto;

        margin-top: 40px;

        grid-template-columns: repeat(2,1fr);

        transform: translateX(-50%);
    }

    .hero-feature {
        border-bottom: 1px solid rgba(255,255,255,.15);
    }

    .tools-grid,
    .about-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .about-image img {
        height: 350px;
    }

    .services-grid {
        grid-template-columns: repeat(3,1fr);
    }

    .location-grid {
        grid-template-columns: 1fr;
    }

    .contact-card {
        grid-column: auto;
    }

    .footer-grid {
        grid-template-columns: repeat(2,1fr);
    }

}


@media (max-width: 600px) {

    .hero {
        min-height: 690px;
    
    }

    .hero-container {
        padding-top: 40px;
    }

    .hero h1 {
        font-size: 40px;
    }
     .hero-content1{margin-top:80px;}
    .hero-features {
        grid-template-columns: 1fr;
        width: 90%;
        margin-top:50px;
    }

    .hero-feature {
        border-right: 0;
    }

    .tools-section {
        /*padding-top: 230px;*/
        margin-top: -115px;
    }

    .calculator-layout {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .property-list {
        grid-template-columns: 1fr 1fr;
    }

    .process-grid {
        flex-direction: column;
        gap: 15px;
    }

    .process-line {
        width: 2px;
        height: 30px;
        border-top: 0;
        border-left: 2px dashed #ccd2da;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
    }

}



/* =====================================================
   PROPERTY SLIDER
===================================================== */


/* =====================================================
   SUDBRIX - WHY LANDLORDS SWITCH
===================================================== */

.sudbrix-switch-section {
    width: 100%;
    padding: 40px 20px;
    background: #f5f7f9;
    box-sizing: border-box;
}


.sudbrix-switch-container {
    width: 92%;
    max-width: 1480px;
    min-height: 430px;

    margin: 0 auto;

    display: grid;
    grid-template-columns: 36% 64%;

    background: #ffffff;

    border-radius: 5px;

    overflow: hidden;

    box-shadow:
        0 10px 35px rgba(7, 26, 50, 0.10);
}


/* =====================================================
   LEFT SIDE
===================================================== */

.switch-left {
    position: relative;

    padding: 48px 60px 45px 62px;

    color: #ffffff;

    background:
        radial-gradient(
            circle at 85% 10%,
            rgba(255,255,255,0.08) 1px,
            transparent 2px
        ) 0 0 / 16px 16px,

        linear-gradient(
            135deg,
            #071a32 0%,
            #06182d 55%,
            #092440 100%
        );

    z-index: 2;
}


/* RED DIAGONAL BORDER */

.switch-left::after {

    content: "";

    position: absolute;

    top: -5%;

    right: -25px;

    width: 45px;

    height: 110%;

    background:
        linear-gradient(
            135deg,
            transparent 0 45%,
            #ed1c24 45% 55%,
            transparent 55%
        );

    z-index: 5;

    pointer-events: none;
}


/* =====================================================
   EYEBROW
===================================================== */

.switch-eyebrow {

    display: block;

    color: #ed1c24;

    font-size: 16px;

    font-weight: 800;

    letter-spacing: 0.3px;

    margin-bottom: 14px;
}


/* =====================================================
   HEADING
===================================================== */

.switch-left h2 {

    margin: 0;

    max-width: 430px;

    font-size: 32px;

    line-height: 1.03;

    letter-spacing: -1.8px;

    font-weight: 800;

    color: #ffffff;
}


.switch-left h2 span {
    color: #ed1c24;
}


/* =====================================================
   RED LINE
===================================================== */

.switch-line {

    width: 62px;

    height: 5px;

    margin: 22px 0 20px;

    background: #ed1c24;

    border-radius: 10px;
}


/* =====================================================
   DESCRIPTION
===================================================== */

.switch-description {

    max-width: 370px;

    margin: 0;

    color: rgba(255,255,255,0.90);

    font-size: 14px;

    line-height: 1.55;
}


/* =====================================================
   BENEFITS
===================================================== */

.switch-benefits {

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 10px;

    margin-top: 28px;

    max-width: 470px;
}


.switch-benefit {

    min-height: 102px;

    padding: 12px 7px;

    border: 1px solid
        rgba(255,255,255,0.40);

    border-radius: 7px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    transition: all 0.3s ease;
}


.switch-benefit:hover {

    background: rgba(237,28,36,0.10);

    border-color: #ed1c24;

    transform: translateY(-4px);
}


/* BENEFIT ICON */

.benefit-icon {

    width: 43px;

    height: 43px;

    margin-bottom: 8px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 3px solid #ed1c24;

    border-radius: 50%;

    color: #ed1c24;

    font-size: 20px;
}


.switch-benefit h4 {

    margin: 0;

    color: #ffffff;

    font-size: 12px;

    line-height: 1.25;

    font-weight: 700;
}


/* =====================================================
   RIGHT SIDE
===================================================== */

.switch-right {

    background: #ffffff;

    display: flex;

    flex-direction: column;

    min-width: 0;
}


/* =====================================================
   COMPARISON HEADER
===================================================== */

.comparison-header {

    height: 66px;

    display: grid;

    grid-template-columns: 1fr 72px 1fr;

    align-items: center;

    position: relative;

    background:
        linear-gradient(
            90deg,
            #071a32 0%,
            #071a32 49%,
            #ed1c24 51%,
            #ed1c24 100%
        );

    color: #ffffff;
}


.comparison-title {

    height: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 20px;

    font-weight: 800;
}


.sudbrix-title {
    gap: 12px;
    margin-left: 200px;
}


.sudbrix-title i {
    font-size: 16px;
}

@media (max-width: 600px) {
    .sudbrix-title {
        margin-left: 120px !important;
    }
}

/* =====================================================
   VS CIRCLE
===================================================== */

.vs-badge {

    position: absolute;

    left: 50%;

    top: 50%;

    transform: translate(-50%, -50%);

    width: 56px;

    height: 56px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #ed1c24;

    border: 3px solid #ffffff;

    box-shadow:
        0 0 0 1px #ed1c24,
        0 4px 12px rgba(0,0,0,0.20);

    color: #ffffff;

    font-size: 19px;

    font-weight: 800;

    z-index: 5;
}


/* =====================================================
   COMPARISON ROW
===================================================== */

.comparison-row {

    min-height: 55px;

    display: grid;

    grid-template-columns:
        1fr
        72px
        1fr;

    align-items: center;

    border-bottom: 1px solid #e1e5e9;

    background: #ffffff;
}


/* LEFT TEXT */

.comparison-old {

    padding: 10px 25px;

    text-align: center;

    color: #10213d;

    font-size: 15px;
}


/* CENTER ICON */

.comparison-middle {

    display: flex;

    align-items: center;

    justify-content: center;
}


.comparison-middle i {

    width: 43px;

    height: 43px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid #dfe4e9;

    border-radius: 50%;

    color: #071a32;

    font-size: 19px;

    background: #ffffff;
}


/* RIGHT TEXT */

.comparison-new {

    display: flex;

    align-items: center;

    gap: 14px;

    padding: 10px 30px;

    color: #10213d;

    font-size: 15px;
}


.comparison-new > i {

    flex-shrink: 0;

    color: #198b35;

    font-size: 25px;
}


.comparison-new strong {
    font-weight: 700;
}


/* =====================================================
   CTA FOOTER
===================================================== */

.comparison-footer {

    min-height: 80px;

    padding: 13px 30px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

    background:
        linear-gradient(
            90deg,
            #fff7f7,
            #fff1f1
        );
}


/* MESSAGE */

.footer-message {

    display: flex;

    align-items: center;

    gap: 17px;

    color: #10213d;

    font-size: 16px;
}


.footer-icon {

    width: 38px;

    height: 38px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #ed1c24;

    font-size: 27px;
}


/* =====================================================
   BUTTON
===================================================== */

.compare-button {

    min-width: 320px;

    height: 48px;

    padding: 0 24px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 18px;

    border-radius: 6px;

    background: #ed1c24;

    color: #ffffff;

    text-decoration: none;

    font-size: 15px;

    font-weight: 800;

    transition:
        background 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.compare-button i {
    font-size: 15px;
}


.compare-button:hover {

    background: #c9141b;

    color: #ffffff;

    transform: translateY(-2px);

    box-shadow:
        0 8px 18px rgba(237,28,36,0.25);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1100px) {

    .sudbrix-switch-container {

        grid-template-columns:
            1fr;

    }


    .switch-left {

        padding: 45px;

    }


    .switch-left::after {

        display: none;

    }


    .switch-left h2 {

        max-width: 700px;

    }


    .switch-description {

        max-width: 600px;

    }


    .switch-benefits {

        max-width: 600px;

    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 700px) {

    .sudbrix-switch-section {

        padding: 20px 12px;

    }


    .switch-left {

        padding: 35px 25px;

    }


    .switch-left h2 {

        font-size: 38px;

        letter-spacing: -1px;

    }


    .switch-benefits {

        grid-template-columns:
            repeat(2, 1fr);

        max-width: 100%;

    }


    .comparison-header {

        grid-template-columns:
            1fr 55px 1fr;

        height: 60px;

    }


    .comparison-title {

        font-size: 13px;

        padding: 0 8px;

        text-align: center;

    }


    .vs-badge {

        width: 45px;

        height: 45px;

        font-size: 14px;

    }


    .comparison-row {

        grid-template-columns:
            1fr 55px 1fr;

    }


    .comparison-old {

        padding: 12px 8px;

        font-size: 12px;

    }


    .comparison-middle i {

        width: 36px;

        height: 36px;

        font-size: 15px;

    }


    .comparison-new {

        padding: 12px 8px;

        gap: 7px;

        font-size: 12px;

    }


    .comparison-new > i {

        font-size: 19px;

    }


    .comparison-footer {

        flex-direction: column;

        align-items: stretch;

        padding: 20px;

    }


    .footer-message {

        justify-content: center;

        text-align: center;

        font-size: 14px;

    }


    .compare-button {

        width: 100%;

        min-width: 0;

        box-sizing: border-box;

    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 430px) {

    .switch-left h2 {

        font-size: 32px;

    }


    .switch-description {

        font-size: 14px;

    }


    .switch-benefit {

        min-height: 95px;

    }


    .benefit-icon {

        width: 36px;

        height: 36px;

        font-size: 17px;

    }


    .switch-benefit h4 {

        font-size: 11px;

    }

}





/* about page css start here */



/* =====================================================
   HERO
===================================================== */


/* =====================================================
   BUTTONS
===================================================== */

/* =========================================
   ABOUT HERO
========================================= */

.about-hero {
    width: 100%;
    min-height: 700px;

    background: var(--white);

    overflow: hidden;
}


/* =========================================
   HERO CONTENT
========================================= */

.hero-about-content {
    width: min(1200px, 92%);

    min-height: 622px;

    margin: 0 auto;

    display: grid;
    grid-template-columns: 46% 54%;

    align-items: center;

    gap: 0;
}


/* =========================================
   LEFT CONTENT
========================================= */

.hero-about-text {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 70px 50px 70px 0;
}

.hero-about-text h1 {
    color: var(--navy);

    font-size: clamp(42px, 4.5vw, 68px);

    line-height: 1.05;

    letter-spacing: -2.5px;

    font-weight: 800;
}

.hero-about-text h1 span {
    display: block;
}

.hero-about-intro {
    max-width: 530px;

    color: var(--text);

    font-size: 19px;
    line-height: 1.55;

    font-weight: 600;

    margin-bottom: 15px;
}

.hero-about-description {
    max-width: 530px;

    color: var(--muted);

    font-size: 15px;

    line-height: 1.8;

    margin-bottom: 28px;
}

.hero-about-text .btn {
    width: fit-content;
}


/* =========================================
   IMAGE
========================================= */

.hero-about-image {
    position: relative;

    width: 100%;

    height: 560px;

    overflow: hidden;

    border-radius: 12px;
}

.hero-about-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;
}



/* =========================================
   TABLET
========================================= */

@media (max-width: 1000px) {

    .about-hero {
        min-height: auto;
    }

    .hero-about-content {
        width: 92%;

        grid-template-columns: 1fr 1fr;

        min-height: auto;
    }

    .hero-about-text {
        padding: 60px 30px 60px 0;
    }

    .hero-about-text h1 {
        font-size: clamp(38px, 5vw, 52px);

        letter-spacing: -1.5px;
    }

    .hero-about-intro {
        font-size: 17px;
    }

    .hero-about-description {
        font-size: 14px;
    }

    .hero-about-image {
        height: 500px;
    }
}


/* =========================================
   MOBILE
========================================= */

/* =========================================
   MOBILE - TEXT TOP / IMAGE BOTTOM
========================================= */

@media (max-width: 700px) {

    .about-hero {
        min-height: auto;
        padding: 40px 0 50px;
    }

    .hero-about-content {
        width: 92%;
        margin: 0 auto;

        display: flex;
        flex-direction: column;

        min-height: auto;
    }

    /* TEXT FIRST */
    .hero-about-text {
        width: 100%;

        padding: 20px 0 40px;

        order: 1;
    }

    /* IMAGE SECOND */
    .hero-about-image {
        width: 100%;

        height: 400px;
        min-height: 0;

        order: 2;

        border-radius: 10px;

        overflow: hidden;
    }

    .hero-about-image img {
        width: 100%;
        height: 100%;

        min-height: 0;

        object-fit: cover;
        object-position: center;
    }

}
/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 420px) {

    .hero-about-content {
        width: 94%;
    }

    .hero-about-text {
        padding: 15px 0 30px;
    }

    .hero-about-text h1 {
        font-size: 34px;
        line-height: 1.1;
    }

    .hero-about-intro {
        font-size: 16px;
    }

    .hero-about-description {
        font-size: 14px;
        line-height: 1.7;
    }

    .hero-about-text .btn {
        width: 100%;
    }

    .hero-about-image {
        height: 330px;
    }

}
/* =====================================================
   SECTION HEADING
===================================================== */

.section-heading {
    margin-bottom: 45px;
}

.section-heading.center {
    text-align: center;
}

.section-heading h2,
.story-content h2,
.commitment-content h2 {
    color: var(--navy);

    font-size: clamp(32px, 3.5vw, 48px);

    line-height: 1.15;

    letter-spacing: -1.5px;

    font-weight: 800;
}


/* =====================================================
   VALUES
===================================================== */

.values-section {
    /*padding: 90px 0;*/

    background: var(--light-bg);
}

.values-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
}

.value-card {
    background: var(--white);

    border: 1px solid var(--border);

    border-radius: 10px;

    padding: 42px 30px;

    text-align: center;

    box-shadow:
        0 8px 30px rgba(7, 26, 50, 0.05);

    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 18px 45px rgba(7, 26, 50, 0.10);
}

.value-icon {
    width: 76px;
    height: 76px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 25px;

    border-radius: 50%;

    background: var(--navy);

    color: var(--white);

    font-size: 31px;

    border: 5px solid #edf1f6;
}

.value-card h3 {
    color: var(--navy);

    font-size: 18px;

    line-height: 1.4;

    margin-bottom: 15px;
}

.value-card p {
    color: var(--muted);

    font-size: 14px;

    line-height: 1.75;
}


/* =====================================================
   STORY
===================================================== */

.story-section {
    padding: 100px 0;

    background: var(--white);
}

.story-grid {
    display: grid;

    grid-template-columns: 0.85fr 1.15fr;

    align-items: center;

    gap: 70px;
}

.story-content p {
    color: var(--muted);

    font-size: 15px;

    line-height: 1.8;

    margin-bottom: 18px;

    max-width: 500px;
}

.story-content .btn {
    margin-top: 15px;
}

.story-image {
    position: relative;
}

.story-image > img {
    width: 100%;

    height: 430px;

    object-fit: cover;

    border-radius: 14px;
}

.location-card {
    position: absolute;

    right: 25px;
    bottom: -40px;

    display: flex;

    align-items: center;

    gap: 15px;

    max-width: 310px;

    padding: 20px 22px;

    background: var(--navy);

    color: var(--white);

    border-radius: 9px;

    box-shadow: 0 15px 35px rgba(4, 19, 38, 0.25);
}

.location-icon {
    width: 48px;
    height: 48px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--red);

    border-radius: 50%;

    font-size: 22px;
}

.location-card strong {
    display: block;

    font-size: 16px;

    line-height: 1.4;
}

.location-card p {
    margin-top: 5px;

    color: #cbd4e0;

    font-size: 12px;

    line-height: 1.5;
}


/* =====================================================
   STATS
===================================================== */

.stats-section {
    padding: 30px 0;

    background: var(--navy);

    color: var(--white);
}

.stats-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);
}

.stat-item {
    text-align: center;

    padding: 10px 30px;

    border-right: 1px solid rgba(255,255,255,0.25);
}

.stat-item:last-child {
    border-right: none;
}

.stat-icon {
    color: var(--red);

    font-size: 28px;

    margin-bottom: 8px;
}

.stat-item strong {
    display: block;

    color: var(--white);

    font-size: 36px;

    line-height: 1.1;

    font-weight: 800;
}

.stat-item > span {
    display: block;

    color: var(--white);

    font-size: 14px;

    font-weight: 700;

    margin-top: 7px;
}

.stat-item p {
    max-width: 180px;

    margin: 8px auto 0;

    color: #aebdce;

    font-size: 11px;

    line-height: 1.5;
}


/* =====================================================
   COMMITMENT
===================================================== */

.commitment-section {
    padding: 100px 0;

    background: var(--white);
}

.commitment-grid {
    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    align-items: center;

    gap: 75px;
}

.commitment-content p {
    color: var(--muted);

    max-width: 520px;

    font-size: 15px;

    line-height: 1.8;

    margin-bottom: 25px;
}

.commitment-list {
    list-style: none;

    display: flex;

    flex-direction: column;

    gap: 13px;
}

.commitment-list li {
    display: flex;

    align-items: center;

    gap: 10px;

    color: var(--text);

    font-size: 14px;

    font-weight: 600;
}

.commitment-list li span {
    width: 21px;
    height: 21px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    background: var(--red);

    color: var(--white);

    border-radius: 50%;

    font-size: 12px;
}

.commitment-image img {
    width: 100%;

    height: 390px;

    object-fit: cover;

    border-radius: 8px;

    border: 1px solid var(--border);
}


/* =====================================================
   CTA
===================================================== */

.about-cta {
    padding: 50px 0;

    text-align: center;

    background:
        linear-gradient(
            135deg,
            var(--navy),
            var(--dark-navy)
        );

    color: var(--white);
}

.about-cta .eyebrow {
    color: var(--red);
}

.about-cta h2 {
    max-width: 700px;

    margin: auto;

    color: var(--white);

    font-size: clamp(35px, 4vw, 52px);

    line-height: 1.15;
}

.about-cta p {
    max-width: 650px;

    margin: 18px auto 30px;

    color: #c4cfdd;

    font-size: 15px;
}

.cta-buttons {
    display: flex;

    justify-content: center;

    gap: 15px;

    flex-wrap: wrap;
}


/* =====================================================
   FOOTER
===================================================== */



/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1000px) {

    .main-nav {
        display: none;
    }

    .hero-content {
        grid-template-columns: 1fr;
    }

    .about-hero {
        padding-top: 78px;
    }

    .hero-text {
        min-height: 550px;

        padding:
            70px
            max(4%, calc((100vw - 900px) / 2));
    }

    .hero-image {
        min-height: 480px;
    }

    .hero-image img {
        min-height: 480px;
    }

    .hero-image::before {
        display: none;
    }

    .values-grid {
        grid-template-columns: 1fr 1fr;
    }

    .story-grid,
    .commitment-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;

        row-gap: 35px;
    }

    .stat-item:nth-child(2) {
        border-right: none;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 650px) {

    .container {
        width: 90%;
    }

    .site-header {
        position: absolute;
    }

    .header-inner {
        min-height: 70px;
    }

    .header-btn {
        display: none;
    }

    .logo img {
        width: 200px;
    }

    .hero-text {
        min-height: auto;

        padding:
            60px 5%
            65px;
    }

    .hero-text h1 {
        font-size: 42px;

        letter-spacing: -1.5px;
    }

    .hero-intro {
        font-size: 16px;
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-image {
        min-height: 320px;
    }

    .hero-image img {
        min-height: 320px;
    }

    .values-section,
    .story-section,
    .commitment-section {
        padding: 70px 0;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .value-card {
        padding: 35px 25px;
    }

    .story-content h2,
    .commitment-content h2 {
        font-size: 34px;
    }

    .story-image > img {
        height: 320px;
    }

    .location-card {
        position: relative;

        right: auto;
        bottom: auto;

        margin: -30px 15px 0;

        max-width: none;
    }

    .stats-section {
        padding: 45px 0;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;

        row-gap: 25px;
    }

    .stat-item {
        padding: 10px 15px;

        border-right: none;
    }

    .stat-item strong {
        font-size: 29px;
    }

    .stat-item > span {
        font-size: 12px;
    }

    .stat-item p {
        font-size: 10px;
    }

    .commitment-image img {
        height: 280px;
    }

    .about-cta {
        padding: 70px 0;
    }

    .about-cta h2 {
        font-size: 35px;
    }

    .footer-grid {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .footer-column {
        gap: 7px;
    }
}
/* =====================================================
   FORM MESSAGES
===================================================== */

#form-message {
    margin-top: 15px;
    padding: 12px 16px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    display: none;
}

#form-message.form-success {
    display: block;
    color: #166534;
    background: #dcfce7;
    border: 1px solid #86efac;
}

#form-message.form-error {
    display: block;
    color: #991b1b;
    background: #fee2e2;
    border: 1px solid #fca5a5;
}


/* =====================================================
   FIELD ERRORS
===================================================== */

.field-error {
    display: block;
    margin-top: 5px;
    color: #dc2626;
    font-size: 13px;
    font-weight: 500;
}

.form-field.has-error input,
.form-field.has-error select {
    border-color: #dc2626;
}

/* =====================================================
   CONTACT FORM AJAX MESSAGES
===================================================== */

#contact-form-message {
    display: none;
    margin-top: 15px;
    padding: 12px 16px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
}

#contact-form-message.form-success {
    display: block;
    color: #166534;
    background: #dcfce7;
    border: 1px solid #86efac;
}

#contact-form-message.form-error {
    display: block;
    color: #991b1b;
    background: #fee2e2;
    border: 1px solid #fca5a5;
}


/* Field errors */

.contact-form .field-error {
    display: block;
    margin-top: 5px;
    color: #dc2626;
    font-size: 13px;
    font-weight: 500;
}


.contact-form .form-group.has-error input,
.contact-form .form-group.has-error textarea {
    border-color: #dc2626;
}





/* testimonoal read more text css start here */
.testimonial-card .extra-text {
    display: none;
    font-size:17px;
}
.read-more {
    display: inline-block;

    margin-top: 5px;

    color: var(--red);

    font-size: 14px;
    font-weight: 700;

    cursor: pointer;
}

.read-more:hover {
    text-decoration: underline;
}
.testimonial-review.expanded .extra-text {
    display: inline;
}
















