:root {
    --e-global-color-primary: #76594B;
    --e-global-color-secondary: #965934;
    --e-global-color-text: #0B0B0B;
    --e-global-color-accent: #C59D79;
    --e-global-color-4a43552: #FFF4E2;
    --e-global-color-0175fba: #FFF9E7;
    --e-global-color-73a5f64: #FFF7E8;
    --e-global-color-dd40b35: #C26A32;
    --e-global-color-1739a3c: #DD8B18;
    --e-global-color-56bd394: #25272A;
    --font-heading: "Montserrat", sans-serif;
    --font-body: "Lato", sans-serif;
}

html { scroll-behavior: smooth; }
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--font-body); color: var(--e-global-color-text); background-color: #fff; line-height: 1.6; overflow-x: hidden; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Header */
.main-header {
    background: var(--e-global-color-56bd394);
    padding: 6px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.site-logo {
    width: 220px;
    height: 78px;
    object-fit: contain;
    display: block;
}

.main-nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    margin: 0 15px;
    font-family: var(--font-heading);
    transition: color 0.3s;
}

.main-nav a:hover { color: var(--e-global-color-accent); }

.btn-quote {
    background: var(--e-global-color-accent);
    color: var(--e-global-color-text);
    padding: 12px 25px;
    text-decoration: none;
    font-weight: 700;
    font-family: var(--font-heading);
    border-radius: 4px;
    transition: background-color 0.3s;
}

.btn-quote:hover {
    background: var(--e-global-color-dd40b35);
    color: #fff;
}

/* Hero Section */
.hero-section {
    background-image: linear-gradient(rgba(37, 39, 42, 0.7), rgba(37, 39, 42, 0.7)), url('img/hero.jpg');
    background-size: cover;
    background-position: center;
    padding: 150px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-content { max-width: 800px; }

.hero-title {
    font-family: var(--font-heading);
    font-size: 63px;
    font-weight: 700;
    color: var(--e-global-color-4a43552);
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-desc {
    font-family: var(--font-body);
    font-size: 20px;
    color: #fff;
    margin-bottom: 40px;
}

/* Video Button */
.video-btn-wrapper { display: flex; align-items: center; gap: 15px; }
.video-btn-wrapper a { text-decoration: none !important; outline: none !important; border: none !important; }

.video-button {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 60px;
    height: 60px;
    background: var(--e-global-color-dd40b35);
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
}

.video-button::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    bottom: -2px;
    right: -2px;
    border-radius: inherit;
    border: 1px solid var(--e-global-color-dd40b35);
    animation: btnIconRipple 2s cubic-bezier(0.23, 1, 0.32, 1) both infinite;
}

@keyframes btnIconRipple {
    0% { border-width: 4px; transform: scale(1); }
    80% { border-width: 1px; transform: scale(1.35); }
    100% { opacity: 0; }
}

.video-text {
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
}

/* Features */
.features-section {
    background: var(--e-global-color-0175fba);
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
    align-items: stretch;
}

.feature-box {
    background: #fff;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.feature-box:hover { transform: translateY(-5px); }

.feature-icon {
    font-size: 40px;
    color: var(--e-global-color-primary);
    margin-bottom: 20px;
}

.feature-box h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--e-global-color-text);
}

/* About */
.about-section {
    padding: 120px 0;
    background: #fff;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    position: relative;
    padding: 40px 40px 80px 40px;
}

.about-bg-orange-top {
    position: absolute;
    top: 0;
    left: 60px;
    width: 140px;
    height: 140px;
    background: var(--e-global-color-1739a3c);
    z-index: 1;
}

.about-img-main {
    position: relative;
    width: 85%;
    display: block;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    object-fit: cover;
    border-radius: 4px;
}

.about-img-overlap-container {
    position: absolute;
    bottom: -30px;
    right: 0;
    width: 55%;
    z-index: 3;
}

.about-img-overlap {
    width: 100%;
    display: block;
    border: 12px solid #fff;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    background: #fff;
    border-radius: 4px;
}

.about-bg-orange-bottom {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    background: var(--e-global-color-1739a3c);
    z-index: -1;
}

.experience-text {
    position: absolute;
    bottom: -30px;
    left: -40px;
    z-index: 4;
    background: #fff;
    padding: 10px;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.exp-num {
    font-family: var(--font-body);
    font-size: 55px;
    font-weight: 700;
    color: var(--e-global-color-56bd394);
    line-height: 1;
    display: block;
}

.exp-desc {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--e-global-color-text);
    line-height: 1.2;
    display: block;
}

.about-badge {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 18px;
    color: var(--e-global-color-text);
    background: #fff;
    padding: 5px 15px;
    margin-bottom: 25px;
    font-weight: 600;
    box-shadow: -12px 12px 25px rgba(221, 139, 24, 0.3);
}

.about-title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 800;
    color: var(--e-global-color-56bd394);
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.about-subtitle {
    font-family: var(--font-body);
    font-size: 24px;
    font-weight: 500;
    color: var(--e-global-color-text);
    line-height: 1.4;
    margin-bottom: 20px;
}

.about-text {
    font-family: var(--font-body);
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 40px;
}

.about-list-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
    gap: 30px;
}

.about-list { list-style: none; flex: 1; }

.about-list li {
    font-family: var(--font-body);
    font-size: 16px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-weight: 500;
}

.about-list li i {
    color: var(--e-global-color-accent);
    font-size: 18px;
    margin-right: 15px;
}

.about-small-img-wrapper {
    position: relative;
    width: 160px;
    height: 160px;
    flex-shrink: 0;
}

.small-img-orange-bg {
    position: absolute;
    top: 20px;
    bottom: -20px;
    left: -20px;
    right: 20px;
    background: var(--e-global-color-1739a3c);
    z-index: 1;
}

.img-small {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 4px;
}

.btn-dark-solid {
    display: inline-block;
    background: var(--e-global-color-56bd394);
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    padding: 16px 35px;
    text-decoration: none;
    border-radius: 3px;
    transition: transform 0.3s;
}

.btn-dark-solid:hover {
    background: var(--e-global-color-1739a3c);
    transform: translateY(-3px);
}

/* Shared Background */
.services-section,
.process-section {
    padding: 120px 0;
    position: relative;
    background-image: url('img/bg-services.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
}

.services-section::before,
.process-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(250, 248, 245, 0.85);
    z-index: 1;
}

.services-section .container,
.process-section .container {
    position: relative;
    z-index: 3;
}

/* Services */
.flex-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    margin-bottom: 70px;
}

.section-badge {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 20px;
    color: var(--e-global-color-text);
    background: #fff;
    padding: 8px 20px;
    margin-bottom: 25px;
    font-weight: 600;
    box-shadow: -8px 8px 20px rgba(221, 139, 24, 0.2);
    border-left: 4px solid var(--e-global-color-1739a3c);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 700;
    color: var(--e-global-color-text);
    line-height: 1.2;
}

