/* ============================================================
   YD COMMERCIAL CLEANING
   HOMEPAGE
   Brand palette matched to YD Cleaning logo
   ============================================================ */


/* ============================================================
   BRAND VARIABLES
   ============================================================ */

:root {

    --yd-navy: #084d6e;
    --yd-blue: #065796;
    --yd-teal: #22aab2;
    --yd-green: #54b11c;
    --yd-lime: #99d826;
    --yd-sky: #63cce8;

    --yd-dark: #123c4d;
    --yd-text: #294e5d;
    --yd-muted: #657c87;

    --yd-white: #ffffff;
    --yd-light: #f5fbfc;
    --yd-light-blue: #eaf7fa;

    --yd-border: rgba(8, 77, 110, 0.11);

    --yd-shadow-sm:
        0 6px 22px rgba(8, 77, 110, 0.07);

    --yd-shadow:
        0 15px 45px rgba(8, 77, 110, 0.11);

    --yd-radius: 18px;
    --yd-radius-lg: 26px;

    --yd-container: 1180px;
}


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

.yd-homepage {
    overflow: hidden;
    color: var(--yd-text);
    background: var(--yd-white);
}

.yd-homepage *,
.yd-homepage *::before,
.yd-homepage *::after {
    box-sizing: border-box;
}

.yd-homepage img {
    max-width: 100%;
}

.yd-homepage a {
    text-decoration: none;
}

.yd-homepage button,
.yd-homepage input,
.yd-homepage select,
.yd-homepage textarea {
    font-family: inherit;
}

.yd-homepage .container {
    width: min(
        calc(100% - 40px),
        var(--yd-container)
    );

    margin-left: auto;
    margin-right: auto;
}


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

.yd-homepage .btn {
    min-height: 50px;

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

    padding: 13px 24px;

    border-radius: 10px;

    font-size: 0.95rem;
    font-weight: 750;

    line-height: 1;

    cursor: pointer;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease;
}

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

.yd-homepage .btn-primary {
    background:
        linear-gradient(
            135deg,
            var(--yd-blue),
            var(--yd-teal)
        );

    color: var(--yd-white);

    box-shadow:
        0 10px 25px rgba(6, 87, 150, 0.23);
}

.yd-homepage .btn-primary:hover {
    background:
        linear-gradient(
            135deg,
            var(--yd-navy),
            var(--yd-blue)
        );

    box-shadow:
        0 14px 30px rgba(6, 87, 150, 0.30);
}

.yd-homepage .btn-secondary {
    background: var(--yd-navy);
    color: var(--yd-white);
}

.yd-homepage .btn-light {
    background: var(--yd-white);
    color: var(--yd-navy);
}

.yd-homepage .btn-outline-light {
    border: 1px solid rgba(255,255,255,0.55);
    color: var(--yd-white);
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
}

.yd-homepage .btn-outline-light:hover {
    background: rgba(255,255,255,0.17);
    border-color: rgba(255,255,255,0.85);
}


/* ============================================================
   GENERAL SECTIONS
   ============================================================ */

.section-light {
    background: var(--yd-light);
}

.section-white {
    background: var(--yd-white);
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 55px;
    text-align: center;
}

.section-heading h2 {
    margin: 0 0 18px;

    color: var(--yd-navy);

    font-size: clamp(
        2rem,
        4vw,
        3.1rem
    );

    line-height: 1.12;
    letter-spacing: -0.035em;
}

.section-heading h2 span {
    color: var(--yd-blue);
}

.section-heading p {
    max-width: 680px;
    margin: 0 auto;

    color: var(--yd-muted);

    font-size: 1.03rem;
    line-height: 1.8;
}

.section-eyebrow {
    display: inline-block;

    margin-bottom: 13px;

    color: var(--yd-teal);

    font-size: 0.78rem;
    font-weight: 850;

    letter-spacing: 0.13em;
    text-transform: uppercase;
}


/* ============================================================
   HERO
   IMPORTANT:
   No solid background behind video.
   ============================================================ */

.hero-section {
    position: relative;

    min-height: 760px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background: transparent !important;
    isolation: isolate;
}


/* Actual video */

.hero-video {
    position: absolute;

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

    width: 100%;
    height: 100%;

    display: block;

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

    z-index: 0;

    opacity: 1;

    pointer-events: none;
}


/* Video readability layer */

.hero-overlay {
    position: absolute;

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

    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(8, 77, 110, 0.84) 0%,
            rgba(8, 77, 110, 0.67) 35%,
            rgba(6, 87, 150, 0.36) 68%,
            rgba(8, 77, 110, 0.18) 100%
        );

    pointer-events: none;
}


/* Hero content */

.hero-grid {
    position: relative;
    z-index: 2;

    width: 100%;

    display: grid;
    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(330px, 0.85fr);

    gap: 70px;

    align-items: center;

    padding-top: 100px;
    padding-bottom: 90px;
}

