﻿
:root {
    --primary: #004E7C;
    --primary-dark: #06456d;
    --primary-soft: #7ea5c3;
    --accent: #0e83bd;
    --bg: #ffffff;
    --surface: rgba(255, 255, 255, 0.78);
    --text: #23303d;
    --muted: #616b76;
    --line: #d8dde3;
    --shadow: 0 18px 44px rgba(15, 43, 69, 0.12);
    --radius-xl: 32px;
    --radius-lg: 22px;
    --radius-md: 16px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
}

a {
    color: #7CA9C6;
    text-decoration: none;
}
detelsh {
    margin: 12px 0 6px;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 600;
    color: #111;
}
button, input {
    font: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(100% - 32px, var(--container));
    margin: 0 auto;
}

.hero-section {
    position: relative;
    width: 100%;
    min-height: 591px;
    overflow: hidden;
    background: url("../img/banner.jpg") center center / cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 84.27deg, #ffffff 27.85%, rgba(213, 213, 213, 0.702807) 61.62%, rgba(115, 115, 115, 0) 77.55% );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1440px;
    min-height: 591px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 40px 80px;
}

.hero-box {
    max-width: 760px;
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 30px;
    padding: 50px 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

    .hero-box h1 {
        margin: 0 0 20px;
        font-family: 'Poppins', sans-serif;
        font-weight: 700;
        font-size: 58px;
        line-height: 1.2;
        color: #07578b;
    }

    .hero-box p {
        margin: 0 0 28px;
        font-family: 'Poppins', sans-serif;
        font-weight: 400;
        font-size: 20px;
        line-height: 1.7;
        color: #5f6670;
    }

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 210px;
    height: 58px;
    padding: 0 30px;
    background: #07578b;
    color: #fff;
    text-decoration: none;
    border-radius: 40px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 18px;
    transition: 0.3s ease;
}

    .hero-btn:hover {
        background: #06456d;
    }

@media (max-width: 992px) {
    .hero-section,
    .hero-content {
        min-height: 500px;
    }

    .hero-content {
        padding: 30px 30px;
    }

    .hero-box {
        max-width: 100%;
        padding: 35px 25px;
        border-radius: 22px;
    }

        .hero-box h1 {
            font-size: 40px;
        }

        .hero-box p {
            font-size: 17px;
        }
}

@media (max-width: 576px) {
    .hero-section,
    .hero-content {
        min-height: 420px;
    }

    .hero-content {
        padding: 20px 16px;
    }

    .hero-box {
        padding: 24px 18px;
        border-radius: 18px;
    }

        .hero-box h1 {
            font-size: 28px;
            line-height: 1.3;
        }

        .hero-box p {
            font-size: 15px;
            line-height: 1.6;
        }

    .hero-btn {
        min-width: 170px;
        height: 50px;
        font-size: 15px;
    }
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: var(--primary);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.navbar {
    display: flex;
    align-items: center;
    gap: 24px;
    height: 106px;
    width: 1240.861083984375px;
}

.brand {
    width: 195px;
    height: 71px;
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.brand-mark {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    position: relative;
    background: radial-gradient(circle at 30% 30%, #ffffff 0 18%, #dbe8f2 19%, #8cb8d2 34%, #096ea6 35%, #0d8fd0 52%, #0a5e8f 64%, #5e6269 65%, #b6bec7 76%, #eef3f7 100%);
    box-shadow: inset 0 0 0 6px rgba(255,255,255,0.12), 0 8px 18px rgba(0, 0, 0, 0.12);
}

    .brand-mark::before,
    .brand-mark::after {
        content: "";
        position: absolute;
        inset: 9px;
        border-radius: 50%;
        background: var(--primary);
        transform: rotate(16deg);
    }

    .brand-mark::after {
        inset: 17px;
        background: #ffffff;
        opacity: 0.95;
    }

.brand-name {
    color: #fff;
    font-weight: 800;
    letter-spacing: 1px;
    font-size: 2.3rem;
    line-height: 1;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-left: 8px;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 500;
}

    .nav-links a.active,
    .nav-links a:hover {
        color: #fff;
    }

.nav-right {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 16px;
}

.search-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: min(100%, 400px);
    width: 400px;
    background: #fff;
    border-radius: 999px;
    padding: 14px 20px;
    color: #8090a0;
}

    .search-bar input {
        border: 0;
        outline: none;
        width: 100%;
        background: transparent;
        color: #51606f;
    }
.product-card h3 a {
    color: #000 !important;
    text-decoration: none;
}

.icon-btn {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #7CA9C6;
    background: transparent;
    border: 0;
    cursor: pointer;
}

    .icon-btn:hover {
        background: rgba(255,255,255,0.12);
        color: #fff;
    }

.menu-toggle {
    display: none;
}

.mobile-menu-panel,
.mobile-menu-top,
.mobile-menu-list {
    display: none;
}



.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 860px) minmax(320px, 1fr);
    align-items: center;
    gap: 10px;
    min-height: 520px;
}