.section-desc {
    font-family: var(--font-body);
    font-size: 18px;
    color: #333333;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: #fff;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-align: center;
    overflow: hidden;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    z-index: 5;
    backface-visibility: hidden;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.sc-img-wrapper {
    width: 100%;
    height: 260px;
    overflow: hidden;
}

.sc-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    backface-visibility: hidden;
}

.service-card:hover .sc-img { transform: scale(1.08); }

.sc-icon {
    width: 70px;
    height: 70px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--e-global-color-1739a3c);
    position: absolute;
    top: 225px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 10;
    transition: background-color 0.3s, color 0.3s;
}

.service-card:hover .sc-icon {
    background: var(--e-global-color-1739a3c);
    color: #fff;
}

.sc-content {
    padding: 60px 30px 40px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.sc-content h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--e-global-color-text);
    margin-bottom: 15px;
    line-height: 1.3;
}

.sc-content p {
    font-family: var(--font-body);
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-top: auto;
}

/* Process */
.process-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 70px auto;
}

.process-subtitle {
    display: block;
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--e-global-color-1739a3c);
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.process-title {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 700;
    color: var(--e-global-color-text);
    line-height: 1.2;
    margin-bottom: 20px;
}

.process-desc {
    font-family: var(--font-body);
    font-size: 16px;
    color: #333;
    line-height: 1.6;
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 80px;
}

.process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    position: relative;
}

.step-graphics {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 30px;
    position: relative;
    width: 60px;
}

.step-diamond {
    width: 60px;
    height: 60px;
    background-color: #FFF7E8;
    border: 1px solid var(--e-global-color-accent);
    transform: rotate(45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(118, 89, 75, 0.1);
    transition: all 0.4s ease;
}

.step-diamond i {
    transform: rotate(-45deg);
    font-size: 22px;
    color: var(--e-global-color-primary);
    transition: color 0.3s;
}

.process-step:hover .step-diamond {
    background-color: var(--e-global-color-primary);
    transform: rotate(45deg) scale(1.1);
}

.process-step:hover .step-diamond i { color: #fff; }

.step-line {
    width: 1px;
    height: 100px;
    background-color: rgba(118, 89, 75, 0.3);
    position: absolute;
    top: 60px;
    z-index: 1;
}

.last-line { display: none; }

.step-content {
    flex: 1;
    padding-top: 15px;
}

.step-content h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--e-global-color-text);
    margin-bottom: 15px;
    transition: color 0.3s;
}

.process-step:hover .step-content h3 { color: var(--e-global-color-1739a3c); }

.step-content ul { list-style: none; }

.step-content ul li {
    font-family: var(--font-body);
    font-size: 15px;
    color: #555;
    margin-bottom: 8px;
    line-height: 1.5;
}

/* Why Choose Us */
.why-choose-section {
    position: relative;
    padding: 105px 0 0;
    background-image: url('img/bg-why-choose.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: visible;
    z-index: 2;
}

.why-choose-overlay {
    position: absolute;
    inset: 0;
    background: rgba(8, 6, 5, 0.48);
    z-index: 1;
}

.why-choose-container {
    position: relative;
    z-index: 2;
    max-width: 1325px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 105px;
    align-items: start;
}

.why-badge {
    display: inline-block;
    position: relative;
    font-family: var(--font-body);
    font-size: 20px;
    line-height: 1.2;
    color: var(--e-global-color-4a43552);
    font-weight: 700;
    padding: 14px 18px 18px 18px;
    margin-bottom: 22px;
    background: rgba(0, 0, 0, 0.16);
    box-shadow: -10px 10px 18px rgba(221, 139, 24, 0.55);
}

.why-badge::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: var(--e-global-color-1739a3c);
    box-shadow: 0 0 18px rgba(221, 139, 24, 0.8);
}

.why-title {
    font-family: var(--font-body);
    font-size: 42px;
    font-weight: 400;
    color: var(--e-global-color-4a43552);
    line-height: 1.08;
    letter-spacing: -0.5px;
    max-width: 650px;
    margin-bottom: 88px;
}

.why-main-image-wrapper {
    position: relative;
    z-index: 5;
    width: 100%;
    height: 520px;
    margin-left: 0;
    margin-bottom: -95px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
}

.why-main-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.why-choose-right {
    min-width: 0;
    padding-top: 8px;
    padding-left: 10px;
}

.why-intro {
    max-width: 560px;
    font-family: var(--font-body);
    font-size: 20px;
    line-height: 1.55;
    color: rgba(255, 244, 226, 0.82);
    margin: 0 0 100px 0;
}

.why-features-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(210px, 1fr));
    column-gap: 105px;
    row-gap: 58px;
    text-align: center;
}

.why-feature {
    max-width: 265px;
    margin: 0 auto;
}

.why-icon {
    font-size: 48px;
    line-height: 1;
    color: var(--e-global-color-4a43552);
    margin-bottom: 22px;
}

.why-feature h3 {
    font-family: var(--font-body);
    font-size: 26px;
    font-weight: 400;
    color: var(--e-global-color-accent);
    line-height: 1.15;
    margin-bottom: 22px;
}

.why-feature p {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    color: var(--e-global-color-4a43552);
    line-height: 1.45;
}

/* Before & After */
.before-after-section {
    position: relative;
    z-index: 1;
    padding: 185px 0 120px;
    text-align: center;
    background: #fff;
}

.ba-header {
    max-width: 920px;
    margin: 0 auto 70px;
}

.ba-badge {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 20px;
    color: var(--e-global-color-primary);
    background: #fff;
    padding: 8px 18px;
    font-weight: 500;
    margin-bottom: 22px;
    box-shadow: -12px 12px 24px rgba(221, 139, 24, 0.35);
}

.ba-title {
    font-family: var(--font-body);
    font-size: 42px;
    font-weight: 400;
    color: var(--e-global-color-primary);
    line-height: 1.2;
    margin-bottom: 22px;
}

.ba-desc {
    font-family: var(--font-body);
    max-width: 560px;
    margin: 0 auto;
    font-size: 20px;
    line-height: 1.45;
    color: #7A7A7A;
}

.ba-comparison-grid {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 42px;
    align-items: start;
}

.ba-comparison-card {
    position: relative;
}

.comparison-slider {
    position: relative;
    width: 100%;
    height: 458px;
    overflow: hidden;
    background: #ddd;
    cursor: ew-resize;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.08);
}

.comparison-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    user-select: none;
    pointer-events: none;
}

.comparison-before {
    z-index: 1;
}