.hero-content {
    max-width: 760px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    margin-bottom: 23px;
    padding: 9px 14px;

    border:
        1px solid
        rgba(255,255,255,0.25);

    border-radius: 100px;

    background:
        rgba(255,255,255,0.09);

    color: #ffffff;

    font-size: 0.78rem;
    font-weight: 750;

    backdrop-filter: blur(10px);
}

.hero-badge-dot {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: var(--yd-lime);

    box-shadow:
        0 0 0 5px rgba(153,216,38,0.15);
}

.hero-content h1 {
    margin: 0 0 25px;

    color: #ffffff;

    font-size: clamp(
        2.7rem,
        5vw,
        5rem
    );

    line-height: 1.02;

    letter-spacing: -0.045em;

    font-weight: 850;
}

.hero-content h1 span {
    display: block;

    color: #bceff1;
}

.hero-lead {
    max-width: 680px;

    margin: 0 0 31px;

    color: rgba(255,255,255,0.91);

    font-size: 1.08rem;
    line-height: 1.78;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;

    margin-bottom: 32px;
}

.hero-cta {
    min-width: 175px;
}

.hero-phone {
    min-width: 175px;
}

.phone-icon {
    font-size: 1rem;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 11px 21px;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 7px;

    color: rgba(255,255,255,0.92);

    font-size: 0.84rem;
    font-weight: 650;
}

.trust-check {
    color: var(--yd-lime);
    font-weight: 900;
}


/* ============================================================
   HERO CARD
   ============================================================ */

.hero-visual-card {
    width: 100%;
    max-width: 460px;

    justify-self: end;

    padding: 27px;

    border:
        1px solid
        rgba(255,255,255,0.25);

    border-radius: 24px;

    background:
        rgba(4, 35, 52, 0.57);

    box-shadow:
        0 30px 80px rgba(0,0,0,0.25);

    backdrop-filter: blur(17px);
    -webkit-backdrop-filter: blur(17px);
}

.hero-card-top {
    display: flex;
    gap: 15px;
    align-items: flex-start;

    padding-bottom: 23px;

    border-bottom:
        1px solid
        rgba(255,255,255,0.12);
}

.hero-card-icon {
    width: 46px;
    height: 46px;

    flex: 0 0 46px;

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

    border-radius: 13px;

    background:
        linear-gradient(
            135deg,
            var(--yd-teal),
            var(--yd-green)
        );

    color: #ffffff;

    font-size: 1.25rem;
}

.hero-card-label {
    display: block;

    margin-bottom: 5px;

    color: #8de0e3;

    font-size: 0.72rem;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero-card-top h2 {
    margin: 0;

    color: #ffffff;

    font-size: 1.45rem;
    line-height: 1.25;
}

.hero-feature-list {
    padding: 21px 0;
}

.hero-feature {
    display: flex;
    gap: 13px;

    padding: 13px 0;
}

.hero-feature > span {
    width: 25px;
    height: 25px;

    flex: 0 0 25px;

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

    margin-top: 2px;

    border-radius: 50%;

    background:
        rgba(84,177,28,0.18);

    color: var(--yd-lime);

    font-size: 0.75rem;
    font-weight: 900;
}

.hero-feature strong {
    display: block;

    margin-bottom: 3px;

    color: #ffffff;

    font-size: 0.9rem;
}

.hero-feature p {
    margin: 0;

    color: rgba(255,255,255,0.68);

    font-size: 0.78rem;
    line-height: 1.55;
}

.hero-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding-top: 19px;

    border-top:
        1px solid
        rgba(255,255,255,0.12);
}

.hero-card-footer strong,
.hero-card-footer span {
    display: block;
}

.hero-card-footer strong {
    color: #ffffff;
    font-size: 0.95rem;
}

.hero-card-footer span {
    margin-top: 2px;

    color: rgba(255,255,255,0.58);

    font-size: 0.72rem;
}

