:root {
    --brand-blue: #15549b;
    --brand-blue-dark: #103f78;
    --brand-teal: #20b8b8;
    --brand-teal-dark: #159697;
    --brand-mint: #5bc3aa;
    --brand-mint-soft: #dff6ef;
    --navy: #103f78;
    --blue: #15549b;
    --blue-dark: #103f78;
    --red: #20b8b8;
    --yellow: #5bc3aa;
    --orange: #5bc3aa;
    --ink: #103f78;
    --muted: #405d70;
    --line: #dce3eb;
    --light: #eef2f6;
    --white: #ffffff;
    --white-soft: #f5f7fa;
    --text-dark: #111111;
    --text-light: #ffffff;
    --text-subtle: #a9c4dd;
    --footer-muted: #aebdd0;
    --radius-sm: 4px;
    --radius-md: 8px;
    --surface: #ffffff;
    --surface-soft: #f8fafc;
    --shadow-sm: 0 8px 22px rgba(2, 17, 32, 0.08);
    --shadow-md: 0 20px 45px rgba(2, 17, 32, 0.16);
    --shadow-lg: 0 30px 70px rgba(2, 17, 32, 0.22);
    --shadow-nav: 0 16px 24px rgba(2, 17, 32, 0.16);
    --section-space: 90px;
    --section-space-sm: 64px;
}

/* Shop */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.cart-trigger {
    width: 24px;
    height: 28px;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--ink);
    cursor: pointer;
}

.cart-count {
    min-width: 16px;
    height: 16px;
    position: absolute;
    top: -4px;
    right: -8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    border-radius: 999px;
    background: var(--red);
    color: var(--navy);
    font-size: 9px;
    font-weight: 900;
}

.shop-hero {
    position: relative;
    overflow: hidden;
    background: var(--brand-mint);
    color: var(--navy);
}

.shop-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.22;
    background-image: radial-gradient(rgba(7, 29, 53, 0.33) 1px, transparent 1px);
    background-size: 18px 18px;
    mask-image: linear-gradient(90deg, #000, transparent 65%);
}

.shop-hero-grid {
    min-height: 530px;
    position: relative;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 70px;
    padding-top: 54px;
    padding-bottom: 58px;
}

.shop-hero-copy {
    position: relative;
    z-index: 2;
}

.shop-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #17344f;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.35px;
    text-transform: uppercase;
}

.shop-eyebrow::before {
    content: "";
    width: 26px;
    height: 2px;
    background: currentColor;
}

.shop-eyebrow.dark {
    color: var(--red);
}

.shop-hero h1 {
    margin: 15px 0 19px;
    color: var(--navy);
    font-size: clamp(42px, 5vw, 64px);
    line-height: 0.98;
    letter-spacing: -2.5px;
}

.shop-hero h1 em {
    color: var(--red);
    font-style: normal;
}

.shop-hero-copy > p {
    max-width: 510px;
    margin: 0 0 28px;
    color: #253d52;
    font-size: 17px;
    line-height: 1.65;
    font-weight: 600;
}

.shop-hero-action {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 0 24px;
    background: var(--navy);
    color: #fff;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.shop-hero-action:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(7, 29, 53, 0.25);
}

.shop-perks {
    display: flex;
    gap: 20px;
    margin-top: 37px;
    color: #2d4357;
    font-size: 11px;
    font-weight: 800;
}

.shop-perks span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.shop-perks i {
    color: var(--red);
}

.shop-hero-visual {
    min-height: 410px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shop-hero-orbit {
    width: 430px;
    height: 430px;
    position: absolute;
    border: 74px solid rgba(255, 255, 255, 0.24);
    border-radius: 50%;
}

.shop-hero-visual img {
    width: 100%;
    height: 390px;
    position: relative;
    z-index: 1;
    object-fit: cover;
    border: 10px solid rgba(255, 255, 255, 0.28);
    border-radius: 220px 16px 16px 220px;
    box-shadow: 0 30px 60px rgba(7, 29, 53, 0.23);
}

.hero-price-tag {
    width: 108px;
    height: 108px;
    position: absolute;
    right: -15px;
    bottom: 16px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 5px solid var(--brand-mint);
    border-radius: 50%;
    background: var(--red);
    color: var(--navy);
    transform: rotate(5deg);
    box-shadow: var(--shadow-md);
}

.hero-price-tag small {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
}

.hero-price-tag strong {
    font-size: 30px;
}

.shop-catalog,
.related-products {
    padding: 78px 0 92px;
    background: #f7f8fa;
}

.catalog-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
}

.catalog-heading h2 {
    margin: 8px 0 0;
    color: var(--navy);
    font-size: 36px;
    line-height: 1.08;
}

.catalog-heading > p {
    max-width: 410px;
    margin: 0;
    color: #607185;
    line-height: 1.65;
}

.catalog-heading > a {
    color: var(--red);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.shop-toolbar {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 34px;
    padding: 12px;
    background: #fff;
    border: 1px solid #e2e7ed;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.category-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.category-tabs a {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    padding: 0 15px;
    border-radius: 4px;
    color: #536579;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    transition: color 0.2s ease, background 0.2s ease;
}

.category-tabs a:hover,
.category-tabs a.active {
    background: var(--navy);
    color: #fff;
}

.product-search {
    min-width: 225px;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 0 13px;
    border-left: 1px solid #e5e9ef;
    color: #7e8b99;
}

.product-search input {
    width: 100%;
    height: 40px;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--navy);
    font-size: 13px;
}

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

.product-card {
    min-width: 0;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e2e7ed;
    border-radius: var(--radius-md);
    box-shadow: 0 9px 24px rgba(7, 29, 53, 0.07);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 38px rgba(7, 29, 53, 0.13);
}

.product-image {
    height: 230px;
    position: relative;
    display: block;
    overflow: hidden;
    background: #e9edf1;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.045);
}

.product-badge {
    position: absolute;
    top: 13px;
    left: 13px;
    z-index: 2;
    padding: 6px 9px;
    border-radius: 3px;
    background: var(--red);
    color: var(--navy);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.55px;
    text-transform: uppercase;
}

.product-view {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 13px 18px;
    background: rgba(7, 29, 53, 0.9);
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    transform: translateY(100%);
    transition: transform 0.25s ease;
}

.product-view i { float: right; }
.product-card:hover .product-view { transform: translateY(0); }

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