.comparison-after-wrapper {
    position: absolute;
    inset: 0;
    width: 50%;
    overflow: hidden;
    z-index: 2;
}

.comparison-after {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comparison-range {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: ew-resize;
    z-index: 20;
}

.comparison-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: rgba(255, 255, 255, 0.95);
    transform: translateX(-50%);
    z-index: 10;
    pointer-events: none;
}

.comparison-handle {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 28px;
    height: 56px;
    border: 3px solid rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.16);
    transform: translate(-50%, -50%);
    z-index: 12;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 13px;
    pointer-events: none;
}

.comparison-label {
    position: absolute;
    top: 18px;
    z-index: 13;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #fff;
    background: rgba(11, 11, 11, 0.62);
    padding: 6px 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.comparison-label-before {
    left: 16px;
}

.comparison-label-after {
    right: 16px;
}

.comparison-slider:hover .comparison-label {
    opacity: 1;
}

.ba-card-info {
    padding: 24px 16px 0;
}

.ba-card-info h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    line-height: 1.25;
    color: var(--e-global-color-text);
    margin-bottom: 10px;
}

.ba-card-info p {
    font-family: var(--font-body);
    font-size: 15px;
    color: #666;
    line-height: 1.55;
    max-width: 280px;
    margin: 0 auto;
}

/* Responsive */
@media(max-width: 992px) {
    .about-grid,
    .services-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .main-nav {
        display: none;
    }

    .site-logo {
        width: 180px;
        height: 68px;
    }

    .about-img-overlap-container {
        width: 60%;
        right: 10%;
    }

    .about-images {
        padding: 0 20px 80px 20px;
        max-width: 600px;
        margin: 0 auto;
    }

    .flex-header {
        flex-direction: column;
        text-align: center;
    }

    .process-col:first-child .last-line {
        display: block;
    }

    .why-choose-section {
        padding: 85px 0 0;
    }

    .why-choose-container {
        max-width: 100%;
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .why-choose-right {
        padding-left: 0;
    }

    .why-title {
        font-size: 38px;
        margin-bottom: 50px;
    }

    .why-main-image-wrapper {
        width: 100%;
        height: 430px;
        margin-left: 0;
        margin-bottom: -70px;
    }

    .why-intro {
        margin: 0 auto 65px auto;
        text-align: center;
    }

    .why-features-grid {
        column-gap: 40px;
        row-gap: 45px;
    }

    .before-after-section {
        padding-top: 145px;
    }

    .ba-title {
        font-size: 36px;
    }

    .ba-comparison-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        gap: 52px;
    }

    .comparison-slider {
        height: 560px;
    }
}

@media(max-width: 768px) {
    .container {
        padding: 0 18px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-section {
        padding: 110px 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        max-width: 500px;
        margin: 0 auto;
    }

    .why-choose-section {
        padding: 70px 0 0;
    }

    .why-title {
        font-size: 34px;
    }

    .why-main-image-wrapper {
        height: 380px;
    }

    .why-features-grid {
        grid-template-columns: 1fr;
    }

    .why-feature {
        max-width: 320px;
    }

    .why-intro {
        font-size: 18px;
    }

    .ba-title {
        font-size: 32px;
    }

    .ba-desc {
        font-size: 17px;
    }

    .comparison-slider {
        height: 520px;
    }
}

@media(max-width: 480px) {
    .btn-quote {
        padding: 10px 16px;
        font-size: 14px;
    }

    .site-logo {
        width: 145px;
        height: 58px;
    }

    .hero-title {
        font-size: 34px;
    }

    .hero-desc {
        font-size: 17px;
    }

    .ba-comparison-grid {
        gap: 44px;
    }

    .comparison-slider {
        height: 460px;
    }
}
/* Gallery Strip Carousel */
.gallery-strip-section {
    position: relative;
    width: 100%;
    background: #fff;
    overflow: hidden;
    padding: 0;
    z-index: 3;
}

.gallery-strip-viewport {
    width: 100%;
    overflow: hidden;
    padding: 0;
}

.gallery-strip-track {
    --gallery-gap: 10px;
    display: flex;
    width: max-content;
    gap: var(--gallery-gap);
    animation: galleryStripMove 42s linear infinite;
    will-change: transform;
}

.gallery-strip-section:hover .gallery-strip-track {
    animation-play-state: paused;
}

.gallery-strip-group {
    display: flex;
    gap: var(--gallery-gap);
    flex-shrink: 0;
}

.gallery-strip-item {
    width: 300px;
    height: 245px;
    flex: 0 0 auto;
    overflow: hidden;
    background: #ddd;
    margin: 0;
    position: relative;
}

.gallery-strip-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transform: scale(1.01);
    transition: transform 0.7s ease, filter 0.7s ease;
}

.gallery-strip-item:hover img {
    transform: scale(1.08);
    filter: saturate(1.08) contrast(1.04);
}

@keyframes galleryStripMove {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(calc(-50% - 5px), 0, 0);
    }
}

/* Reviews Section */
.reviews-section {
    position: relative;
    overflow: hidden;
    background-image:
        linear-gradient(rgba(24, 16, 11, 0.14), rgba(24, 16, 11, 0.14)),
        url('img/reviews-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    z-index: 2;
}

.reviews-layout {
    display: grid;
    grid-template-columns: minmax(420px, 47%) 1fr;
    min-height: 760px;
}

.reviews-visual {
    position: relative;
    min-height: 760px;
    overflow: hidden;
    z-index: 2;
}

.reviews-main-img {
    width: 100%;
    height: 100%;
    min-height: 760px;
    display: block;
    object-fit: cover;
    object-position: center;
    filter: saturate(0.96) contrast(1.03);
}

.reviews-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.06), rgba(0,0,0,0.16));
    pointer-events: none;
    z-index: 2;
}

/* White staircase effect */
.reviews-stairs {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 560px;
    height: 270px;
    z-index: 5;
    pointer-events: none;
}

.reviews-stairs span {
    position: absolute;
    bottom: 0;
    display: block;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 18px -18px 45px rgba(255, 255, 255, 0.18);
}

.reviews-stairs span::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(255,255,255,0.78), rgba(232,226,215,0.18));
}

.reviews-stairs span:nth-child(1) {
    left: 0;
    width: 155px;
    height: 210px;
}

.reviews-stairs span:nth-child(2) {
    left: 130px;
    width: 145px;
    height: 160px;
}

.reviews-stairs span:nth-child(3) {
    left: 240px;
    width: 150px;
    height: 110px;
}

.reviews-stairs span:nth-child(4) {
    left: 350px;
    width: 150px;
    height: 68px;
}

.reviews-stairs span:nth-child(5) {
    left: 455px;
    width: 125px;
    height: 36px;
}