.hero-card-footer a {
    width: 38px;
    height: 38px;

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

    border-radius: 50%;

    background: var(--yd-teal);
    color: #ffffff;

    font-size: 1.1rem;

    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.hero-card-footer a:hover {
    transform: translateX(3px);

    background: var(--yd-green);
}

.hero-scroll-indicator {
    position: absolute;

    left: 50%;
    bottom: 23px;

    z-index: 3;

    transform: translateX(-50%);

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

    color: rgba(255,255,255,0.65);

    font-size: 0.7rem;
    font-weight: 650;

    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero-scroll-indicator span {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: var(--yd-lime);
}


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

.home-intro-section {
    padding: 105px 0;
}

.intro-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 80px;
    align-items: start;
}

.intro-heading h2 {
    margin: 0;

    color: var(--yd-navy);

    font-size: clamp(
        2rem,
        3.8vw,
        3.25rem
    );

    line-height: 1.1;
    letter-spacing: -0.04em;
}

.intro-heading h2 span {
    display: block;
    color: var(--yd-blue);
}

.intro-content {
    max-width: 690px;
}

.intro-content p {
    margin: 0 0 17px;

    color: var(--yd-muted);

    font-size: 1rem;
    line-height: 1.8;
}

.intro-content .large-text {
    color: var(--yd-text);

    font-size: 1.18rem;
    line-height: 1.72;
    font-weight: 520;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    margin-top: 11px;

    color: var(--yd-blue);

    font-size: 0.92rem;
    font-weight: 800;
}

.text-link span {
    transition: transform 0.2s ease;
}

.text-link:hover span {
    transform: translateX(4px);
}


/* ============================================================
   WHY CHOOSE US
   ============================================================ */

.why-section {
    padding: 105px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.benefit-card {
    position: relative;

    min-height: 300px;

    padding: 30px 25px;

    overflow: hidden;

    border:
        1px solid
        var(--yd-border);

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

    background: #ffffff;

    box-shadow: var(--yd-shadow-sm);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.benefit-card:hover {
    transform: translateY(-6px);

    box-shadow: var(--yd-shadow);
}

.benefit-number {
    position: absolute;

    top: 17px;
    right: 20px;

    color: rgba(8,77,110,0.07);

    font-size: 2.2rem;
    font-weight: 900;
}

.benefit-icon {
    width: 55px;
    height: 55px;

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

    margin-bottom: 22px;

    border-radius: 15px;

    background:
        linear-gradient(
            135deg,
            #e7f8fa,
            #eef9df
        );

    font-size: 1.5rem;
}

.benefit-card h3 {
    margin: 0 0 12px;

    color: var(--yd-navy);

    font-size: 1.15rem;
}

.benefit-card p {
    margin: 0;

    color: var(--yd-muted);

    font-size: 0.9rem;
    line-height: 1.72;
}


/* ============================================================
   PROCESS
   ============================================================ */

.process-section {
    position: relative;

    padding: 105px 0;

    background:
        linear-gradient(
            135deg,
            var(--yd-navy),
            var(--yd-blue)
        );
}

.process-section::before {
    content: "";

    position: absolute;

    top: 0;
    right: 0;

    width: 380px;
    height: 380px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(34,170,178,0.28),
            transparent 70%
        );

    pointer-events: none;
}

.section-heading-light {
    position: relative;
    z-index: 1;
}

.section-heading-light h2 {
    color: #ffffff;
}

.section-heading-light h2 span {
    color: #9ee9ea;
}

.section-heading-light p {
    color: rgba(255,255,255,0.72);
}

.process-grid {
    position: relative;
    z-index: 1;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.process-card {
    min-height: 255px;

    padding: 28px;

    border:
        1px solid
        rgba(255,255,255,0.14);

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

    background:
        rgba(255,255,255,0.07);

    backdrop-filter: blur(8px);
}

.process-number {
    margin-bottom: 35px;

    color: var(--yd-lime);

    font-size: 0.8rem;
    font-weight: 850;

    letter-spacing: 0.12em;
}

.process-card h3 {
    margin: 0 0 12px;

    color: #ffffff;

    font-size: 1.1rem;
}

.process-card p {
    margin: 0;

    color: rgba(255,255,255,0.68);

    font-size: 0.88rem;
    line-height: 1.72;
}


/* ============================================================
   SERVICES
   ============================================================ */

.services-section {
    padding: 105px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-card {
    position: relative;

    display: flex;
    flex-direction: column;

    min-height: 390px;

    padding: 28px;

    border:
        1px solid
        var(--yd-border);

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

    background: #ffffff;

    box-shadow: var(--yd-shadow-sm);

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

.service-card:hover {
    transform: translateY(-7px);

    border-color:
        rgba(34,170,178,0.35);

    box-shadow: var(--yd-shadow);
}

.service-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 25px;
}

.service-icon {
    width: 58px;
    height: 58px;

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

    border-radius: 16px;

    background:
        linear-gradient(
            135deg,
            #eaf8fa,
            #eff9df
        );

    font-size: 1.55rem;
}

.service-arrow {
    color: var(--yd-teal);

    font-size: 1.2rem;

    transition:
        transform 0.2s ease;
}

.service-card:hover .service-arrow {
    transform: translateX(5px);
}

.service-card h3 {
    margin: 0 0 12px;

    color: var(--yd-navy);

    font-size: 1.25rem;
    line-height: 1.3;
}

.service-card > p {
    margin: 0;

    color: var(--yd-muted);

    font-size: 0.91rem;
    line-height: 1.72;
}

.service-includes {
    display: grid;
    gap: 7px;

    margin: 18px 0 0;
    padding: 0;

    list-style: none;
}

.service-includes li {
    display: flex;
    gap: 7px;

    color: var(--yd-text);

    font-size: 0.8rem;
}

.service-includes li span {
    color: var(--yd-green);
    font-weight: 900;
}

.service-link {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-top: auto;
    padding-top: 22px;

    color: var(--yd-blue);

    font-size: 0.84rem;
    font-weight: 800;

    border-top:
        1px solid
        rgba(8,77,110,0.08);
}

.service-link span {
    transition: transform 0.2s ease;
}

.service-link:hover span {
    transform: translateX(4px);
}

.services-bottom-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;

    margin-top: 35px;
}

.services-bottom-cta p {
    margin: 0;

    color: var(--yd-muted);

    font-size: 0.9rem;
}


/* ============================================================
   PROPERTY TYPES
   ============================================================ */

.property-section {
    padding: 105px 0;
}

.property-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 75px;

    align-items: center;
}

.property-content h2 {
    margin: 0 0 20px;

    color: var(--yd-navy);

    font-size: clamp(
        2rem,
        3.8vw,
        3.15rem
    );

    line-height: 1.1;
    letter-spacing: -0.04em;
}

.property-content h2 span {
    display: block;
    color: var(--yd-blue);
}

.property-content p {
    margin: 0 0 17px;

    color: var(--yd-muted);

    line-height: 1.78;
}

.property-content .btn {
    margin-top: 14px;
}

.property-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 13px;
}

.property-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;

    padding: 21px;

    border:
        1px solid
        var(--yd-border);

    border-radius: 15px;

    background: var(--yd-light);

    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.property-item:hover {
    transform: translateY(-3px);
    background: #ffffff;
}

.property-icon {
    width: 42px;
    height: 42px;

    flex: 0 0 42px;

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

    border-radius: 11px;

    background: #ffffff;

    box-shadow:
        0 4px 12px rgba(8,77,110,0.06);

    font-size: 1.1rem;
}

.property-item h3 {
    margin: 0 0 5px;

    color: var(--yd-navy);

    font-size: 0.95rem;
}

.property-item p {
    margin: 0;

    color: var(--yd-muted);

    font-size: 0.78rem;
    line-height: 1.55;
}


/* ============================================================
   SERVICE AREAS
   ============================================================ */

.areas-section {
    padding: 100px 0;

    background:
        linear-gradient(
            135deg,
            #eef9f9,
            #f4faec
        );
}

.areas-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;

    align-items: center;
}