.product-category {
    color: var(--red);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.product-card h3 {
    min-height: 43px;
    margin: 7px 0 7px;
    color: var(--navy);
    font-size: 17px;
    line-height: 1.25;
}

.product-card h3 a:hover { color: var(--red); }

.product-rating {
    color: #607185;
    font-size: 11px;
}

.product-rating span {
    color: var(--brand-mint);
    letter-spacing: -1px;
}

.product-rating small { color: #96a1ad; }

.product-card-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 17px;
    padding-top: 14px;
    border-top: 1px solid #edf0f3;
}

.product-price {
    margin: 0;
    color: var(--navy);
    font-size: 19px;
    font-weight: 900;
}

.product-price del,
.detail-price del {
    margin-left: 6px;
    color: #9ba6b1;
    font-size: 12px;
    font-weight: 500;
}

.add-to-cart {
    width: 38px;
    height: 38px;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    background: var(--yellow);
    color: var(--navy);
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.add-to-cart:hover {
    background: var(--red);
    color: var(--navy);
    transform: rotate(8deg) scale(1.05);
}

.shop-empty {
    padding: 70px 20px;
    text-align: center;
    border: 1px dashed #cbd3dc;
    border-radius: var(--radius-md);
    background: #fff;
}

.shop-empty > i { color: var(--yellow); font-size: 44px; }
.shop-empty h2 { margin: 16px 0 8px; color: var(--navy); }
.shop-empty p { margin: 0 0 20px; }
.shop-empty a { color: var(--red); font-weight: 900; }

.shop-support {
    background: var(--brand-blue);
    color: #fff;
}

.shop-support-inner {
    min-height: 190px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.shop-support .shop-eyebrow { color: #d9f8f3; }
.shop-support h2 { margin: 8px 0 5px; color: #fff; font-size: 32px; }
.shop-support p { margin: 0; color: #e8fbf8; }
.shop-support a {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 0 22px;
    background: #fff;
    color: var(--navy);
    border-radius: 4px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

/* Product detail */
.product-breadcrumb {
    padding: 18px 0;
    background: #eef1f4;
    border-bottom: 1px solid #dfe5eb;
    font-size: 11px;
    font-weight: 800;
}

.product-breadcrumb .container { display: flex; align-items: center; gap: 10px; }
.product-breadcrumb i { color: #a3afba; font-size: 8px; }
.product-breadcrumb a:hover { color: var(--red); }

.product-detail-section { padding: 70px 0 84px; background: #fff; }

.product-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.03fr) minmax(0, 0.97fr);
    gap: 65px;
    align-items: start;
}

.product-gallery {
    height: 540px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    background: #edf0f2;
}

.product-gallery img { width: 100%; height: 100%; object-fit: cover; }
.product-info { padding-top: 13px; }
.product-info h1 {
    margin: 10px 0 14px;
    color: var(--navy);
    font-size: 42px;
    line-height: 1.04;
    letter-spacing: -1.25px;
}

.detail-rating { display: flex; align-items: center; gap: 7px; }
.detail-rating small { padding-left: 8px; border-left: 1px solid #d8dee5; }
.detail-price { margin: 27px 0 16px; color: var(--red); font-size: 32px; font-weight: 900; }
.detail-price del { font-size: 17px; }
.product-description { margin: 0; color: #52667b; font-size: 16px; line-height: 1.75; }

.product-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 18px;
    margin: 24px 0 28px;
    padding: 0;
    list-style: none;
}

.product-features li { display: flex; gap: 9px; color: #2e455d; font-size: 13px; font-weight: 700; }
.product-features i { color: #20a36a; }
.product-purchase { display: flex; gap: 12px; }
.quantity-control { width: 95px; display: flex; flex-direction: column; gap: 6px; }
.quantity-control span { color: #718095; font-size: 9px; font-weight: 900; text-transform: uppercase; }
.quantity-control select { height: 50px; padding: 0 12px; border: 1px solid #d7dde4; border-radius: 4px; color: var(--navy); font-weight: 800; }

.detail-add-to-cart {
    width: auto;
    height: 50px;
    flex: 1;
    gap: 10px;
    border-radius: 4px;
    background: var(--red);
    color: var(--navy);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.detail-add-to-cart:hover { background: var(--brand-teal-dark); color: #fff; transform: translateY(-2px); }
.stock-note { margin: 12px 0 0; color: #34765c; font-size: 11px; font-weight: 800; }
.detail-assurances { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 32px; padding-top: 25px; border-top: 1px solid #e3e7ec; }
.detail-assurances span { display: grid; grid-template-columns: 28px 1fr; align-items: center; }
.detail-assurances i { grid-row: 1 / 3; color: var(--yellow); font-size: 20px; }
.detail-assurances strong { color: var(--navy); font-size: 11px; }
.detail-assurances small { color: #8794a2; font-size: 9px; }
.related-products { padding-top: 68px; }
.compact-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

/* Cart drawer */
.cart-backdrop {
    position: fixed;
    inset: 0;
    z-index: 90;
    background: rgba(3, 15, 28, 0.56);
    backdrop-filter: blur(2px);
}

.cart-drawer {
    width: min(420px, 100%);
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    display: flex;
    flex-direction: column;
    background: #fff;
    box-shadow: -25px 0 60px rgba(3, 15, 28, 0.22);
    transform: translateX(105%);
    visibility: hidden;
    transition: transform 0.3s ease, visibility 0.3s;
}

.cart-drawer.open { transform: translateX(0); visibility: visible; }
.cart-drawer-head { min-height: 96px; display: flex; align-items: center; justify-content: space-between; padding: 20px 25px; border-bottom: 1px solid #e4e8ed; }
.cart-drawer-head span { color: var(--red); font-size: 9px; font-weight: 900; letter-spacing: 1px; text-transform: uppercase; }
.cart-drawer-head h2 { margin: 4px 0 0; color: var(--navy); font-size: 24px; }
.cart-drawer-head button { width: 36px; height: 36px; border: 0; border-radius: 50%; background: #eef1f4; color: var(--navy); cursor: pointer; }
.cart-items { flex: 1; overflow-y: auto; padding: 10px 25px; }
.cart-empty { height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.cart-empty i { color: #cbd3dc; font-size: 48px; }
.cart-empty h3 { margin: 17px 0 7px; color: var(--navy); }
.cart-empty p { max-width: 250px; margin: 0; font-size: 13px; line-height: 1.6; }
.cart-line { display: grid; grid-template-columns: 72px 1fr auto; gap: 13px; padding: 17px 0; border-bottom: 1px solid #e8ecf0; }
.cart-line img { width: 72px; height: 72px; object-fit: cover; border-radius: 5px; }
.cart-line h3 { margin: 3px 0 7px; color: var(--navy); font-size: 13px; line-height: 1.3; }
.cart-line p { margin: 0; color: var(--red); font-size: 13px; font-weight: 900; }
.cart-line-controls { display: flex; align-items: center; gap: 8px; margin-top: 10px; }
.cart-line-controls button { width: 24px; height: 24px; border: 1px solid #dce2e8; background: #fff; color: var(--navy); cursor: pointer; }
.cart-line-controls span { min-width: 16px; text-align: center; color: var(--navy); font-size: 12px; font-weight: 900; }
.cart-remove { padding: 3px; border: 0; background: transparent; color: #a3adb8; cursor: pointer; }
.cart-drawer-foot { padding: 21px 25px 25px; border-top: 1px solid #dfe4e9; background: #f7f8fa; }
.cart-subtotal { display: flex; align-items: center; justify-content: space-between; color: var(--navy); }
.cart-subtotal strong { font-size: 23px; }
.cart-drawer-foot p { margin: 8px 0 17px; color: #7b8997; font-size: 10px; }
.cart-checkout { min-height: 49px; display: flex; align-items: center; justify-content: center; border-radius: 4px; background: var(--red); color: var(--navy); font-size: 12px; font-weight: 900; text-transform: uppercase; }
.shop-toast { position: fixed; right: 24px; bottom: 24px; z-index: 120; padding: 14px 18px; border-radius: 5px; background: var(--navy); color: #fff; font-size: 12px; font-weight: 800; box-shadow: var(--shadow-md); opacity: 0; transform: translateY(18px); pointer-events: none; transition: opacity 0.2s ease, transform 0.2s ease; }
.shop-toast.show { opacity: 1; transform: translateY(0); }
body.cart-open { overflow: hidden; }

@media (max-width: 1100px) {
    .menu-links a { min-width: auto; padding-inline: 10px; }
    .nav-tools { padding-inline: 12px; }
    .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 820px) {
    .shop-hero-grid { min-height: auto; grid-template-columns: 1fr; gap: 35px; }
    .shop-hero-visual { min-height: 330px; }
    .shop-hero-visual img { height: 330px; }
    .shop-hero-orbit { width: 340px; height: 340px; }
    .shop-toolbar { flex-direction: column; }
    .product-search { min-height: 46px; border-top: 1px solid #e5e9ef; border-left: 0; }
    .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .product-detail-grid { grid-template-columns: 1fr; gap: 38px; }
    .product-gallery { height: 470px; }
}

@media (max-width: 620px) {
    .shop-hero-grid { padding-top: 43px; padding-bottom: 44px; }
    .shop-hero h1 { font-size: 40px; letter-spacing: -1.5px; }
    .shop-perks { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
    .shop-hero-visual { min-height: 280px; }
    .shop-hero-visual img { height: 280px; border-radius: 140px 12px 12px 140px; }
    .hero-price-tag { width: 88px; height: 88px; right: -5px; }
    .hero-price-tag strong { font-size: 24px; }
    .catalog-heading { align-items: flex-start; flex-direction: column; gap: 8px; }
    .catalog-heading h2 { font-size: 29px; }
    .shop-catalog, .related-products { padding: 60px 0; }
    .category-tabs { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 4px; }
    .category-tabs a { white-space: nowrap; }
    .product-grid, .compact-grid { grid-template-columns: 1fr; }
    .product-image { height: 270px; }
    .shop-support-inner { min-height: 260px; align-items: flex-start; justify-content: center; flex-direction: column; }
    .shop-support h2 { font-size: 27px; }
    .product-detail-section { padding: 35px 0 60px; }
    .product-gallery { height: 340px; }
    .product-info h1 { font-size: 34px; }
    .product-features { grid-template-columns: 1fr; }
    .detail-assurances { grid-template-columns: 1fr; gap: 18px; }
    .shop-toast { right: 14px; bottom: 14px; left: 14px; text-align: center; }
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    zoom: 1.05;
}

body {
    margin: 0;
    font-family: "Inter", Arial, Helvetica, "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
    color: var(--muted);
    background: var(--surface-soft);
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid rgba(91, 195, 170, 0.68);
    outline-offset: 3px;
}

button,
input,
select,
textarea {
    font: inherit;
}

.container {
    width: min(1110px, calc(100% - 36px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--navy);
    box-shadow: 0 12px 30px rgba(2, 17, 32, 0.14);
}

.header-top {
    color: var(--white);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.035) 25%, transparent 25%) 0 0 / 14px 14px,
        linear-gradient(225deg, rgba(255, 255, 255, 0.035) 25%, transparent 25%) 0 0 / 14px 14px,
        var(--navy);
}

.header-top-inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 205px;
}

.brand-worker {
    width: 48px;
    height: 48px;
    border: 3px solid var(--brand-mint);
    border-radius: 14px 4px 14px 4px;
    background: var(--brand-teal);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 -6px 0 rgba(0, 0, 0, 0.13);
    transition: transform 0.25s ease;
}

.brand-worker i {
    font-size: 22px;
}

.brand:hover .brand-worker {
    transform: rotate(-8deg) scale(1.04);
}

.brand strong {
    display: block;
    color: var(--text-light);
    font-size: 21px;
    letter-spacing: 1.6px;
    line-height: 1;
}

.brand small {
    display: block;
    margin-top: 4px;
    color: var(--brand-mint);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.6px;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 28px;
    color: var(--text-light);
}

.contact-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 800;
    white-space: nowrap;
}

.contact-item i {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--yellow);
    font-size: 25px;
    filter: drop-shadow(0 8px 12px rgba(91, 195, 170, 0.22));
}

.contact-item small {
    display: block;
    color: var(--text-subtle);
    font-size: 11px;
    line-height: 1.1;
}

.contact-divider {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.22);
}

.nav-wrap {
    background: rgba(11, 75, 145, 0.94);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
}

.nav-inner {
    min-height: 48px;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}

.menu-toggle {
    display: none;
    width: 46px;
    border: 0;
    background: #ffffff;
    color: var(--ink);
    cursor: pointer;
}

.menu-links {
    display: flex;
    align-items: stretch;
    background: var(--white);
    min-width: 0;
}

.menu-links a {
    min-width: 88px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
    color: #1a2a3d;
    font-size: 13px;
    font-weight: 800;
    border-right: 1px solid #e4e8ed;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.menu-links a.active,
.menu-links a:hover {
    color: var(--red);
    background: #fbfcff;
}

.nav-tools {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
    padding: 0 17px;
    background: var(--white);
    color: #061f38;
}

.nav-tools a {
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: transform 0.2s ease, color 0.2s ease;
}

.nav-tools a:hover {
    color: var(--red);
    transform: translateY(-1px);
}

.appointment-link {
    min-width: 178px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--red);
    color: var(--navy);
    padding: 0 22px;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.appointment-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 22px rgba(2, 17, 32, 0.18);
}

.hero {
    background:
        linear-gradient(110deg, rgba(16, 63, 120, 0.24), rgba(32, 184, 184, 0) 48%),
        linear-gradient(180deg, var(--brand-blue) 0%, var(--brand-blue-dark) 100%);
    color: var(--white);
    overflow: hidden;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 78%);
    pointer-events: none;
}

.hero-grid {
    position: relative;
    z-index: 1;
    min-height: 520px;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(220px, 330px) 318px;
    align-items: start;
    gap: 38px;
    padding-top: 34px;
    padding-bottom: 34px;
}

.hero-copy {
    align-self: start;
    max-width: 465px;
    padding: 0;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--red);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.section-kicker::before {
    content: "";
    width: 23px;
    height: 2px;
    background: currentColor;
}

.section-kicker.light {
    color: #ffffff;
}

.section-kicker.light::before {
    display: none;
}

.hero h1 {
    margin: 12px 0 16px;
    color: var(--text-light);
    font-size: 50px;
    line-height: 1.03;
    font-weight: 900;
    letter-spacing: 0;
    text-wrap: balance;
}

.hero p {
    max-width: 390px;
    margin: 0 0 28px;
    color: var(--text-light);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.65;
    text-shadow: 0 1px 0 rgba(2, 17, 32, 0.12);
}

.hero-image-wrap {
    position: relative;
    align-self: start;
    height: 450px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.hero-image-wrap::before {
    content: "";
    position: absolute;
    right: 2%;
    bottom: 0;
    width: 78%;
    height: 72%;
    background: rgba(7, 29, 53, 0.24);
    border-radius: 120px 120px 0 0;
    box-shadow: var(--shadow-md);
}

.hero-image-wrap img {
    position: relative;
    z-index: 1;
    width: min(100%, 300px);
    height: 410px;
    object-fit: cover;
    object-position: center top;
    border-radius: 120px 120px 0 0;
    box-shadow: var(--shadow-lg);
    animation: heroFloat 5.5s ease-in-out infinite;
}

.primary-btn {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--red);
    color: var(--navy);
    border: 0;
    padding: 0 27px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.primary-btn:hover {
    background: var(--brand-teal-dark);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 12px 22px rgba(2, 17, 32, 0.18);
}

.primary-btn::after,
.appointment-link::after,
.services-all::after,
.cta-inner > a::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.24) 48%, transparent 55%);
    transform: translateX(-120%);
    transition: transform 0.55s ease;
}

.primary-btn:hover::after,
.appointment-link:hover::after,
.services-all:hover::after,
.cta-inner > a:hover::after {
    transform: translateX(120%);
}

.appointment-panel {
    width: 100%;
    align-self: start;
    margin-bottom: 0;
    background: var(--yellow);
    padding: 26px 26px 28px;
    color: var(--text-dark);
    animation: panelRise 0.75s ease both;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.appointment-panel h2 {
    margin: 0 0 16px;
    color: var(--text-dark);
    text-align: center;
    font-family: "Inter", Arial, Helvetica, sans-serif;
    font-size: 18px;
    font-style: normal;
    line-height: 0.95;
}

.appointment-panel h2 span {
    display: block;
    font-size: 30px;
}

.appointment-form {
    display: grid;
    gap: 7px;
}

.appointment-form input,
.appointment-form select,
.appointment-form textarea {
    width: 100%;
    min-width: 0;
    border: 1px solid rgba(255, 255, 255, 0.86);
    background: rgba(255, 255, 255, 0.22);
    color: #111111;
    font-size: 12px;
    font-weight: 700;
    outline: none;
    border-radius: var(--radius-sm);
    transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.appointment-form input:focus,
.appointment-form select:focus,
.appointment-form textarea:focus {
    border-color: var(--text-dark);
    background: rgba(255, 255, 255, 0.36);
    box-shadow: 0 0 0 3px rgba(7, 29, 53, 0.08);
}

.appointment-form input,
.appointment-form select {
    height: 33px;
    padding: 0 9px;
}

.appointment-form textarea {
    height: 78px;
    padding: 9px;
    resize: vertical;
}

.appointment-form input::placeholder,
.appointment-form textarea::placeholder {
    color: var(--text-dark);
    opacity: 1;
}

.appointment-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px;
}

.appointment-form button {
    height: 41px;
    margin-top: 8px;
    border: 0;
    background: var(--red);
    color: var(--navy);
    cursor: pointer;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.appointment-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 24px rgba(32, 184, 184, 0.24);
}

.alert-success {
    margin-bottom: 10px;
    padding: 9px 10px;
    background: #0f7d4f;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.35;
}

.error-list {
    margin: 12px 0 0;
    padding-left: 18px;
    color: #7a0008;
    font-size: 12px;
    font-weight: 700;
}

.about-section {
    padding: var(--section-space) 0;
    background: var(--surface);
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 500px;
    gap: 50px;
    align-items: center;
}

.about-copy h2,
.services-head h2 {
    margin: 11px 0 14px;
    color: var(--ink);
    font-size: 34px;
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: 0;
    text-wrap: balance;
}

.about-copy .lead {
    margin: 0 0 18px;
    color: var(--ink);
    font-size: 14px;
    font-weight: 800;
}

.about-copy p:not(.lead) {
    max-width: 650px;
    margin: 0;
    color: #344961;
    font-size: 14px;
    line-height: 1.85;
}

.feature-grid {
    margin: 23px 0 28px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px 28px;
}

.feature-grid span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--ink);
    font-size: 12px;
    font-weight: 800;
}

.feature-grid i {
    color: var(--red);
}

.about-images {
    min-height: 530px;
    position: relative;
}

.repairman-img {
    position: absolute;
    left: 34px;
    bottom: 0;
    width: 265px;
    height: 475px;
    object-fit: cover;
    object-position: center;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
}

.pipe-img {
    position: absolute;
    right: 0;
    top: 0;
    width: 208px;
    height: 365px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

.certified-card {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 300px;
    min-height: 148px;
    display: grid;
    grid-template-columns: 58px 1fr;
    align-items: center;
    column-gap: 8px;
    background: var(--brand-blue);
    color: #ffffff;
    padding: 24px 24px 22px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
}

.certified-card i {
    grid-row: span 2;
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--yellow);
    background: var(--ink);
    font-size: 24px;
}

.certified-card span {
    color: #d9f8f3;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.certified-card strong {
    color: #ffffff;
    font-size: 20px;
    line-height: 1.05;
}

.services-section {
    padding: var(--section-space) 0 28px;
    background:
        linear-gradient(180deg, #edf2f7 0%, #f6f8fb 100%);
}

.services-head {
    max-width: 630px;
    margin-bottom: 44px;
}

.services-head h2 {
    margin-bottom: 15px;
}

.services-head p {
    margin: 0;
    color: #31475f;
    font-size: 14px;
    line-height: 1.8;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 23px;
}

.service-tile,
.services-all {
    min-height: 83px;
    background: #ffffff;
    display: grid;
    align-items: center;
    border-radius: var(--radius-md);
    border: 1px solid rgba(220, 227, 235, 0.78);
    box-shadow: var(--shadow-sm);
}

.service-tile {
    grid-template-columns: 95px 1fr;
    padding: 15px 20px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-tile:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 28px rgba(2, 17, 32, 0.11);
}

.service-tile i {
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #7e91aa;
    font-size: 39px;
    border-right: 1px solid #ccd6e2;
    transition: color 0.2s ease, transform 0.2s ease;
}

.service-tile:hover i {
    color: var(--red);
    transform: scale(1.05);
}

.service-tile h3 {
    margin: 0;
    color: #173d66;
    font-size: 16px;
    line-height: 1.05;
    font-weight: 900;
}

.services-all {
    grid-template-columns: 1fr 44px;
    gap: 14px;
    background: var(--orange);
    color: var(--ink);
    padding: 0 24px;
    font-size: 13px;
    font-weight: 800;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    border-color: rgba(255, 145, 15, 0.25);
}

.services-all:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 28px rgba(2, 17, 32, 0.11);
}

.services-all i {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--ink);
    color: #ffffff;
    font-size: 15px;
}

.stats-strip {
    background: var(--white-soft);
    border-top: 1px solid var(--line);
    padding: 38px 0;
}

.stats-strip-inner {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.stat-item {
    display: grid;
    grid-template-columns: 48px 1fr;
    align-items: center;
    gap: 12px;
    background: var(--surface);
    border: 1px solid rgba(220, 227, 235, 0.72);
    border-radius: var(--radius-md);
    padding: 18px;
    box-shadow: var(--shadow-sm);
}

.stat-item i {
    color: var(--red);
    font-size: 33px;
    animation: iconPulse 2.8s ease-in-out infinite;
}

.stat-item strong {
    display: block;
    color: var(--blue-dark);
    font-size: 30px;
    line-height: 0.95;
    font-weight: 900;
}

.stat-item span {
    display: block;
    color: var(--ink);
    font-size: 12px;
    font-weight: 900;
}

.cta-band {
    background: var(--brand-blue);
    padding: 0;
}

.cta-inner {
    min-height: 91px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background:
        linear-gradient(rgba(4, 19, 39, 0.88), rgba(4, 19, 39, 0.88)),
        url("https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=1400&q=80") center/cover no-repeat;
    color: #ffffff;
    padding: 0 34px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.cta-copy {
    display: inline-flex;
    align-items: center;
    gap: 22px;
}

.cta-copy i {
    color: var(--brand-mint);
    font-size: 34px;
}

.cta-copy p {
    margin: 0 0 3px;
    color: #d5dfed;
    font-size: 18px;
}

.cta-copy h2 {
    margin: 0;
    color: #ffffff;
    font-size: 22px;
    line-height: 1.15;
    font-weight: 900;
}

.cta-inner > a {
    min-height: 49px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--orange);
    color: var(--ink);
    padding: 0 26px;
    border-radius: var(--radius-sm);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cta-inner > a:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 22px rgba(2, 17, 32, 0.18);
}

.coupons-section {
    background: #ffffff;
    padding: 78px 0 56px;
}

.coupons-grid {
    display: grid;
    grid-template-columns: 0.9fr 1fr 1fr;
    gap: 26px;
    align-items: start;
}

.coupons-copy h2 {
    margin: 10px 0 13px;
    color: var(--ink);
    font-size: 31px;
    line-height: 1;
    font-weight: 900;
}

.coupons-copy p {
    max-width: 260px;
    margin: 0;
    color: #4a5b70;
    font-size: 12px;
    line-height: 1.85;
}

.coupon-card {
    position: relative;
    min-height: 142px;
    color: #ffffff;
    padding: 19px 28px 21px;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    border-radius: var(--radius-md);
}

.coupon-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 30px rgba(2, 17, 32, 0.16);
}

.coupon-card::before,
.coupon-card::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ffffff;
    transform: translateY(-50%);
}

.coupon-card::before {
    left: -6px;
}

.coupon-card::after {
    right: -6px;
}

.coupon-card.blue {
    background: var(--brand-blue);
}

.coupon-card.red {
    background: var(--red);
}

.coupon-card strong {
    display: block;
    color: #ffffff;
    font-size: 46px;
    line-height: 0.85;
    font-weight: 900;
    font-style: italic;
}

.coupon-card strong span {
    color: #061a37;
    font-size: 33px;
    text-transform: uppercase;
}

.coupon-card h3 {
    max-width: 250px;
    margin: 8px 0 18px;
    color: #ffffff;
    font-size: 21px;
    line-height: 1.05;
    font-weight: 900;
    text-transform: uppercase;
}

.coupon-card small {
    display: block;
    border-top: 2px dashed rgba(255, 209, 42, 0.9);
    padding-top: 7px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 0.7px;
    text-align: center;
    text-transform: uppercase;
}

.clients-section {
    background: #ffffff;
    border-top: 1px solid var(--line);
    padding: 22px 0 31px;
}

.clients-kicker {
    display: block;
    margin-bottom: 22px;
    color: var(--red);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.9px;
    text-align: center;
    text-transform: uppercase;
}

.client-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: center;
    gap: 28px;
}

.client-grid span {
    color: #a4adb9;
    font-size: 18px;
    font-weight: 900;
    transition: color 0.2s ease, transform 0.2s ease;
}

.client-grid span:hover {
    color: var(--ink);
    transform: translateY(-2px);
}

.client-grid i {
    color: #b8c0cb;
    margin-right: 8px;
}

.page-shell {
    background: var(--surface-soft);
}

.page-hero {
    background:
        linear-gradient(110deg, rgba(16, 63, 120, 0.24), rgba(32, 184, 184, 0) 48%),
        linear-gradient(180deg, var(--brand-blue) 0%, var(--brand-blue-dark) 100%);
    color: var(--white);
    overflow: hidden;
    position: relative;
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 44px 44px;
    pointer-events: none;
}

.page-hero-grid {
    min-height: 320px;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 42px;
    align-items: center;
    padding-top: 28px;
    padding-bottom: 32px;
}

.page-hero.compact .page-hero-grid {
    min-height: 270px;
}

.page-hero h1 {
    max-width: 650px;
    margin: 12px 0 16px;
    color: var(--text-light);
    font-size: 48px;
    line-height: 1.04;
    font-weight: 900;
    letter-spacing: 0;
    text-wrap: balance;
}

.page-hero p {
    max-width: 560px;
    margin: 0 0 28px;
    color: #eef6ff;
    font-size: 17px;
    line-height: 1.65;
    font-weight: 700;
}

.page-hero img {
    width: 100%;
    height: 265px;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    animation: panelRise 0.75s ease both;
}

.page-hero-contained-image {
    position: relative;
    height: 285px;
    overflow: hidden;
    border-radius: var(--radius-md);
    background: rgba(5, 28, 56, 0.22);
    box-shadow: var(--shadow-lg);
}

.page-hero-contained-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--contained-image);
    background-size: cover;
    background-position: center center;
    filter: blur(18px) saturate(1.08) contrast(1.04);
    transform: scale(1.1);
    opacity: 0.45;
}

.page-hero-contained-image img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: center center;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: none;
    filter: saturate(1.1) contrast(1.05);
    animation: panelRise 0.75s ease both;
}

.page-hero-media-mosaic {
    display: grid;
    grid-template-columns: minmax(0, 1.16fr) minmax(0, 0.84fr);
    grid-template-rows: repeat(3, minmax(72px, 1fr));
    gap: 10px;
    min-height: 220px;
}

.page-hero-media-mosaic figure {
    position: relative;
    min-height: 78px;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 15px;
    background: #0d2747;
    box-shadow: 0 18px 42px rgba(5, 28, 56, 0.24);
}

.page-hero-media-mosaic .mosaic-main {
    grid-row: span 3;
}

.page-hero-media-mosaic img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center center;
    border-radius: 0;
    box-shadow: none;
    animation: none;
}

.page-hero-media-mosaic figure::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 42%, rgba(5, 28, 56, 0.7));
    pointer-events: none;
}

.page-hero-media-mosaic figcaption {
    position: absolute;
    left: 10px;
    bottom: 10px;
    z-index: 1;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(5, 28, 56, 0.82);
    color: var(--white);
    font-size: 11px;
    font-weight: 900;
}

.page-hero-tight .page-hero-grid {
    min-height: 210px;
    padding-top: 22px;
    padding-bottom: 24px;
}

.page-hero-tight h1 {
    max-width: 780px;
    margin: 8px 0 10px;
    font-size: clamp(32px, 3.1vw, 42px);
    line-height: 1.05;
}

.page-hero-tight p {
    max-width: 760px;
    margin-bottom: 0;
    font-size: 15px;
    line-height: 1.55;
}

.services-hero-tight .page-hero-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.62fr);
    gap: 28px;
}

.services-hero-tight .page-hero-media-mosaic {
    grid-template-rows: repeat(3, minmax(58px, 1fr));
    min-height: 190px;
}

.services-hero-tight .page-hero-media-mosaic figure {
    min-height: 62px;
}

.projects-hero-tight .page-hero-grid {
    grid-template-columns: 1fr;
}

.projects-hero-tight .page-hero-copy {
    max-width: 930px;
}

.page-hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 18px;
}

.page-hero-tags span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 34px;
    padding: 7px 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.94);
    font-size: 12px;
    font-weight: 900;
}

.page-hero-tags i {
    color: var(--accent);
}

.booking-hero-flow .page-hero-grid,
.contact-hero-direct .page-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.55fr);
    min-height: 260px;
    align-items: center;
}

.booking-hero-panel,
.contact-hero-panel {
    display: grid;
    gap: 12px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 22px 48px rgba(5, 28, 56, 0.24);
    backdrop-filter: blur(10px);
}

.booking-hero-panel span,
.booking-hero-panel a,
.contact-hero-panel a,
.contact-hero-panel div {
    min-height: 58px;
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    column-gap: 12px;
    align-items: center;
    padding: 12px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    font-weight: 900;
}

.booking-hero-panel i,
.contact-hero-panel i {
    width: 46px;
    height: 46px;
    grid-row: span 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background: rgba(37, 189, 184, 0.18);
    color: var(--accent);
    font-size: 18px;
}

.booking-hero-panel a {
    grid-template-columns: 1fr auto;
    background: var(--accent);
    color: var(--navy);
}

.booking-hero-panel a i {
    width: auto;
    height: auto;
    grid-row: auto;
    background: transparent;
    color: inherit;
}

.booking-hero-panel a:hover,
.booking-hero-panel a:focus-visible {
    background: var(--white);
    color: var(--primary);
}

.contact-hero-panel span {
    display: block;
    color: rgba(255, 255, 255, 0.72);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.contact-hero-panel strong {
    display: block;
    min-width: 0;
    overflow-wrap: anywhere;
    color: var(--white);
    font-size: 16px;
    line-height: 1.25;
}

.contact-hero-panel a:hover,
.contact-hero-panel a:focus-visible {
    background: rgba(255, 255, 255, 0.18);
}

.page-section {
    padding: var(--section-space-sm) 0;
    background: var(--surface-soft);
}

.split-feature {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 44px;
    align-items: start;
}

.split-feature h2,
.booking-note h2 {
    margin: 11px 0 14px;
    color: var(--ink);
    font-size: 36px;
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: 0;
    text-wrap: balance;
}

.split-feature p,
.booking-note p {
    margin: 0;
    color: #344961;
    font-size: 15px;
    line-height: 1.85;
}

.page-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.page-card {
    min-height: 170px;
    padding: 25px;
    background: var(--surface);
    border: 1px solid rgba(220, 227, 235, 0.78);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.page-card:hover,
.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 32px rgba(2, 17, 32, 0.12);
}

.page-card i {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(37, 189, 184, 0.14);
    color: var(--primary);
    font-size: 24px;
    margin-bottom: 18px;
}

.page-card h3,
.page-card h2 {
    margin: 0 0 9px;
    color: var(--ink);
    font-size: 20px;
    line-height: 1.2;
    font-weight: 900;
}

.page-card p {
    margin: 0;
    color: #42566d;
    font-size: 14px;
    line-height: 1.65;
}

.services-page-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-page-card {
    display: flex;
    min-height: 255px;
    flex-direction: column;
}

.service-page-card a {
    margin-top: auto;
    color: var(--red);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.project-card {
    overflow: hidden;
    background: var(--surface);
    border: 1px solid rgba(220, 227, 235, 0.78);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.project-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
}

.project-card div {
    padding: 24px;
}

.project-card span {
    color: var(--red);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.project-card h2 {
    margin: 8px 0 11px;
    color: var(--ink);
    font-size: 23px;
    line-height: 1.16;
    font-weight: 900;
}

.project-card p {
    margin: 0 0 18px;
    color: #42566d;
    font-size: 14px;
    line-height: 1.7;
}

.booking-page-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 42px;
    align-items: start;
}

.contact-stack {
    display: grid;
    gap: 14px;
    margin-top: 26px;
}

.contact-stack span {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--ink);
    font-size: 15px;
    font-weight: 800;
}

.contact-stack i {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--red);
    color: var(--navy);
    border-radius: 50%;
}

.page-form-panel {
    max-width: 390px;
    margin: 0;
}

.contact-page-grid,
.contact-help-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.contact-card {
    min-height: 210px;
}

.site-footer {
    background: var(--navy);
    color: #cbd6e5;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.footer-contact {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-contact-grid {
    min-height: 88px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: center;
    gap: 24px;
}

.footer-contact-grid span {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: #ffffff;
    font-size: 12px;
    line-height: 1.45;
    font-weight: 800;
}

.footer-contact-grid i {
    color: var(--red);
    font-size: 21px;
}

.footer-main {
    min-height: 300px;
    display: grid;
    grid-template-columns: 1.1fr 0.85fr 0.85fr 1.5fr;
    gap: 38px;
    align-items: center;
    padding-top: 42px;
    padding-bottom: 42px;
}

.footer-brand .brand {
    min-width: 0;
}

.footer-social {
    display: flex;
    gap: 9px;
    margin-top: 22px;
}

.footer-social a {
    width: 25px;
    height: 25px;
    border: 1px solid rgba(255, 255, 255, 0.36);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 11px;
}

.footer-links {
    display: grid;
    gap: 9px;
}

.footer-links h3 {
    margin: 0 0 10px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 900;
}

.footer-links a {
    color: var(--footer-muted);
    font-size: 11px;
    font-weight: 700;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-mascot {
    position: relative;
    min-height: 210px;
}

.mascot-cape {
    position: absolute;
    left: 16px;
    top: 84px;
    width: 220px;
    height: 82px;
    background: var(--brand-teal);
    border-radius: 80% 20% 80% 20%;
    transform: rotate(-18deg);
}

.mascot-head {
    position: absolute;
    right: 80px;
    top: 28px;
    width: 82px;
    height: 82px;
    border: 7px solid #001b38;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffc66f;
    color: var(--red);
    font-size: 39px;
    z-index: 2;
}

.mascot-body {
    position: absolute;
    right: 55px;
    bottom: 28px;
    width: 126px;
    height: 112px;
    border: 7px solid #001b38;
    border-radius: 52% 48% 45% 55%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: var(--brand-blue);
    font-size: 60px;
    font-weight: 900;
    z-index: 3;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-inner {
    min-height: 55px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.footer-bottom p,
.footer-bottom span {
    margin: 0;
    color: #8f9bad;
    font-size: 11px;
    font-weight: 700;
}

.js-animate [data-reveal] {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.js-animate [data-reveal].is-visible {
    opacity: 1;
    transform: none;
}

@keyframes heroFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes panelRise {
    0% {
        opacity: 0;
        transform: translateY(24px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes iconPulse {
    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}

@media (max-width: 1020px) {
    .header-top-inner {
        min-height: 82px;
    }

    .header-contact {
        gap: 16px;
    }

    .contact-item {
        font-size: 13px;
    }

    .menu-links a {
        min-width: auto;
        padding: 0 12px;
    }

    .appointment-link {
        min-width: 155px;
        padding-inline: 15px;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 1fr) 260px 300px;
        gap: 24px;
        padding-top: 56px;
    }

    .hero-image-wrap {
        height: 390px;
    }

    .hero-image-wrap img {
        width: min(100%, 245px);
        height: 350px;
    }

    .about-grid {
        grid-template-columns: minmax(0, 1fr) 430px;
        gap: 32px;
    }

    .about-images {
        min-height: 470px;
    }

    .repairman-img {
        left: 0;
        width: 245px;
        height: 430px;
    }

    .pipe-img {
        width: 178px;
        height: 310px;
    }

    .certified-card {
        width: 272px;
        min-height: 130px;
        padding: 18px 20px;
    }

    .stats-strip-inner,
    .client-grid {
        gap: 16px;
    }

    .coupons-grid {
        grid-template-columns: 0.72fr 1fr 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr 0.8fr 0.8fr 1.1fr;
        gap: 24px;
    }

    .mascot-cape {
        width: 170px;
    }

    .page-hero-grid {
        grid-template-columns: minmax(0, 1fr) 340px;
        gap: 32px;
    }

    .services-page-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .project-grid {
        gap: 20px;
    }
}

@media (max-width: 820px) {
    .header-top-inner {
        align-items: flex-start;
        flex-direction: column;
        padding: 17px 0 19px;
    }

    .header-contact {
        width: 100%;
        justify-content: space-between;
    }

    .nav-inner {
        min-height: 52px;
        position: relative;
    }

    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .menu-links {
        display: none;
        position: absolute;
        top: 52px;
        left: 0;
        right: 0;
        z-index: 10;
        flex-direction: column;
        align-items: stretch;
        box-shadow: var(--shadow-nav);
    }

    .nav-open .menu-links {
        display: flex;
    }

    .menu-links a {
        min-height: 42px;
        justify-content: flex-start;
        border-bottom: 1px solid var(--line);
    }

    .nav-tools {
        margin-left: 0;
    }

    .appointment-link {
        min-width: 150px;
        margin-left: auto;
    }

    .hero-grid {
        min-height: auto;
        grid-template-columns: 1fr 300px;
        gap: 28px;
        padding-top: 38px;
    }

    .hero-copy {
        grid-column: 1 / -1;
        padding-bottom: 0;
    }

    .hero-image-wrap {
        height: 340px;
        justify-content: flex-start;
    }

    .hero-image-wrap img {
        width: 235px;
        height: 310px;
    }

    .hero-copy {
        max-width: 560px;
        padding: 0;
    }

    .appointment-panel {
        width: min(420px, 100%);
        justify-self: start;
    }

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

    .stats-strip-inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cta-inner {
        min-height: 150px;
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
    }

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

    .coupons-copy p {
        max-width: none;
    }

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

    .footer-contact-grid,
    .footer-main {
        grid-template-columns: 1fr;
    }

    .footer-contact-grid {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .footer-main {
        align-items: start;
    }

    .footer-mascot {
        width: min(330px, 100%);
    }

    .page-hero-grid,
    .split-feature,
    .booking-page-grid {
        grid-template-columns: 1fr;
    }

    .page-hero-grid {
        min-height: auto;
    }

    .page-hero h1 {
        font-size: 38px;
    }

    .page-hero img {
        height: 280px;
    }

    .page-hero-media-mosaic {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: none;
        min-height: auto;
    }

    .page-hero-media-mosaic .mosaic-main {
        grid-column: 1 / -1;
        grid-row: auto;
        min-height: 210px;
    }

    .page-hero-media-mosaic figure {
        min-height: 150px;
    }

    .page-hero-tight .page-hero-grid {
        padding-top: 22px;
        padding-bottom: 24px;
    }

    .services-hero-tight .page-hero-media-mosaic .mosaic-main {
        min-height: 170px;
    }

    .services-hero-tight .page-hero-media-mosaic figure {
        min-height: 118px;
    }

    .booking-hero-flow .page-hero-grid,
    .contact-hero-direct .page-hero-grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .services-page-grid,
    .project-grid,
    .contact-page-grid,
    .contact-help-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .page-form-panel {
        max-width: 100%;
    }
}

@media (max-width: 760px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-images {
        width: min(500px, 100%);
        margin: 0 auto;
    }
}

@media (max-width: 620px) {
    .container {
        width: min(100% - 28px, 1110px);
    }

    .header-contact {
        display: grid;
        gap: 10px;
    }

    .contact-divider {
        display: none;
    }

    .nav-tools {
        display: none;
    }

    .appointment-link {
        min-width: 0;
        flex: 1;
        font-size: 11px;
    }

    .hero h1 {
        max-width: 100%;
        font-size: 30px;
    }

    .hero-copy {
        width: min(100%, 320px);
        max-width: 320px;
        min-width: 0;
    }

    .hero p {
        max-width: 320px;
    }

    .hero-grid > * {
        min-width: 0;
    }

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

    .hero-image-wrap {
        height: 300px;
        justify-content: center;
    }

    .hero-image-wrap img {
        width: 230px;
        height: 280px;
    }

    .appointment-panel {
        width: 100%;
        max-width: 100%;
    }

    .about-section,
    .services-section {
        padding-top: var(--section-space-sm);
    }

    .about-copy h2,
    .services-head h2 {
        max-width: 300px;
        font-size: 25px;
        overflow-wrap: anywhere;
    }

    .about-copy .lead,
    .about-copy p:not(.lead) {
        max-width: 320px;
    }

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

    .about-images {
        min-height: auto;
        display: grid;
        gap: 14px;
    }

    .repairman-img,
    .pipe-img,
    .certified-card {
        position: static;
        width: 100%;
    }

    .repairman-img,
    .pipe-img {
        height: 280px;
    }

    .service-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .stats-strip-inner,
    .client-grid {
        grid-template-columns: 1fr;
    }

    .stat-item {
        grid-template-columns: 42px 1fr;
    }

    .cta-inner {
        padding: 26px 20px;
    }

    .cta-copy {
        align-items: flex-start;
    }

    .cta-copy p {
        font-size: 15px;
    }

    .cta-copy h2 {
        font-size: 19px;
    }

    .coupons-section {
        padding-top: 58px;
        padding-bottom: 60px;
    }

    .coupon-card strong {
        font-size: 40px;
    }

    .coupon-card h3 {
        font-size: 18px;
    }

    .footer-bottom-inner {
        min-height: 78px;
        align-items: flex-start;
        justify-content: center;
        flex-direction: column;
        padding: 15px 0;
    }

    .footer-mascot {
        display: none;
    }

    .page-hero-grid {
        padding-top: 38px;
        padding-bottom: 42px;
    }

    .page-hero h1 {
        font-size: 31px;
    }

    .page-hero p {
        font-size: 15px;
    }

    .page-hero-media-mosaic {
        grid-template-columns: 1fr;
    }

    .page-hero-media-mosaic figure,
    .page-hero-media-mosaic .mosaic-main {
        min-height: 170px;
    }

    .page-hero-tight h1 {
        font-size: 29px;
    }

    .page-hero-tight p {
        font-size: 14px;
    }

    .services-hero-tight .page-hero-media-mosaic figure,
    .services-hero-tight .page-hero-media-mosaic .mosaic-main {
        min-height: 145px;
    }

    .booking-hero-panel,
    .contact-hero-panel {
        padding: 14px;
        border-radius: 16px;
    }

    .booking-hero-panel span,
    .booking-hero-panel a,
    .contact-hero-panel a,
    .contact-hero-panel div {
        grid-template-columns: 40px minmax(0, 1fr);
        min-height: 54px;
        padding: 10px;
    }

    .booking-hero-panel i,
    .contact-hero-panel i {
        width: 40px;
        height: 40px;
    }

    .page-card-grid,
    .services-page-grid,
    .project-grid,
    .contact-page-grid,
    .contact-help-grid {
        grid-template-columns: 1fr;
    }

    .split-feature h2,
    .booking-note h2 {
        font-size: 28px;
    }

    .project-card img {
        height: 205px;
    }
}

@media (max-width: 620px) {
    .nav-tools {
        display: flex;
        padding-inline: 14px;
    }

    .nav-tools > a {
        display: none;
    }
}

/* Shared hero sliders */
.image-slider {
    isolation: isolate;
}

.slider-track {
    position: relative;
    overflow: hidden;
}

.image-slider .image-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transform: scale(1.035);
    transition: opacity 0.7s ease, transform 1.1s ease;
}

.image-slider .image-slide.active {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
}

.hero-image-wrap .slider-track {
    width: min(100%, 300px);
    height: 410px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 0;
    box-shadow: var(--shadow-lg);
    animation: heroFloat 5.5s ease-in-out infinite;
}

.hero-image-wrap .slider-track img {
    width: 100%;
    height: 100%;
    border-radius: 0;
    box-shadow: none;
    animation: none;
    object-fit: cover;
    object-position: center top;
}

.slider-dots {
    position: absolute;
    bottom: 14px;
    left: 50%;
    z-index: 7;
    display: flex;
    gap: 7px;
    transform: translateX(-50%);
}

.slider-dots button {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.44);
    cursor: pointer;
    transition: width 0.2s ease, background 0.2s ease;
}

.slider-dots button.active {
    width: 24px;
    background: var(--brand-mint);
}

.shop-image-slider .slider-track {
    width: 100%;
    height: 390px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border: 10px solid rgba(255, 255, 255, 0.28);
    border-radius: 0;
    box-shadow: 0 30px 60px rgba(7, 29, 53, 0.23);
}

.shop-image-slider .slider-track img {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    object-fit: cover;
}

@media (max-width: 1020px) {
    .hero-image-wrap .slider-track {
        width: min(100%, 245px);
        height: 350px;
    }
}

@media (max-width: 820px) {
    .hero-image-wrap .slider-track {
        width: 235px;
        height: 310px;
    }

    .shop-image-slider .slider-track {
        height: 330px;
    }
}

@media (max-width: 620px) {
    .hero-image-wrap .slider-track {
        width: 230px;
        height: 280px;
    }

    .shop-image-slider .slider-track {
        height: 280px;
        border-radius: 0;
    }

}

.hero-image-wrap::before,
.hero-image-wrap .slider-track,
.shop-image-slider .slider-track {
    border-radius: 0;
}

@media (prefers-reduced-motion: reduce) {
    .image-slider .image-slide,
    .hero-image-wrap .slider-track {
        animation: none;
        transition: none;
    }
}

/* Modern homepage redesign */
:root {
    --primary: #0D4F91;
    --primary-dark: #083A6D;
    --accent: #25BDB8;
    --accent-dark: #159D99;
    --navy: #10233F;
    --text: #1F2937;
    --muted-text: #667085;
    --light-bg: #F5F8FB;
    --white: #FFFFFF;
    --border: #E3E8EF;
    --success: #1F9D68;
    --font-heading: "Inter", system-ui, sans-serif;
    --font-body: "Inter", system-ui, sans-serif;
    --radius-lg: 20px;
    --shadow-soft: 0 18px 45px rgba(16, 35, 63, 0.12);
}

html {
    zoom: 1;
}

body {
    color: var(--text);
    font-family: var(--font-body);
    background: var(--white);
}

h1,
h2,
h3,
h4,
.brand strong {
    font-family: var(--font-body);
    letter-spacing: 0;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid rgba(37, 189, 184, 0.45);
    outline-offset: 3px;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 999;
    padding: 10px 14px;
    border-radius: 8px;
    background: var(--accent);
    color: var(--navy);
    font-weight: 800;
    transform: translateY(-150%);
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    background: var(--white);
}

.site-header.is-stuck {
    box-shadow: 0 12px 28px rgba(16, 35, 63, 0.12);
}

.header-top {
    background: var(--navy);
    color: var(--white);
}

.header-top-inner {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.header-contact,
.header-social {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-item,
.header-social a {
    color: rgba(255, 255, 255, 0.86);
    font-size: 13px;
    font-weight: 600;
}

.contact-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.contact-item i,
.header-social a:hover {
    color: var(--accent);
}

.header-social a,
.footer-social a {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 16px;
}

.header-social a:hover,
.footer-social a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--navy);
}

.nav-wrap {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
}

.nav-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    gap: 22px;
}

.brand {
    min-width: 190px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--navy);
}

.brand img {
    max-height: 48px;
    width: auto;
}

.brand-worker {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--primary);
    color: var(--white);
}

.brand strong {
    display: block;
    color: var(--navy);
    font-size: 20px;
    line-height: 1;
}

.brand small {
    color: var(--muted-text);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.4px;
}

.menu-links {
    flex: 1;
    display: flex;
    justify-content: center;
    gap: 4px;
}

.menu-links a {
    position: relative;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    padding: 0 12px;
    color: var(--text);
    font-size: 14px;
    font-weight: 700;
}

.menu-links a::after {
    content: "";
    position: absolute;
    right: 12px;
    bottom: 6px;
    left: 12px;
    height: 2px;
    border-radius: 99px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease;
}

.menu-links a:hover,
.menu-links a.active {
    color: var(--primary);
}

.menu-links a:hover::after,
.menu-links a.active::after {
    transform: scaleX(1);
}

.nav-tools {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
    padding: 0;
    border: 0;
}

.icon-link,
.cart-trigger {
    width: 42px;
    height: 42px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    color: var(--navy);
}

.cart-count {
    background: var(--accent);
    color: var(--navy);
}

.appointment-link {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    border-radius: 999px;
    background: var(--primary);
    color: var(--white);
    font-size: 13px;
    font-weight: 800;
}

.appointment-link:hover {
    background: var(--primary-dark);
    color: var(--white);
}

.menu-toggle {
    width: 44px;
    height: 44px;
    display: none;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: var(--white);
    color: var(--navy);
}

.modern-home {
    overflow: clip;
    background: var(--white);
}

.home-hero-slider {
    min-height: clamp(680px, 84vh, 900px);
    position: relative;
    overflow: hidden;
    background: var(--navy);
    color: var(--white);
}

.home-hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.8s ease;
}

.home-hero-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.home-hero-bg,
.home-hero-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.home-hero-bg {
    object-fit: cover;
    object-position: var(--hero-object-position, center center);
    transform-origin: var(--hero-transform-origin, center center);
    transform: scale(1);
    background: var(--navy);
}

.home-hero-slide.active .home-hero-bg {
    animation: none;
}

.home-hero-overlay {
    background: linear-gradient(90deg, rgba(5, 28, 56, 0.96) 0%, rgba(5, 28, 56, 0.82) 42%, rgba(5, 28, 56, 0.34) 100%);
}

.home-hero-content {
    min-height: clamp(680px, 84vh, 900px);
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    max-width: 1110px;
    padding-top: 80px;
    padding-bottom: 120px;
}

.home-hero-content > * {
    max-width: 680px;
}

.hero-label,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--accent);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.section-kicker.light {
    color: #BFF6F4;
}

.hero-label::before,
.section-kicker::before {
    content: "";
    width: 32px;
    height: 2px;
    background: currentColor;
}

.home-hero-content h1,
.home-hero-content h2 {
    margin: 18px 0 18px;
    color: var(--white);
    font-size: clamp(56px, 6vw, 72px);
    line-height: 1.02;
    font-weight: 800;
}

.home-hero-content p {
    margin: 0 0 30px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 18px;
    line-height: 1.75;
}

.hero-actions,
.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.primary-btn,
.secondary-btn,
.quick-booking-panel button,
.modern-appointment-form button {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 24px;
    border: 0;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
}

.primary-btn,
.quick-booking-panel button,
.modern-appointment-form button {
    background: var(--accent);
    color: var(--navy);
}

.primary-btn:hover,
.quick-booking-panel button:hover,
.modern-appointment-form button:hover {
    background: var(--accent-dark);
    color: var(--white);
}

.secondary-btn {
    border: 1px solid rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
}

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

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.92);
    font-size: 13px;
    font-weight: 700;
}

.hero-trust i {
    color: var(--accent);
}

.hero-arrow {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 50%;
    z-index: 5;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    background: rgba(16, 35, 63, 0.5);
    color: var(--white);
    cursor: pointer;
    transform: translateY(-50%);
}

.hero-arrow:hover {
    background: var(--accent);
    color: var(--navy);
}

.hero-arrow-prev {
    left: 24px;
}

.hero-arrow-next {
    right: 24px;
}

.home-hero-dots {
    position: absolute;
    right: 0;
    bottom: 52px;
    left: 0;
    z-index: 6;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.home-hero-dots button {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 999px;
    background: transparent;
    cursor: pointer;
}

.home-hero-dots button.active {
    width: 34px;
    background: var(--accent);
    border-color: var(--accent);
}

.quick-booking-wrap {
    position: relative;
    z-index: 10;
    margin-top: -58px;
}

.quick-booking-panel {
    display: grid;
    grid-template-columns: 1.1fr 0.82fr 0.82fr 1fr auto;
    gap: 14px;
    align-items: end;
    padding: 18px;
    border: 1px solid rgba(227, 232, 239, 0.9);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.quick-booking-panel label,
.modern-appointment-form label {
    display: grid;
    gap: 8px;
}

.quick-booking-panel span,
.modern-appointment-form label > span {
    color: var(--navy);
    font-size: 13px;
    font-weight: 800;
}

.quick-booking-panel input,
.quick-booking-panel select,
.modern-appointment-form input,
.modern-appointment-form select,
.modern-appointment-form textarea {
    width: 100%;
    min-height: 50px;
    padding: 0 14px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--white);
    color: var(--text);
    font: inherit;
    font-size: 16px;
}

.modern-appointment-form textarea {
    min-height: 132px;
    padding-top: 14px;
    resize: vertical;
}

.booking-section,
.modern-section {
    padding: 96px 0;
}

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

.booking-modern-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 54px;
    align-items: start;
}

.booking-copy h2,
.section-heading h2,
.about-modern-copy h2,
.bottom-cta h2 {
    margin: 12px 0 14px;
    color: var(--navy);
    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.12;
}

.booking-copy p,
.section-heading p,
.about-modern-copy p,
.bottom-cta p {
    color: var(--muted-text);
    font-size: 16px;
    line-height: 1.75;
}

.booking-contact-card {
    display: grid;
    gap: 12px;
    margin-top: 28px;
    padding: 22px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--white);
}

.booking-contact-card span {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--navy);
    font-weight: 700;
}