.glass-card {
    max-width: 860px;
    padding: 48px 36px 30px;
    background: rgba(255, 255, 255, 0.58);
    border: 1px solid rgba(255,255,255,0.55);
    box-shadow: var(--shadow);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(14px);
}

    .glass-card h1 {
        margin: 0 0 18px;
        font-size: clamp(2.4rem, 4vw, 4rem);
        line-height: 1.18;
        letter-spacing: -0.03em;
        color: var(--primary);
    }

    .glass-card p {
        margin: 0 0 26px;
        font-size: clamp(1rem, 1.4vw, 1.18rem);
        color: #66717d;
        max-width: 760px;
    }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 188px;
    padding: 15px 28px;
    border-radius: 999px;
    border: 0;
    cursor: pointer;
    font-weight: 600;
    transition: transform 0.2s ease, background 0.2s ease;
}

    .btn:hover {
        transform: translateY(-1px);
    }

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 12px 24px rgba(7, 87, 139, 0.18);
}

    .btn-primary:hover {
        background: var(--primary-dark);
    }

.btn-secondary {
    background: #0a5f95;
    color: #fff;
}

.hero-scene {
    position: relative;
    min-height: 520px;
    width: 100%;
}

.house-wrap {
    position: absolute;
    right: -10px;
    bottom: 0;
    width: min(100%, 580px);
    aspect-ratio: 1.08 / 0.8;
}