.areas-heading h2 {
    margin: 0 0 20px;

    color: var(--yd-navy);

    font-size: clamp(
        2rem,
        3.7vw,
        3.1rem
    );

    line-height: 1.1;
}

.areas-heading h2 span {
    display: block;
    color: var(--yd-blue);
}

.areas-heading p {
    margin: 0 0 25px;

    color: var(--yd-muted);

    line-height: 1.78;
}

.areas-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.area-pill {
    padding: 13px 17px;

    border:
        1px solid
        rgba(8,77,110,0.1);

    border-radius: 100px;

    background: #ffffff;

    color: var(--yd-navy);

    font-size: 0.84rem;
    font-weight: 720;

    box-shadow:
        0 5px 15px rgba(8,77,110,0.05);

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        color 0.2s ease;
}

.area-pill:hover {
    transform: translateY(-3px);

    background: var(--yd-navy);

    color: #ffffff;
}


/* ============================================================
   GALLERY
   ============================================================ */

.gallery-section {
    padding: 105px 0;
}

.home-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 17px;
}

.home-gallery-item {
    position: relative;

    height: 280px;

    overflow: hidden;

    border-radius: 17px;

    background: var(--yd-light);
}

.home-gallery-item img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.45s ease;
}

.home-gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-overlay {
    position: absolute;

    right: 0;
    bottom: 0;
    left: 0;

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

    padding: 50px 20px 18px;

    background:
        linear-gradient(
            transparent,
            rgba(4,35,52,0.88)
        );

    color: #ffffff;
}

.gallery-overlay span {
    font-size: 0.7rem;
    font-weight: 750;

    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.gallery-overlay h3 {
    margin: 4px 0 0;

    font-size: 0.98rem;
}

.gallery-arrow {
    width: 35px;
    height: 35px;

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

    flex: 0 0 35px;

    border-radius: 50%;

    background: var(--yd-teal);

    font-size: 1rem !important;
}

.center-cta {
    display: flex;
    justify-content: center;

    margin-top: 35px;
}


/* ============================================================
   REVIEWS
   ============================================================ */

.reviews-section {
    padding: 105px 0;
}

.reviews-summary {
    width: min(440px, 100%);

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

    margin: 0 auto 45px;
    padding: 21px 28px;

    border:
        1px solid
        var(--yd-border);

    border-radius: 18px;

    background: var(--yd-light);

    text-align: left;
}

.rating-number {
    color: var(--yd-navy);

    font-size: 3rem;
    font-weight: 850;

    line-height: 1;
}

.rating-content strong,
.rating-content span {
    display: block;
}

.rating-stars,
.review-stars {
    color: var(--yd-green);

    letter-spacing: 2px;
}

.rating-content strong {
    margin: 4px 0;

    color: var(--yd-navy);

    font-size: 0.85rem;
}

.rating-content span {
    color: var(--yd-muted);

    font-size: 0.72rem;
}

.reviews-carousel-wrapper {
    position: relative;

    display: flex;
    align-items: center;

    gap: 15px;
}

.home-reviews-viewport {
    width: 100%;

    overflow: hidden;
}

.home-reviews-track {
    display: flex;

    transition:
        transform 0.45s ease;
}

.home-review-slide {
    min-width: 100%;

    padding: 5px;
}

.review-card {
    max-width: 750px;

    margin: 0 auto;
    padding: 30px;

    border:
        1px solid
        var(--yd-border);

    border-radius: 20px;

    background: #ffffff;

    box-shadow: var(--yd-shadow-sm);
}

.review-card-header {
    display: flex;
    align-items: center;
    gap: 13px;

    margin-bottom: 18px;
}

.review-avatar {
    width: 46px;
    height: 46px;

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

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            var(--yd-blue),
            var(--yd-teal)
        );

    color: #ffffff;

    font-weight: 800;
}