.booking-contact-card i {
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(37, 189, 184, 0.14);
    color: var(--primary);
    font-size: 17px;
}

.modern-form-panel {
    width: 100%;
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.modern-appointment-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.full-field {
    grid-column: 1 / -1;
}

.consent-field {
    grid-template-columns: 20px 1fr;
    align-items: start;
}

.consent-field input {
    width: 18px;
    min-height: 18px;
    margin-top: 2px;
}

.alert-success,
.error-list {
    margin-bottom: 18px;
    border-radius: 12px;
}

.trust-strip {
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

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

.trust-grid article {
    min-height: 112px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--navy);
    font-weight: 800;
}

.trust-grid i {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(13, 79, 145, 0.1);
    color: var(--primary);
    font-size: 22px;
}

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

.row-heading {
    max-width: none;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
}

.row-heading > a {
    color: var(--primary);
    font-weight: 800;
}

.services-modern,
.process-modern {
    background: var(--white);
}

.modern-service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.modern-service-card {
    overflow: hidden;
    display: grid;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: 0 10px 30px rgba(16, 35, 63, 0.06);
    color: var(--text);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.modern-service-card:hover,
.modern-project-card:hover,
.testimonial-grid article:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-soft);
}

.service-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    height: auto;
    display: block;
    overflow: hidden;
    background: var(--light-bg);
}