.reviews-content {
    position: relative;
    min-height: 760px;
    display: flex;
    align-items: center;
    padding: 90px 7vw 80px 78px;
    z-index: 3;
}

.reviews-inner {
    width: 100%;
    max-width: 720px;
}

.reviews-badge {
    display: inline-block;
    position: relative;
    font-family: var(--font-body);
    font-size: 20px;
    line-height: 1.2;
    color: var(--e-global-color-4a43552);
    font-weight: 700;
    padding: 13px 20px 17px 20px;
    margin-bottom: 24px;
    background: rgba(0, 0, 0, 0.12);
    box-shadow: -10px 10px 20px rgba(221, 139, 24, 0.55);
}

.reviews-badge::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 245px;
    max-width: 100%;
    height: 3px;
    background: var(--e-global-color-1739a3c);
    box-shadow: 0 0 20px rgba(221, 139, 24, 0.95);
}

.reviews-title {
    font-family: var(--font-body);
    font-size: 42px;
    font-weight: 400;
    color: #fff;
    line-height: 1.08;
    letter-spacing: -0.7px;
    max-width: 690px;
    margin: 0 0 34px 0;
}

.reviews-slider {
    width: 100%;
    max-width: 640px;
    position: relative;
}

.reviews-card-frame {
    position: relative;
    min-height: 342px;
}

.review-card {
    position: absolute;
    inset: 0;
    min-height: 342px;
    background: var(--e-global-color-4a43552);
    color: #0B0B0B;
    padding: 38px 58px 34px;
    border-radius: 3px;
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.18);
    opacity: 0;
    pointer-events: none;
    transform: translateX(34px) scale(0.985);
    transition: opacity 0.42s ease, transform 0.42s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.review-card.is-active {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0) scale(1);
    z-index: 2;
}

.review-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.review-avatar {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: linear-gradient(135deg, #76594B, #C59D79);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 800;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 20px rgba(118, 89, 75, 0.25);
}

.review-header h3 {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 800;
    color: var(--e-global-color-primary);
    line-height: 1.05;
    margin: 0 0 6px 0;
    text-align: left;
}

.review-header span {
    display: block;
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--e-global-color-secondary);
    text-align: left;
}

.review-text {
    max-width: 510px;
    margin: 0 auto 26px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    color: #111;
    line-height: 1.55;
}

.review-stars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    color: var(--e-global-color-1739a3c);
    font-size: 19px;
    margin-bottom: 22px;
}

.review-quote-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--e-global-color-secondary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin: 0 auto;
}

.reviews-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 8px;
    border: none;
    background: #fff;
    color: #0B0B0B;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    cursor: pointer;
    font-size: 20px;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.reviews-arrow:hover {
    background: var(--e-global-color-1739a3c);
    color: #fff;
    transform: translateY(-50%) scale(1.05);
}

.reviews-arrow-prev {
    left: -26px;
}

.reviews-arrow-next {
    right: -26px;
}

.reviews-google-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 242px;
    min-height: 68px;
    margin: 52px 0 0 210px;
    padding: 20px 38px;
    background: var(--e-global-color-1739a3c);
    color: #0B0B0B;
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 800;
    text-decoration: none;
    overflow: hidden;
    transition: color 0.35s ease, transform 0.35s ease;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.12);
}

.reviews-google-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #0B0B0B;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.45s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 1;
}

.reviews-google-btn::after {
    content: '';
    position: absolute;
    right: -6px;
    top: -6px;
    width: 16px;
    height: 16px;
    background: #0B0B0B;
    z-index: 3;
}

.reviews-google-btn span {
    position: relative;
    z-index: 2;
}

.reviews-google-btn:hover {
    color: #fff;
    transform: translateY(-3px);
}

.reviews-google-btn:hover::before {
    transform: scaleX(1);
}

/* Reviews Responsive */
@media(max-width: 1200px) {
    .reviews-content {
        padding-right: 50px;
        padding-left: 58px;
    }

    .reviews-title {
        font-size: 38px;
    }

    .reviews-google-btn {
        margin-left: 160px;
    }
}

@media(max-width: 992px) {
    .gallery-strip-item {
        width: 260px;
        height: 230px;
    }

    .reviews-layout {
        grid-template-columns: 1fr;
    }

    .reviews-visual {
        min-height: 500px;
    }

    .reviews-main-img {
        min-height: 500px;
    }

    .reviews-content {
        min-height: auto;
        padding: 80px 28px 90px;
        justify-content: center;
        text-align: center;
    }

    .reviews-inner {
        max-width: 720px;
        margin: 0 auto;
    }

    .reviews-title {
        margin-left: auto;
        margin-right: auto;
    }

    .reviews-slider {
        margin: 0 auto;
    }

    .reviews-google-btn {
        margin: 46px auto 0;
    }

    .reviews-stairs {
        width: 470px;
        height: 220px;
    }

    .reviews-stairs span:nth-child(1) {
        width: 130px;
        height: 170px;
    }

    .reviews-stairs span:nth-child(2) {
        left: 108px;
        width: 125px;
        height: 130px;
    }

    .reviews-stairs span:nth-child(3) {
        left: 205px;
        width: 130px;
        height: 90px;
    }

    .reviews-stairs span:nth-child(4) {
        left: 305px;
        width: 125px;
        height: 55px;
    }

    .reviews-stairs span:nth-child(5) {
        left: 395px;
        width: 90px;
        height: 30px;
    }
}

@media(max-width: 768px) {
    .gallery-strip-track {
        animation-duration: 34s;
    }

    .gallery-strip-item {
        width: 220px;
        height: 215px;
    }

    .reviews-visual {
        min-height: 430px;
    }

    .reviews-main-img {
        min-height: 430px;
    }

    .reviews-content {
        padding: 68px 20px 78px;
    }

    .reviews-title {
        font-size: 33px;
        line-height: 1.12;
    }

    .reviews-badge {
        font-size: 18px;
    }

    .reviews-card-frame {
        min-height: 390px;
    }

    .review-card {
        min-height: 390px;
        padding: 34px 34px 32px;
    }

    .review-header h3 {
        font-size: 25px;
    }

    .review-text {
        font-size: 15px;
    }

    .reviews-arrow {
        width: 45px;
        height: 45px;
        font-size: 17px;
    }

    .reviews-arrow-prev {
        left: -10px;
    }

    .reviews-arrow-next {
        right: -10px;
    }

    .reviews-stairs {
        width: 360px;
        height: 170px;
    }

    .reviews-stairs span:nth-child(1) {
        width: 100px;
        height: 132px;
    }

    .reviews-stairs span:nth-child(2) {
        left: 82px;
        width: 100px;
        height: 98px;
    }

    .reviews-stairs span:nth-child(3) {
        left: 160px;
        width: 100px;
        height: 68px;
    }

    .reviews-stairs span:nth-child(4) {
        left: 238px;
        width: 90px;
        height: 42px;
    }

    .reviews-stairs span:nth-child(5) {
        left: 302px;
        width: 70px;
        height: 24px;
    }
}

