﻿:root {
    --primary: #ff6b35;
    --secondary: #0a2f6b;
    --accent: #10b981;
    --text: #333;
    --muted: #5f6b7a;
    --border: #ddd;
    --light-bg: #f9f9f9;
    --surface: #ffffff;
    --surface-soft: #f5f8fc;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --shadow-soft: 0 10px 24px rgba(15, 35, 64, 0.08);
    --shadow-lift: 0 16px 34px rgba(12, 34, 66, 0.16);
    --page-bg: #ffffff;
    --page-bg-grad-a: #ffffff;
    --page-bg-grad-b: #fbfdff;
    --page-bg-grad-c: #f7fafd;
    --surface-header: rgba(255, 255, 255, 0.94);
    --surface-elevated: #ffffff;
    --surface-soft-2: #f4f8fc;
    --text-heading: #1d2e44;
    --focus-ring: rgba(255, 107, 53, 0.35);
}
[data-theme="dark"] {
    --primary: #ff8a57;
    --secondary: #d6e6ff;
    --accent: #2ad29b;
    --text: #d9e3ef;
    --muted: #9eb2c9;
    --border: #31465f;
    --light-bg: #132337;
    --surface: #142338;
    --surface-soft: #122033;
    --shadow-soft: 0 10px 24px rgba(4, 10, 18, 0.55);
    --shadow-lift: 0 16px 34px rgba(2, 7, 14, 0.62);
    --page-bg: #0d1726;
    --page-bg-grad-a: #0d1726;
    --page-bg-grad-b: #101d2f;
    --page-bg-grad-c: #112035;
    --surface-header: rgba(13, 23, 38, 0.92);
    --surface-elevated: #16273d;
    --surface-soft-2: #132234;
    --text-heading: #f2f7ff;
    --focus-ring: rgba(42, 210, 155, 0.38);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
    font-family: "DM Sans", "Segoe UI", Tahoma, sans-serif;
    color: var(--text);
    background: linear-gradient(180deg, var(--page-bg-grad-a) 0%, var(--page-bg-grad-b) 52%, var(--page-bg-grad-c) 100%);
    line-height: 1.65;
    overflow-x: clip;
    width: 100%;
    max-width: 100%;
    text-rendering: optimizeLegibility;
}