.service-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center center;
    background: var(--light-bg);
    transition: transform 0.45s ease;
}

.modern-service-card:hover .service-image img {
    transform: scale(1.06);
}

.service-image > i {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    color: var(--primary);
    font-size: 46px;
}

.service-body {
    display: grid;
    gap: 10px;
    padding: 22px;
}

.service-body > i {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(37, 189, 184, 0.14);
    color: var(--primary);
    font-size: 21px;
}

body,
button,
input,
select,
textarea,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-body);
}

.service-body strong {
    color: var(--navy);
    font-size: 20px;
}

.service-body small {
    min-height: 46px;
    color: var(--muted-text);
    font-size: 14px;
    line-height: 1.6;
}

.service-body em {
    color: var(--primary);
    font-style: normal;
    font-weight: 800;
}

.about-modern {
    background: var(--light-bg);
}

.about-modern-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 60px;
    align-items: center;
}

.about-modern-media {
    position: relative;
}

.about-modern-media img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.experience-badge {
    position: absolute;
    right: 22px;
    bottom: 22px;
    max-width: 220px;
    padding: 16px 18px;
    border-radius: 16px;
    background: var(--white);
    color: var(--navy);
    font-weight: 800;
    box-shadow: var(--shadow-soft);
}

.about-modern-copy .lead {
    color: var(--primary);
    font-weight: 800;
}