.review-card-header strong,
.review-card-header span {
    display: block;
}

.review-card-header strong {
    color: var(--yd-navy);

    font-size: 0.9rem;
}

.review-card-header span {
    margin-top: 3px;

    color: var(--yd-muted);

    font-size: 0.72rem;
}

.review-stars {
    margin-bottom: 15px;
}

.review-card p {
    margin: 0 0 17px;

    color: var(--yd-text);

    font-size: 1rem;
    line-height: 1.8;
}

.review-card time {
    color: var(--yd-muted);

    font-size: 0.72rem;
}

.review-carousel-control {
    width: 43px;
    height: 43px;

    flex: 0 0 43px;

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

    border:
        1px solid
        var(--yd-border);

    border-radius: 50%;

    background: #ffffff;

    color: var(--yd-navy);

    font-size: 1rem;

    cursor: pointer;

    box-shadow:
        0 5px 15px rgba(8,77,110,0.07);

    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.review-carousel-control:hover {
    transform: translateY(-2px);

    background: var(--yd-navy);

    color: #ffffff;
}

.review-carousel-control:disabled {
    opacity: 0.35;
    cursor: default;
    transform: none;
}

.review-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 7px;

    margin-top: 24px;
}

.review-carousel-dot {
    width: 8px;
    height: 8px;

    padding: 0;

    border: 0;
    border-radius: 50%;

    background: #c9dfe3;

    cursor: pointer;
}

.review-carousel-dot.active {
    width: 23px;

    border-radius: 100px;

    background: var(--yd-teal);
}


/* ============================================================
   FAQ
   ============================================================ */

.home-faq-section {
    padding: 105px 0;

    background:
        linear-gradient(
            180deg,
            #f6fbfc 0%,
            #ffffff 100%
        );
}

.home-faq-heading {
    margin-bottom: 45px;
}

.home-faq-list {
    width: min(900px, 100%);

    margin: 0 auto;
}

.home-faq-item {
    margin-bottom: 13px;

    overflow: hidden;

    border:
        1px solid
        rgba(8,77,110,0.1);

    border-radius: 16px;

    background: #ffffff;

    box-shadow:
        0 5px 20px rgba(8,77,110,0.05);

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.home-faq-item:hover {
    border-color:
        rgba(34,170,178,0.3);

    box-shadow:
        0 10px 30px rgba(8,77,110,0.08);
}

.home-faq-item.is-open {
    border-color:
        rgba(34,170,178,0.38);
}

.home-faq-question {
    width: 100%;
    min-height: 70px;

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

    gap: 20px;

    padding: 18px 23px;

    border: 0;

    background: #ffffff;

    color: var(--yd-navy);

    text-align: left;

    font-size: 0.98rem;
    font-weight: 750;

    cursor: pointer;

    transition:
        background 0.2s ease;
}

.home-faq-question:hover {
    background: #f7fcfc;
}

.home-faq-question:focus-visible {
    outline:
        3px solid
        rgba(34,170,178,0.3);

    outline-offset: -3px;
}

.home-faq-icon {
    width: 36px;
    height: 36px;

    flex: 0 0 36px;

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

    border-radius: 50%;

    background: #eaf8f8;

    color: var(--yd-navy);

    font-size: 1.4rem;
    font-weight: 400;

    line-height: 1;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        color 0.25s ease;
}

.home-faq-item.is-open .home-faq-icon {
    transform: rotate(45deg);

    background: var(--yd-teal);

    color: #ffffff;
}

.home-faq-answer {
    padding: 0 23px 23px;
}

.home-faq-answer p {
    max-width: 790px;

    margin: 0;

    color: var(--yd-muted);

    font-size: 0.92rem;
    line-height: 1.8;
}

.home-faq-cta {
    width: min(900px, 100%);

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

    gap: 20px;

    margin: 32px auto 0;
    padding: 24px 27px;

    border-radius: 18px;

    background:
        linear-gradient(
            135deg,
            var(--yd-navy),
            var(--yd-blue)
        );

    box-shadow:
        0 14px 35px rgba(8,77,110,0.14);
}

.home-faq-cta strong,
.home-faq-cta span {
    display: block;
}

.home-faq-cta strong {
    color: #ffffff;

    font-size: 0.98rem;
}

.home-faq-cta span {
    margin-top: 4px;

    color: rgba(255,255,255,0.68);

    font-size: 0.78rem;
}


/* ============================================================
   QUOTE BANNER
   ============================================================ */

.quote-banner {
    padding: 25px 0;

    background: var(--yd-light);
}

.quote-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 35px;

    padding: 42px 50px;

    border-radius: 25px;

    background:
        linear-gradient(
            135deg,
            var(--yd-navy),
            var(--yd-blue),
            var(--yd-teal)
        );

    box-shadow:
        0 20px 55px rgba(8,77,110,0.17);
}