@media(max-width: 480px) {
    .gallery-strip-item {
        width: 185px;
        height: 190px;
    }

    .reviews-visual {
        min-height: 360px;
    }

    .reviews-main-img {
        min-height: 360px;
    }

    .reviews-content {
        padding: 58px 16px 68px;
    }

    .reviews-title {
        font-size: 29px;
    }

    .reviews-card-frame {
        min-height: 430px;
    }

    .review-card {
        min-height: 430px;
        padding: 30px 24px;
    }

    .review-header {
        flex-direction: column;
        gap: 10px;
    }

    .review-header h3,
    .review-header span {
        text-align: center;
    }

    .reviews-arrow-prev {
        left: 8px;
    }

    .reviews-arrow-next {
        right: 8px;
    }

    .reviews-google-btn {
        width: 100%;
        min-width: 0;
    }
}
/* Reviews size refinement - tighter like 808topjob */
.reviews-section {
    padding-top: 72px;
    padding-bottom: 0;
}

.reviews-layout {
    min-height: 620px;
    grid-template-columns: minmax(420px, 47%) 1fr;
}

.reviews-visual {
    min-height: 620px;
}

.reviews-main-img {
    min-height: 620px;
    height: 620px;
    object-position: center center;
}

.reviews-content {
    min-height: 620px;
    padding: 42px 7vw 52px 68px;
    align-items: flex-start;
}

.reviews-inner {
    max-width: 690px;
}

.reviews-badge {
    margin-bottom: 20px;
}

.reviews-title {
    font-size: 39px;
    line-height: 1.08;
    max-width: 670px;
    margin-bottom: 28px;
}

.reviews-slider {
    max-width: 610px;
}

.reviews-card-frame {
    min-height: 306px;
}

.review-card {
    min-height: 306px;
    padding: 30px 54px 28px;
}

.review-header {
    margin-bottom: 18px;
}

.review-avatar {
    width: 54px;
    height: 54px;
    font-size: 16px;
}

.review-header h3 {
    font-size: 28px;
}

.review-text {
    margin-bottom: 22px;
    font-size: 15.5px;
    line-height: 1.5;
}

.review-stars {
    margin-bottom: 18px;
}

.review-quote-icon {
    width: 54px;
    height: 54px;
    font-size: 20px;
}

.reviews-google-btn {
    min-width: 225px;
    min-height: 60px;
    margin: 34px 0 0 190px;
    padding: 17px 34px;
}

/* tighter staircase after reducing the visual column */
.reviews-stairs {
    width: 500px;
    height: 220px;
}

.reviews-stairs span:nth-child(1) {
    width: 135px;
    height: 172px;
}

.reviews-stairs span:nth-child(2) {
    left: 108px;
    width: 128px;
    height: 128px;
}

.reviews-stairs span:nth-child(3) {
    left: 205px;
    width: 130px;
    height: 88px;
}

.reviews-stairs span:nth-child(4) {
    left: 304px;
    width: 120px;
    height: 54px;
}

.reviews-stairs span:nth-child(5) {
    left: 390px;
    width: 96px;
    height: 28px;
}

/* Tablet */
@media(max-width: 992px) {
    .reviews-section {
        padding-top: 56px;
    }

    .reviews-layout {
        min-height: auto;
    }

    .reviews-visual {
        min-height: 430px;
    }

    .reviews-main-img {
        height: 430px;
        min-height: 430px;
    }

    .reviews-content {
        min-height: auto;
        padding: 58px 28px 70px;
        align-items: center;
    }

    .reviews-title {
        font-size: 36px;
    }

    .reviews-card-frame {
        min-height: 330px;
    }

    .review-card {
        min-height: 330px;
    }

    .reviews-google-btn {
        margin: 38px auto 0;
    }
}

/* Mobile */
@media(max-width: 768px) {
    .reviews-section {
        padding-top: 46px;
    }

    .reviews-visual {
        min-height: 360px;
    }

    .reviews-main-img {
        height: 360px;
        min-height: 360px;
    }

    .reviews-content {
        padding: 48px 20px 62px;
    }

    .reviews-title {
        font-size: 31px;
    }

    .reviews-card-frame {
        min-height: 380px;
    }

    .review-card {
        min-height: 380px;
        padding: 30px 30px;
    }
}

@media(max-width: 480px) {
    .reviews-section {
        padding-top: 38px;
    }

    .reviews-visual {
        min-height: 320px;
    }

    .reviews-main-img {
        height: 320px;
        min-height: 320px;
    }

    .reviews-content {
        padding: 42px 16px 56px;
    }

    .reviews-title {
        font-size: 28px;
    }
}
/* Reviews final proportion fix - closer to 808topjob */
.reviews-section {
    padding-top: 72px;
    padding-bottom: 0;
}

.reviews-layout {
    min-height: 570px;
    grid-template-columns: minmax(420px, 47%) 1fr;
}

.reviews-visual {
    min-height: 570px;
}

.reviews-main-img {
    height: 570px;
    min-height: 570px;
    object-position: center center;
}

.reviews-content {
    min-height: 570px;
    padding: 0 7vw 30px 68px;
    align-items: center;
}

.reviews-inner {
    max-width: 670px;
}

.reviews-badge {
    font-size: 19px;
    padding: 12px 18px 15px;
    margin-bottom: 18px;
}

.reviews-title {
    font-size: 36px;
    line-height: 1.08;
    max-width: 640px;
    margin-bottom: 24px;
}

.reviews-slider {
    max-width: 600px;
}

.reviews-card-frame {
    min-height: 270px;
}

.review-card {
    min-height: 270px;
    padding: 24px 48px 22px;
}

.review-header {
    gap: 14px;
    margin-bottom: 14px;
}

.review-avatar {
    width: 50px;
    height: 50px;
    font-size: 15px;
}

.review-header h3 {
    font-size: 27px;
}

.review-header span {
    font-size: 15px;
}

.review-text {
    max-width: 500px;
    margin-bottom: 18px;
    font-size: 15px;
    line-height: 1.48;
}

.review-stars {
    font-size: 18px;
    margin-bottom: 14px;
}

.review-quote-icon {
    width: 48px;
    height: 48px;
    font-size: 19px;
}

.reviews-arrow {
    width: 48px;
    height: 48px;
}

.reviews-arrow-prev {
    left: -24px;
}

.reviews-arrow-next {
    right: -24px;
}

.reviews-google-btn {
    min-width: 220px;
    min-height: 58px;
    margin: 28px 0 0 185px;
    padding: 16px 32px;
}