.benefit-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 28px 0;
}

.benefit-list span {
    display: flex;
    gap: 10px;
    color: var(--text);
    font-weight: 700;
    line-height: 1.45;
}

.benefit-list i {
    color: var(--success);
    margin-top: 3px;
}

.projects-modern,
.testimonials-modern {
    background: var(--light-bg);
}

.modern-project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: 22px;
}

.modern-project-card {
    min-height: 330px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: end;
    padding: 22px;
    border-radius: var(--radius-lg);
    color: var(--white);
    background: var(--navy);
}

.modern-project-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.78;
    transition: transform 0.45s ease;
}

.modern-project-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(16, 35, 63, 0.05), rgba(16, 35, 63, 0.88));
}

.modern-project-card:hover img {
    transform: scale(1.05);
}

.modern-project-card span,
.modern-project-card strong {
    position: relative;
    z-index: 1;
}

.modern-project-card span {
    color: #BFF6F4;
    font-size: 12px;
    font-weight: 800;
}

.modern-project-card strong {
    margin-top: 8px;
    font-size: 20px;
    line-height: 1.22;
}

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

.process-grid article {
    padding: 26px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--white);
}

.process-grid article > span {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    font-weight: 800;
}

.process-grid h3 {
    margin: 20px 0 10px;
    color: var(--navy);
    font-size: 20px;
}