.quote-banner .section-eyebrow {
    color: var(--yd-lime);
}

.quote-banner h2 {
    margin: 0 0 12px;

    color: #ffffff;

    font-size: clamp(
        1.8rem,
        3vw,
        2.65rem
    );

    line-height: 1.1;
}

.quote-banner h2 span {
    color: #b8eef0;
}

.quote-banner p {
    max-width: 650px;

    margin: 0;

    color: rgba(255,255,255,0.72);

    line-height: 1.7;
}


/* ============================================================
   QUOTE FORM
   ============================================================ */

.quote-section {
    padding: 105px 0;

    background:
        linear-gradient(
            180deg,
            #f5fbfc,
            #ffffff
        );
}

.quote-layout {
    display: grid;
    grid-template-columns: 0.78fr 1.22fr;

    gap: 75px;

    align-items: start;
}

.quote-info {
    position: sticky;
    top: 100px;
}

.quote-info h2 {
    margin: 0 0 20px;

    color: var(--yd-navy);

    font-size: clamp(
        2rem,
        3.6vw,
        3.15rem
    );

    line-height: 1.1;

    letter-spacing: -0.04em;
}

.quote-info h2 span {
    display: block;

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

.quote-info > p {
    margin: 0 0 30px;

    color: var(--yd-muted);

    line-height: 1.8;
}

.quote-contact-list {
    display: grid;
    gap: 13px;
}

.quote-contact-item {
    display: flex;
    gap: 13px;

    padding: 15px;

    border:
        1px solid
        var(--yd-border);

    border-radius: 14px;

    background: #ffffff;
}

.quote-contact-icon {
    width: 42px;
    height: 42px;

    flex: 0 0 42px;

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

    border-radius: 11px;

    background: #eaf8f8;

    color: var(--yd-teal);

    font-weight: 800;
}

.quote-contact-item span,
.quote-contact-item strong,
.quote-contact-item a {
    display: block;
}

.quote-contact-item div > span {
    margin-bottom: 3px;

    color: var(--yd-muted);

    font-size: 0.7rem;
}

.quote-contact-item a,
.quote-contact-item strong {
    color: var(--yd-navy);

    font-size: 0.88rem;
}

.quote-contact-item a:hover {
    color: var(--yd-blue);
}


/* Form */

.quote-form-wrapper {
    padding: 32px;

    border:
        1px solid
        var(--yd-border);

    border-radius: 23px;

    background: #ffffff;

    box-shadow:
        0 20px 60px rgba(8,77,110,0.10);
}

.quote-form {
    display: grid;
    gap: 18px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.form-field label,
.addons-fieldset legend {
    color: var(--yd-navy);

    font-size: 0.78rem;
    font-weight: 750;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;

    padding: 12px 13px;

    border:
        1px solid
        #d5e3e7;

    border-radius: 9px;

    background: #ffffff;

    color: var(--yd-text);

    font-size: 0.88rem;

    outline: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.form-field input,
.form-field select {
    min-height: 46px;
}

.form-field textarea {
    min-height: 125px;

    resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--yd-teal);

    box-shadow:
        0 0 0 3px
        rgba(34,170,178,0.11);
}

.form-field small {
    color: var(--yd-muted);

    font-size: 0.7rem;
}

.field-error {
    color: #c0392b;

    font-size: 0.72rem;
}

.form-alert {
    padding: 13px 15px;

    border-radius: 9px;

    background: #fff3f1;

    color: #a93226;

    font-size: 0.82rem;
}


/* Add-ons */

.addons-fieldset {
    margin: 0;
    padding: 17px;

    border:
        1px solid
        var(--yd-border);

    border-radius: 12px;
}

.addons-fieldset legend {
    padding: 0 7px;
}

.addons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 9px;
}

.addon-option {
    display: flex;
    align-items: center;
    gap: 9px;

    padding: 10px;

    border-radius: 8px;

    background: var(--yd-light);

    color: var(--yd-text);

    font-size: 0.78rem;

    cursor: pointer;
}

.addon-option input {
    accent-color: var(--yd-teal);
}

.quote-submit {
    width: 100%;

    min-height: 54px;

    justify-content: space-between;
}

.form-privacy {
    margin: 0;

    color: var(--yd-muted);

    font-size: 0.67rem;
    line-height: 1.6;

    text-align: center;
}

.form-privacy a {
    color: var(--yd-blue);
    font-weight: 700;
}

.form-direct-contact {
    padding-top: 5px;

    color: var(--yd-muted);

    font-size: 0.78rem;

    text-align: center;
}

.form-direct-contact a {
    color: var(--yd-blue);
    font-weight: 800;
}


/* ============================================================
   REVEAL ANIMATION
   ============================================================ */

.reveal {
    opacity: 1;
    transform: translateY(0);
}


/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */

@media (max-width: 1050px) {

    .hero-grid {
        grid-template-columns: 1fr;

        gap: 45px;

        padding-top: 100px;
    }

    .hero-content {
        max-width: 780px;
    }

    .hero-visual-card {
        justify-self: start;
        max-width: 560px;
    }

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

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

    .intro-grid,
    .property-grid,
    .areas-layout,
    .quote-layout {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .quote-info {
        position: static;
    }

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


/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */

@media (max-width: 700px) {

    .yd-homepage .container {
        width: min(
            calc(100% - 28px),
            var(--yd-container)
        );
    }


    /* HERO */

    .hero-section {
        min-height: 850px;
    }

    .hero-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(8,77,110,0.78),
                rgba(8,77,110,0.73)
            );
    }

    .hero-grid {
        gap: 35px;

        padding-top: 95px;
        padding-bottom: 75px;
    }

    .hero-content h1 {
        font-size: clamp(
            2.35rem,
            11vw,
            3.4rem
        );
    }

    .hero-lead {
        font-size: 0.94rem;
        line-height: 1.7;
    }

    .hero-actions {
        flex-direction: column;
    }

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

    .hero-trust {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 9px;
    }

    .hero-trust-item {
        font-size: 0.72rem;
    }

    .hero-visual-card {
        padding: 20px;
    }

    .hero-card-top h2 {
        font-size: 1.2rem;
    }

    .hero-scroll-indicator {
        display: none;
    }


    /* SECTIONS */

    .home-intro-section,
    .why-section,
    .services-section,
    .property-section,
    .gallery-section,
    .reviews-section,
    .home-faq-section,
    .quote-section {
        padding: 75px 0;
    }

    .process-section,
    .areas-section {
        padding: 75px 0;
    }

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

    .section-heading h2 {
        font-size: 2rem;
    }


    /* BENEFITS */

    .benefits-grid,
    .process-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .benefit-card {
        min-height: auto;
    }


    /* INTRO */

    .intro-grid {
        gap: 30px;
    }

    .intro-heading h2,
    .property-content h2,
    .areas-heading h2,
    .quote-info h2 {
        font-size: 2.05rem;
    }


    /* PROPERTY */

    .property-list {
        grid-template-columns: 1fr;
    }


    /* AREAS */

    .areas-list {
        gap: 8px;
    }

    .area-pill {
        padding: 10px 13px;

        font-size: 0.76rem;
    }


    /* GALLERY */

    .home-gallery-grid {
        grid-template-columns: 1fr;
    }

    .home-gallery-item {
        height: 250px;
    }


    /* REVIEWS */

    .reviews-carousel-wrapper {
        gap: 6px;
    }

    .review-carousel-control {
        width: 35px;
        height: 35px;

        flex-basis: 35px;
    }

    .review-card {
        padding: 22px;
    }

    .review-card p {
        font-size: 0.9rem;
    }


    /* FAQ */

    .home-faq-question {
        min-height: 65px;

        padding: 16px;

        font-size: 0.88rem;
    }

    .home-faq-icon {
        width: 32px;
        height: 32px;

        flex-basis: 32px;

        font-size: 1.25rem;
    }

    .home-faq-answer {
        padding: 0 16px 19px;
    }

    .home-faq-answer p {
        font-size: 0.84rem;
    }

    .home-faq-cta {
        flex-direction: column;

        align-items: stretch;

        padding: 22px;

        text-align: center;
    }

    .home-faq-cta .btn {
        width: 100%;
    }


    /* QUOTE BANNER */

    .quote-banner {
        padding: 15px 0;
    }

    .quote-banner-inner {
        flex-direction: column;

        align-items: flex-start;

        padding: 30px 23px;

        gap: 25px;
    }

    .quote-banner .btn {
        width: 100%;
    }


    /* FORM */

    .quote-form-wrapper {
        padding: 20px 15px;
    }

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

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

}


/* ============================================================
   VERY SMALL DEVICES
   ============================================================ */

@media (max-width: 420px) {

    .hero-section {
        min-height: 900px;
    }

    .hero-trust {
        grid-template-columns: 1fr;
    }

    .hero-visual-card {
        padding: 17px;
    }

    .hero-feature p {
        font-size: 0.72rem;
    }

    .rating-number {
        font-size: 2.4rem;
    }

}


/* =========================================================
   CLEAN20 NEWSLETTER SIGNUP
   Professional marketing signup section
   ========================================================= */

.newsletter-section {
    padding: 80px 0;
    background: var(--yd-light);
    position: relative;
}

.newsletter-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
    gap: 60px;
    align-items: center;
    max-width: 1180px;
    margin: 0 auto;
    padding: 58px 64px;
    overflow: hidden;
    border-radius: 24px;
    background:
        linear-gradient(
            135deg,
            var(--yd-navy) 0%,
            var(--yd-blue) 58%,
            #087c98 100%
        );
    box-shadow:
        0 20px 55px rgba(8, 77, 110, 0.18);
}