/* Stair effect: starts higher inside the image and ends with the section */
.reviews-stairs {
    left: 0;
    bottom: -1px;
    width: 500px;
    height: 290px;
}

.reviews-stairs span {
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 18px -18px 45px rgba(255, 255, 255, 0.22);
}

.reviews-stairs span:nth-child(1) {
    left: 0;
    width: 138px;
    height: 255px;
}

.reviews-stairs span:nth-child(2) {
    left: 105px;
    width: 135px;
    height: 205px;
}

.reviews-stairs span:nth-child(3) {
    left: 195px;
    width: 138px;
    height: 150px;
}

.reviews-stairs span:nth-child(4) {
    left: 288px;
    width: 135px;
    height: 96px;
}

.reviews-stairs span:nth-child(5) {
    left: 378px;
    width: 112px;
    height: 48px;
}

/* Prevent heavy paint on scroll */
.reviews-section,
.reviews-layout,
.reviews-visual,
.reviews-content {
    backface-visibility: hidden;
}

.gallery-strip-track {
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
}

/* Tablet */
@media(max-width: 992px) {
    .reviews-section {
        padding-top: 56px;
    }

    .reviews-layout {
        min-height: auto;
    }

    .reviews-visual {
        min-height: 430px;
    }

    .reviews-main-img {
        height: 430px;
        min-height: 430px;
    }

    .reviews-content {
        min-height: auto;
        padding: 54px 28px 66px;
        align-items: center;
    }

    .reviews-title {
        font-size: 34px;
    }

    .reviews-card-frame {
        min-height: 330px;
    }

    .review-card {
        min-height: 330px;
        padding: 30px 36px;
    }

    .reviews-google-btn {
        margin: 36px auto 0;
    }

    .reviews-stairs {
        width: 410px;
        height: 235px;
    }

    .reviews-stairs span:nth-child(1) {
        width: 110px;
        height: 200px;
    }

    .reviews-stairs span:nth-child(2) {
        left: 84px;
        width: 112px;
        height: 156px;
    }

    .reviews-stairs span:nth-child(3) {
        left: 165px;
        width: 112px;
        height: 112px;
    }

    .reviews-stairs span:nth-child(4) {
        left: 244px;
        width: 104px;
        height: 72px;
    }

    .reviews-stairs span:nth-child(5) {
        left: 315px;
        width: 85px;
        height: 38px;
    }
}

/* Mobile */
@media(max-width: 768px) {
    .reviews-section {
        padding-top: 44px;
    }

    .reviews-visual {
        min-height: 350px;
    }

    .reviews-main-img {
        height: 350px;
        min-height: 350px;
    }

    .reviews-content {
        padding: 48px 20px 60px;
    }

    .reviews-title {
        font-size: 30px;
    }

    .reviews-card-frame {
        min-height: 380px;
    }

    .review-card {
        min-height: 380px;
        padding: 30px 30px;
    }
}

@media(max-width: 480px) {
    .reviews-section {
        padding-top: 36px;
    }

    .reviews-visual {
        min-height: 310px;
    }

    .reviews-main-img {
        height: 310px;
        min-height: 310px;
    }

    .reviews-content {
        padding: 42px 16px 54px;
    }

    .reviews-title {
        font-size: 28px;
    }
}
/* Reviews Premium Final Balance - WA Hardwood Pro */
.reviews-section {
    padding-top: 82px;
    padding-bottom: 0;
    background-image:
        linear-gradient(rgba(20, 13, 9, 0.10), rgba(20, 13, 9, 0.10)),
        url('img/reviews-bg.jpg');
    background-size: cover;
    background-position: center;
}

.reviews-layout {
    min-height: 660px;
    grid-template-columns: minmax(430px, 47%) 1fr;
}

.reviews-visual {
    min-height: 660px;
    overflow: hidden;
}

.reviews-main-img {
    height: 660px;
    min-height: 660px;
    object-fit: cover;
    object-position: center center;
    filter: saturate(0.97) contrast(1.04) brightness(0.94);
}

.reviews-visual::after {
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.10),
        rgba(0, 0, 0, 0.20)
    );
}

.reviews-content {
    min-height: 660px;
    padding: 62px 7vw 54px 72px;
    align-items: center;
}

.reviews-inner {
    max-width: 700px;
}

.reviews-badge {
    font-size: 20px;
    padding: 13px 20px 16px;
    margin-bottom: 24px;
    background: rgba(0, 0, 0, 0.16);
    box-shadow: -10px 10px 22px rgba(221, 139, 24, 0.58);
}

.reviews-badge::after {
    width: 250px;
    height: 3px;
    background: var(--e-global-color-1739a3c);
    box-shadow: 0 0 22px rgba(221, 139, 24, 0.95);
}

.reviews-title {
    font-size: 39px;
    line-height: 1.08;
    max-width: 690px;
    margin-bottom: 30px;
    letter-spacing: -0.65px;
}

.reviews-slider {
    max-width: 640px;
}

.reviews-card-frame {
    min-height: 315px;
}

.review-card {
    min-height: 315px;
    padding: 31px 56px 30px;
    background: #FFF4E2;
    box-shadow: 0 24px 52px rgba(0, 0, 0, 0.18);
}

.review-header {
    gap: 16px;
    margin-bottom: 18px;
}

.review-avatar {
    width: 56px;
    height: 56px;
    font-size: 16px;
    background: linear-gradient(135deg, #7A5B4D 0%, #B18A6D 100%);
    box-shadow: 0 10px 24px rgba(70, 42, 27, 0.22);
}

.review-header h3 {
    font-size: 29px;
}

.review-header span {
    font-size: 15.5px;
}

.review-text {
    max-width: 525px;
    margin-bottom: 22px;
    font-size: 15.5px;
    line-height: 1.52;
}

.review-stars {
    font-size: 19px;
    margin-bottom: 18px;
}

.review-quote-icon {
    width: 54px;
    height: 54px;
    font-size: 20px;
}

.reviews-arrow {
    width: 50px;
    height: 50px;
    border-radius: 8px;
}

.reviews-arrow-prev {
    left: -25px;
}

.reviews-arrow-next {
    right: -25px;
}

.reviews-google-btn {
    min-width: 228px;
    min-height: 62px;
    margin: 38px 0 0 195px;
    padding: 17px 34px;
}

/* Premium two-tone staircase */
.reviews-stairs {
    left: 0;
    bottom: -1px;
    width: 560px;
    height: 360px;
    z-index: 6;
}

.reviews-stairs span {
    position: absolute;
    bottom: 0;
    display: block;
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.98) 0%,
        rgba(255, 255, 255, 0.92) 52%,
        rgba(239, 232, 220, 0.86) 100%
    );
    box-shadow:
        22px -22px 48px rgba(255, 255, 255, 0.18),
        inset -18px 18px 38px rgba(230, 220, 205, 0.26);
}