.process-grid p {
    margin: 0;
    color: var(--muted-text);
    line-height: 1.65;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.testimonial-grid article {
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--white);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.stars {
    color: #F59E0B;
    letter-spacing: 2px;
}

.testimonial-grid p {
    color: var(--text);
    font-size: 16px;
    line-height: 1.75;
}

.testimonial-grid footer {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 22px;
}

.testimonial-grid img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-grid strong,
.testimonial-grid small {
    display: block;
}

.testimonial-grid strong {
    color: var(--navy);
}

.testimonial-grid small {
    color: var(--muted-text);
}

.bottom-cta {
    padding: 82px 0;
    background:
        linear-gradient(135deg, rgba(13, 79, 145, 0.94), rgba(16, 35, 63, 0.96)),
        var(--primary);
    color: var(--white);
}

.bottom-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.bottom-cta h2 {
    color: var(--white);
}

.bottom-cta p {
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
}

.white-btn {
    background: var(--white);
    color: var(--primary);
}

.white-btn:hover {
    background: var(--accent);
    color: var(--navy);
}

.secondary-btn.light {
    border-color: rgba(255, 255, 255, 0.55);
}

.footer-main {
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
    align-items: start;
}

.footer-brand p {
    max-width: 330px;
    color: var(--footer-muted);
    font-size: 13px;
    line-height: 1.7;
}

.footer-contact-col span {
    color: var(--footer-muted);
    font-size: 12px;
    line-height: 1.55;
}

@keyframes heroSlowScale {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.05);
    }
}

@media (max-width: 1180px) {
    .hero-arrow {
        top: auto;
        bottom: 46px;
        transform: none;
    }

    .hero-arrow-prev {
        left: 24px;
    }

    .hero-arrow-next {
        right: 24px;
    }

    .quick-booking-panel {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 1024px) {
    .menu-toggle {
        display: inline-flex;
    }

    .menu-links {
        width: min(390px, 100%);
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        z-index: 120;
        flex-direction: column;
        justify-content: flex-start;
        gap: 0;
        padding: 86px 26px 26px;
        background: var(--white);
        box-shadow: -24px 0 50px rgba(16, 35, 63, 0.18);
        transform: translateX(105%);
        visibility: hidden;
        transition: transform 0.28s ease, visibility 0.28s;
    }

    .nav-open .menu-links {
        transform: translateX(0);
        visibility: visible;
    }

    .menu-links a {
        min-height: 54px;
        justify-content: flex-start;
        border-bottom: 1px solid var(--border);
    }

    .menu-open {
        overflow: hidden;
    }

    .nav-tools {
        margin-left: auto;
    }

    .appointment-link {
        display: none;
    }

    .home-hero-content h1,
    .home-hero-content h2 {
        font-size: clamp(42px, 7vw, 52px);
    }

    .booking-modern-grid,
    .about-modern-grid {
        grid-template-columns: 1fr;
    }

    .modern-service-grid,
    .testimonial-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .modern-project-grid,
    .process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .header-top-inner {
        min-height: auto;
        padding-top: 9px;
        padding-bottom: 9px;
    }

    .header-contact {
        width: 100%;
        justify-content: center;
        gap: 12px;
        flex-wrap: wrap;
    }

    .header-social {
        display: none;
    }

    .nav-inner {
        min-height: 68px;
    }

    .brand {
        min-width: 0;
    }

    .brand strong {
        font-size: 18px;
    }

    .nav-tools .icon-link {
        display: none;
    }

    .home-hero-slider,
    .home-hero-content {
        min-height: 680px;
    }

    .home-hero-content {
        padding-top: 70px;
        padding-bottom: 130px;
    }

    .home-hero-content h1,
    .home-hero-content h2 {
        font-size: clamp(32px, 10vw, 40px);
    }

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

    .hero-trust {
        display: grid;
        grid-template-columns: 1fr 1fr;
        width: 100%;
    }

    .hero-trust span {
        border-radius: 14px;
    }

    .hero-arrow {
        width: 44px;
        height: 44px;
    }

    .quick-booking-wrap {
        margin-top: 0;
        background: var(--light-bg);
        padding-top: 22px;
    }

    .quick-booking-panel,
    .modern-appointment-form,
    .trust-grid,
    .modern-service-grid,
    .modern-project-grid,
    .process-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .booking-section,
    .modern-section {
        padding: 68px 0;
    }

    .modern-form-panel {
        padding: 20px;
    }

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

    .row-heading,
    .bottom-cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-main,
    .footer-contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 430px) {
    .container {
        width: min(100% - 28px, 1110px);
    }

    .contact-item {
        font-size: 12px;
    }

    .home-hero-slider,
    .home-hero-content {
        min-height: 640px;
    }

    .home-hero-content {
        padding-bottom: 118px;
    }

    .hero-actions {
        width: 100%;
    }

    .hero-actions a,
    .cta-actions a {
        width: 100%;
    }

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

    .home-hero-dots {
        bottom: 28px;
    }

    .hero-arrow {
        display: none;
    }

    .booking-copy h2,
    .section-heading h2,
    .about-modern-copy h2,
    .bottom-cta h2 {
        font-size: 30px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-hero-slide.active .home-hero-bg {
        animation: none;
    }
}

/* Requested header/detail restoration */
.header-top {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.035) 25%, transparent 25%) 0 0 / 18px 18px,
        linear-gradient(225deg, rgba(255, 255, 255, 0.035) 25%, transparent 25%) 0 0 / 18px 18px,
        #15549b;
}

.header-top-inner {
    min-height: 92px;
    align-items: center;
}

.header-brand {
    min-width: 320px;
}

.header-brand img {
    width: min(360px, 42vw);
    max-height: 86px;
    object-fit: contain;
}

.footer-brand .brand img {
    width: 220px;
    max-height: 64px;
    object-fit: contain;
}