.house-ground {
    position: absolute;
    left: 10%;
    right: 0;
    bottom: 0;
    height: 22%;
    border-radius: 120px 0 0 0;
    background: linear-gradient(180deg, #8aa378 0%, #6d835d 45%, #55684a 100%);
    clip-path: polygon(0 48%, 100% 0, 100% 100%, 0 100%);
    opacity: 0.9;
}

.house-main {
    position: absolute;
    right: 10%;
    bottom: 17%;
    width: 63%;
    height: 42%;
    background: linear-gradient(180deg, #756a61 0%, #61564f 100%);
    border-radius: 8px 8px 0 0;
    box-shadow: 0 24px 30px rgba(63, 51, 42, 0.15);
}

    .house-main::before {
        content: "";
        position: absolute;
        inset: 0;
        background: repeating-linear-gradient( 180deg, rgba(255,255,255,0.28) 0 2px, rgba(255,255,255,0) 2px 28px );
        opacity: 0.32;
    }

.roof {
    position: absolute;
    right: 7%;
    bottom: 58%;
    width: 70%;
    height: 10%;
    background: linear-gradient(180deg, #5b524c 0%, #4a433f 100%);
    clip-path: polygon(0 100%, 6% 32%, 100% 0, 100% 78%);
    border-radius: 8px 12px 0 0;
}

.glass-wing {
    position: absolute;
    left: 8%;
    bottom: 17%;
    width: 50%;
    height: 48%;
    background: linear-gradient(180deg, rgba(255,255,255,0.54) 0%, rgba(220,231,240,0.68) 100%);
    border: 1px solid rgba(255,255,255,0.8);
    box-shadow: inset 0 0 0 2px rgba(255,255,255,0.2);
}

.window-row {
    position: absolute;
    left: 18%;
    right: 18%;
    top: 16%;
    height: 16%;
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(3, 1fr);
}

    .window-row span,
    .window-stack span {
        background: linear-gradient(180deg, #d7e1ea 0%, #9aa8b5 100%);
        border: 1px solid rgba(255,255,255,0.6);
    }

.window-stack {
    position: absolute;
    right: 14%;
    top: 20%;
    width: 12%;
    height: 30%;
    display: grid;
    gap: 8px;
    grid-template-rows: repeat(2, 1fr);
}

.garage {
    position: absolute;
    right: 4%;
    bottom: 0;
    width: 22%;
    height: 64%;
    background: linear-gradient(180deg, #e2d7c7 0%, #c6bba9 100%);
    box-shadow: inset -22px 0 0 rgba(0,0,0,0.12);
}

.landscape {
    position: absolute;
    left: 0;
    right: 8%;
    bottom: 7%;
    display: flex;
    gap: 12px;
    align-items: flex-end;
}

.shrub {
    width: 44px;
    height: 28px;
    border-radius: 40px 40px 12px 12px;
    background: radial-gradient(circle at 50% 30%, #90a96d 0%, #607652 70%, #506347 100%);
    box-shadow: 0 8px 18px rgba(80, 99, 71, 0.15);
}

.tree,
.tree::before,
.tree::after {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 45% 35%, #46634d 0%, #2e4130 68%, #243529 100%);
}

.tree {
    width: 112px;
    height: 112px;
    top: 10%;
    right: 4%;
}

    .tree::before,
    .tree::after {
        content: "";
        width: 82px;
        height: 82px;
        top: 38px;
    }

    .tree::before {
        left: -32px;
    }

    .tree::after {
        right: -18px;
    }

.tree-small {
    position: absolute;
    width: 84px;
    height: 84px;
    top: 22%;
    right: 22%;
    border-radius: 50%;
    background: radial-gradient(circle at 45% 35%, #546f49 0%, #39503a 68%, #2c402d 100%);
}

.section {
    padding: 78px 0;
}

.section-title {
    margin: 0 0 8px;
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    line-height: 1.12;
    color: var(--primary);
    letter-spacing: -0.03em;
}

.section-subtitle {
    margin: 0 0 14px;
    font-size: clamp(1.2rem, 2vw, 1.9rem);
    color: #5c6671;
    font-weight: 500;
}

.under-line {
    width: min(100%, 560px);
    height: 4px;
    background: #d7dadd;
    border-radius: 999px;
    margin-bottom: 18px;
}

.two-col {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 44px;
    align-items: center;
}

.body-copy {
    font-size: 1.08rem;
    color: #26313a;
    max-width: 720px;
}

.illustration-card,
.portrait-card,
.video-frame {
    border-radius: 24px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.question-art {
    width: min(100%, 430px);
    margin-inline: auto;
    aspect-ratio: 0.82;
    position: relative;
}


.feature-video {
    padding-top: 20px;
}

.video-frame {
    background: linear-gradient(180deg, #565656 0%, #444444 100%);
    min-height: 430px;
    position: relative;
    display: grid;
    place-items: center;
    padding: 24px;
}




.services-header {
    margin-top: 26px;
    margin-bottom: 26px;
}

    .services-header p {
        margin: 8px 0 0;
        color: #5e6672;
        font-size: 1.18rem;
        max-width: 940px;
    }

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.service-card {
    min-height: 136px;
    padding: 24px;
    background: #0f7fb6;
    color: #fff;
    border-radius: 14px;
    display: grid;
    place-items: center;
    text-align: center;
    font-size: clamp(1.35rem, 1.8vw, 1.75rem);
    line-height: 1.45;
    box-shadow: 0 18px 24px rgba(15,127,182,0.12);
}



.eyebrow {
    font-size: clamp(2rem, 3vw, 3.2rem);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #5d646d;
    margin: 0 0 10px;
    font-weight: 300;
}

.headline-stack {
    margin: 0;
    color: var(--primary);
    font-weight: 700;
    line-height: 1.2;
    font-size: clamp(2rem, 3.6vw, 3.2rem);
}



.author {
    display: flex;
    align-items: center;
    gap: 12px;
    position: absolute;
    left: 26px;
    right: 26px;
    bottom: 24px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, #6a8795 0%, #3f5e6f 72%, #203240 100%);
}

.author strong {
    display: block;
    color: #29333a;
    font-size: 0.96rem;
}

.author span {
    color: #80888f;
    font-size: 0.84rem;
}

.impact-grid {
    display: grid;
    grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
    gap: 56px;
    align-items: start;
}

.portrait-card {
    aspect-ratio: 0.95;
    background: url('../images/contact.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 34px;
    box-shadow: var(--shadow);
}

.impact-copy h3 {
    margin: 18px 0 16px;
    font-size: clamp(2.2rem, 4vw, 4rem);
    line-height: 1.25;
    letter-spacing: -0.03em;
    color: var(--primary);
}

.impact-copy .thanks {
    margin: 0;
    font-size: clamp(2.6rem, 4vw, 4.2rem);
    color: var(--primary);
    font-weight: 700;
    line-height: 1.15;
}

.cta-band {
    margin-top: 18px;
    background: var(--primary-soft);
    color: #fff;
    text-align: center;
    padding: 70px 20px;
}

    .cta-band h2 {
        margin: 0 0 10px;
        font-size: clamp(2rem, 4vw, 3.7rem);
        line-height: 1.15;
    }

    .cta-band p {
        margin: 0 0 28px;
        font-size: clamp(1.15rem, 2vw, 1.9rem);
        letter-spacing: 0.28em;
        text-transform: lowercase;
    }

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.site-footer {
    background: var(--primary);
    color: #fff;
}

.footer-top {
    padding: 58px 0 36px;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(180px, 0.55fr) minmax(220px, 0.65fr);
    gap: 48px;
}

.footer-brand {
    max-width: 520px;
}

    .footer-brand .brand {
        margin-bottom: 18px;
    }

    .footer-brand p,
    .footer-links a,
    .footer-contact a {
        color: rgba(255,255,255,0.9);
    }

    .footer-brand p {
        margin: 0;
        font-size: 0.98rem;
        letter-spacing: 0.12em;
    }

.footer-heading {
    margin: 12px 0 18px;
    font-size: 2rem;
    letter-spacing: 0.14em;
    font-weight: 600;
}

.footer-links,
.footer-contact {
    display: grid;
    gap: 8px;
    align-content: start;
}

    .footer-links a::before {
        content: "›";
        margin-right: 12px;
        color: #fff;
    }

.footer-bottom {
    background: #043b5f;
    text-align: center;
    padding: 16px 12px;
    font-size: 0.96rem;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

@media (max-width: 1180px) {
    .hero-grid,
    .two-col,
    .impact-grid,
    .footer-top {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        gap: 28px;
    }

    .glass-card {
        max-width: 100%;
    }

    .house-wrap {
        position: relative;
        margin-left: auto;
        right: 0;
    }

    .hero-scene {
        min-height: 420px;
    }



    .impact-grid {
        gap: 34px;
    }

    .portrait-card {
        max-width: 420px;
    }
}

@media (max-width: 980px) {
    .site-header {
        transition: background 0.28s ease, box-shadow 0.28s ease;
    }

    .navbar {
        gap: 16px;
        min-height: 82px;
        padding: 14px 0;
        position: relative;
        z-index: 130;
    }

    .menu-toggle {
        display: inline-flex;
        margin-left: auto;
        position: relative;
        z-index: 140;
        width: 48px;
        height: 48px;
        flex-shrink: 0;
        color: #fff;
    }

        .menu-toggle svg {
            opacity: 0;
            pointer-events: none;
        }

        .menu-toggle::before,
        .menu-toggle::after {
            content: "";
            position: absolute;
            left: 50%;
            top: 50%;
            width: 24px;
            height: 2.5px;
            border-radius: 999px;
            background: currentColor;
            transform-origin: center;
            transition: transform 0.32s ease, box-shadow 0.32s ease, opacity 0.24s ease;
        }

        .menu-toggle::before {
            transform: translate(-50%, -50%);
            box-shadow: 0 -8px 0 currentColor, 0 8px 0 currentColor;
        }

        .menu-toggle::after {
            transform: translate(-50%, -50%) rotate(0deg);
            opacity: 0;
        }

    .nav-links,
    .nav-right {
        display: none !important;
    }

    .site-header.open {
        background: var(--primary);
        box-shadow: none;
    }

        .site-header.open .menu-toggle::before {
            transform: translate(-50%, -50%) rotate(45deg);
            box-shadow: none;
        }

        .site-header.open .menu-toggle::after {
            opacity: 1;
            transform: translate(-50%, -50%) rotate(-45deg);
        }

    .mobile-menu-top,
    .mobile-close {
        display: none !important;
    }

    .mobile-menu-panel {
        display: block;
        position: fixed;
        top: 82px;
        left: 0;
        right: 0;
        bottom: 0;
        background: #050505;
        z-index: 120;
        overflow-y: auto;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-24px);
        clip-path: inset(0 0 100% 0);
        transition: transform 0.38s ease, clip-path 0.42s ease, opacity 0.24s ease, visibility 0s linear 0.42s;
    }

    .site-header.open .mobile-menu-panel {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
        clip-path: inset(0 0 0 0);
        transition: transform 0.38s ease, clip-path 0.42s ease, opacity 0.24s ease, visibility 0s linear 0s;
    }

    .mobile-menu-list {
        display: block;
        padding: 10px 14px 22px;
    }

        .mobile-menu-list a {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            min-height: 52px;
            padding: 14px 14px;
            color: #fff;
            font-size: 1.15rem;
            font-weight: 600;
            border-bottom: 1px solid rgba(255,255,255,0.08);
        }

            .mobile-menu-list a:hover,
            .mobile-menu-list a:focus-visible {
                background: rgba(255,255,255,0.03);
            }

        .mobile-menu-list .mobile-menu-chevron {
            flex-shrink: 0;
            color: #fff;
            opacity: 0.95;
        }

        .mobile-menu-list .mobile-inline-icon {
            display: inline-flex;
            align-items: center;
            gap: 12px;
        }

        .mobile-menu-list .mobile-wa-dot {
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background: #22c55e;
            box-shadow: 0 0 0 2px rgba(255,255,255,0.08);
        }
}

@media (max-width: 700px) {
    .container {
        width: min(100% - 22px, var(--container));
    }

    .brand-name {
        font-size: 1.9rem;
    }

    .brand-mark {
        width: 54px;
        height: 54px;
    }

    .glass-card {
        padding: 32px 22px 24px;
        border-radius: 24px;
    }

    .hero-scene {
        min-height: 320px;
    }

    .house-wrap {
        width: 100%;
    }

    .question-art {
        max-width: 320px;
    }

    .video-frame {
        min-height: 320px;
    }



    .promo-collage {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 72px 72px repeat(3, 72px);
    }



    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: 112px;
        font-size: 1.24rem;
    }

    .cta-band {
        padding: 54px 18px;
    }

        .cta-band p {
            letter-spacing: 0.12em;
        }

    .footer-heading {
        font-size: 1.55rem;
    }
}

body.menu-open {
    overflow: hidden;
}

.testimonials-section {
    padding: 80px 0;
    background: #f3f4f6;
    font-family: 'Poppins', sans-serif;
}

.testimonials-wrap {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 32px;
    align-items: start;
}

.testimonials-left {
    padding-top: 10px;
}

.testimonials-eyebrow {
    margin: 0 0 14px;
    font-size: clamp(30px, 4vw, 42px);
    line-height: 1;
    letter-spacing: 0.18em;
    color: #5b6168;
    font-weight: 300;
    border-bottom: 4px solid #d6dade;
    padding-bottom: 10px;
}

.testimonials-title {
    margin: 0;
    color: #07578b;
    font-size: clamp(34px, 4.2vw, 58px);
    line-height: 1.22;
    font-weight: 700;
}

.testimonials-slider {
    position: relative;
    min-width: 0;
}

.testimonial-viewport {
    overflow: hidden;
    width: 100%;
}

.testimonial-track {
    display: flex;
    gap: 22px;
    transition: transform 0.55s ease;
    will-change: transform;
}

.testimonial-card {
    flex: 0 0 calc(50% - 11px);
    min-height: 250px;
    background: rgba(255, 255, 255, 0.45);
    border: 1px solid rgba(0, 0, 0, 0.14);
    border-radius: 28px;
    padding: 30px 24px 78px;
    position: relative;
    color: #7f878f;
    box-sizing: border-box;
    backdrop-filter: blur(4px);
}

    .testimonial-card p {
        margin: 0;
        font-size: 14px;
        line-height: 1.75;
    }

.testimonial-author {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 22px;
    display: flex;
    align-items: center;
    gap: 12px;
}

    .testimonial-author img {
        width: 46px;
        height: 46px;
        border-radius: 50%;
        object-fit: cover;
        flex-shrink: 0;
    }

    .testimonial-author strong {
        display: block;
        font-size: 15px;
        line-height: 1.2;
        color: #1d2329;
        font-weight: 700;
    }

    .testimonial-author span {
        display: block;
        font-size: 12px;
        color: #8b9197;
        margin-top: 2px;
    }

.testimonial-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border: none;
    background: transparent;
    color: #c9cdd2;
    font-size: 46px;
    line-height: 1;
    cursor: pointer;
    z-index: 2;
    transition: color 0.25s ease, transform 0.25s ease;
}

    .testimonial-arrow:hover {
        color: #07578b;
    }

.testimonial-arrow-left {
    left: -34px;
}

.testimonial-arrow-right {
    right: -34px;
}

@media (max-width: 1100px) {
    .testimonials-wrap {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .testimonials-left {
        max-width: 420px;
    }

    .testimonial-arrow-left {
        left: -8px;
    }

    .testimonial-arrow-right {
        right: -8px;
    }
}

@media (max-width: 767px) {
    .testimonials-section {
        padding: 60px 0;
    }

    .testimonials-wrap {
        width: min(100% - 22px, 1180px);
    }

    .testimonial-card {
        flex: 0 0 100%;
        min-height: 220px;
        padding: 24px 18px 74px;
        border-radius: 22px;
    }

        .testimonial-card p {
            font-size: 13px;
            line-height: 1.7;
        }

    .testimonial-arrow {
        width: 38px;
        height: 38px;
        font-size: 34px;
        top: calc(100% + 24px);
        transform: none;
    }

    .testimonial-arrow-left {
        left: 0;
    }

    .testimonial-arrow-right {
        right: 0;
    }

    .testimonials-slider {
        padding-bottom: 54px;
    }
}

.intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 370px);
    gap: 44px;
    align-items: start;
}

.intro-image-box {
    width: 100%;
    height: 100%;
    min-height: 380px;
    background: #273247;
    border-radius: 28px;
    overflow: hidden;
    padding: 14px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.intro-side-image {
    width: 100%;
    height: 100%;
    max-height: 352px;
    object-fit: cover;
    border-radius: 14px;
    display: block;
}

@media (max-width: 991px) {
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .intro-image-box {
        min-height: 320px;
    }

    .intro-side-image {
        max-height: 290px;
    }
}

@media (max-width: 576px) {
    .intro-image-box {
        min-height: 250px;
        padding: 10px;
        border-radius: 20px;
    }

    .intro-side-image {
        max-height: 230px;
        border-radius: 12px;
    }
}

.products-showcase {
    padding: 70px 0 40px;
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.products-container {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 34px 38px;
}

.product-card {
    background: #f6f6f6;
    border: 1px solid #b9b9b9;
    border-radius: 6px;
    padding: 14px 10px 12px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
}

.product-image {
    width: 100%;
    aspect-ratio: 1 / 1.15;
    overflow: hidden;
    background: #ddd;
}

    .product-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.product-card h3 {
    margin: 12px 0 6px;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 600;
    color: #111;
}

.product-card .price {
    margin: 0 0 10px;
    font-size: 14px;
    font-weight: 700;
    color: #111;
}

.cart-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 102px;
    height: 26px;
    padding: 0 14px;
    border-radius: 999px;
    background: #07578b;
    color: #fff;
    text-decoration: none;
    font-size: 10px;
    font-weight: 500;
    transition: 0.3s ease;
}

    .cart-btn:hover {
        background: #06456d;
    }

.view-all-wrap {
    text-align: center;
    margin-top: 36px;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 175px;
    height: 40px;
    border: 1px solid #cfcfcf;
    border-radius: 999px;
    background: transparent;
    color: #111;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: 0.3s ease;
}

    .view-all-btn:hover {
        background: #fff;
    }

@media (max-width: 1100px) {
    .products-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .products-showcase {
        padding: 50px 0 30px;
    }

    .products-container {
        width: min(100% - 22px, 1200px);
    }

    .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px;
    }

    .product-card h3 {
        font-size: 14px;
    }

    .view-all-btn {
        width: 150px;
        height: 38px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

.product-details-page {
    padding: 30px 0 60px;
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.product-container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.product-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-bottom: 24px;
    font-size: 14px;
    color: #6d6d6d;
}

    .product-breadcrumb a {
        color: #6d6d6d;
        text-decoration: none;
    }

    .product-breadcrumb strong {
        color: #1a1a1a;
        font-weight: 500;
    }

.product-top {
    display: grid;
    grid-template-columns: minmax(0, 540px) minmax(0, 1fr);
    gap: 32px;
    align-items: start;
    margin-bottom: 48px;
}

.product-gallery {
    display: grid;
    grid-template-columns: 122px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
}

.product-thumbs {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.thumb-item {
    border: 1px solid #2a2a2a;
    border-radius: 18px;
    overflow: hidden;
    padding: 0;
    background: #fff;
    cursor: pointer;
    opacity: 0.9;
}

    .thumb-item.active {
        border-color: #0f8fff;
    }

    .thumb-item img {
        width: 100%;
        height: 130px;
        object-fit: cover;
        display: block;
    }

.product-main-image {
    border: 2px solid #0f8fff;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
}

    .product-main-image img {
        width: 100%;
        height: 420px;
        object-fit: cover;
        display: block;
    }

.product-info h1 {
    margin: 0 0 12px;
    font-size: clamp(34px, 4vw, 56px);
    line-height: 1.1;
    color: #000;
    font-weight: 700;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.stars {
    color: #f1b52e;
    font-size: 28px;
    line-height: 1;
    letter-spacing: 2px;
}

.rating-text {
    color: #4f4f4f;
    font-size: 16px;
}

.product-price-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.new-price {
    font-size: 42px;
    line-height: 1;
    font-weight: 700;
    color: #000;
}

.old-price {
    font-size: 28px;
    color: #b7b7b7;
    font-weight: 700;
    text-decoration: line-through;
}

.discount-badge {
    padding: 6px 14px;
    border-radius: 999px;
    background: #f5dddd;
    color: #ff593d;
    font-size: 22px;
    line-height: 1;
}

.product-short-desc {
    margin: 0 0 12px;
    font-size: 16px;
    line-height: 1.55;
    color: #6e6e6e;
    max-width: 540px;
}

.product-divider {
    height: 1px;
    background: #dddddd;
    margin: 14px 0;
}

.product-colors p,
.payment-section p {
    margin: 0 0 12px;
    font-size: 16px;
    color: #666;
}

.color-list {
    display: flex;
    gap: 12px;
    align-items: center;
}

.color-dot {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 0;
    cursor: pointer;
    position: relative;
}

    .color-dot.active::after {
        content: "✓";
        position: absolute;
        inset: 0;
        display: grid;
        place-items: center;
        color: #fff;
        font-size: 15px;
        font-weight: 700;
    }

.payment-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
}

.payment-box {
    height: 48px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid #dfdfdf;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #1f1f1f;
    font-size: 16px;
}

.visa {
    color: #2347c6;
}

.mastercard {
    color: #ea4028;
    font-size: 24px;
    letter-spacing: -6px;
}

.paypal {
    color: #184a9b;
}

.applepay {
    color: #111;
}

.gpay {
    color: #444;
}

.purchase-row {
    display: grid;
    grid-template-columns: 136px 1fr;
    gap: 18px;
    align-items: center;
    margin-top: 18px;
}

.qty-box {
    display: grid;
    grid-template-columns: 40px 1fr 40px;
    align-items: center;
    height: 52px;
    border-radius: 999px;
    background: #ececec;
    overflow: hidden;
}

    .qty-box button {
        border: 0;
        background: transparent;
        font-size: 34px;
        cursor: pointer;
        line-height: 1;
    }

    .qty-box input {
        border: 0;
        background: transparent;
        text-align: center;
        font-size: 18px;
        width: 100%;
        outline: none;
    }

.add-cart-btn {
    height: 52px;
    border-radius: 999px;
    background: #07578b;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 500;
}

.product-bottom {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 34px;
    align-items: start;
}

.tabs-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-bottom: 1px solid #d8d8d8;
    margin-bottom: 24px;
}

.tab-btn {
    border: 0;
    background: transparent;
    padding: 14px 10px;
    font-size: 18px;
    color: #6d6d6d;
    cursor: pointer;
    position: relative;
}

    .tab-btn.active {
        color: #1a1a1a;
        font-weight: 500;
    }

        .tab-btn.active::after {
            content: "";
            position: absolute;
            left: 14px;
            right: 14px;
            bottom: -1px;
            height: 2px;
            background: #111;
        }

.tab-panel {
    display: none;
}

    .tab-panel.active {
        display: block;
    }

.tab-content-head {
    margin-bottom: 12px;
}

    .tab-content-head h2 {
        margin: 0;
        font-size: 22px;
        color: #111;
        font-weight: 700;
    }

        .tab-content-head h2 span {
            margin-left: 10px;
            font-weight: 400;
            color: #6f6f6f;
        }

.tab-content-body p {
    margin: 0 0 12px;
    color: #666;
    font-size: 18px;
    line-height: 1.2;
}

.review-btn-wrap {
    text-align: right;
    margin-bottom: 18px;
}

.write-review-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 170px;
    height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    background: #07578b;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}

.trending-box {
    border: 1px solid #9f9f9f;
    border-radius: 10px;
    padding: 14px;
    background: transparent;
}

    .trending-box h3 {
        margin: 0 0 14px;
        font-size: 18px;
        color: #111;
        font-weight: 700;
        text-align: center;
    }

.trending-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.trending-card {
    background: #f7f7f7;
    border: 1px solid #b8b8b8;
    border-radius: 4px;
    padding: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

    .trending-card img {
        width: 100%;
        height: 120px;
        object-fit: cover;
        display: block;
    }

    .trending-card h4 {
        margin: 8px 0 4px;
        font-size: 10px;
        line-height: 1.35;
        color: #111;
    }

    .trending-card p {
        margin: 0 0 6px;
        font-size: 10px;
        font-weight: 700;
        color: #111;
    }

    .trending-card a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 72px;
        height: 18px;
        padding: 0 10px;
        border-radius: 999px;
        background: #07578b;
        color: #fff;
        text-decoration: none;
        font-size: 7px;
        font-weight: 500;
    }

.trending-view-all {
    text-align: center;
    margin-top: 14px;
}

    .trending-view-all a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 136px;
        height: 32px;
        border: 1px solid #d2d2d2;
        border-radius: 999px;
        text-decoration: none;
        color: #111;
        font-size: 14px;
        background: transparent;
    }

@media (max-width: 1100px) {
    .product-top,
    .product-bottom {
        grid-template-columns: 1fr;
    }

    .review-btn-wrap {
        text-align: left;
    }
}

@media (max-width: 767px) {
    .product-container {
        width: min(100% - 20px, 1180px);
    }

    .product-details-page {
        padding: 22px 0 40px;
    }

    .product-top {
        gap: 22px;
        margin-bottom: 34px;
    }

    .product-gallery {
        grid-template-columns: 1fr;
    }

    .product-thumbs {
        order: 2;
        flex-direction: row;
        gap: 10px;
    }

    .thumb-item {
        flex: 1;
    }

        .thumb-item img {
            height: 90px;
        }

    .product-main-image {
        order: 1;
    }

        .product-main-image img {
            height: 290px;
        }

    .product-info h1 {
        font-size: 28px;
    }

    .stars {
        font-size: 20px;
    }

    .new-price {
        font-size: 32px;
    }

    .old-price {
        font-size: 22px;
    }

    .discount-badge {
        font-size: 16px;
        padding: 6px 12px;
    }

    .payment-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .purchase-row {
        grid-template-columns: 1fr;
    }

    .add-cart-btn {
        font-size: 18px;
    }

    .tabs-nav {
        grid-template-columns: 1fr;
    }

    .tab-btn {
        text-align: left;
        padding-left: 0;
        padding-right: 0;
    }

        .tab-btn.active::after {
            left: 0;
            right: 0;
        }

    .tab-content-head h2 span {
        display: block;
        margin: 8px 0 0;
    }

    .tab-content-body p {
        font-size: 16px;
        line-height: 1.35;
    }

    .trending-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 520px) {
    .trending-grid {
        grid-template-columns: 1fr;
    }
}