.reviews-stairs span:nth-child(even) {
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.94) 0%,
        rgba(248, 242, 232, 0.88) 56%,
        rgba(228, 218, 204, 0.78) 100%
    );
}

.reviews-stairs span::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.65), rgba(255,255,255,0) 55%),
        linear-gradient(180deg, rgba(255,255,255,0.18), rgba(210,198,181,0.16));
    pointer-events: none;
}

.reviews-stairs span::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 1px;
    height: 100%;
    background: rgba(210, 198, 181, 0.32);
}

.reviews-stairs span:nth-child(1) {
    left: 0;
    width: 158px;
    height: 318px;
}

.reviews-stairs span:nth-child(2) {
    left: 126px;
    width: 154px;
    height: 258px;
}

.reviews-stairs span:nth-child(3) {
    left: 235px;
    width: 154px;
    height: 196px;
}

.reviews-stairs span:nth-child(4) {
    left: 340px;
    width: 148px;
    height: 132px;
}

.reviews-stairs span:nth-child(5) {
    left: 440px;
    width: 118px;
    height: 68px;
}

/* smoother rendering */
.reviews-main-img,
.review-card,
.reviews-stairs span,
.gallery-strip-item img {
    backface-visibility: hidden;
    transform: translateZ(0);
}

/* Tablet */
@media(max-width: 992px) {
    .reviews-section {
        padding-top: 62px;
    }

    .reviews-layout {
        min-height: auto;
        grid-template-columns: 1fr;
    }

    .reviews-visual {
        min-height: 460px;
    }

    .reviews-main-img {
        height: 460px;
        min-height: 460px;
    }

    .reviews-content {
        min-height: auto;
        padding: 62px 28px 74px;
        align-items: center;
    }

    .reviews-title {
        font-size: 35px;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .reviews-badge {
        display: table;
        margin-left: auto;
        margin-right: auto;
    }

    .reviews-slider {
        margin-left: auto;
        margin-right: auto;
    }

    .reviews-card-frame {
        min-height: 345px;
    }

    .review-card {
        min-height: 345px;
        padding: 32px 38px;
    }

    .reviews-google-btn {
        margin: 40px auto 0;
    }

    .reviews-stairs {
        width: 440px;
        height: 280px;
    }

    .reviews-stairs span:nth-child(1) {
        width: 120px;
        height: 238px;
    }

    .reviews-stairs span:nth-child(2) {
        left: 94px;
        width: 122px;
        height: 190px;
    }

    .reviews-stairs span:nth-child(3) {
        left: 184px;
        width: 120px;
        height: 142px;
    }

    .reviews-stairs span:nth-child(4) {
        left: 270px;
        width: 112px;
        height: 92px;
    }

    .reviews-stairs span:nth-child(5) {
        left: 348px;
        width: 86px;
        height: 48px;
    }
}

@media(max-width: 768px) {
    .reviews-section {
        padding-top: 48px;
    }

    .reviews-visual {
        min-height: 370px;
    }

    .reviews-main-img {
        height: 370px;
        min-height: 370px;
    }

    .reviews-content {
        padding: 52px 20px 64px;
    }

    .reviews-title {
        font-size: 31px;
    }

    .reviews-card-frame {
        min-height: 390px;
    }

    .review-card {
        min-height: 390px;
        padding: 30px 30px;
    }
}

@media(max-width: 480px) {
    .reviews-section {
        padding-top: 38px;
    }

    .reviews-visual {
        min-height: 320px;
    }

    .reviews-main-img {
        height: 320px;
        min-height: 320px;
    }

    .reviews-content {
        padding: 44px 16px 56px;
    }

    .reviews-title {
        font-size: 28px;
    }
}
/* Contact Section */
.contact-section {
    position: relative;
    background: #fff;
    padding: 105px 0 105px;
    overflow: hidden;
    z-index: 2;
}

.contact-container {
    max-width: 1180px;
    display: grid;
    grid-template-columns: minmax(420px, 1fr) minmax(390px, 0.92fr);
    gap: 70px;
    align-items: start;
}

.contact-title {
    font-family: var(--font-heading);
    font-size: 31px;
    line-height: 1.2;
    font-weight: 800;
    color: var(--e-global-color-primary);
    margin-bottom: 18px;
    letter-spacing: -0.3px;
}

.contact-intro {
    max-width: 560px;
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.45;
    color: #0B0B0B;
    margin-bottom: 28px;
}

.contact-form {
    width: 100%;
    max-width: 545px;
}

.form-group {
    width: 100%;
    margin-bottom: 10px;
}

.form-row {
    display: grid;
    grid-template-columns: 0.78fr 1fr;
    gap: 10px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    min-height: 46px;
    background: #fff;
    border: 1px solid var(--e-global-color-primary);
    border-radius: 2px;
    padding: 8px 16px;
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 700;
    color: #0B0B0B;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-form textarea {
    height: 106px;
    resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #6f6f6f;
    opacity: 1;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--e-global-color-1739a3c);
    box-shadow: 0 0 0 3px rgba(221, 139, 24, 0.14);
}

.contact-submit-btn {
    position: relative;
    width: 100%;
    min-height: 42px;
    border: none;
    border-radius: 2px;
    background: var(--e-global-color-secondary);
    color: var(--e-global-color-4a43552);
    font-family: var(--font-heading);
    font-size: 23px;
    font-weight: 800;
    cursor: pointer;
    overflow: hidden;
    transition: color 0.3s ease, transform 0.3s ease;
}

.contact-submit-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #0B0B0B;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.45s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 1;
}

.contact-submit-btn span {
    position: relative;
    z-index: 2;
}

.contact-submit-btn:hover {
    color: #fff;
    transform: translateY(-2px);
}

.contact-submit-btn:hover::before {
    transform: scaleX(1);
}

.contact-info-side {
    padding-top: 28px;
}

.contact-info-item {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 18px;
    align-items: start;
    margin-bottom: 24px;
}

.contact-icon {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--e-global-color-primary);
    font-size: 30px;
    line-height: 1;
}

.contact-info-content h3 {
    font-family: var(--font-heading);
    font-size: 30px;
    line-height: 1.05;
    font-weight: 800;
    color: var(--e-global-color-secondary);
    margin: 0 0 4px;
}

.contact-info-content h3 a,
.contact-info-content p a {
    color: inherit;
    text-decoration: none;
    transition: color 0.25s ease;
}

.contact-info-content h3 a:hover,
.contact-info-content p a:hover {
    color: var(--e-global-color-1739a3c);
}