.header-brand .brand-worker,
.footer-brand .brand-worker {
    width: 70px;
    height: 70px;
    flex: 0 0 auto;
    border: 0;
    border-radius: 50%;
    background: linear-gradient(145deg, #157bc0 0%, #25b970 100%);
    color: #fff;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

.brand-monogram {
    font-size: 28px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -4px;
    text-transform: lowercase;
}

.header-brand strong {
    color: #31b977;
    font-size: 34px;
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: 0;
}

.header-brand small {
    margin-top: 5px;
    color: #1780c8;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 9px;
}

.header-contact {
    margin-left: auto;
    gap: 38px;
}

.header-contact .contact-divider {
    width: 1px;
    height: 54px;
    display: block;
    background: rgba(255, 255, 255, 0.18);
}

.header-contact .contact-item {
    gap: 14px;
    color: #fff;
}

.header-contact .contact-item i {
    width: 48px;
    height: 48px;
    flex: 0 0 auto;
    border-radius: 14px;
    background: rgba(91, 195, 170, 0.18);
    color: #5bc3aa;
    font-size: 30px;
    filter: none;
}

.header-contact .contact-item small {
    color: #c7d9ee;
    font-size: 14px;
    font-weight: 900;
    line-height: 1.05;
}

.header-contact .contact-item span {
    display: grid;
    gap: 2px;
    color: #fff;
    font-size: 24px;
    font-weight: 900;
    line-height: 1.05;
}

.nav-inner {
    justify-content: center;
}

.nav-inner .menu-links {
    flex: 0 1 auto;
}

.nav-inner .nav-tools {
    margin-left: auto;
}

@media (max-width: 1024px) {
    .header-top-inner {
        min-height: auto;
        align-items: flex-start;
        flex-direction: column;
        padding-top: 14px;
        padding-bottom: 14px;
    }

    .header-brand {
        min-width: 0;
    }

    .header-contact {
        width: 100%;
        margin-left: 0;
        justify-content: space-between;
    }
}

@media (max-width: 680px) {
    .header-brand .brand-worker {
        width: 56px;
        height: 56px;
    }

    .header-brand strong {
        font-size: 28px;
    }

    .header-brand small {
        font-size: 10px;
        letter-spacing: 6px;
    }

    .header-contact {
        display: grid;
        gap: 12px;
    }

    .header-contact .contact-divider {
        display: none;
    }

    .header-contact .contact-item span {
        font-size: 19px;
    }
}

/* Final header and footer proportion pass */
.site-header .header-top {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.035) 25%, transparent 25%) 0 0 / 18px 18px,
        linear-gradient(225deg, rgba(255, 255, 255, 0.035) 25%, transparent 25%) 0 0 / 18px 18px,
        #15549b;
}

.site-header .header-top-inner {
    min-height: 78px;
    padding-top: 10px;
    padding-bottom: 10px;
    align-items: center;
}

.site-header .header-brand {
    min-width: 215px;
    max-width: 280px;
}

.site-header .header-brand img {
    display: block;
    width: min(255px, 24vw);
    max-width: 100%;
    max-height: 64px;
    object-fit: contain;
}

.site-header .header-contact {
    gap: 24px;
}

.site-header .header-contact .contact-divider {
    height: 46px;
    background: rgba(255, 255, 255, 0.16);
}

.site-header .header-contact .contact-item {
    gap: 11px;
    min-height: 54px;
}

.site-header .header-contact .contact-item i,
.footer-contact-item i {
    display: inline-flex;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background: rgba(37, 189, 184, 0.16);
    color: #56d4c8;
    font-size: 21px;
    line-height: 1;
}

.site-header .header-contact .contact-item small,
.footer-contact-item small {
    color: #c9d9ed;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.15;
}

.site-header .header-contact .contact-item span {
    color: #ffffff;
    font-size: 18px;
    font-weight: 900;
    line-height: 1.2;
}

.site-footer {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.025) 25%, transparent 25%) 0 0 / 18px 18px,
        linear-gradient(225deg, rgba(255, 255, 255, 0.025) 25%, transparent 25%) 0 0 / 18px 18px,
        #154f91;
}

.footer-contact {
    background: rgba(8, 58, 109, 0.28);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-contact-grid {
    min-height: 76px;
    gap: 22px;
}

.footer-contact-item {
    display: inline-flex;
    min-width: 0;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    text-decoration: none;
}

.footer-contact-item span {
    display: grid;
    min-width: 0;
    gap: 3px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.25;
}

.footer-contact-item:hover,
.footer-contact-item:focus-visible {
    color: #ffffff;
}

.footer-main {
    min-height: auto;
    padding-top: 58px;
    padding-bottom: 54px;
    grid-template-columns: minmax(230px, 1.1fr) minmax(150px, 0.7fr) minmax(160px, 0.75fr) minmax(210px, 0.9fr);
    align-items: start;
}

.footer-brand .brand img {
    display: block;
    width: min(185px, 52vw);
    max-height: 58px;
    object-fit: contain;
}

.footer-brand p {
    margin-top: 18px;
    max-width: 330px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 12px;
    margin-top: 22px;
}

.footer-social a {
    min-height: 48px;
    width: auto;
    height: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 17px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 10px;
    background: rgba(8, 16, 32, 0.42);
    color: #ffffff;
    font-size: 15px;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.footer-social a i {
    color: #25bdb8;
    font-size: 18px;
}

.footer-social a:hover,
.footer-social a:focus-visible {
    transform: translateY(-2px);
    background: #25bdb8;
    border-color: #25bdb8;
    color: #083a6d;
}

.footer-social a:hover i,
.footer-social a:focus-visible i {
    color: #083a6d;
}

.footer-links h3 {
    margin-bottom: 18px;
    color: #ffffff;
    font-size: 17px;
    font-weight: 900;
}

.footer-links a,
.footer-contact-col span {
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    line-height: 1.55;
}

.footer-links a:hover,
.footer-links a:focus-visible {
    color: #ffffff;
}

.footer-bottom {
    background: rgba(8, 58, 109, 0.22);
}

.footer-bottom-inner {
    min-height: 62px;
}

.footer-bottom p,
.footer-bottom span {
    color: rgba(255, 255, 255, 0.68);
    font-size: 13px;
}

.footer-mascot,
.mascot-cape,
.mascot-head,
.mascot-body {
    display: none !important;
}

@media (max-width: 1024px) {
    .site-header .header-top-inner {
        flex-wrap: wrap;
        justify-content: center;
    }

    .site-header .header-brand {
        min-width: 0;
        max-width: none;
    }

    .site-header .header-brand img {
        width: 250px;
    }

    .site-header .header-contact {
        width: 100%;
        justify-content: center;
    }

    .site-header .header-contact .contact-item span {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .site-header .header-top-inner {
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .site-header .header-brand img {
        width: 224px;
        max-height: 56px;
    }

    .site-header .header-contact {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .site-header .header-contact .contact-divider {
        display: none;
    }

    .site-header .header-contact .contact-item {
        justify-content: center;
        min-height: 50px;
        padding: 8px;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.06);
    }

    .site-header .header-contact .contact-item i,
    .footer-contact-item i {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
        font-size: 19px;
    }

    .site-header .header-contact .contact-item span {
        font-size: 15px;
    }

    .footer-contact-grid,
    .footer-main {
        grid-template-columns: 1fr;
    }

    .footer-contact-grid {
        padding-top: 16px;
        padding-bottom: 16px;
    }

    .footer-main {
        padding-top: 42px;
        padding-bottom: 40px;
        gap: 30px;
    }
}

@media (max-width: 430px) {
    .site-header .header-brand img {
        width: 205px;
    }

    .site-header .header-contact {
        grid-template-columns: 1fr;
    }

    .site-header .header-contact .contact-item {
        justify-content: flex-start;
    }
}

/* Quick booking placement refinement */
.quick-booking-wrap {
    margin-top: 0;
    padding: 28px 0 34px;
    background: linear-gradient(180deg, #ffffff 0%, #f5f8fb 100%);
}

.quick-booking-panel {
    display: grid;
    grid-template-columns: minmax(220px, 0.72fr) minmax(0, 2.7fr);
    gap: 0;
    overflow: hidden;
    padding: 0;
    border: 1px solid rgba(13, 79, 145, 0.12);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 20px 46px rgba(16, 35, 63, 0.11);
}

.quick-booking-intro {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    padding: 22px 24px;
    background: linear-gradient(135deg, #083a6d 0%, #0d4f91 100%);
    color: #ffffff;
}

.quick-booking-intro span {
    color: #76ddd7;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.quick-booking-intro strong {
    color: #ffffff;
    font-size: 22px;
    font-weight: 900;
    line-height: 1.15;
}

.quick-booking-form {
    display: grid;
    grid-template-columns: 1.15fr 0.86fr 0.86fr 1fr auto;
    gap: 12px;
    align-items: end;
    padding: 18px;
}

.quick-booking-form label {
    display: grid;
    gap: 7px;
}

.quick-booking-form label > span {
    color: #10233f;
    font-size: 12px;
    font-weight: 900;
}

.quick-booking-form input,
.quick-booking-form select {
    min-height: 48px;
    border-radius: 12px;
    background-color: #f8fafc;
}

.quick-booking-form input:focus,
.quick-booking-form select:focus {
    border-color: #25bdb8;
    background-color: #ffffff;
}

.quick-booking-panel button,
.quick-booking-form button {
    min-height: 48px;
    padding: 0 22px;
    border-radius: 12px;
    background: #0d4f91;
    color: #ffffff;
    box-shadow: 0 12px 24px rgba(13, 79, 145, 0.22);
}

.quick-booking-panel button:hover,
.quick-booking-panel button:focus-visible,
.quick-booking-form button:hover,
.quick-booking-form button:focus-visible {
    background: #25bdb8;
    color: #083a6d;
}

@media (max-width: 1180px) {
    .quick-booking-panel {
        grid-template-columns: 1fr;
    }

    .quick-booking-intro {
        padding: 18px 20px;
    }

    .quick-booking-intro strong {
        font-size: 20px;
    }
}

@media (max-width: 980px) {
    .quick-booking-form {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .quick-booking-form button {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .quick-booking-wrap {
        padding-top: 18px;
    }

    .quick-booking-panel {
        border-radius: 16px;
    }

    .quick-booking-form {
        grid-template-columns: 1fr;
        padding: 16px;
    }
}

/* Auto-hide header on scroll */
.site-header {
    transition: transform 0.28s ease, box-shadow 0.2s ease;
    will-change: transform;
}

.site-header.is-hidden {
    transform: translateY(-100%);
}

.nav-open .site-header,
.menu-open .site-header {
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .site-header {
        transition: none;
    }
}

/* Replace duplicate quick form with distinct action cards */
.quick-booking-panel {
    grid-template-columns: minmax(240px, 0.7fr) minmax(0, 2fr);
}

.quick-action-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    padding: 18px;
}

.quick-action-card {
    min-height: 88px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    border: 1px solid #e3e8ef;
    border-radius: 14px;
    background: #f8fafc;
    color: #10233f;
    text-decoration: none;
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.quick-action-card:hover,
.quick-action-card:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(37, 189, 184, 0.55);
    background: #ffffff;
    box-shadow: 0 14px 28px rgba(16, 35, 63, 0.1);
}

.quick-action-card i {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background: rgba(13, 79, 145, 0.1);
    color: #0d4f91;
    font-size: 20px;
}

.quick-action-card span {
    display: grid;
    gap: 3px;
    min-width: 0;
}

.quick-action-card small {
    color: #667085;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.quick-action-card strong {
    color: #10233f;
    font-size: 17px;
    font-weight: 900;
    line-height: 1.2;
}

.quick-action-card.primary-action {
    border-color: #0d4f91;
    background: #0d4f91;
}

.quick-action-card.primary-action i {
    background: rgba(255, 255, 255, 0.14);
    color: #76ddd7;
}

.quick-action-card.primary-action small,
.quick-action-card.primary-action strong {
    color: #ffffff;
}

.quick-action-card.primary-action:hover,
.quick-action-card.primary-action:focus-visible {
    border-color: #25bdb8;
    background: #083a6d;
}

@media (max-width: 1180px) {
    .quick-action-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .quick-action-grid {
        grid-template-columns: 1fr;
    }
}

/* Sitewide vertical spacing tightening */
.booking-section,
.modern-section {
    padding-top: 64px;
    padding-bottom: 64px;
}

.services-modern,
.about-modern,
.projects-modern,
.process-modern,
.testimonials-modern {
    scroll-margin-top: 24px;
}

.quick-booking-wrap {
    padding-top: 22px;
    padding-bottom: 24px;
}

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

.row-heading {
    margin-bottom: 28px;
}

.about-modern-grid,
.booking-modern-grid {
    gap: 42px;
}

.about-modern-media img {
    aspect-ratio: 5 / 4;
    max-height: 520px;
}

.trust-grid article {
    min-height: 92px;
}

.bottom-cta {
    padding-top: 58px;
    padding-bottom: 58px;
}

@media (max-width: 1024px) {
    .booking-section,
    .modern-section {
        padding-top: 52px;
        padding-bottom: 52px;
    }

    .about-modern-grid,
    .booking-modern-grid {
        gap: 32px;
    }
}

@media (max-width: 680px) {
    .booking-section,
    .modern-section {
        padding-top: 42px;
        padding-bottom: 42px;
    }

    .quick-booking-wrap {
        padding-top: 16px;
        padding-bottom: 18px;
    }

    .section-heading,
    .row-heading {
        margin-bottom: 22px;
    }

    .bottom-cta {
        padding-top: 44px;
        padding-bottom: 44px;
    }
}

.service-page-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    display: block;
    overflow: hidden;
    margin-bottom: 18px;
    border-radius: 14px;
    background: #f5f8fb;
}

.service-page-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center center;
}

.about-hero-enhanced {
    background:
        radial-gradient(circle at 82% 15%, rgba(37, 189, 184, 0.18), transparent 28%),
        linear-gradient(135deg, #083a6d 0%, #0d4f91 56%, #10233f 100%);
}

.about-hero-enhanced .page-hero-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(390px, 0.9fr);
    gap: 32px;
    min-height: 350px;
    padding-top: 26px;
    padding-bottom: 28px;
}

.about-hero-copy h1 {
    max-width: 760px;
    margin-top: 10px;
    margin-bottom: 12px;
    font-size: clamp(32px, 3.3vw, 40px);
    line-height: 1.02;
}

.about-hero-copy p {
    max-width: 660px;
    margin-bottom: 18px;
    font-size: 15px;
    line-height: 1.55;
}

.about-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.about-proof-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.about-proof-pills span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 34px;
    padding: 6px 11px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.92);
    font-size: 12px;
    font-weight: 800;
}

.about-proof-pills i {
    color: var(--accent);
}

.about-hero-collage {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
    grid-template-rows: repeat(3, 96px);
    gap: 10px;
    max-height: 310px;
}

.about-hero-collage figure {
    position: relative;
    min-height: 96px;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 15px;
    background: #0d2747;
    box-shadow: 0 22px 50px rgba(5, 28, 56, 0.28);
}

.about-hero-collage .about-collage-main {
    grid-row: span 3;
    min-height: 0;
    height: 308px;
}

.about-hero-collage img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center center;
    border-radius: 0;
    box-shadow: none;
    animation: none;
}

.about-hero-collage figure::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 42%, rgba(5, 28, 56, 0.7));
    pointer-events: none;
}