/* Decorative background element */

.newsletter-card::after {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    right: -120px;
    bottom: -170px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    pointer-events: none;
}


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

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

.newsletter-content .section-eyebrow {
    display: inline-flex;
    align-items: center;
    margin-bottom: 16px;
    padding: 7px 13px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: var(--yd-white);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.4px;
    line-height: 1;
}

.newsletter-content h2 {
    max-width: 620px;
    margin: 0 0 18px;
    color: var(--yd-white);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -1.2px;
}

.newsletter-content h2 span {
    color: var(--yd-white);
}

.newsletter-content p {
    max-width: 570px;
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 17px;
    line-height: 1.7;
}


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

.newsletter-form-wrapper {
    position: relative;
    z-index: 2;
    padding: 30px;
    border: 1px solid rgba(8, 77, 110, 0.08);
    border-radius: 18px;
    background: var(--yd-white);
    box-shadow:
        0 14px 35px rgba(0, 0, 0, 0.12);
}

.newsletter-form {
    width: 100%;
}

.newsletter-field {
    margin-bottom: 18px;
}

.newsletter-field label {
    display: block;
    margin-bottom: 8px;
    color: var(--yd-dark);
    font-size: 14px;
    font-weight: 700;
}

.newsletter-field input[type="email"] {
    display: block;
    width: 100%;
    min-height: 52px;
    padding: 0 16px;
    border: 1px solid #d5dfe4;
    border-radius: 10px;
    background: var(--yd-white);
    color: var(--yd-dark);
    font-family: inherit;
    font-size: 15px;
    line-height: 1.4;
    outline: none;
    box-sizing: border-box;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.newsletter-field input[type="email"]::placeholder {
    color: #87949b;
}

.newsletter-field input[type="email"]:focus {
    border-color: var(--yd-blue);
    box-shadow: 0 0 0 4px rgba(6, 87, 150, 0.10);
}


/* =========================================================
   CONSENT CHECKBOX
   ========================================================= */

.newsletter-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 0 0 20px;
    cursor: pointer;
    color: var(--yd-text);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.55;
}