.contact-info-content p {
    font-family: var(--font-body);
    font-size: 20px;
    line-height: 1.45;
    color: #0B0B0B;
    margin: 0;
}

.contact-divider {
    width: 100%;
    max-width: 514px;
    height: 10px;
    background: var(--e-global-color-primary);
    margin: 30px 0 38px 8px;
}

/* Contact Responsive */
@media(max-width: 992px) {
    .contact-section {
        padding: 82px 0 90px;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 45px;
        max-width: 720px;
    }

    .contact-form {
        max-width: 100%;
    }

    .contact-info-side {
        padding-top: 0;
    }

    .contact-divider {
        max-width: 100%;
        margin-left: 0;
    }
}

@media(max-width: 768px) {
    .contact-section {
        padding: 70px 0 78px;
    }

    .contact-title {
        font-size: 28px;
    }

    .contact-intro {
        font-size: 17px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-info-content h3 {
        font-size: 26px;
    }

    .contact-info-content p {
        font-size: 18px;
    }
}

@media(max-width: 480px) {
    .contact-section {
        padding: 58px 0 68px;
    }

    .contact-title {
        font-size: 25px;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        font-size: 16px;
    }

    .contact-submit-btn {
        font-size: 20px;
    }

    .contact-info-item {
        grid-template-columns: 36px 1fr;
        gap: 14px;
    }

    .contact-icon {
        font-size: 26px;
    }

    .contact-info-content h3 {
        font-size: 24px;
    }
}
/* Footer - 808topjob Inspired / WA Hardwood Pro */
.wa-footer {
    position: relative;
    background: #25272A;
    color: var(--e-global-color-4a43552);
    overflow: hidden;
    z-index: 2;
}

.wa-footer-main {
    position: relative;
    background: #25272A;
    padding: 76px 0 70px;
}

.wa-footer-main::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.10) 0%,
            rgba(0, 0, 0, 0.10) 27%,
            rgba(255, 255, 255, 0.018) 27%,
            rgba(255, 255, 255, 0.018) 43%,
            rgba(0, 0, 0, 0.08) 43%,
            rgba(0, 0, 0, 0.08) 58%,
            rgba(255, 255, 255, 0.015) 58%,
            rgba(255, 255, 255, 0.015) 100%
        );
    pointer-events: none;
}

.wa-footer-container {
    position: relative;
    z-index: 2;
    max-width: 1120px;
    display: grid;
    grid-template-columns: 1.05fr 0.82fr 1.02fr;
    column-gap: 92px;
    align-items: start;
}

.wa-footer-brand {
    text-align: center;
    max-width: 330px;
}

.wa-footer-logo-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    margin-bottom: 18px;
}

.wa-footer-logo {
    width: 230px;
    max-width: 100%;
    height: 150px;
    object-fit: contain;
    display: block;
}

.wa-footer-tagline {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.45;
    font-weight: 700;
    color: var(--e-global-color-4a43552);
    margin: 0 auto 28px;
}

.wa-footer-socials {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.wa-footer-socials a {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--e-global-color-accent);
    color: #0B0B0B;
    font-size: 18px;
    text-decoration: none;
    border-radius: 0;
    box-shadow: none;
    transition:
        background-color 0.3s ease,
        color 0.3s ease,
        border-radius 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.wa-footer-socials a:hover {
    background: var(--e-global-color-4a43552);
    color: var(--e-global-color-secondary);
    border-radius: 50%;
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
}

.wa-footer-links-block h3,
.wa-footer-location h3 {
    font-family: var(--font-heading);
    font-size: 32px;
    line-height: 1.15;
    font-weight: 500;
    color: var(--e-global-color-accent);
    margin: 0 0 30px;
}

.wa-footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.wa-footer-links li {
    margin-bottom: 18px;
}

.wa-footer-links a {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.35;
    font-weight: 700;
    color: var(--e-global-color-4a43552);
    text-decoration: none;
    transition: color 0.25s ease, transform 0.25s ease;
}

.wa-footer-links a:hover {
    color: var(--e-global-color-accent);
    transform: translateX(4px);
}

.wa-footer-location {
    min-width: 0;
}

.wa-footer-map {
    width: 100%;
    max-width: 351px;
    height: 245px;
    background: rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.wa-footer-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    filter: saturate(0.95) contrast(0.98);
}

.wa-footer-bottom {
    background: #25272A;
    padding: 18px 0 24px;
}

.wa-footer-bottom-container {
    max-width: 1120px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    border-top: 1px solid rgba(255, 244, 226, 0.14);
    padding-top: 18px;
}

.wa-footer-bottom p {
    margin: 0;
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.5;
    font-weight: 700;
    color: var(--e-global-color-4a43552);
}

.wa-footer-bottom p:last-child {
    text-align: right;
}

/* Footer Responsive */
@media(max-width: 992px) {
    .wa-footer-main {
        padding: 68px 0 64px;
    }

    .wa-footer-main::before {
        background:
            linear-gradient(
                180deg,
                rgba(0, 0, 0, 0.10) 0%,
                rgba(0, 0, 0, 0.10) 100%
            );
    }

    .wa-footer-container {
        max-width: 720px;
        grid-template-columns: 1fr;
        row-gap: 52px;
        text-align: center;
    }

    .wa-footer-brand {
        max-width: 100%;
        margin: 0 auto;
    }

    .wa-footer-links-block h3,
    .wa-footer-location h3 {
        font-size: 30px;
        margin-bottom: 24px;
    }

    .wa-footer-map {
        max-width: 520px;
        height: 300px;
        margin: 0 auto;
    }

    .wa-footer-bottom-container {
        max-width: 720px;
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .wa-footer-bottom p:last-child {
        text-align: center;
    }
}

@media(max-width: 768px) {
    .wa-footer-main {
        padding: 58px 0 56px;
    }

    .wa-footer-container {
        row-gap: 44px;
    }

    .wa-footer-logo {
        width: 205px;
        height: 130px;
    }

    .wa-footer-tagline {
        font-size: 16px;
    }

    .wa-footer-links-block h3,
    .wa-footer-location h3 {
        font-size: 28px;
    }

    .wa-footer-links li {
        margin-bottom: 14px;
    }

    .wa-footer-map {
        height: 270px;
    }
}

@media(max-width: 480px) {
    .wa-footer-main {
        padding: 50px 0 50px;
    }

    .wa-footer-logo {
        width: 185px;
        height: 112px;
    }

    .wa-footer-socials a {
        width: 48px;
        height: 48px;
        font-size: 17px;
    }

    .wa-footer-links-block h3,
    .wa-footer-location h3 {
        font-size: 26px;
    }

    .wa-footer-links a {
        font-size: 16px;
    }

    .wa-footer-map {
        height: 240px;
    }

    .wa-footer-bottom p {
        font-size: 13px;
    }
}