.about-hero-collage figcaption {
    position: absolute;
    left: 10px;
    bottom: 10px;
    z-index: 1;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(5, 28, 56, 0.82);
    color: var(--white);
    font-size: 11px;
    font-weight: 900;
}

.about-services-proof {
    background: var(--surface-soft);
    padding-top: 58px;
}

.section-heading.compact {
    max-width: 780px;
    margin-bottom: 28px;
}

.section-heading.compact p {
    max-width: 720px;
}

.about-service-proof-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.about-service-proof-card {
    min-height: 190px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 22px;
    border: 1px solid rgba(220, 227, 235, 0.9);
    border-radius: 18px;
    background: var(--white);
    color: var(--ink);
    box-shadow: 0 18px 42px rgba(15, 35, 64, 0.06);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.about-service-proof-card:hover,
.about-service-proof-card:focus-visible {
    transform: translateY(-4px);
    border-color: rgba(37, 189, 184, 0.65);
    box-shadow: 0 22px 54px rgba(15, 35, 64, 0.1);
}

.about-service-proof-card span {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(37, 189, 184, 0.14);
    color: var(--primary);
    font-size: 22px;
}

.about-service-proof-card strong {
    color: var(--ink);
    font-size: 19px;
    line-height: 1.22;
    font-weight: 900;
}

.about-service-proof-card small {
    color: var(--muted-text);
    font-size: 14px;
    line-height: 1.55;
}

@media (max-width: 1180px) {
    .about-hero-enhanced .page-hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(330px, 0.82fr);
        gap: 24px;
        min-height: 330px;
    }

    .about-hero-collage .about-collage-main {
        min-height: 0;
        height: 280px;
    }

    .about-service-proof-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    .about-hero-enhanced .page-hero-grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .about-hero-collage {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: none;
    }

    .about-hero-collage .about-collage-main {
        grid-column: 1 / -1;
        grid-row: auto;
        min-height: 190px;
        height: auto;
    }

    .about-service-proof-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .about-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .about-hero-collage,
    .about-service-proof-grid {
        grid-template-columns: 1fr;
    }

    .about-hero-collage figure,
    .about-hero-collage .about-collage-main {
        min-height: 155px;
    }

    .about-services-proof {
        padding-top: 42px;
    }
}

/* Light / dark theme */
.theme-toggle {
    width: 42px;
    height: 42px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    color: var(--navy);
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.theme-toggle:hover {
    transform: translateY(-2px);
    border-color: rgba(37, 189, 184, 0.72);
    color: var(--primary);
}

html[data-theme="dark"] {
    color-scheme: dark;
    --text: #E7EEF8;
    --muted-text: #B3C2D2;
    --ink: #E7EEF8;
    --light-bg: #0D1B2E;
    --surface: #101E33;
    --surface-soft: #0B1728;
    --border: rgba(151, 171, 196, 0.28);
    --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.28);
    --shadow-md: 0 20px 45px rgba(0, 0, 0, 0.34);
    --shadow-lg: 0 30px 70px rgba(0, 0, 0, 0.42);
    --shadow-nav: 0 18px 35px rgba(0, 0, 0, 0.42);
}

html[data-theme="dark"] body,
html[data-theme="dark"] .modern-home,
html[data-theme="dark"] .page-shell,
html[data-theme="dark"] .shop-page,
html[data-theme="dark"] .shop-catalog,
html[data-theme="dark"] .related-products,
html[data-theme="dark"] .about-services-proof {
    background: #081525;
    color: var(--text);
}

html[data-theme="dark"] .site-header,
html[data-theme="dark"] .nav-wrap {
    background: rgba(8, 21, 37, 0.94);
    border-color: var(--border);
}

html[data-theme="dark"] .site-header.is-stuck {
    box-shadow: var(--shadow-nav);
}

html[data-theme="dark"] .menu-links a,
html[data-theme="dark"] .brand,
html[data-theme="dark"] .brand strong,
html[data-theme="dark"] .cart-trigger,
html[data-theme="dark"] .menu-toggle,
html[data-theme="dark"] .icon-link,
html[data-theme="dark"] .theme-toggle {
    color: var(--text);
}

html[data-theme="dark"] .brand small {
    color: var(--muted-text);
}

html[data-theme="dark"] .icon-link,
html[data-theme="dark"] .cart-trigger,
html[data-theme="dark"] .menu-toggle,
html[data-theme="dark"] .theme-toggle {
    background: #10233f;
    border-color: rgba(151, 171, 196, 0.3);
}

html[data-theme="dark"] .icon-link:hover,
html[data-theme="dark"] .cart-trigger:hover,
html[data-theme="dark"] .theme-toggle:hover,
html[data-theme="dark"] .menu-toggle:hover {
    background: rgba(37, 189, 184, 0.14);
    color: var(--accent);
}

html[data-theme="dark"] .page-section,
html[data-theme="dark"] .trust-strip,
html[data-theme="dark"] .services-section,
html[data-theme="dark"] .projects-section,
html[data-theme="dark"] .process-section,
html[data-theme="dark"] .testimonials-section,
html[data-theme="dark"] .contact-help-grid,
html[data-theme="dark"] .booking-page-grid {
    background: #081525;
}

html[data-theme="dark"] :is(
    .page-card,
    .service-card,
    .service-page-card,
    .project-card,
    .about-service-proof-card,
    .quick-booking-panel,
    .appointment-panel,
    .page-form-panel,
    .booking-note,
    .booking-hero-panel,
    .contact-hero-panel,
    .contact-card,
    .product-card,
    .product-gallery,
    .product-info,
    .shop-toolbar,
    .cart-drawer,
    .cart-line,
    .testimonial-card,
    .process-card,
    .trust-item,
    .feature-card,
    .coupon-card
) {
    background: #101e33;
    border-color: var(--border);
    color: var(--text);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

html[data-theme="dark"] :is(
    .page-card,
    .service-card,
    .service-page-card,
    .project-card,
    .about-service-proof-card,
    .product-card,
    .booking-note,
    .contact-card
) :is(h1, h2, h3, h4, strong) {
    color: var(--text);
}

html[data-theme="dark"] :is(
    .page-card,
    .service-card,
    .service-page-card,
    .project-card,
    .about-service-proof-card,
    .product-card,
    .booking-note,
    .contact-card,
    .section-heading,
    .catalog-heading,
    .product-info
) :is(p, small, li) {
    color: var(--muted-text);
}

html[data-theme="dark"] input,
html[data-theme="dark"] select,
html[data-theme="dark"] textarea {
    background: #0b1728;
    border-color: rgba(151, 171, 196, 0.34);
    color: var(--text);
}

html[data-theme="dark"] input::placeholder,
html[data-theme="dark"] textarea::placeholder {
    color: #8899ad;
}

html[data-theme="dark"] .shop-hero {
    background: linear-gradient(135deg, #09213d 0%, #0d4f91 58%, #0a1524 100%);
    color: var(--text);
}

html[data-theme="dark"] .shop-hero h1,
html[data-theme="dark"] .shop-hero-copy > p,
html[data-theme="dark"] .shop-eyebrow,
html[data-theme="dark"] .shop-perks {
    color: var(--text);
}

html[data-theme="dark"] .shop-hero-action {
    background: var(--accent);
    color: #061526;
}

html[data-theme="dark"] .service-page-image,
html[data-theme="dark"] .product-image,
html[data-theme="dark"] .product-gallery,
html[data-theme="dark"] .shop-hero-visual .slider-track {
    background: #0b1728;
}

html[data-theme="dark"] .cart-backdrop {
    background: rgba(0, 0, 0, 0.56);
}

html[data-theme="dark"] .site-footer,
html[data-theme="dark"] .footer-contact {
    background: #061121;
}

html[data-theme="dark"] .footer-main,
html[data-theme="dark"] .footer-bottom {
    border-color: rgba(151, 171, 196, 0.18);
}

@media (max-width: 860px) {
    html[data-theme="dark"] .menu-links {
        background: #0b1728;
        border-color: var(--border);
    }
}

html[data-theme="dark"] .nav-wrap {
    background: #081525;
}

html[data-theme="dark"] .menu-links {
    background: rgba(16, 35, 63, 0.96);
    border: 1px solid rgba(151, 171, 196, 0.18);
    border-radius: 0;
}

html[data-theme="dark"] .menu-links a {
    background: transparent;
    border-color: rgba(151, 171, 196, 0.18);
    color: #e7eef8;
}

html[data-theme="dark"] .menu-links a:hover,
html[data-theme="dark"] .menu-links a.active {
    background: rgba(37, 189, 184, 0.12);
    color: #ffffff;
}

html[data-theme="dark"] .nav-tools {
    background: transparent;
    border: 0;
}

html[data-theme="dark"] .nav-tools .icon-link,
html[data-theme="dark"] .nav-tools .cart-trigger,
html[data-theme="dark"] .nav-tools .theme-toggle {
    background: #10233f;
    border-color: rgba(151, 171, 196, 0.32);
    color: #ffffff;
}

html[data-theme="dark"] .nav-tools .icon-link:hover,
html[data-theme="dark"] .nav-tools .cart-trigger:hover,
html[data-theme="dark"] .nav-tools .theme-toggle:hover {
    background: #25bdb8;
    border-color: #25bdb8;
    color: #061526;
}