.newsletter-consent input[type="checkbox"] {
    flex: 0 0 auto;
    width: 17px;
    height: 17px;
    margin: 2px 0 0;
    padding: 0;
    accent-color: var(--yd-blue);
    cursor: pointer;
}


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

.newsletter-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    min-height: 52px;
    padding: 13px 20px;
    border: 0;
    border-radius: 10px;
    background: var(--yd-green);
    color: var(--yd-white);
    font-family: inherit;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.2;
    cursor: pointer;
    box-shadow: 0 7px 18px rgba(84, 177, 28, 0.22);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.newsletter-submit span {
    font-size: 19px;
    line-height: 1;
    transition: transform 0.2s ease;
}

.newsletter-submit:hover {
    background: #479b17;
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(84, 177, 28, 0.28);
}

.newsletter-submit:hover span {
    transform: translateX(3px);
}

.newsletter-submit:focus-visible {
    outline: 3px solid rgba(34, 170, 178, 0.35);
    outline-offset: 3px;
}


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

.newsletter-privacy {
    margin: 12px 0 0;
    color: var(--yd-muted);
    font-size: 12px;
    line-height: 1.5;
    text-align: center;
}


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

@media (max-width: 900px) {

    .newsletter-section {
        padding: 60px 0;
    }

    .newsletter-card {
        grid-template-columns: 1fr;
        gap: 34px;
        padding: 44px 34px;
    }

    .newsletter-content h2 {
        font-size: 36px;
    }

    .newsletter-content p {
        font-size: 16px;
    }

    .newsletter-form-wrapper {
        padding: 26px;
    }
}


@media (max-width: 600px) {

    .newsletter-section {
        padding: 45px 0;
    }

    .newsletter-card {
        gap: 28px;
        padding: 34px 22px;
        border-radius: 18px;
    }

    .newsletter-content .section-eyebrow {
        margin-bottom: 13px;
        font-size: 11px;
    }

    .newsletter-content h2 {
        margin-bottom: 14px;
        font-size: 30px;
        letter-spacing: -0.7px;
    }

    .newsletter-content p {
        font-size: 15px;
        line-height: 1.6;
    }

    .newsletter-form-wrapper {
        padding: 22px 18px;
        border-radius: 14px;
    }

    .newsletter-field input[type="email"] {
        min-height: 50px;
    }

    .newsletter-consent {
        font-size: 12px;
    }

    .newsletter-submit {
        min-height: 50px;
    }
}