.skip-link {
    position: absolute;
    left: -999px;
    top: 8px;
    z-index: 1200;
    background: var(--primary);
    color: #fff;
    padding: 8px 12px;
    border-radius: 8px;
    font-weight: 700;
}
.skip-link:focus { left: 12px; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; width: 100%; }
.section-pad { padding: clamp(56px, 8vw, 88px) 0; }
.section-title {
    font-family: "Sora", "DM Sans", sans-serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-heading);
    line-height: 1.2;
    letter-spacing: -0.02em;
}
.section-sub { color: var(--muted); margin-bottom: 24px; font-size: clamp(15px, 1.2vw, 17px); max-width: 70ch; }
.btn { display: inline-flex; align-items: center; justify-content: center; border: 0; border-radius: 999px; padding: 12px 28px; font-weight: 700; cursor: pointer; background: var(--primary); color: #fff; transition: 0.25s ease; }
.btn:hover { background: #ff5722; }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: #ff5722; transform: translateY(-1px); box-shadow: 0 12px 22px rgba(255, 107, 53, 0.22); }
.btn-outline { border: 2px solid var(--secondary); background: transparent; color: var(--secondary); }
.btn-outline:hover { background: rgba(10, 47, 107, 0.08); }

:focus-visible {
    outline: 3px solid var(--focus-ring);
    outline-offset: 2px;
}

h1, h2, h3, h4, h5, h6, .brand strong { font-family: "Sora", "DM Sans", sans-serif; }
p, li, a, button, input, select, textarea { font-family: "DM Sans", "Segoe UI", Tahoma, sans-serif; }

.top-strip { background: var(--secondary); color: #fff; font-size: 14px; padding: 12px 0; border-bottom: 2px solid var(--primary); }
.strip-inner { display: flex; gap: 40px; justify-content: center; flex-wrap: wrap; }
.strip-inner a { font-weight: 600; transition: 0.2s; }
.strip-inner a:hover { color: var(--primary); }
.icon-inline { width: 14px; height: 14px; margin-right: 6px; vertical-align: -2px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.top-strip {
    background: #ff5b08;
    border-bottom: 0;
    padding: 12px 0;
    font-size: 15px;
}
.strip-inner {
    justify-content: space-between;
    gap: 14px;
}
.strip-inner a {
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.01em;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
}
.strip-inner a:hover {
    color: #fff8ef;
}
.strip-inner .icon-inline { width: 17px; height: 17px; }
.strip-inner .icon-wa { fill: #fff; stroke: none; }

.verification-phone {
    text-align: center;
    font-weight: 700;
    color: #1d2e44;
    background: #fff2e9;
    border-bottom: 1px solid #ffd9c8;
    padding: 10px 16px;
    letter-spacing: 0.01em;
}

.site-header { position: sticky; top: 0; z-index: 1000; background: var(--surface-header); border-bottom: 1px solid #e0e6ef; box-shadow: 0 10px 24px rgba(11, 33, 64, 0.08); backdrop-filter: blur(8px); }
.site-header .container { overflow: visible; }
.nav-wrap { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 30px; padding: 14px 20px; max-width: 1220px; margin: 0 auto; }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-logo { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; flex-shrink: 0; box-shadow: 0 2px 8px rgba(13, 23, 38, 0.18); background: #fff; }
.brand span { display: flex; flex-direction: column; line-height: 1.1; min-width: 0; }
.brand strong { font-size: 24px; color: var(--secondary); font-weight: 800; letter-spacing: 0.5px; }
.brand small { color: var(--accent); font-size: 12px; font-weight: 700; white-space: nowrap; }
.desktop-nav { display: flex; align-items: center; gap: 6px; justify-content: center; flex-wrap: nowrap; min-width: 0; overflow: visible; }
.desktop-nav > a, .nav-dd > button { padding: 10px 14px; font-weight: 700; color: #243143; border: 0; background: transparent; cursor: pointer; font-size: 15px; transition: 0.2s; white-space: nowrap; line-height: 1.2; border-radius: 8px; }
.desktop-nav > a:hover, .nav-dd > button:hover { color: var(--primary); background: rgba(255, 107, 53, 0.05); }
.nav-dd { position: relative; }
.dd-menu { position: absolute; top: 100%; left: 0; min-width: 240px; background: #fff; border: 1px solid #e0e0e0; border-radius: 4px; display: none; z-index: 10; box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
.dd-menu a { display: block; padding: 12px 16px; border-bottom: 1px solid #f5f5f5; font-size: 14px; color: #333; transition: all 0.2s; font-weight: 600; }
.dd-menu a:last-child { border-bottom: none; }
.dd-menu a:hover { background: #f5f7ff; color: var(--primary); }
.nav-dd:hover .dd-menu { display: block; }
.nav-dd.open .dd-menu { display: block; }
.head-actions { display: flex; align-items: center; gap: 10px; }
.site-header {
    background: #ffffff;
    border-bottom: 1px solid #ececec;
    box-shadow: 0 6px 18px rgba(9, 29, 55, 0.08);
    backdrop-filter: none;
}
.desktop-nav > a,
.nav-dd > button {
    color: #ff5b08;
    font-weight: 700;
}
.desktop-nav > a:hover,
.nav-dd > button:hover {
    color: #d54a06;
    background: rgba(255, 91, 8, 0.08);
}
.head-actions {
    gap: 12px;
}
.menu-grid {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    padding: 10px;
    background: #f3f6fb;
    border: 1px solid #dce4ef;
}
.menu-grid span {
    width: 5px;
    height: 5px;
    border-radius: 999px;
    background: #273c93;
    justify-self: center;
    align-self: center;
}
.call-pill {
    background: #2d7a1d;
    color: #fff;
    font-weight: 800;
    border-radius: 12px;
    padding: 12px 18px;
    letter-spacing: 0.02em;
    box-shadow: 0 8px 18px rgba(45, 122, 29, 0.28);
}
.call-pill:hover {
    background: #236315;
}
.theme-toggle {
    border: 1px solid rgba(10, 47, 107, 0.28);
    background: linear-gradient(180deg, #ffffff, #f1f6fc);
    color: #0a2f6b;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    cursor: pointer;
    font-size: 20px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 14px rgba(10, 47, 107, 0.18);
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
}
.theme-toggle:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 18px rgba(10, 47, 107, 0.22);
}
[data-theme="dark"] .theme-toggle {
    border-color: rgba(255, 255, 255, 0.26);
    background: linear-gradient(180deg, #182b44, #122237);
    color: #ffd76d;
    text-shadow: 0 0 8px rgba(255, 215, 109, 0.28);
}
.circle-btn { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 18px; transition: 0.2s; }
.circle-btn svg, .float-wa svg, .float-call svg { width: 19px; height: 19px; fill: none; stroke: #fff; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.circle-btn.call { background: #ef4444; }
.circle-btn.call:hover { background: #dc2626; }
.circle-btn.wa { background: #22c55e; }
.circle-btn.wa:hover { background: #16a34a; }
.circle-btn.mail { background: #0f4a73; }
.circle-btn.mail:hover { background: #082f49; }
.menu-btn { display: none; border: 0; background: transparent; width: 40px; height: 40px; font-size: 20px; font-weight: 300; }

.mobile-nav { display: none; border-top: 1px solid var(--border); padding: 10px 0; background: #fff; }
.mobile-nav.open { display: block; }
.m-link, .m-dd-btn { display: block; width: 100%; text-align: left; padding: 12px 20px; font-weight: 700; color: var(--text); border: 0; background: transparent; border-bottom: 1px solid #f0f0f0; font-size: 15px; }
.m-dd-list { display: none; background: #f8f8f8; padding: 8px 0; }
.m-dd-list.open { display: block; }
.m-dd-list a { display: block; padding: 10px 35px; color: var(--text); font-size: 14px; border: 0; }
.m-theme-toggle {
    display: block;
    width: calc(100% - 40px);
    margin: 10px 20px 0;
    text-align: center;
    border: 1px solid rgba(10, 47, 107, 0.22);
    background: var(--surface-elevated);
    color: var(--text-heading);
    border-radius: 999px;
    padding: 10px 14px;
    font-weight: 700;
}
.m-cta { display: inline-block; margin-top: 12px; margin-left: 20px; background: var(--primary); color: #fff; padding: 10px 18px; border-radius: 4px; font-weight: 700; }
.m-cta .icon-inline { stroke: #fff; margin-right: 8px; }

/* ===== Hero full-width banner slideshow ===== */
.hero-banner {
    position: relative;
    width: 100%;
    height: clamp(420px, 62vh, 620px);
    overflow: hidden;
    background: #0a1f2e;
}
.hero-banner-track {
    display: flex;
    height: 100%;
    width: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}
.hero-banner-track::-webkit-scrollbar { display: none; }
.hero-banner-slide {
    position: relative;
    flex: 0 0 100%;
    min-width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    scroll-snap-align: start;
    display: flex;
    align-items: center;
}
.hero-banner-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(8, 18, 38, 0.82) 0%, rgba(8, 18, 38, 0.55) 42%, rgba(8, 18, 38, 0.15) 75%, rgba(8, 18, 38, 0.05) 100%);
}
.hero-banner-caption {
    position: relative;
    z-index: 2;
    max-width: 1220px;
    width: 100%;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 60px);
    color: #fff;
}
.hero-banner-caption .pill {
    background: rgba(255, 107, 53, 0.2);
    border: 1px solid rgba(255, 107, 53, 0.55);
    color: #ffd9c7;
    margin-bottom: 16px;
}
.hero-banner-caption h1 {
    font-size: clamp(34px, 6vw, 62px);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 16px;
    max-width: 18ch;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.4);
}
.hero-banner-caption p {
    font-size: clamp(15px, 2.2vw, 19px);
    line-height: 1.6;
    margin-bottom: 22px;
    max-width: 44ch;
    color: #eaf1fb;
}
.hero-banner-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 46px;
    height: 46px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: rgba(8, 18, 38, 0.4);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}
.hero-banner-arrow:hover { background: rgba(255, 107, 53, 0.85); }
.hero-banner-arrow.prev { left: 16px; }
.hero-banner-arrow.next { right: 16px; }
.hero-banner-dots {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 9px;
}
.hero-banner-dots span {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.55);
    cursor: pointer;
    transition: width 0.25s ease, background 0.25s ease;
}
.hero-banner-dots span.active {
    width: 26px;
    background: var(--primary);
}

/* ===== Welcome + Enquiry ===== */
.welcome-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: stretch;
    background: linear-gradient(160deg, #ffffff 0%, #f5f9ff 100%);
    border: 1px solid #d5e1ee;
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-soft);
}
.welcome-copy {
    display: flex;
    flex-direction: column;
    min-width: 0;
}
.welcome-grid .hero-form-wrap { min-width: 0; }
.welcome-copy .pill { margin-bottom: 14px; align-self: flex-start; }
.welcome-grid .hero-form-wrap { align-self: stretch; display: flex; flex-direction: column; }
.enquiry-extra {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid #d9e5f0;
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 16px;
    align-items: stretch;
    flex: 1 1 auto;
}
.enquiry-extra img {
    width: 160px;
    height: 100%;
    min-height: 160px;
    border-radius: var(--radius-md);
    object-fit: cover;
    border: 1px solid #d9e5f0;
}
.enquiry-extra-info strong { display: block; color: var(--secondary); font-size: 16px; font-weight: 800; margin-bottom: 4px; }
.enquiry-extra-info p { color: #44566b; font-size: 14px; line-height: 1.5; margin-bottom: 8px; }
.enquiry-contact { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; font-weight: 700; }
.enquiry-contact a { color: var(--secondary); }
.enquiry-contact a:hover { color: var(--accent); }
.enquiry-contact .icon-inline { color: var(--accent); flex-shrink: 0; }
.enquiry-extra-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 10px; }
.enquiry-extra-actions .btn { padding: 8px 18px; font-size: 14px; }
.offer-ticker {
    grid-column: 1 / -1;
    min-width: 0;
    margin-top: 8px;
    margin-bottom: 0;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    background: linear-gradient(135deg, #0a2f6b, #0d3f8f);
    border-radius: 12px;
    padding: 12px 0;
}
.offer-ticker-track {
    display: inline-flex;
    align-items: center;
    gap: 36px;
    white-space: nowrap;
    will-change: transform;
    animation: offerTicker 26s linear infinite;
}
.offer-ticker:hover .offer-ticker-track { animation-play-state: paused; }
.offer-item { color: #fff; font-weight: 700; font-size: 14px; padding-left: 36px; }
.offer-item:first-child { padding-left: 36px; }
@keyframes offerTicker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.welcome-copy h2 {
    font-size: clamp(26px, 3.4vw, 38px);
    color: var(--secondary);
    margin-bottom: 16px;
    font-weight: 800;
    line-height: 1.15;
}
.welcome-copy p {
    color: #44566b;
    line-height: 1.75;
    margin-bottom: 14px;
    font-size: 16px;
}
.welcome-copy .about-points { grid-template-columns: 1fr; }

/* ===== Scrolling Call / WhatsApp marquee ===== */
.cta-marquee {
    background: linear-gradient(135deg, #0a2f6b, #0d3f8f);
    padding: 30px 0 34px;
    overflow: hidden;
}
.cta-marquee-head {
    text-align: center;
    max-width: 1100px;
    margin: 0 auto 20px;
    padding: 0 20px;
    color: #fff;
}
.cta-marquee-head h2 {
    color: #ffd400;
    font-size: clamp(20px, 3vw, 30px);
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 8px;
}
.cta-marquee-head p {
    color: #eaf1ff;
    font-size: clamp(14px, 2vw, 18px);
    font-weight: 700;
}
.cta-marquee-viewport {
    width: 100%;
    overflow: hidden;
}
.cta-marquee-track {
    display: flex;
    width: max-content;
    gap: 18px;
    animation: ctaMarquee 26s linear infinite;
}
.cta-marquee:hover .cta-marquee-track { animation-play-state: paused; }
.cta-chip {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 13px 26px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 16px;
    color: #fff;
    white-space: nowrap;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.25);
}
.cta-chip .icon-inline { width: 18px; height: 18px; stroke: #fff; }
.cta-chip.call { background: #ff3b2f; }
.cta-chip.call:hover { background: #e22b20; }
.cta-chip.wa { background: #22c55e; }
.cta-chip.wa:hover { background: #16a34a; }
@keyframes ctaMarquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.hero {
    background:
        radial-gradient(circle at 12% 8%, rgba(255, 107, 53, 0.14), transparent 30%),
        radial-gradient(circle at 92% 20%, rgba(10, 47, 107, 0.1), transparent 34%),
        linear-gradient(180deg, #ffffff, #f8fbff 72%);
    color: var(--text);
    padding: clamp(54px, 8vw, 84px) 20px;
    border-bottom: 1px solid #e0e0e0;
    overflow: hidden;
}
.hero .container { display: grid; grid-template-columns: 1.2fr 1fr; gap: 50px; align-items: center; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; align-items: start; gap: 34px; width: 100%; }
.hero-inner { display: grid; gap: 30px; width: 100%; }
.hero-copy { text-align: center; max-width: 880px; margin: 0 auto; }
.hero {
    background:
        radial-gradient(circle at 12% 8%, rgba(255, 107, 53, 0.12), transparent 32%),
        radial-gradient(circle at 92% 14%, rgba(10, 47, 107, 0.10), transparent 34%),
        linear-gradient(180deg, #ffffff, #f3f8ff 78%);
    min-height: auto;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #e3ebf5;
}
.hero .container {
    position: relative;
}
.pill { display: inline-block; background: rgba(255, 107, 53, 0.1); border: 1px solid rgba(255, 107, 53, 0.38); padding: 8px 16px; border-radius: 20px; font-size: 13px; font-weight: 700; letter-spacing: 0.5px; margin-bottom: 14px; color: #cb4f22; }
.hero-image-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 16px;
}
.hero-image-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    min-height: 120px;
    border: 1px solid #d9e5f2;
    box-shadow: 0 8px 20px rgba(11, 31, 58, 0.18);
}
.hero-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-image-card span {
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 10px;
    background: rgba(10, 47, 107, 0.86);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    padding: 7px 10px;
    font-size: 12px;
    font-weight: 800;
    text-align: center;
}
.hero-copy h1 { font-size: clamp(30px, 4.2vw, 50px); line-height: 1.1; margin-bottom: 20px; color: var(--secondary); font-weight: 800; max-width: 22ch; margin-left: auto; margin-right: auto; }
.hero-copy p { font-size: clamp(15px, 2vw, 18px); line-height: 1.7; margin-bottom: 20px; color: #425466; max-width: 64ch; margin-left: auto; margin-right: auto; }
.hero-copy ul { list-style: none; margin: 20px 0; }
.hero-copy li { padding: 9px 0; color: #24364a; font-size: 16px; font-weight: 700; }
.hero-copy li::before { content: "✓ "; color: var(--accent); font-weight: 900; margin-right: 10px; font-size: 18px; }
.hero-cta { margin-top: 28px; display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.hero-form-wrap { background: linear-gradient(160deg, #ffffff 0%, #f7fbff 45%, #eff6ff 100%); border: 1px solid #d5e1ee; border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow-soft); }
.hero-form-wrap h3 { color: var(--secondary); margin-bottom: 16px; font-size: 18px; font-weight: 700; }
.quick-form { display: grid; gap: 14px; }
.hero-trust-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 16px;
}
.hero-trust-grid span {
    font-size: 12px;
    font-weight: 800;
    color: #0f3d72;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border: 1px solid #d4e3f1;
    background: rgba(255, 255, 255, 0.88);
    border-radius: 999px;
    padding: 8px 10px;
    text-align: center;
}
.hero-dynamic-gallery {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    max-height: 460px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(220, 231, 244, 0.72);
    box-shadow: 0 18px 34px rgba(8, 20, 40, 0.24);
    background: #0a1f2e;
}
.hero-dynamic-track {
    display: flex;
    height: 100%;
    width: 100%;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}
.hero-dynamic-track::-webkit-scrollbar {
    display: none;
}
.hero-slide {
    position: relative;
    flex: 0 0 100%;
    width: 100%;
    min-width: 100%;
    height: 100%;
    overflow: hidden;
    scroll-snap-align: start;
    display: flex;
    align-items: stretch;
    justify-content: center;
    background: #0a1f2e;
}
.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease;
    display: block;
}
.hero-dynamic-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease;
}
.hero-call-overlay {
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border-radius: 999px;
    background: rgba(10, 23, 53, 0.86);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.28);
    padding: 8px 10px;
    text-align: center;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 0.02em;
}
.hero-call-overlay:hover {
    background: rgba(8, 18, 42, 0.95);
}
.hero-dots {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
}
.hero-dots span {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.55);
}
.hero-dots span.active {
    width: 20px;
    background: #ffffff;
}
.hero-form-wrap {
    display: block;
}
.hero-form-offset {
    margin-top: 90px;
}

.usp-band {
    padding: 26px 0;
    border-bottom: 1px solid #e2eaf3;
    background: linear-gradient(90deg, #f7fbff, #fef7f2);
}
.usp-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}
.usp-grid article {
    background: #fff;
    border: 1px solid #d9e5f1;
    border-radius: 14px;
    padding: 16px;
    box-shadow: 0 8px 20px rgba(17, 44, 78, 0.07);
}
.usp-grid h3 {
    font-size: 16px;
    color: var(--secondary);
    margin-bottom: 6px;
}
.usp-grid p {
    font-size: 13px;
    color: #50647b;
    line-height: 1.5;
}
.quick-form input, .quick-form select, .contact-form input, .contact-form select, .contact-form textarea, #serviceSearch {
    width: 100%; border: 1.5px solid #d6e0ea; border-radius: 10px; padding: 11px; font-size: 14px; font-family: inherit; transition: 0.2s;
}
.quick-form input:focus, .quick-form select:focus, .contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus, #serviceSearch:focus {
    outline: none; border-color: var(--primary); background: #fffbf7;
}

.counters { background: linear-gradient(90deg, #f0f4fa, #f7fafc); border-bottom: 1px solid #e0e0e0; padding: 60px 0; }
.counter-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.counter-grid article { text-align: center; padding: 22px 18px; background: rgba(255, 255, 255, 0.72); border: 1px solid #e1e8f0; border-radius: var(--radius-md); }
.counter-grid h3 { font-size: 44px; font-weight: 800; line-height: 1; margin-bottom: 8px; color: var(--secondary); }
.counter-grid p { color: #666; font-weight: 600; font-size: 15px; }

.about { border-bottom: 1px solid #e0e0e0; padding: 80px 0; overflow: hidden; }
.about .container { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: stretch; overflow: hidden; background: linear-gradient(160deg, #ffffff 0%, #f5f9ff 100%); border: 1px solid #d5e1ee; border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-soft); }
.about-media {
    display: grid;
    gap: 16px;
    align-content: stretch;
    width: 100%;
    justify-items: center;
}
.about-media img {
    width: 100%;
    height: 100%;
    min-height: clamp(240px, 28vw, 360px);
    max-height: none;
    border-radius: var(--radius-md);
    border: 1px solid #dbe5ee;
    object-fit: cover;
    object-position: center;
    box-shadow: var(--shadow-soft);
}
.about-img { width: 100%; border-radius: 6px; border: 1px solid var(--border); }
.about-copy { display: flex; flex-direction: column; }
.about-copy h2 { margin-bottom: 16px; }
.about-copy p { color: #445467; }
.about-text h3 { font-size: 32px; margin-bottom: 20px; color: var(--secondary); font-weight: 800; }
.about-text ul { list-style: none; }
.about-text li { padding: 10px 0; color: #555; font-size: 16px; font-weight: 600; }
.about-text li::before { content: "✓ "; color: var(--accent); font-weight: 900; margin-right: 10px; font-size: 18px; }
.about-points { display: grid; gap: 12px; margin-top: 20px; }
.about-points span { background: #f5f8fc; border: 1px solid #d9e5f0; border-radius: 10px; padding: 12px 16px; font-weight: 600; font-size: 15px; color: #2f3e50; }

.process {
    border-bottom: 1px solid #e0e8f1;
    background:
        radial-gradient(circle at 90% 8%, rgba(10, 47, 107, 0.07), transparent 35%),
        radial-gradient(circle at 10% 90%, rgba(255, 107, 53, 0.1), transparent 30%),
        #fdfefe;
}
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 22px;
}
.process-grid article {
    border: 1px solid #dbe7f2;
    background: #ffffff;
    border-radius: 14px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(14, 36, 64, 0.07);
    transition: all 0.3s ease;
}
.process-grid article:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(14, 36, 64, 0.14);
}
.process-grid img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-bottom: 1px solid #dbe7f2;
}
.process-grid h3 {
    font-size: 18px;
    color: var(--secondary);
    margin-bottom: 8px;
    padding: 14px 14px 0;
    font-weight: 700;
}
.process-grid p {
    font-size: 14px;
    color: #4c6078;
    line-height: 1.6;
    padding: 0 14px 14px;
}

.services { border-bottom: 1px solid #e0e0e0; padding: 80px 0; }
.service-tools { margin: 30px 0; display: grid; gap: 16px; }
.chips { display: flex; gap: 10px; flex-wrap: wrap; }
.chip { border: 1.5px solid #9cb1c9; background: #eef4fb; color: #17324f; border-radius: 20px; padding: 9px 16px; cursor: pointer; font-weight: 700; font-size: 14px; transition: all 0.2s; opacity: 1; }
.chip.active, .chip:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
#serviceSearch { margin-top: 10px; }
.service-grid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); padding: 20px 0; }
.svc { background: #fff; border: 1.5px solid #dbe6f0; border-radius: 12px; padding: 18px; transition: all 0.3s; box-shadow: 0 8px 20px rgba(16, 35, 65, 0.04); }
.svc:hover { border-color: var(--primary); box-shadow: 0 12px 28px rgba(255, 107, 53, 0.16); transform: translateY(-3px); }
.svc img {
    width: calc(100% + 36px);
    height: 140px;
    margin: -18px -18px 12px -18px;
    border-radius: 12px 12px 0 0;
    object-fit: cover;
    border: none;
    display: block;
}
.svc h3 { font-size: 17px; color: var(--secondary); margin-bottom: 10px; font-weight: 700; }
.svc p { color: #666; font-size: 14px; }

.gallery {
    border-bottom: 1px solid #e0e0e0;
    padding: 80px 0;
    background:
        radial-gradient(circle at 85% 5%, rgba(10, 47, 107, 0.08), transparent 35%),
        radial-gradient(circle at 10% 95%, rgba(255, 107, 53, 0.12), transparent 30%),
        #fff;
}
.gallery .section-title { margin-bottom: 20px; }
.media-toolbar { display: flex; justify-content: space-between; align-items: center; gap: 14px; flex-wrap: wrap; margin: 14px 0 8px; }
.media-chip-group { display: flex; gap: 10px; flex-wrap: wrap; }
.media-chip { border: 1px solid rgba(10, 47, 107, 0.22); background: rgba(255, 255, 255, 0.85); border-radius: 999px; padding: 9px 16px; font-size: 13px; font-weight: 700; color: var(--secondary); cursor: pointer; transition: all 0.25s ease; }
.media-chip:hover, .media-chip.active { background: linear-gradient(135deg, #ff6b35, #ff8b5d); color: #fff; border-color: transparent; box-shadow: 0 8px 18px rgba(255, 107, 53, 0.2); }
.media-refresh { border: 0; background: linear-gradient(135deg, #0a2f6b, #0d4a8f); color: #fff; border-radius: 10px; padding: 10px 16px; font-size: 13px; font-weight: 700; cursor: pointer; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.media-refresh:hover { transform: translateY(-1px); box-shadow: 0 8px 16px rgba(10, 47, 107, 0.28); }
.media-count { font-size: 14px; color: #425466; margin: 0 0 18px; font-weight: 600; }
.gallery-slider-wrap { display: grid; grid-template-columns: auto 1fr auto; gap: 16px; align-items: center; margin: 30px 0; }
.arrow { border: 0; width: 44px; height: 44px; border-radius: 12px; background: var(--primary); color: #fff; font-size: 20px; cursor: pointer; transition: 0.2s; font-weight: 300; box-shadow: 0 8px 16px rgba(255, 107, 53, 0.2); }
.arrow:hover { background: #ff5722; }
.gallery-track-wrap { overflow: auto; overflow-y: hidden; border-radius: 14px; -webkit-overflow-scrolling: touch; }
.gallery-track { display: flex; gap: 14px; min-height: 206px; }
.gallery-item { width: 300px; height: 200px; border-radius: 12px; object-fit: cover; flex: 0 0 auto; border: 1px solid rgba(255, 255, 255, 0.5); box-shadow: 0 12px 30px rgba(11, 31, 58, 0.16); transition: transform 0.25s ease, box-shadow 0.25s ease; background: #f2f5f8; }
.gallery-item:hover { transform: translateY(-4px); box-shadow: 0 16px 34px rgba(11, 31, 58, 0.24); }
.video-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px; margin: 30px 0; }
.video-card { background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(246, 249, 252, 0.95)); border: 1px solid rgba(10, 47, 107, 0.13); border-radius: 12px; padding: 10px; box-shadow: 0 10px 24px rgba(14, 40, 72, 0.1); }
.video-grid video { width: 100%; border-radius: 10px; border: 1px solid rgba(10, 47, 107, 0.12); background: #000; }
.media-empty { padding: 16px; border: 1px dashed rgba(10, 47, 107, 0.3); border-radius: 10px; color: #4f6278; font-size: 14px; font-weight: 600; text-align: center; background: rgba(255, 255, 255, 0.8); }

.testimonials { background: var(--secondary); color: #fff; border-bottom: 1px solid #e0e0e0; padding: 80px 0; }
.testimonials .section-title { color: #fff; }
.review-slider { margin-top: 30px; }
.review { display: none; background: #fff; color: var(--text); border-radius: 12px; padding: 24px; max-width: 100%; border: 1px solid #dde7f0; box-shadow: 0 14px 26px rgba(14, 37, 64, 0.12); }
.review.active { display: block; }
.review h4 { color: var(--primary); margin-bottom: 10px; font-size: 20px; font-weight: 700; display: flex; align-items: center; gap: 10px; }
.review-stars { color: #f5b50a; font-size: 22px; letter-spacing: 2px; line-height: 1; text-shadow: 0 1px 1px rgba(0,0,0,0.12); }
.review-rating-text { color: var(--secondary); font-weight: 800; font-size: 15px; }
.review p { color: #555; line-height: 1.8; font-size: 15px; }
.review strong { display: inline-block; margin-top: 14px; color: var(--secondary); font-weight: 700; }
.review-dots { display: flex; gap: 10px; margin-top: 20px; justify-content: center; }
.review-dots button { width: 12px; height: 12px; border: 0; border-radius: 50%; background: rgba(255,255,255,0.4); cursor: pointer; transition: 0.2s; }
.review-dots button.active { background: #fff; }

.review-form-wrap {
    margin-top: 34px;
    background: #fff;
    color: var(--text);
    border-radius: 16px;
    padding: 28px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid #dde7f0;
    box-shadow: 0 16px 34px rgba(14, 37, 64, 0.16);
}
.review-form-title { color: var(--secondary); font-size: 22px; font-weight: 800; margin-bottom: 6px; text-align: center; }
.review-form-sub { color: #5b6b7d; font-size: 14px; text-align: center; margin-bottom: 20px; }
.review-form { display: grid; gap: 14px; }
.review-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.review-form input[type="text"],
.review-form input[type="email"],
.review-form textarea {
    width: 100%; border: 1.5px solid #d6e0ea; border-radius: 10px; padding: 12px; font-size: 14px; font-family: inherit; transition: 0.2s; background: #fff; color: var(--text);
}
.review-form input:focus, .review-form textarea:focus { outline: none; border-color: var(--primary); background: #fffbf7; }
.review-form textarea { resize: vertical; min-height: 96px; }
.review-rating { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.review-rating-label { font-weight: 700; color: var(--secondary); font-size: 14px; }
.star-input { display: inline-flex; flex-direction: row-reverse; gap: 4px; }
.star-input input { position: absolute; opacity: 0; width: 0; height: 0; }
.star-input label { font-size: 30px; color: #d4dbe4; cursor: pointer; line-height: 1; transition: color 0.15s ease; }
.star-input input:checked ~ label,
.star-input label:hover,
.star-input label:hover ~ label { color: #f5b50a; }
.review-form .btn { justify-self: start; }
.review-form-note { font-size: 14px; font-weight: 700; margin: 0; min-height: 18px; }
.review-form-note.is-success { color: #1a9c53; }
.review-form-note.is-error { color: #d63a3a; }

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

.faq { border-bottom: 1px solid #e0e0e0; padding: 80px 0; }
.faq-grid { display: grid; gap: 14px; max-width: 800px; }
.faq-grid details { background: #fff; border: 1.5px solid #dbe5ee; border-radius: 12px; padding: 18px; cursor: pointer; }
.faq-grid summary { cursor: pointer; font-weight: 700; color: var(--secondary); font-size: 16px; }
.faq-grid p { color: #555; margin-top: 14px; line-height: 1.7; font-size: 15px; }

.contact { background: #f9f9f9; border-bottom: 1px solid #e0e0e0; padding: 80px 0; }
.contact .container { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-form { display: grid; gap: 14px; }
.contact-form textarea { min-height: 140px; resize: none; }
.contact-card { background: #fff; border: 1.5px solid #dbe5ee; border-radius: 14px; padding: 24px; box-shadow: var(--shadow-soft); }
.contact-card h3 { margin-bottom: 14px; color: var(--secondary); font-weight: 700; font-size: 18px; }
.contact-card p { margin-bottom: 12px; color: #666; font-size: 15px; }
.contact-card a { color: var(--primary); font-weight: 700; transition: 0.2s; }
.contact-card a:hover { color: #ff5722; }

.footer { background: linear-gradient(180deg, #092957, #071d40); color: #c3ccda; padding: 50px 20px 16px; border-top: 3px solid var(--primary); }
.foot-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 40px; max-width: 1200px; margin: 0 auto; margin-bottom: 20px; }
.footer h4 { color: #fff; margin-bottom: 14px; font-size: 15px; font-weight: 700; }
.footer ul { list-style: none; display: grid; gap: 10px; }
.footer li a { color: #bbb; font-size: 14px; transition: 0.2s; }
.footer li a:hover { color: #fff; }
.copyright { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 24px; padding-top: 14px; text-align: center; font-size: 13px; color: #999; }
.footer-logo { display: flex; flex-direction: column; align-items: center; gap: 8px; margin-top: 24px; text-align: center; }
.footer-logo img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(255,255,255,0.18); background: #fff; box-shadow: 0 4px 12px rgba(0,0,0,0.25); }
.footer-logo span { color: #cfdaeb; font-weight: 700; font-size: 13px; letter-spacing: 0.02em; }

.float-wa, .float-call {
    position: fixed; right: 22px; width: 54px; height: 54px; border-radius: 12px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 24px; z-index: 998; cursor: pointer; transition: 0.3s; box-shadow: 0 12px 26px rgba(0,0,0,0.2);
}
.float-wa { bottom: 90px; background: #22c55e; }
.float-wa:hover { background: #16a34a; transform: scale(1.1); }
.float-call { bottom: 24px; background: #ef4444; }
.float-call:hover { background: #dc2626; transform: scale(1.1); }

.float-wa, .float-call {
    right: 16px;
    border-radius: 999px;
    border: 3px solid #fff;
    width: 70px;
    height: 70px;
    box-shadow: 0 10px 24px rgba(4, 14, 31, 0.3);
}
.float-call {
    top: auto;
    bottom: 184px;
    background: #ff1313;
    animation: myraaCallPulse 1.8s ease-out infinite;
}
.float-wa {
    top: auto;
    bottom: 102px;
    background: #43ca5c;
    animation: myraaWaPulse 1.8s ease-out infinite;
}
.float-call svg { width: 30px; height: 30px; }
.float-wa svg { width: 36px; height: 36px; fill: #fff; stroke: none; }
.float-call:hover, .float-wa:hover { animation-play-state: paused; }

@keyframes myraaCallPulse {
    0% { box-shadow: 0 10px 24px rgba(4, 14, 31, 0.3), 0 0 0 0 rgba(255, 19, 19, 0.55); }
    70% { box-shadow: 0 10px 24px rgba(4, 14, 31, 0.3), 0 0 0 18px rgba(255, 19, 19, 0); }
    100% { box-shadow: 0 10px 24px rgba(4, 14, 31, 0.3), 0 0 0 0 rgba(255, 19, 19, 0); }
}
@keyframes myraaWaPulse {
    0% { box-shadow: 0 10px 24px rgba(4, 14, 31, 0.3), 0 0 0 0 rgba(67, 202, 92, 0.55); }
    70% { box-shadow: 0 10px 24px rgba(4, 14, 31, 0.3), 0 0 0 18px rgba(67, 202, 92, 0); }
    100% { box-shadow: 0 10px 24px rgba(4, 14, 31, 0.3), 0 0 0 0 rgba(67, 202, 92, 0); }
}

.back-to-top {
    position: fixed;
    right: 16px;
    bottom: 268px;
    width: 50px;
    height: 50px;
    border-radius: 999px;
    border: 3px solid #fff;
    background: var(--secondary, #0a2f6b);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    box-shadow: 0 10px 24px rgba(4, 14, 31, 0.3);
}
.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    background: #08234f;
    transform: translateY(-2px);
}
.back-to-top svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: #fff;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .reveal,
    .reveal.in-view {
        opacity: 1;
        transform: none;
    }
}

@media (min-width: 1600px) {
    .container { max-width: 1460px; }
    .hero-copy h1 { font-size: 52px; max-width: 18ch; }
    .service-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .video-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

[data-theme="dark"] .top-strip {
    background: #10253d;
    color: #f2f7ff;
    border-bottom-color: #ff8a57;
}
[data-theme="dark"] .strip-inner a {
    color: #f2f7ff;
    font-weight: 700;
}
[data-theme="dark"] .strip-inner a:hover {
    color: #ffd4c1;
}
[data-theme="dark"] .site-header {
    background: #0d1726;
    border-bottom-color: #2c3f56;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
}
[data-theme="dark"] .menu-btn {
    color: #ecf4ff;
}
[data-theme="dark"] .menu-grid {
    background: #18293f;
    border-color: #2c3f56;
}
[data-theme="dark"] .menu-grid span {
    background: #8fb6ff;
}
[data-theme="dark"] .brand strong {
    color: #f2f7ff;
}
[data-theme="dark"] .brand small {
    color: #83f0c8;
}
[data-theme="dark"] .desktop-nav > a,
[data-theme="dark"] .nav-dd > button {
    color: #ecf4ff;
}
[data-theme="dark"] .desktop-nav > a:hover,
[data-theme="dark"] .nav-dd > button:hover {
    background: rgba(255, 138, 87, 0.12);
    color: #ffd2bf;
}
[data-theme="dark"] .dd-menu {
    background: #15283f;
    border-color: #2c3f56;
}
[data-theme="dark"] .dd-menu a {
    color: #d8e6f8;
    border-bottom-color: #25384f;
}
[data-theme="dark"] .dd-menu a:hover {
    background: #1d3350;
    color: #ffd7c7;
}
[data-theme="dark"] .mobile-nav {
    background: #122237;
    border-top-color: #2b3e56;
}
[data-theme="dark"] .m-link,
[data-theme="dark"] .m-dd-btn,
[data-theme="dark"] .m-dd-list a {
    color: #dbe8f9;
    border-bottom-color: #23384f;
}
[data-theme="dark"] .m-dd-list {
    background: #162a42;
}
[data-theme="dark"] .hero {
    background:
        radial-gradient(circle at 12% 8%, rgba(255, 138, 87, 0.2), transparent 30%),
        radial-gradient(circle at 92% 20%, rgba(60, 129, 219, 0.16), transparent 34%),
        #0e1a2a;
    border-bottom-color: #22364c;
}
[data-theme="dark"] .btn-outline {
    border-color: #d8e6fb;
    color: #e7f0ff;
}
[data-theme="dark"] .btn-outline:hover {
    background: rgba(216, 230, 251, 0.12);
}
[data-theme="dark"] .hero-trust-grid span {
    background: #14283f;
    color: #dbe9ff;
    border-color: #31506f;
}
[data-theme="dark"] .usp-band {
    background: linear-gradient(90deg, #122238, #1b273a);
    border-bottom-color: #23384f;
}
[data-theme="dark"] .usp-grid article,
[data-theme="dark"] .process-grid article {
    background: #16283f;
    border-color: #2f4560;
    box-shadow: none;
}
[data-theme="dark"] .usp-grid h3,
[data-theme="dark"] .process-grid h3,
[data-theme="dark"] .usp-grid p,
[data-theme="dark"] .process-grid p {
    color: #e7f0ff;
}
[data-theme="dark"] .process {
    background:
        radial-gradient(circle at 90% 8%, rgba(82, 141, 232, 0.2), transparent 35%),
        radial-gradient(circle at 10% 90%, rgba(255, 138, 87, 0.18), transparent 34%),
        #0f1d30;
    border-bottom-color: #21354c;
}
[data-theme="dark"] .hero-copy h1 {
    color: #f2f7ff;
}
[data-theme="dark"] .hero-copy p,
[data-theme="dark"] .hero-copy li,
[data-theme="dark"] .section-sub,
[data-theme="dark"] .about-copy p,
[data-theme="dark"] .welcome-copy p,
[data-theme="dark"] .svc p,
[data-theme="dark"] .contact-card p,
[data-theme="dark"] .media-count,
[data-theme="dark"] .counter-grid p {
    color: #d8e5f6;
}
[data-theme="dark"] .welcome-copy h2 {
    color: #f2f7ff;
}
[data-theme="dark"] .pill {
    background: rgba(255, 138, 87, 0.16);
    color: #ffe3d3;
    border-color: rgba(255, 138, 87, 0.45);
}
[data-theme="dark"] .hero-image-card {
    border-color: #35516f;
    box-shadow: 0 8px 20px rgba(2, 10, 18, 0.55);
}
[data-theme="dark"] .hero-image-card span {
    background: rgba(12, 31, 54, 0.9);
}
[data-theme="dark"] .hero-form-wrap,
[data-theme="dark"] .contact-card,
[data-theme="dark"] .review,
[data-theme="dark"] .faq-grid details,
[data-theme="dark"] .svc,
[data-theme="dark"] .video-card,
[data-theme="dark"] .counter-grid article,
[data-theme="dark"] .about-points span {
    background: #16283f;
    border-color: #2b3f57;
    box-shadow: none;
}
[data-theme="dark"] .hero-form-wrap {
    background: #162b42;
    border-color: #37506b;
}
[data-theme="dark"] .welcome-grid,
[data-theme="dark"] .about .container {
    background: #112237;
    border-color: #2b3f57;
    box-shadow: none;
}
[data-theme="dark"] .enquiry-extra { border-top-color: #2b3f57; }
[data-theme="dark"] .enquiry-extra img { border-color: #2b3f57; }
[data-theme="dark"] .enquiry-extra-info strong { color: #f2f7ff; }
[data-theme="dark"] .enquiry-extra-info p { color: #d8e5f6; }
[data-theme="dark"] .enquiry-contact a { color: #f2f7ff; }
[data-theme="dark"] .enquiry-contact a:hover { color: #ff8a57; }
[data-theme="dark"] .hero-form-wrap h3,
[data-theme="dark"] .svc h3,
[data-theme="dark"] .contact-card h3,
[data-theme="dark"] .faq-grid summary,
[data-theme="dark"] .review strong,
[data-theme="dark"] .review p,
[data-theme="dark"] .review h4 {
    color: #f2f7ff;
}
[data-theme="dark"] .quick-form input,
[data-theme="dark"] .quick-form select,
[data-theme="dark"] .contact-form input,
[data-theme="dark"] .contact-form select,
[data-theme="dark"] .contact-form textarea,
[data-theme="dark"] #serviceSearch {
    background: #0f1f34;
    color: #f3f8ff;
    border-color: #39536d;
}
[data-theme="dark"] .quick-form select option,
[data-theme="dark"] .contact-form select option {
    background: #102239;
    color: #f2f7ff;
}
[data-theme="dark"] .quick-form input::placeholder,
[data-theme="dark"] .contact-form input::placeholder,
[data-theme="dark"] .contact-form textarea::placeholder {
    color: #b8c8db;
}
[data-theme="dark"] .about-points span,
[data-theme="dark"] .media-empty {
    color: #dbe7f8;
}
[data-theme="dark"] .footer {
    background: linear-gradient(180deg, #081a2d, #061425);
    color: #d2dceb;
}
[data-theme="dark"] .footer h4 {
    color: #eef4ff;
}
[data-theme="dark"] .footer li a {
    color: #d2dceb;
}
[data-theme="dark"] .footer li a:hover {
    color: #ffffff;
}
[data-theme="dark"] .gallery,
[data-theme="dark"] .services,
[data-theme="dark"] .about,
[data-theme="dark"] .faq,
[data-theme="dark"] .contact,
[data-theme="dark"] .counters {
    border-bottom-color: #21354c;
}
[data-theme="dark"] .gallery {
    background:
        radial-gradient(circle at 85% 5%, rgba(57, 113, 196, 0.2), transparent 38%),
        radial-gradient(circle at 10% 95%, rgba(255, 138, 87, 0.16), transparent 34%),
        #0f1d30;
}
[data-theme="dark"] .gallery .section-title,
[data-theme="dark"] .gallery .section-sub,
[data-theme="dark"] .gallery .media-count {
    color: #edf4ff;
}
[data-theme="dark"] .media-chip {
    background: #16283f;
    border-color: #325071;
    color: #e4eeff;
}
[data-theme="dark"] .chip {
    background: #203752;
    border-color: #5c7898;
    color: #ffffff;
}
[data-theme="dark"] .chip.active,
[data-theme="dark"] .chip:hover {
    background: linear-gradient(135deg, #ff6b35, #ff8b5d);
    color: #ffffff;
    border-color: transparent;
}
[data-theme="dark"] #serviceSearch::placeholder {
    color: #c8d8eb;
}
[data-theme="dark"] .gallery-track-wrap {
    background: rgba(14, 31, 51, 0.42);
}
[data-theme="dark"] .video-card {
    background: #16283f;
    border-color: #2f4560;
}
[data-theme="dark"] .testimonials {
    background: linear-gradient(180deg, #10233a, #0c1c2f);
    color: #ecf4ff;
    border-bottom-color: #21354c;
}
[data-theme="dark"] .testimonials .section-title {
    color: #f3f8ff;
}
[data-theme="dark"] .review-dots button {
    background: rgba(236, 244, 255, 0.35);
}
[data-theme="dark"] .review-dots button.active {
    background: #ffffff;
}
[data-theme="dark"] .contact {
    background: #0f1d30;
    border-bottom-color: #21354c;
}
[data-theme="dark"] .contact .section-title {
    color: #f2f7ff;
}

@media (max-width: 1400px) {
    .nav-wrap { grid-template-columns: auto 1fr auto; gap: 12px; padding: 12px 16px; overflow: visible; }
    .brand { min-width: 0; }
    .brand svg { width: 38px; height: 38px; flex-shrink: 0; }
    .brand-logo { width: 38px; height: 38px; }
    .brand strong { font-size: 22px; }
    .brand small { display: none; }
    .desktop-nav { display: flex; }
    .menu-btn { display: none; }
    .head-actions { gap: 8px; }
    .head-actions .mail { display: inline-flex; }
    .circle-btn { width: 36px; height: 36px; font-size: 16px; }
    .counter-grid { gap: 24px; }
}

@media (max-width: 1366px) {
    .nav-wrap { gap: 12px; }
}

@media (max-width: 1280px) {
    .nav-wrap { padding: 12px 14px; }
}

@media (max-width: 1200px) {
    .container { max-width: 100%; }
    .section-title { font-size: 32px; }
    .hero { padding: 70px 20px; }
    .hero-grid { grid-template-columns: 1fr; gap: 24px; }
    .hero-dynamic-gallery { aspect-ratio: 16 / 10; max-height: 520px; }
    .hero-form-offset { margin-top: 12px; }
    .about .container { gap: 40px; }
    .contact .container { gap: 35px; }
    .foot-grid { gap: 35px; }
}

@media (max-width: 1080px) {
    .nav-wrap { grid-template-columns: minmax(0, 1fr) auto; gap: 12px; padding: 12px 14px; }
    .desktop-nav { display: none; }
    .menu-btn { display: inline-flex; }
    .hero { padding: 60px 20px; }
    .hero-grid { grid-template-columns: 1fr; }
    .hero-dynamic-gallery { aspect-ratio: 16 / 11; max-height: 440px; }
    .hero-copy h1 { font-size: 40px; }
    .hero-form-wrap { padding: 20px; }
    .welcome-grid { grid-template-columns: 1fr; gap: 24px; padding: 20px; }
    .welcome-copy .about-points { grid-template-columns: 1fr; }
    .counters { padding: 50px 0; }
    .counter-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; padding: 35px 20px; }
    .counter-grid h3 { font-size: 36px; }
    .about { padding: 60px 0; }
    .about .container { grid-template-columns: 1fr; gap: 28px; }
    .about-media { width: 100%; }
    .about-media img { width: min(100%, 420px); height: clamp(210px, 52vw, 280px); max-height: 280px; }
    .services { padding: 60px 0; }
    .gallery { padding: 60px 0; }
    .gallery-item { width: 260px; height: 170px; }
    .testimonials { padding: 60px 0; }
    .faq { padding: 60px 0; }
    .contact { padding: 60px 0; }
    .contact .container { grid-template-columns: 1fr; gap: 30px; }
    .media-toolbar { align-items: stretch; }
    .media-refresh { width: 100%; justify-content: center; }
    .footer { padding: 40px 20px 12px; }
    .foot-grid { grid-template-columns: 1fr; gap: 25px; }
    .float-wa, .float-call { width: 60px; height: 60px; font-size: 22px; }
    .float-call { bottom: 166px; }
    .float-wa { bottom: 94px; }
    .back-to-top { bottom: 238px; }
    .usp-grid,
    .process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 960px) {
    .section-pad { padding: 60px 0; }
    .nav-wrap { gap: 15px; }
    .brand strong { font-size: 22px; }
    .desktop-nav > a, .nav-dd > button { padding: 9px 12px; font-size: 14px; }
    .hero-copy h1 { font-size: 38px; }
    .hero-copy p { font-size: 16px; }
    .counter-grid h3 { font-size: 32px; }
    .about-text h3 { font-size: 28px; }
    .section-title { font-size: 30px; }
}

@media (max-width: 800px) {
    .strip-inner { gap: 20px; }
    .top-strip { padding: 10px 0; font-size: 13px; }
    .section-title { font-size: 28px; }
    .section-sub { font-size: 15px; }
    .welcome-grid { padding: 18px; gap: 22px; }
    .welcome-grid .hero-form-wrap { align-self: stretch; }
    .enquiry-extra { grid-template-columns: 1fr; gap: 14px; }
    .enquiry-extra img { width: 100%; height: 200px; min-height: 0; }
    .enquiry-extra-info { display: flex; flex-direction: column; min-width: 0; }
    .enquiry-extra-info p { margin-bottom: 10px; }
    .enquiry-contact { display: flex; flex-wrap: nowrap; align-items: center; gap: 8px; margin-bottom: 10px; line-height: 1.4; min-width: 0; }
    .enquiry-contact a { word-break: break-all; min-width: 0; }
    .enquiry-contact .icon-inline { flex-shrink: 0; }
    .enquiry-extra-actions { margin-top: 4px; }
    .review-form-wrap { padding: 20px; }
    .review-form-row { grid-template-columns: 1fr; }
    .hero { padding: 50px 16px; }
    .hero-banner { height: clamp(360px, 56vh, 460px); }
    .hero-banner-caption h1 { font-size: clamp(28px, 8vw, 40px); }
    .hero-banner-caption p { font-size: 15px; max-width: 90%; }
    .hero-banner-arrow { width: 38px; height: 38px; font-size: 15px; }
    .cta-chip { font-size: 14px; padding: 11px 20px; }
    .hero-copy h1 { font-size: 36px; margin-bottom: 14px; }
    .hero-copy p { font-size: 15px; }
    .hero-copy li { font-size: 14px; }
    .hero-cta { gap: 10px; }
    .hero-form-wrap { padding: 18px; }
    .quick-form { gap: 10px; }
    .btn { padding: 11px 24px; font-size: 15px; }
    .counters { padding: 45px 0; }
    .counter-grid { gap: 16px; padding: 30px 16px; }
    .counter-grid article { padding: 16px; }
    .counter-grid h3 { font-size: 28px; }
    .counter-grid p { font-size: 14px; }
    .about { padding: 50px 0; }
    .about-text h3 { font-size: 26px; }
    .about-text li { font-size: 14px; }
    .about-points span { font-size: 14px; }
    .service-grid { gap: 14px; }
    .svc { padding: 14px; }
    .svc h3 { font-size: 15px; }
    .svc p { font-size: 13px; }
    .gallery-track { gap: 10px; }
    .gallery-item { width: 240px; height: 160px; }
    .video-grid { gap: 14px; }
    .review { padding: 18px; }
    .review p { font-size: 14px; }
    .faq-grid { gap: 10px; }
    .faq-grid details { padding: 14px; }
    .faq-grid summary { font-size: 14px; }
    .faq-grid p { font-size: 13px; }
    .contact-form, .contact-card { gap: 11px; }
    .contact-card { padding: 18px; }
    .contact-card h3 { font-size: 16px; }
    .contact-card p { font-size: 13px; }
    .footer { padding: 35px 16px 10px; }
    .footer h4 { font-size: 14px; }
    .footer li a { font-size: 13px; }
    .float-wa, .float-call { width: 56px; height: 56px; font-size: 20px; right: 12px; }
    .float-call { bottom: 158px; }
    .float-wa { bottom: 92px; }
    .back-to-top { right: 12px; bottom: 224px; }
    .menu-grid { display: none; }
}

@media (max-width: 720px) {
    .container { padding: 0 16px; }
    .nav-wrap { grid-template-columns: minmax(0, 1fr) auto; padding: 12px 14px; gap: 10px; }
    .brand { min-width: 0; overflow: visible; }
    .brand span { max-width: 170px; }
    .brand svg { width: 34px; height: 34px; flex-shrink: 0; }
    .brand-logo { width: 34px; height: 34px; }
    .brand strong { font-size: 18px; letter-spacing: 0px; }
    .brand small { display: block; font-size: 9px; line-height: 1.15; white-space: normal; }
    .head-actions { gap: 6px; }
    .head-actions .mail { display: none; }
    .circle-btn { width: 36px; height: 36px; font-size: 16px; }
    .menu-btn { width: 36px; height: 36px; font-size: 18px; }
    .hero-copy h1 { font-size: 34px; }
    .counter-grid { grid-template-columns: repeat(2, 1fr); }
    .section-title { margin-bottom: 16px; }
    .service-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
}

@media (max-width: 640px) {
    .strip-inner { gap: 10px; font-size: 11px; }
    .strip-inner a { font-weight: 600; }
    .strip-inner a:last-child { display: none; }
    .hero { padding: 40px 16px 35px; min-height: auto; }
    .hero-copy h1 { font-size: 36px; line-height: 1.12; }
    .hero-copy p { font-size: 16px; }
    .hero-dynamic-gallery { aspect-ratio: 4 / 3; max-height: 380px; }
    .hero-call-overlay { font-size: 14px; }
    .hero-dots { bottom: 10px; }
    .hero-form-offset { margin-top: 10px; }
    .hero-copy li { font-size: 13px; }
    .hero-copy ul { margin: 14px 0; }
    .hero-copy li { padding: 5px 0; }
    .hero-cta { margin-top: 18px; gap: 10px; }
    .btn { padding: 10px 20px; font-size: 14px; }
    .hero-panel { padding: 24px 22px; }
    .counter-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; padding: 28px 16px; }
    .counter-grid article { padding: 14px; }
    .counter-grid h3 { font-size: 26px; }
    .about { padding: 45px 0; }
    .about-text h3 { font-size: 24px; }
    .gallery-item { width: 220px; height: 150px; }
    .arrow { width: 40px; height: 40px; }
    .gallery-slider-wrap { grid-template-columns: 1fr; }
    .arrow { width: 100%; }
    .video-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 12px; }
    .contact-form { gap: 10px; }
    .contact-form textarea { min-height: 100px; }
    .hero-trust-grid { grid-template-columns: 1fr; }
    .hero-image-strip { grid-template-columns: 1fr; gap: 10px; }
    .usp-grid,
    .process-grid { grid-template-columns: 1fr; }
    .review { padding: 16px; }
    .review h4 { font-size: 16px; }
    .float-wa, .float-call { width: 52px; height: 52px; font-size: 18px; right: 12px; }
    .float-wa { top: auto; bottom: calc(86px + env(safe-area-inset-bottom)); }
    .float-call { top: auto; bottom: calc(150px + env(safe-area-inset-bottom)); }
    .back-to-top { width: 46px; height: 46px; bottom: calc(214px + env(safe-area-inset-bottom)); right: 12px; }
}

@media (max-width: 540px) {
    .strip-inner { justify-content: center; gap: 8px; font-size: 11px; overflow: hidden; }
    .top-strip { padding: 8px 0; overflow: hidden; }
    .nav-wrap { padding: 10px 12px; gap: 8px; overflow: visible; }
    .brand span { max-width: 150px; }
    .brand strong { font-size: 17px; }
    .brand small { display: block; font-size: 8.5px; line-height: 1.1; white-space: normal; }
    .head-actions { gap: 5px; }
    .call-pill { display: none; }
    .circle-btn { width: 34px; height: 34px; font-size: 15px; }
    .hero { padding: 40px 14px 30px; overflow: hidden; }
    .hero .container { overflow: hidden; }
    .hero-copy h1 { font-size: 32px; margin-bottom: 12px; word-wrap: break-word; }
    .hero-copy p { font-size: 15px; word-wrap: break-word; }
    .hero-copy li::before { font-size: 16px; }
    .hero-cta { margin-top: 16px; gap: 8px; }
    .btn { padding: 10px 18px; font-size: 13px; white-space: nowrap; }
    .pill { font-size: 12px; padding: 7px 14px; }
    .hero-panel { padding: 20px 18px; }
    .counters { padding: 40px 0; overflow: hidden; }
    .counter-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 25px 14px; }
    .counter-grid h3 { font-size: 24px; margin-bottom: 4px; }
    .counter-grid p { font-size: 12px; font-weight: 600; }
    .section-title { font-size: 26px; margin-bottom: 12px; }
    .section-sub { font-size: 14px; margin-bottom: 18px; }
    .about { padding: 40px 0; overflow: hidden; }
    .about .container { overflow: hidden; }
    .about-text h3 { font-size: 22px; margin-bottom: 14px; }
    .about-text li { font-size: 13px; }
    .service-grid { gap: 12px; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); padding: 16px 0; }
    .svc { padding: 12px; overflow: hidden; }
    .svc h3 { font-size: 14px; margin-bottom: 6px; word-wrap: break-word; }
    .svc p { font-size: 12px; }
    .service-tools .chips {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        padding-bottom: 6px;
    }
    .service-tools .chips::-webkit-scrollbar { height: 6px; }
    .service-tools .chips::-webkit-scrollbar-thumb { background: rgba(137, 160, 188, 0.7); border-radius: 999px; }
    .service-tools .chips::-webkit-scrollbar-track { background: transparent; }
    .service-tools .chip { flex: 0 0 auto; white-space: nowrap; }
    .chip { padding: 7px 12px; font-size: 12px; }
    .gallery { padding: 40px 0; overflow: hidden; }
    .gallery .container { overflow: hidden; }
    .gallery-track { gap: 8px; }
    .gallery-item { width: 200px; height: 140px; }
    .arrow { width: 38px; height: 38px; font-size: 18px; flex-shrink: 0; }
    .gallery-slider-wrap { overflow: visible; }
    .video-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 10px; }
    .testimonials { padding: 40px 0; overflow: hidden; }
    .testimonials .container { overflow: hidden; }
    .review { padding: 14px; overflow: hidden; }
    .review h4 { font-size: 15px; margin-bottom: 8px; }
    .review p { font-size: 13px; line-height: 1.7; }
    .faq { padding: 40px 0; overflow: hidden; }
    .faq .container { overflow: hidden; }
    .faq-grid { gap: 8px; }
    .faq-grid details { padding: 12px; overflow: hidden; }
    .faq-grid summary { font-size: 13px; }
    .faq-grid p { font-size: 12px; margin-top: 10px; }
    .contact { padding: 40px 0; overflow: hidden; }
    .contact .container { grid-template-columns: 1fr; gap: 20px; overflow: hidden; }
    .contact-form { gap: 10px; }
    .contact-form input, .contact-form select, .contact-form textarea { width: 100%; }
    .contact-form textarea { min-height: 90px; }
    .contact-card { padding: 16px; overflow: hidden; }
    .contact-card h3 { font-size: 16px; margin-bottom: 10px; }
    .contact-card p { font-size: 13px; word-wrap: break-word; }
    .footer { padding: 30px 14px 8px; overflow: hidden; }
    .foot-grid { gap: 20px; overflow: hidden; }
    .footer h4 { font-size: 13px; margin-bottom: 10px; }
    .footer li a { font-size: 12px; }
    .copyright { font-size: 11px; overflow-x: hidden; word-wrap: break-word; }
    .float-wa, .float-call { width: 52px; height: 52px; font-size: 18px; right: 12px; flex-shrink: 0; }
    .float-wa { top: auto; bottom: calc(84px + env(safe-area-inset-bottom)); }
    .float-call { top: auto; bottom: calc(148px + env(safe-area-inset-bottom)); }
    .back-to-top { width: 46px; height: 46px; right: 12px; bottom: calc(212px + env(safe-area-inset-bottom)); }
}

@media (max-width: 480px) {
    .container { padding: 0 14px; overflow: hidden; }
    .strip-inner { display: grid; grid-template-columns: 1fr; justify-items: center; gap: 4px; font-size: 10px; overflow: hidden; }
    .strip-inner a { white-space: nowrap; }
    .nav-wrap { padding: 10px 10px; gap: 10px; overflow: hidden; }
    .menu-btn { width: 34px; height: 34px; }
    .hero { padding: 36px 12px 26px; overflow: hidden; }
    .hero .container { overflow: hidden; }
    .hero-copy h1 { font-size: 28px; }
    .hero-copy p { font-size: 14px; }
    .counter-grid { gap: 10px; padding: 22px 12px; }
    .counter-grid h3 { font-size: 22px; }
    .section-title { font-size: 24px; }
    .service-grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 10px; overflow: hidden; }
    .gallery-item { width: 180px; height: 130px; }
    .contact .container { overflow: hidden; }
    .float-wa, .float-call { width: 50px; height: 50px; font-size: 18px; right: 12px; }
    .float-wa { top: auto; bottom: calc(82px + env(safe-area-inset-bottom)); }
    .float-call { top: auto; bottom: calc(144px + env(safe-area-inset-bottom)); }
    .back-to-top { width: 44px; height: 44px; right: 12px; bottom: calc(206px + env(safe-area-inset-bottom)); }
}

@media (max-width: 380px) {
    .strip-inner { gap: 6px; font-size: 10px; overflow: hidden; }
    .hero .container { overflow: hidden; }
    .hero-copy h1 { font-size: 24px; }
    .hero-copy p { font-size: 12px; }
    .counter-grid { overflow: hidden; }
    .counter-grid h3 { font-size: 20px; }
    .counter-grid p { font-size: 11px; }
    .section-title { font-size: 22px; overflow: hidden; }
    .section-sub { font-size: 13px; }
    .service-grid { grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); overflow: hidden; }
    .svc h3 { font-size: 13px; }
    .svc p { font-size: 11px; }
    .faq-grid summary { font-size: 12px; }
    .contact-card h3 { font-size: 15px; }
    .contact .container { overflow: hidden; }
    .float-wa, .float-call { width: 48px; height: 48px; font-size: 18px; right: 12px; }
    .float-wa { top: auto; bottom: calc(80px + env(safe-area-inset-bottom)); }
    .float-call { top: auto; bottom: calc(140px + env(safe-area-inset-bottom)); }
    .back-to-top { width: 42px; height: 42px; right: 12px; bottom: calc(200px + env(safe-area-inset-bottom)); }
}
