:root {
    --navy-950: #061426;
    --navy-900: #0a1e35;
    --navy-800: #102d4d;
    --blue-700: #1950a2;
    --blue-600: #1767bc;
    --blue-500: #2981d4;
    --gold-500: #f1b209;
    --gold-400: #f8c83d;
    --ink: #13243a;
    --muted: #607086;
    --line: #dce5ee;
    --surface: #f4f7fa;
    --white: #ffffff;
    --shadow-sm: 0 14px 40px rgba(8, 30, 55, 0.09);
    --shadow-lg: 0 32px 80px rgba(4, 20, 38, 0.22);
    --radius-sm: 12px;
    --radius-md: 22px;
    --radius-lg: 34px;
    --container: 1240px;
    --header-height: 88px;
    --font-sans: "Segoe UI", Arial, Helvetica, sans-serif;
    --font-display: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

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

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

button,
input,
textarea {
    font: inherit;
}

button {
    border: 0;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    color: var(--navy-950);
    font-family: var(--font-display);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.14;
}

h1 {
    margin-bottom: 24px;
    font-size: clamp(2.75rem, 4.5vw, 4.9rem);
}

h2 {
    margin-bottom: 24px;
    font-size: clamp(2rem, 3vw, 3.45rem);
}

h3 {
    font-size: 1.28rem;
    line-height: 1.35;
}

p {
    margin-bottom: 22px;
}

::selection {
    color: var(--navy-950);
    background: var(--gold-400);
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.section {
    position: relative;
    padding: 118px 0;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 1000;
    padding: 12px 18px;
    color: var(--navy-950);
    background: var(--gold-400);
    border-radius: 6px;
    font-weight: 700;
    transform: translateY(-150%);
    transition: transform 0.2s ease;
}

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

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(4, 22, 40, 0.94);
    box-shadow: 0 12px 36px rgba(4, 20, 38, 0.1);
    backdrop-filter: blur(18px);
    transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.site-header.is-scrolled {
    border-color: rgba(10, 30, 53, 0.08);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 12px 36px rgba(4, 20, 38, 0.08);
    backdrop-filter: blur(18px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: var(--header-height);
    gap: 30px;
}

.brand {
    display: inline-flex;
    align-items: center;
    width: 166px;
    height: 76px;
    padding: 4px 10px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 10px 32px rgba(3, 18, 35, 0.1);
}

.brand img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: clamp(18px, 2vw, 34px);
}

.primary-nav > a:not(.nav-cta) {
    position: relative;
    padding: 30px 0;
    color: var(--white);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.015em;
}

.site-header.is-scrolled .primary-nav > a:not(.nav-cta) {
    color: var(--navy-900);
}

.primary-nav > a:not(.nav-cta)::after {
    position: absolute;
    right: 0;
    bottom: 23px;
    left: 0;
    height: 2px;
    content: "";
    background: var(--gold-500);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.25s ease;
}

.primary-nav > a:not(.nav-cta):hover::after,
.primary-nav > a:not(.nav-cta):focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    color: var(--navy-950);
    background: var(--gold-500);
    border-radius: 6px;
    font-size: 0.88rem;
    font-weight: 800;
    transition: background 0.25s ease, transform 0.25s ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
    background: var(--gold-400);
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    padding: 12px;
    background: var(--gold-500);
    border-radius: 7px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: var(--navy-950);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-7px) rotate(-45deg);
}

/* Dubai-style floating header */
.site-header,
.site-header.is-scrolled {
    position: fixed;
    top: 22px;
    left: 0;
    z-index: 100;
    width: 100%;
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
    transition: top 0.3s ease;
}

.site-header.is-scrolled {
    top: 14px;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: calc(100% - 60px);
    min-height: var(--header-height);
    margin-right: auto;
    margin-left: auto;
    padding: 0 14px 0 22px;
    gap: 0;
    background: linear-gradient(105deg, rgba(255, 255, 255, 0.94) 0%, rgba(239, 247, 255, 0.82) 46%, rgba(32, 107, 177, 0.82) 100%);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 14px;
    box-shadow: 0 18px 45px rgba(10, 43, 86, 0.18);
    backdrop-filter: blur(18px);
    transition: min-height 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled .header-inner {
    min-height: 78px;
    background: linear-gradient(105deg, rgba(255, 255, 255, 0.97) 0%, rgba(241, 248, 255, 0.92) 48%, rgba(44, 119, 187, 0.88) 100%);
    box-shadow: 0 14px 34px rgba(10, 43, 86, 0.18);
}

.brand {
    display: inline-flex;
    align-items: center;
    align-self: stretch;
    flex: 0 0 180px;
    width: 180px;
    height: auto;
    margin-left: -22px;
    padding: 0 28px;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 14px 0 0 14px;
    box-shadow: 15px 0 32px rgba(14, 57, 102, 0.08);
}

.brand img {
    width: 100%;
    height: auto;
    max-height: 82px;
    object-fit: contain;
}

.primary-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1 1 auto;
    min-width: 0;
    gap: 24px;
}

.primary-nav-links {
    display: flex;
    align-items: center;
    flex: 1 1 auto;
    min-width: 0;
    padding-left: clamp(38px, 3.1vw, 60px);
    gap: clamp(20px, 1.9vw, 38px);
}

.primary-nav-links > a {
    position: relative;
    padding: 30px 0;
    color: #22364d;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.015em;
}

.primary-nav-links > a::after {
    position: absolute;
    right: 0;
    bottom: 23px;
    left: 0;
    height: 3px;
    content: "";
    background: linear-gradient(90deg, #0b77d3, #f2a900);
    border-radius: 999px;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.25s ease;
}

.primary-nav-links > a:hover,
.primary-nav-links > a:focus-visible {
    color: #075baa;
}

.primary-nav-links > a:hover::after,
.primary-nav-links > a:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
}

.header-actions {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    gap: 28px;
    margin-left: 30px;
}

.header-socials {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    color: #0b559f;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 50%;
    box-shadow: 0 10px 24px rgba(11, 85, 159, 0.14);
    transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.header-socials a:hover,
.header-socials a:focus-visible {
    color: var(--white);
    background: linear-gradient(135deg, #0875d1, #0a3f92);
    transform: translateY(-2px);
}

.header-socials svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.header-socials rect,
.header-socials circle:not(.social-dot) {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}

.header-socials .social-dot {
    fill: currentColor;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    min-width: 218px;
    min-height: 64px;
    margin: 0;
    padding: 8px 22px 8px 8px;
    gap: 14px;
    color: var(--white);
    background: linear-gradient(135deg, #0b6fd3 0%, #0a4ca3 52%, #07377d 100%);
    border-radius: 12px;
    box-shadow: 0 16px 34px rgba(7, 55, 125, 0.28);
    font-size: 1rem;
    font-weight: 800;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.nav-cta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 54px;
    width: 54px;
    height: 54px;
    color: #0a4ca3;
    background: var(--white);
    border-radius: 11px;
    box-shadow: 0 8px 20px rgba(7, 55, 125, 0.18);
}

.nav-cta-icon svg {
    width: 22px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.nav-cta:hover,
.nav-cta:focus-visible {
    color: var(--white);
    background: linear-gradient(135deg, #0b6fd3 0%, #0a4ca3 52%, #07377d 100%);
    box-shadow: 0 20px 42px rgba(7, 55, 125, 0.36);
    transform: translateY(-2px);
}

@media (min-width: 1201px) {
    .site-header.is-scrolled .brand img {
        max-height: 70px;
    }

    .site-header.is-scrolled .primary-nav-links > a {
        padding: 25px 0;
    }

    .site-header.is-scrolled .nav-cta {
        min-height: 58px;
    }

    .site-header.is-scrolled .nav-cta-icon {
        flex-basis: 44px;
        width: 44px;
        height: 44px;
    }
}

.banner-slider {
    position: relative;
    height: min(56.25vw, 680px);
    margin-top: calc(var(--header-height) + 22px);
    background: #dce8f2;
    outline: none;
    overflow: hidden;
    touch-action: pan-y;
}

.banner-slider:focus-visible {
    box-shadow: 0 0 0 4px rgba(23, 103, 188, 0.35) inset;
}

.banner-slider-viewport,
.banner-slide {
    position: absolute;
    inset: 0;
}

.banner-slide {
    opacity: 0;
    visibility: hidden;
    transform: scale(1.025);
    transition: opacity 0.75s ease, transform 1.1s ease, visibility 0s linear 0.75s;
}

.banner-slide.is-active {
    z-index: 1;
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    transition-delay: 0s;
}

.banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    user-select: none;
}

.banner-slider::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    height: 22%;
    content: "";
    background: linear-gradient(180deg, transparent, rgba(5, 24, 43, 0.1));
    pointer-events: none;
}

.banner-slider-controls {
    position: absolute;
    top: 50%;
    right: clamp(18px, 3vw, 52px);
    z-index: 3;
    display: grid;
    gap: 12px;
    transform: translateY(-50%);
}

.banner-slider-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    padding: 0;
    color: var(--white);
    background: rgba(6, 31, 54, 0.34);
    border: 1px solid rgba(255, 255, 255, 0.46);
    border-radius: 50%;
    cursor: pointer;
    backdrop-filter: blur(9px);
    transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.banner-slider-arrow:hover,
.banner-slider-arrow:focus-visible {
    color: var(--navy-950);
    background: var(--gold-400);
    border-color: var(--gold-400);
    transform: scale(1.06);
}

.banner-slider-arrow svg {
    width: 22px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.hero {
    position: relative;
    display: flex;
    min-height: auto;
    padding: 110px 0 130px;
    color: rgba(255, 255, 255, 0.82);
    background:
        radial-gradient(circle at 82% 45%, rgba(255, 255, 255, 0.92), transparent 24%),
        radial-gradient(circle at 67% 14%, rgba(241, 178, 9, 0.12), transparent 23%),
        linear-gradient(90deg, #e7f0f8 0%, #f4f8fc 48%, #e8f1f9 100%);
    overflow: hidden;
}

.hero::before {
    position: absolute;
    inset: 0;
    content: "";
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.1), transparent 48%, rgba(216, 229, 240, 0.72)),
        linear-gradient(118deg, transparent 0 66%, rgba(25, 80, 162, 0.08) 66% 66.15%, transparent 66.15%),
        radial-gradient(circle at 92% 26%, rgba(25, 80, 162, 0.1), transparent 22%);
    pointer-events: none;
}

.hero-grid {
    position: absolute;
    inset: 0;
    opacity: 0.08;
    background-image:
        linear-gradient(rgba(10, 51, 87, 0.58) 1px, transparent 1px),
        linear-gradient(90deg, rgba(10, 51, 87, 0.58) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to right, black, transparent 84%);
}

.hero-orb {
    position: absolute;
    border: 1px solid rgba(25, 80, 162, 0.16);
    border-radius: 50%;
    pointer-events: none;
}

.hero-orb::after {
    position: absolute;
    inset: 22px;
    content: "";
    border: 1px solid rgba(241, 178, 9, 0.22);
    border-radius: inherit;
}

.hero-orb-one {
    top: 122px;
    right: -145px;
    width: 540px;
    height: 540px;
}

.hero-orb-two {
    bottom: -300px;
    left: -170px;
    width: 600px;
    height: 600px;
}

.hero-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(380px, 0.88fr) minmax(0, 1.12fr);
    align-items: center;
    gap: clamp(42px, 4vw, 64px);
}

.hero-media {
    position: relative;
    justify-self: start;
    width: 100%;
    max-width: 610px;
    min-height: clamp(560px, 42vw, 680px);
    margin: 0;
    padding: 12px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(148, 174, 198, 0.42);
    border-radius: 12px 42px 12px 42px;
    box-shadow: 0 38px 82px rgba(18, 56, 88, 0.2), 0 0 0 9px rgba(255, 255, 255, 0.34);
    overflow: hidden;
}

.hero-media::before {
    position: absolute;
    inset: 12px;
    z-index: 1;
    content: "";
    background: linear-gradient(180deg, transparent 50%, rgba(5, 24, 43, 0.78) 100%);
    border-radius: 7px 34px 7px 34px;
    pointer-events: none;
}

.hero-media img {
    position: absolute;
    inset: 12px;
    width: calc(100% - 24px);
    height: calc(100% - 24px);
    object-fit: cover;
    object-position: center;
    border-radius: 7px 34px 7px 34px;
}

.hero-media-frame {
    position: absolute;
    top: 34px;
    right: 34px;
    z-index: 2;
    width: 76px;
    height: 76px;
    border-top: 2px solid var(--gold-400);
    border-right: 2px solid var(--gold-400);
    border-radius: 0 22px 0 0;
}

.hero-media figcaption {
    position: absolute;
    right: 42px;
    bottom: 39px;
    left: 42px;
    z-index: 2;
    padding-left: 17px;
    color: var(--white);
    border-left: 3px solid var(--gold-400);
    font-size: 0.84rem;
    font-weight: 750;
    letter-spacing: 0.04em;
    line-height: 1.55;
}

.hero-copy {
    position: relative;
    min-width: 0;
    justify-self: end;
    max-width: 790px;
    padding: clamp(34px, 3.2vw, 48px);
    background: linear-gradient(135deg, rgba(5, 24, 43, 0.97), rgba(8, 35, 61, 0.94));
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-right: 0;
    border-radius: 34px 0 0 34px;
    box-shadow: 28px 34px 80px rgba(7, 32, 55, 0.25), 0 1px 0 rgba(255, 255, 255, 0.08) inset;
    backdrop-filter: blur(8px);
}

.hero-copy::before {
    position: absolute;
    top: 30px;
    bottom: 30px;
    right: 0;
    width: 4px;
    content: "";
    background: linear-gradient(180deg, var(--gold-400), var(--blue-500));
    border-radius: 4px 0 0 4px;
}

.hero-copy::after {
    position: absolute;
    top: 17px;
    right: 18px;
    width: 60px;
    height: 60px;
    content: "";
    border-top: 1px solid rgba(241, 178, 9, 0.48);
    border-right: 1px solid rgba(241, 178, 9, 0.48);
    border-radius: 0 17px 0 0;
}

.hero-copy h1 {
    max-width: 720px;
    margin-bottom: 22px;
    color: var(--white);
    font-size: clamp(2.75rem, 3.65vw, 4.35rem);
    line-height: 1.07;
    letter-spacing: -0.045em;
    text-wrap: balance;
}

.hero-title-accent {
    position: relative;
    display: inline-block;
    color: var(--gold-400);
    background: linear-gradient(105deg, #ffe59b 0%, var(--gold-400) 48%, #ffffff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 16px 34px rgba(241, 178, 9, 0.12);
}

.hero-title-accent::after {
    position: absolute;
    right: 2px;
    bottom: -3px;
    left: 2px;
    height: 2px;
    content: "";
    background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
    transform: scaleX(0.78);
}

.hero-copy > p:not(.eyebrow) {
    max-width: 700px;
    margin-bottom: 30px;
    padding-left: 20px;
    color: rgba(255, 255, 255, 0.76);
    border-left: 1px solid rgba(241, 178, 9, 0.46);
    font-size: 0.98rem;
    line-height: 1.72;
}

.eyebrow,
.section-kicker {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    color: var(--blue-700);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    line-height: 1.3;
    text-transform: uppercase;
}

.eyebrow {
    width: fit-content;
    margin-bottom: 20px;
    padding: 9px 13px;
    color: var(--gold-400);
    background: rgba(241, 178, 9, 0.08);
    border: 1px solid rgba(241, 178, 9, 0.18);
    border-radius: 999px;
}

.eyebrow span {
    display: inline-block;
    width: 35px;
    height: 2px;
    background: currentColor;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 0 28px;
    border-radius: 7px;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.button svg {
    width: 20px;
    margin-left: 14px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
    transition: transform 0.25s ease;
}

.button:hover svg,
.button:focus-visible svg {
    transform: translateX(5px);
}

.button-primary {
    color: var(--navy-950);
    background: var(--gold-500);
    box-shadow: 0 14px 34px rgba(241, 178, 9, 0.25);
}

.button-primary:hover,
.button-primary:focus-visible {
    background: var(--gold-400);
    box-shadow: 0 18px 42px rgba(241, 178, 9, 0.35);
    transform: translateY(-3px);
}

.button-dark {
    color: var(--white);
    background: var(--navy-950);
}

.button-dark:hover,
.button-dark:focus-visible {
    background: var(--blue-700);
    transform: translateY(-3px);
}

.enquiry-card {
    position: relative;
    scroll-margin-top: calc(var(--header-height) + 30px);
    isolation: isolate;
    justify-self: end;
    width: 100%;
    max-width: 590px;
    padding: 40px;
    color: var(--ink);
    background:
        radial-gradient(circle at 100% 0, rgba(34, 126, 209, 0.1), transparent 28%),
        radial-gradient(circle at 0 100%, rgba(241, 178, 9, 0.08), transparent 26%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.99), rgba(244, 248, 252, 0.98));
    border: 1px solid rgba(148, 174, 198, 0.38);
    border-radius: 32px 10px 32px 10px;
    box-shadow:
        0 42px 90px rgba(18, 56, 88, 0.2),
        0 14px 34px rgba(18, 56, 88, 0.11),
        0 0 0 10px rgba(255, 255, 255, 0.42),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(26px);
    overflow: hidden;
}

.enquiry-card::before {
    position: absolute;
    top: -110px;
    right: -90px;
    z-index: 0;
    width: 265px;
    height: 265px;
    content: "";
    background:
        radial-gradient(circle, rgba(255, 255, 255, 0.74) 0 2px, transparent 3px) 0 0 / 17px 17px,
        radial-gradient(circle, rgba(25, 80, 162, 0.11), transparent 67%);
    border-radius: 50%;
    pointer-events: none;
}

.enquiry-card::after {
    position: absolute;
    right: -82px;
    bottom: -88px;
    width: 210px;
    height: 210px;
    content: "";
    border: 26px solid rgba(25, 80, 162, 0.055);
    border-radius: 50%;
    pointer-events: none;
}

.form-accent {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 2;
    height: 7px;
    background: linear-gradient(90deg, var(--gold-500) 0 29%, var(--blue-600) 29% 86%, #77b9ee 86% 100%);
    box-shadow: 0 7px 20px rgba(25, 80, 162, 0.12);
}

.form-heading {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(132, 160, 185, 0.24);
}

.form-heading::after {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 82px;
    height: 2px;
    content: "";
    background: linear-gradient(90deg, var(--gold-500), var(--blue-600));
}

.form-heading h2 {
    margin: 0;
    color: #071b31;
    font-size: clamp(2rem, 2.4vw, 2.55rem);
    letter-spacing: -0.045em;
}

.form-heading p {
    margin: 0 0 4px;
    color: var(--blue-700);
    font-size: 0.66rem;
    font-weight: 850;
    letter-spacing: 0.12em;
    line-height: 1.3;
    text-transform: uppercase;
}

.form-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 62px;
    width: 62px;
    height: 62px;
    color: var(--gold-400);
    background: linear-gradient(145deg, #092a4b, #13558f);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 20px 7px 20px 7px;
    box-shadow: 0 16px 30px rgba(8, 42, 74, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.form-icon svg {
    width: 27px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.enquiry-form {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 17px;
}

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

.field {
    display: grid;
    gap: 9px;
}

.field > span {
    color: #29445f;
    font-size: 0.69rem;
    font-weight: 850;
    letter-spacing: 0.085em;
    text-transform: uppercase;
}

.field input,
.field textarea {
    width: 100%;
    border: 1px solid #d7e3ed;
    outline: 0;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.94);
    border-radius: 14px 5px 14px 5px;
    box-shadow: 0 8px 22px rgba(16, 58, 94, 0.045), inset 0 1px 2px rgba(8, 30, 55, 0.025);
    transition: border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, transform 0.22s ease;
}

.field input:hover,
.field textarea:hover {
    border-color: #b9cddd;
    box-shadow: 0 10px 26px rgba(16, 58, 94, 0.075), inset 0 1px 2px rgba(8, 30, 55, 0.02);
}

.field input {
    height: 58px;
    padding: 0 17px;
}

.field textarea {
    min-height: 128px;
    padding: 15px 17px;
    resize: vertical;
}

.field input:focus,
.field textarea:focus {
    border-color: var(--blue-600);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(23, 103, 188, 0.1), 0 14px 30px rgba(16, 58, 94, 0.1);
    transform: translateY(-1px);
}

.button-submit {
    position: relative;
    min-height: 62px;
    margin-top: 3px;
    overflow: hidden;
    width: 100%;
    color: #081a2c;
    background: linear-gradient(105deg, #f2ad00, #ffc62a 54%, #f3b000);
    border: 1px solid rgba(203, 140, 0, 0.28);
    border-radius: 9px 20px 9px 20px;
    box-shadow: 0 18px 36px rgba(215, 151, 0, 0.23), inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.button-submit::before {
    position: absolute;
    top: -45%;
    left: -20%;
    width: 28%;
    height: 190%;
    content: "";
    background: rgba(255, 255, 255, 0.32);
    transform: rotate(18deg) translateX(-220%);
    transition: transform 0.55s ease;
}

.button-submit > * {
    position: relative;
    z-index: 1;
}

.button-submit:hover,
.button-submit:focus-visible {
    color: var(--white);
    background: linear-gradient(110deg, #092a4b, #165f9e);
    box-shadow: 0 20px 40px rgba(8, 42, 74, 0.24);
    transform: translateY(-2px);
}

.button-submit:hover::before,
.button-submit:focus-visible::before {
    transform: rotate(18deg) translateX(520%);
}

.button-submit:disabled {
    opacity: 0.68;
    cursor: wait;
}

.form-status {
    display: none;
    margin: 0;
    padding: 11px 14px;
    border-radius: 7px;
    font-size: 0.82rem;
    font-weight: 650;
    line-height: 1.5;
}

.form-status.is-visible {
    display: block;
}

.form-status.is-error {
    color: #8f1e2f;
    background: #fff0f2;
}

.form-status.is-success {
    color: #17623a;
    background: #eaf8f0;
}

.form-intro {
    position: relative;
    z-index: 1;
    margin: -15px 0 23px;
    color: #557087;
    font-size: 0.9rem;
    line-height: 1.6;
}

.form-assurance {
    margin: -2px 0 0;
    color: #71869a;
    font-size: 0.72rem;
    line-height: 1.45;
    text-align: center;
}

body.enquiry-open {
    overflow: hidden;
}

.enquiry-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: grid;
    place-items: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.enquiry-modal[hidden] {
    display: none;
}

.enquiry-modal.is-open {
    opacity: 1;
    pointer-events: auto;
}

.enquiry-modal-backdrop {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    background: rgba(3, 17, 31, 0.78);
    border: 0;
    cursor: default;
    backdrop-filter: blur(8px);
}

.enquiry-modal .enquiry-card {
    z-index: 1;
    justify-self: auto;
    width: min(100%, 680px);
    max-width: 680px;
    max-height: calc(100vh - 48px);
    padding: 34px 38px 30px;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    opacity: 0;
    transform: translateY(24px) scale(0.96);
    transition: opacity 0.25s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.enquiry-modal.is-open .enquiry-card {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.enquiry-modal-close {
    position: absolute;
    top: 17px;
    right: 17px;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    color: #254966;
    background: rgba(230, 239, 247, 0.9);
    border: 1px solid rgba(132, 160, 185, 0.25);
    border-radius: 50%;
    cursor: pointer;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.enquiry-modal-close:hover,
.enquiry-modal-close:focus-visible {
    color: var(--white);
    background: var(--blue-700);
    transform: rotate(6deg);
}

.enquiry-modal-close svg {
    width: 19px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-width: 2;
}

.hero-edge {
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    height: 60px;
    background: var(--white);
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

.intro-strip {
    position: relative;
    z-index: 3;
    background: var(--white);
}

.intro-strip-inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 32px;
    max-width: 1060px;
    padding: 58px 0 8px;
}

.intro-strip-inner p {
    margin: 0;
    color: #3e5064;
    font-size: 1.2rem;
    font-weight: 550;
    line-height: 1.75;
}

.intro-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 82px;
    height: 82px;
    color: var(--navy-950);
    background: var(--gold-500);
    border-radius: 50%;
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 900;
    box-shadow: 0 12px 30px rgba(241, 178, 9, 0.24);
}

.split-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    align-items: center;
    gap: clamp(55px, 8vw, 115px);
}

.section-copy > p:not(.section-kicker) {
    color: var(--muted);
}

.section-copy > p:last-child {
    margin-bottom: 0;
}

.image-composition {
    position: relative;
    min-height: 610px;
}

.image-frame {
    position: absolute;
    background: var(--surface);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-frame-main {
    top: 0;
    right: 0;
    width: 85%;
    height: 510px;
    border-radius: 8px 90px 8px 8px;
}

.image-frame-float {
    bottom: 0;
    left: 0;
    width: 44%;
    height: 315px;
    border: 10px solid var(--white);
    border-radius: 8px 8px 60px 8px;
}

.composition-lines {
    position: absolute;
    right: -30px;
    bottom: 44px;
    z-index: -1;
    width: 170px;
    height: 170px;
    opacity: 0.24;
    background-image: radial-gradient(var(--blue-700) 2px, transparent 2px);
    background-size: 14px 14px;
}

.location-section {
    position: relative;
    padding: 112px 0;
    background:
        radial-gradient(circle at 9% 18%, rgba(25, 80, 162, 0.11), transparent 24%),
        radial-gradient(circle at 92% 82%, rgba(241, 178, 9, 0.1), transparent 20%),
        #eef3f8;
    overflow: hidden;
}

.location-section::before {
    position: absolute;
    top: -220px;
    right: -180px;
    width: 520px;
    height: 520px;
    content: "";
    border: 78px solid rgba(25, 80, 162, 0.04);
    border-radius: 50%;
}

.location-shell {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    align-items: stretch;
    min-height: 630px;
    padding: 18px;
    background: var(--navy-950);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 38px;
    box-shadow: 0 38px 90px rgba(5, 24, 43, 0.22);
    overflow: hidden;
}

.location-shell::after {
    position: absolute;
    top: -125px;
    right: -100px;
    width: 360px;
    height: 360px;
    content: "";
    border: 1px solid rgba(241, 178, 9, 0.22);
    border-radius: 50%;
    box-shadow: 0 0 0 34px rgba(241, 178, 9, 0.035), 0 0 0 68px rgba(241, 178, 9, 0.022);
    pointer-events: none;
}

.location-media {
    position: relative;
    z-index: 1;
    min-height: 594px;
    background:
        linear-gradient(180deg, rgba(6, 20, 38, 0.02), rgba(6, 20, 38, 0.2)),
        url("../../../images/homepage-2/portfolio/shende-service2.jpg") center / cover no-repeat;
    border-radius: 26px 8px 8px 26px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
    overflow: hidden;
}

.location-media::before {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(90deg, transparent 68%, rgba(6, 20, 38, 0.58));
}

.location-media-frame {
    position: absolute;
    inset: 28px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 18px 4px 4px 18px;
}

.location-media-frame::before,
.location-media-frame::after {
    position: absolute;
    content: "";
    background: var(--gold-500);
}

.location-media-frame::before {
    top: -1px;
    left: -1px;
    width: 74px;
    height: 3px;
}

.location-media-frame::after {
    top: -1px;
    left: -1px;
    width: 3px;
    height: 74px;
}

.location-media-dot {
    position: absolute;
    right: 34px;
    bottom: 34px;
    width: 18px;
    height: 18px;
    background: var(--gold-500);
    border: 5px solid rgba(255, 255, 255, 0.92);
    border-radius: 50%;
    box-shadow: 0 0 0 10px rgba(241, 178, 9, 0.16);
}

.location-media-inset {
    position: absolute;
    bottom: 38px;
    left: 38px;
    z-index: 2;
    width: min(36%, 230px);
    aspect-ratio: 1.55;
    background:
        linear-gradient(145deg, rgba(6, 20, 38, 0.04), rgba(6, 20, 38, 0.32)),
        url("../../../images/unit1.png") center / cover no-repeat;
    border: 7px solid rgba(255, 255, 255, 0.94);
    border-radius: 18px 5px 18px 5px;
    box-shadow: 0 24px 55px rgba(1, 12, 25, 0.34);
    transform: rotate(-2deg);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.location-media:hover .location-media-inset {
    box-shadow: 0 30px 65px rgba(1, 12, 25, 0.42);
    transform: rotate(0) translateY(-5px);
}

.location-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    padding: clamp(46px, 6vw, 86px);
}

.location-content::before {
    position: absolute;
    top: 50%;
    left: -1px;
    width: 1px;
    height: 64%;
    content: "";
    background: linear-gradient(transparent, rgba(241, 178, 9, 0.65), transparent);
    transform: translateY(-50%);
}

.location-content-inner {
    position: relative;
    max-width: 520px;
}

.location-content-inner::before {
    display: block;
    width: 72px;
    height: 4px;
    margin-bottom: 30px;
    content: "";
    background: linear-gradient(90deg, var(--gold-500), var(--blue-500));
    border-radius: 999px;
}

.location-content h2,
.location-content p {
    color: var(--white);
}

.location-content h2 span {
    display: block;
    color: var(--gold-400);
    background: linear-gradient(100deg, var(--gold-400), #fff2c1);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.location-content p:last-child {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.02rem;
    line-height: 1.82;
}

.section-kicker-light {
    color: var(--gold-400);
}

.insight-section {
    background:
        radial-gradient(circle at 90% 10%, rgba(41, 129, 212, 0.09), transparent 34%),
        var(--surface);
}

.dual-panels {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.feature-panel {
    position: relative;
    min-height: 100%;
    padding: clamp(42px, 5vw, 68px);
    overflow: hidden;
}

.feature-panel h2 {
    position: relative;
    z-index: 1;
    max-width: 530px;
    font-size: clamp(1.7rem, 2.4vw, 2.6rem);
}

.feature-panel-dark {
    color: rgba(255, 255, 255, 0.76);
    background:
        linear-gradient(rgba(6, 20, 38, 0.92), rgba(6, 20, 38, 0.97)),
        url("../../../images/banner-slider-img/slider1-03.jpg") center / cover;
}

.feature-panel-dark h2 {
    color: var(--white);
}

.feature-panel-light {
    background: var(--white);
}

.panel-number {
    position: absolute;
    top: -34px;
    right: 14px;
    color: rgba(241, 178, 9, 0.12);
    font-family: var(--font-display);
    font-size: 9rem;
    font-weight: 900;
    line-height: 1;
}

.feature-panel-light .panel-number {
    color: rgba(25, 80, 162, 0.065);
}

.check-list {
    display: grid;
    gap: 15px;
    margin: 32px 0 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 31px;
    line-height: 1.6;
}

.check-list li::before {
    position: absolute;
    top: 0.42em;
    left: 0;
    width: 18px;
    height: 18px;
    content: "";
    background: var(--gold-500);
    border-radius: 50%;
}

.check-list li::after {
    position: absolute;
    top: 0.7em;
    left: 5px;
    width: 8px;
    height: 4px;
    content: "";
    border-bottom: 2px solid var(--navy-950);
    border-left: 2px solid var(--navy-950);
    transform: rotate(-45deg);
}

.check-list-dark {
    color: var(--muted);
}

.check-list-dark li::before {
    background: #e8f0f9;
}

.check-list-dark li::after {
    border-color: var(--blue-700);
}

.feature-panel .button {
    margin-top: 34px;
}

.products-section {
    overflow: hidden;
}

.products-section::before {
    position: absolute;
    top: 0;
    left: -220px;
    width: 520px;
    height: 520px;
    content: "";
    border: 90px solid rgba(25, 80, 162, 0.035);
    border-radius: 50%;
}

.section-heading {
    position: relative;
    z-index: 1;
    max-width: 850px;
    margin-bottom: 58px;
}

.section-heading > p:not(.section-kicker) {
    max-width: 730px;
    margin-bottom: 0;
    color: var(--muted);
    font-size: 1.05rem;
}

.product-slider {
    position: relative;
    z-index: 1;
}

.product-slider::before {
    position: absolute;
    top: -22px;
    right: 34px;
    width: 120px;
    height: 3px;
    content: "";
    background: linear-gradient(90deg, transparent, var(--gold-500));
    border-radius: 999px;
}

.product-slider-viewport {
    margin: -12px -10px -30px;
    padding: 12px 10px 30px;
    overflow: hidden;
    touch-action: pan-y;
}

.product-slider-track {
    display: flex;
    align-items: stretch;
    gap: 24px;
    transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.product-slide {
    display: flex;
    flex: 0 0 calc((100% - 48px) / 3);
    flex-direction: column;
    min-width: 0;
}

.product-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    box-shadow: 0 14px 36px rgba(8, 30, 55, 0.055);
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.product-card:hover {
    border-color: rgba(25, 80, 162, 0.25);
    box-shadow: 0 24px 56px rgba(8, 30, 55, 0.13);
    transform: translateY(-8px);
}

.product-image {
    position: relative;
    height: 250px;
    background: #edf2f6;
    overflow: hidden;
}

.product-image::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(180deg, transparent 60%, rgba(4, 20, 38, 0.45));
}

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

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

.product-index {
    position: absolute;
    right: 18px;
    bottom: 14px;
    z-index: 1;
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.product-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 30px;
}

.product-content h3 {
    min-height: 3.4em;
    margin-bottom: 14px;
}

.product-content p {
    margin: 0 0 24px;
    color: var(--muted);
    font-size: 0.94rem;
    line-height: 1.7;
}

.product-buy {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    justify-content: center;
    min-height: 44px;
    margin-top: auto;
    padding: 0 18px;
    color: var(--white);
    background: var(--navy-950);
    border-radius: 7px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.025em;
    transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.product-buy svg {
    width: 17px;
    margin-left: 11px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
    transition: transform 0.25s ease;
}

.product-buy:hover,
.product-buy:focus-visible {
    color: var(--navy-950);
    background: var(--gold-500);
    transform: translateY(-2px);
}

.product-buy:hover svg,
.product-buy:focus-visible svg {
    transform: translateX(4px);
}

.product-slider-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 38px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
}

.product-slider-dots {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
}

.product-slider-dot {
    width: 9px;
    height: 9px;
    padding: 0;
    background: #c7d3df;
    border-radius: 999px;
    cursor: pointer;
    transition: width 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.product-slider-dot:hover,
.product-slider-dot:focus-visible {
    background: var(--blue-500);
    transform: scale(1.15);
}

.product-slider-dot.is-active {
    width: 32px;
    background: linear-gradient(90deg, var(--gold-500), var(--blue-600));
}

.product-slider-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.slider-arrow {
    display: grid;
    place-items: center;
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    color: var(--navy-950);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 50%;
    box-shadow: 0 10px 26px rgba(8, 30, 55, 0.08);
    cursor: pointer;
    transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.slider-arrow:hover,
.slider-arrow:focus-visible {
    color: var(--navy-950);
    background: var(--gold-500);
    border-color: var(--gold-500);
    transform: translateY(-2px);
}

.slider-arrow svg {
    width: 20px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.product-slider-progress {
    width: clamp(80px, 10vw, 140px);
    height: 3px;
    background: #dbe4ed;
    border-radius: 999px;
    overflow: hidden;
}

.product-slider-progress span {
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--gold-500), var(--blue-600));
    border-radius: inherit;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.services-section {
    color: rgba(255, 255, 255, 0.72);
    background: var(--navy-950);
    overflow: hidden;
}

.services-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image:
        linear-gradient(30deg, var(--white) 12%, transparent 12.5%, transparent 87%, var(--white) 87.5%, var(--white)),
        linear-gradient(150deg, var(--white) 12%, transparent 12.5%, transparent 87%, var(--white) 87.5%, var(--white)),
        linear-gradient(30deg, var(--white) 12%, transparent 12.5%, transparent 87%, var(--white) 87.5%, var(--white)),
        linear-gradient(150deg, var(--white) 12%, transparent 12.5%, transparent 87%, var(--white) 87.5%, var(--white));
    background-position: 0 0, 0 0, 40px 70px, 40px 70px;
    background-size: 80px 140px;
}

.section-heading-light h2 {
    color: var(--white);
}

.section-heading-light > p:not(.section-kicker) {
    color: rgba(255, 255, 255, 0.68);
}

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

.service-card {
    position: relative;
    padding: 42px 34px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(241, 178, 9, 0.48);
    transform: translateY(-7px);
}

.service-number {
    position: absolute;
    top: 20px;
    right: 24px;
    color: rgba(255, 255, 255, 0.16);
    font-family: var(--font-display);
    font-size: 2.3rem;
    font-weight: 900;
}

.service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 66px;
    height: 66px;
    margin-bottom: 28px;
    color: var(--navy-950);
    background: var(--gold-500);
    border-radius: 18px;
}

.service-icon svg {
    width: 34px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.service-card h3 {
    min-height: 3.6em;
    margin-bottom: 18px;
    color: var(--white);
}

.service-card p {
    margin: 0;
    font-size: 0.94rem;
    line-height: 1.75;
}

.section-action {
    margin-top: 45px;
    text-align: center;
}

.process-section {
    background: var(--surface);
}

.process-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.process-grid::before {
    position: absolute;
    top: 42px;
    right: 8%;
    left: 8%;
    height: 1px;
    content: "";
    background: linear-gradient(90deg, transparent, rgba(25, 80, 162, 0.35), transparent);
}

.process-card {
    position: relative;
    z-index: 1;
    min-height: 190px;
    padding: 28px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    transition: border-color 0.25s ease, transform 0.25s ease;
}

.process-card:hover {
    border-color: var(--gold-500);
    transform: translateY(-6px);
}

.process-card > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-bottom: 22px;
    color: var(--navy-950);
    background: var(--gold-500);
    border-radius: 50%;
    font-size: 0.78rem;
    font-weight: 900;
}

.process-card p {
    margin: 0;
    color: #394b5e;
    font-size: 0.94rem;
    font-weight: 650;
    line-height: 1.6;
}

.process-note {
    max-width: 920px;
    margin: 50px auto 0;
    padding: 28px 34px;
    color: var(--navy-900);
    background: #e5eef8;
    border-left: 4px solid var(--blue-700);
    border-radius: 0 12px 12px 0;
    font-size: 1.04rem;
    font-weight: 650;
    text-align: center;
}

.benefits-section {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    min-height: 720px;
    color: rgba(255, 255, 255, 0.75);
    background: var(--navy-900);
}

.benefits-media {
    min-height: 720px;
    background:
        linear-gradient(90deg, transparent 58%, var(--navy-900)),
        url("../../../images/banner-slider-img/pannel-banner.png") center / cover no-repeat;
}

.benefits-content {
    align-self: center;
    max-width: 760px;
    padding: 100px clamp(40px, 8vw, 140px) 100px clamp(45px, 6vw, 95px);
}

.benefits-content h2 {
    color: var(--white);
}

.benefits-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 32px;
}

.support-section {
    overflow: hidden;
}

.support-layout {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.support-visual {
    position: relative;
    min-height: 570px;
}

.support-visual img {
    position: absolute;
    inset: 0;
    width: 94%;
    height: 94%;
    object-fit: cover;
    border-radius: 75px 8px 8px;
    box-shadow: var(--shadow-lg);
}

.support-outline {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 88%;
    height: 88%;
    z-index: -1;
    border: 2px solid var(--gold-500);
    border-radius: 8px 8px 75px;
}

.compact-list {
    gap: 10px;
    margin: 26px 0 28px;
}

.compact-list li {
    font-size: 0.95rem;
}

.consultation-section {
    position: relative;
    padding: 100px 0;
    color: rgba(255, 255, 255, 0.75);
    background: var(--navy-950);
    overflow: hidden;
}

.consultation-bg {
    position: absolute;
    inset: 0;
    opacity: 0.22;
    background:
        linear-gradient(90deg, var(--navy-950), transparent, var(--navy-950)),
        url("../../../images/homepage-2/bg/play-bg-new.jpg") center / cover no-repeat;
}

.consultation-inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 70px;
}

.consultation-inner h2 {
    color: var(--white);
}

.consultation-inner p:last-child {
    max-width: 920px;
    margin-bottom: 0;
}

.consultation-inner .button {
    white-space: nowrap;
}

.faq-section {
    background:
        radial-gradient(circle at 92% 8%, rgba(25, 80, 162, 0.085), transparent 24%),
        linear-gradient(180deg, #f7f9fc, #edf3f8);
    overflow: hidden;
}

.faq-layout {
    display: grid;
    grid-template-columns: minmax(320px, 0.7fr) minmax(0, 1.3fr);
    align-items: start;
    gap: clamp(38px, 5vw, 72px);
}

.faq-heading {
    position: sticky;
    top: 118px;
    min-height: 610px;
    padding: clamp(38px, 4vw, 58px);
    background:
        linear-gradient(165deg, rgba(5, 20, 38, 0.9), rgba(7, 35, 62, 0.98)),
        url("../../../images/banner-slider-img/slider2-01.jpg") center / cover;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 34px 10px 34px 10px;
    box-shadow: 0 30px 70px rgba(6, 25, 45, 0.24);
    overflow: hidden;
}

.faq-heading::before {
    position: absolute;
    top: -135px;
    right: -125px;
    width: 320px;
    height: 320px;
    content: "";
    border: 1px solid rgba(241, 178, 9, 0.26);
    border-radius: 50%;
    box-shadow: 0 0 0 30px rgba(241, 178, 9, 0.025), 0 0 0 60px rgba(241, 178, 9, 0.018);
}

.faq-heading::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 5px;
    content: "";
    background: linear-gradient(90deg, var(--gold-500), var(--blue-500));
}

.faq-heading .section-kicker {
    position: relative;
    z-index: 1;
    color: var(--gold-400);
}

.faq-heading h2 {
    position: relative;
    z-index: 1;
    max-width: 340px;
    color: var(--white);
}

.faq-heading h2 span {
    display: block;
    color: var(--gold-400);
}

.faq-art {
    position: relative;
    z-index: 1;
    width: 205px;
    height: 205px;
    margin-top: 52px;
    background: rgba(255, 255, 255, 0.065);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
    box-shadow: inset 0 0 50px rgba(255, 255, 255, 0.04);
}

.faq-art::before,
.faq-art::after {
    position: absolute;
    content: "";
    border-radius: 50%;
}

.faq-art::before {
    inset: 22px;
    border: 1px dashed rgba(255, 255, 255, 0.28);
    animation: faq-spin 22s linear infinite;
}

.faq-art::after {
    inset: 52px;
    background: linear-gradient(145deg, var(--gold-400), var(--gold-500));
    box-shadow: 0 18px 45px rgba(241, 178, 9, 0.3);
}

.faq-art span {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: grid;
    place-items: center;
    color: var(--navy-950);
    font-family: var(--font-display);
    font-size: 3.9rem;
    font-weight: 900;
}

@keyframes faq-spin {
    to { transform: rotate(360deg); }
}

.accordion {
    display: grid;
    gap: 14px;
    counter-reset: faq-counter;
}

.faq-item {
    position: relative;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(20, 58, 92, 0.1);
    border-radius: 18px 6px 18px 6px;
    box-shadow: 0 14px 34px rgba(8, 30, 55, 0.055);
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease, background 0.3s ease;
}

.faq-item::before {
    position: absolute;
    top: 16px;
    bottom: 16px;
    left: 0;
    width: 3px;
    content: "";
    background: linear-gradient(180deg, var(--gold-500), var(--blue-500));
    border-radius: 0 4px 4px 0;
    opacity: 0;
    transform: scaleY(0.3);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(25, 80, 162, 0.24);
    box-shadow: 0 20px 46px rgba(8, 30, 55, 0.1);
    transform: translateY(-2px);
}

.faq-item.is-open {
    background: linear-gradient(110deg, #ffffff 0%, #ffffff 68%, #f4f8fc 100%);
    border-color: rgba(25, 80, 162, 0.32);
    box-shadow: 0 24px 58px rgba(8, 30, 55, 0.13);
}

.faq-item.is-open::before {
    opacity: 1;
    transform: scaleY(1);
}

.faq-question {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) 40px;
    align-items: center;
    width: 100%;
    gap: 18px;
    padding: 24px 24px;
    color: var(--navy-950);
    background: transparent;
    font-family: var(--font-display);
    font-size: 1.04rem;
    font-weight: 800;
    line-height: 1.45;
    text-align: left;
    cursor: pointer;
}

.faq-question::before {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: var(--blue-700);
    background: #edf4fb;
    border: 1px solid #dce9f6;
    border-radius: 12px 4px 12px 4px;
    content: "0" counter(faq-counter);
    counter-increment: faq-counter;
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.06em;
}

.faq-item.is-open .faq-question::before {
    color: var(--navy-950);
    background: var(--gold-500);
    border-color: var(--gold-500);
}

.faq-question i {
    position: relative;
    width: 40px;
    height: 40px;
    background: #eef4fa;
    border: 1px solid #dde8f3;
    border-radius: 50%;
}

.faq-question i::before,
.faq-question i::after {
    position: absolute;
    top: 18px;
    left: 12px;
    width: 14px;
    height: 2px;
    content: "";
    background: var(--blue-700);
    transition: transform 0.25s ease;
}

.faq-question i::after {
    transform: rotate(90deg);
}

.faq-item.is-open .faq-question i {
    background: var(--gold-500);
}

.faq-item.is-open .faq-question i::before,
.faq-item.is-open .faq-question i::after {
    background: var(--navy-950);
}

.faq-item.is-open .faq-question i::after {
    transform: rotate(0);
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    color: var(--muted);
    transition: grid-template-rows 0.35s ease;
}

.faq-answer > p {
    min-height: 0;
    margin: 0;
    padding: 0 74px 0 86px;
    overflow: hidden;
    font-size: 0.96rem;
    line-height: 1.75;
    transition: padding 0.35s ease;
}

.faq-item.is-open .faq-answer {
    grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer > p {
    padding-bottom: 28px;
}

.site-footer {
    position: relative;
    margin-top: 0;
    padding-top: 56px;
    color: var(--white);
    background:
        linear-gradient(135deg, rgba(3, 13, 24, 0.97), rgba(7, 30, 52, 0.97)),
        url("../../../images/homepage-2/bg/play-bg-new.jpg") center / cover;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.site-footer::before {
    position: absolute;
    inset: 0;
    content: "";
    opacity: 0.055;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.5) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.5) 1px, transparent 1px);
    background-size: 72px 72px;
    pointer-events: none;
}

.footer-visual span {
    position: absolute;
    border: 1px solid rgba(241, 178, 9, 0.14);
    border-radius: 50%;
    pointer-events: none;
}

.footer-visual span:first-child {
    top: 70px;
    right: -180px;
    width: 510px;
    height: 510px;
    box-shadow: 0 0 0 38px rgba(241, 178, 9, 0.018), 0 0 0 76px rgba(241, 178, 9, 0.012);
}

.footer-visual span:last-child {
    bottom: -290px;
    left: -180px;
    width: 480px;
    height: 480px;
    border-color: rgba(41, 129, 212, 0.15);
}

.footer-cta {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 28px;
    min-height: 180px;
    margin-top: 0;
    margin-bottom: 76px;
    padding: 34px 42px;
    color: var(--white);
    background:
        linear-gradient(115deg, rgba(25, 80, 162, 0.98), rgba(10, 38, 68, 0.98) 62%, rgba(6, 25, 45, 0.98)),
        url("../../../images/banner-slider-img/slider2-01.jpg") center / cover;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 30px 8px 30px 8px;
    box-shadow: 0 34px 76px rgba(2, 15, 29, 0.34);
    overflow: hidden;
}

.footer-cta::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 5px;
    content: "";
    background: linear-gradient(90deg, var(--gold-500) 0 35%, var(--blue-500) 35% 100%);
}

.footer-cta::after {
    position: absolute;
    top: -125px;
    right: 15%;
    width: 310px;
    height: 310px;
    content: "";
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    box-shadow: 0 0 0 26px rgba(255, 255, 255, 0.018), 0 0 0 52px rgba(255, 255, 255, 0.012);
    pointer-events: none;
}

.footer-cta-icon {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 76px;
    height: 76px;
    color: var(--navy-950);
    background: var(--gold-500);
    border-radius: 22px 6px 22px 6px;
    box-shadow: 0 18px 38px rgba(241, 178, 9, 0.24);
}

.footer-cta-icon svg {
    width: 36px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.6;
}

.footer-cta-copy {
    position: relative;
    z-index: 1;
}

.footer-cta-copy > p {
    margin-bottom: 8px;
    color: var(--gold-400);
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.footer-cta-copy h2 {
    max-width: 720px;
    margin: 0;
    color: var(--white);
    font-size: clamp(1.65rem, 2.3vw, 2.7rem);
}

.footer-cta-button {
    position: relative;
    z-index: 1;
    color: var(--navy-950);
    background: var(--gold-500);
    white-space: nowrap;
}

.footer-cta-button:hover,
.footer-cta-button:focus-visible {
    background: var(--gold-400);
    transform: translateY(-3px);
}

.footer-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(220px, 1.18fr) minmax(145px, 0.72fr) minmax(190px, 0.9fr) minmax(270px, 1.1fr);
    align-items: start;
    gap: clamp(35px, 5vw, 76px);
    padding-bottom: 72px;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 190px;
    height: 116px;
    padding: 7px 13px;
    background: var(--white);
    border-radius: 18px 5px 18px 5px;
    box-shadow: 0 18px 46px rgba(0, 8, 18, 0.22);
}

.footer-brand img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-brand-column > p {
    max-width: 260px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.93rem;
    font-weight: 650;
    line-height: 1.7;
}

.footer-column {
    display: grid;
    align-content: start;
    gap: 13px;
}

.footer-title {
    position: relative;
    margin: 0 0 15px;
    padding-bottom: 15px;
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.03rem;
    font-weight: 800;
}

.footer-title::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 42px;
    height: 2px;
    content: "";
    background: linear-gradient(90deg, var(--gold-500), var(--blue-500));
}

.footer-column > a {
    width: fit-content;
    color: rgba(255, 255, 255, 0.64);
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.55;
    transition: color 0.22s ease, transform 0.22s ease;
}

.footer-column > a:hover,
.footer-column > a:focus-visible {
    color: var(--gold-500);
    transform: translateX(4px);
}

.footer-contact > a {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: center;
    width: 100%;
    gap: 13px;
    word-break: break-word;
}

.footer-contact-icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    color: var(--gold-400);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px 4px 12px 4px;
}

.footer-contact-icon svg {
    width: 19px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.footer-bottom {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 23px 0 27px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.035em;
}

.footer-bottom > a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.82rem;
    font-weight: 750;
    transition: color 0.2s ease;
}

.footer-bottom > a span {
    margin-left: 8px;
    color: var(--gold-500);
}

.footer-bottom > a:hover,
.footer-bottom > a:focus-visible {
    color: var(--gold-400);
}

.back-to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 80;
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    color: var(--navy-950);
    background: var(--gold-500);
    border-radius: 50%;
    box-shadow: 0 12px 30px rgba(4, 20, 38, 0.2);
    opacity: 0;
    pointer-events: none;
    cursor: pointer;
    transform: translateY(15px);
    transition: opacity 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.back-to-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--gold-400);
}

.back-to-top svg {
    width: 21px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.hero-copy.reveal {
    filter: blur(7px);
    transform: translate3d(-76px, 22px, 0) scale(0.975);
    transition:
        opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
        transform 1s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.75s ease,
        box-shadow 0.35s ease;
    will-change: opacity, transform, filter;
}

.enquiry-card.reveal {
    filter: blur(7px);
    transform: translate3d(76px, 22px, 0) scale(0.975);
    transition:
        opacity 0.85s 0.12s cubic-bezier(0.22, 1, 0.36, 1),
        transform 1s 0.12s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.75s 0.12s ease,
        box-shadow 0.35s ease;
    will-change: opacity, transform, filter;
}

.hero-copy.reveal.is-visible,
.enquiry-card.reveal.is-visible {
    filter: blur(0);
    transform: translate3d(0, 0, 0) scale(1);
}

.hero-copy.reveal:not(.is-visible) > .eyebrow,
.hero-copy.reveal:not(.is-visible) > h1,
.hero-copy.reveal:not(.is-visible) > p:not(.eyebrow),
.hero-copy.reveal:not(.is-visible) > .button,
.enquiry-card.reveal:not(.is-visible) .form-heading,
.enquiry-card.reveal:not(.is-visible) .field-grid,
.enquiry-card.reveal:not(.is-visible) .enquiry-form > .field,
.enquiry-card.reveal:not(.is-visible) .button-submit {
    opacity: 0;
}

.hero-copy.reveal.is-visible > .eyebrow {
    animation: hero-content-rise 0.7s 0.18s both cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-copy.reveal.is-visible > h1 {
    animation: hero-content-rise 0.8s 0.28s both cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-copy.reveal.is-visible > p:not(.eyebrow) {
    animation: hero-content-rise 0.8s 0.4s both cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-copy.reveal.is-visible > .button {
    animation: hero-content-rise 0.75s 0.52s both cubic-bezier(0.22, 1, 0.36, 1);
}

.enquiry-card.reveal.is-visible .form-heading {
    animation: form-content-rise 0.72s 0.34s both cubic-bezier(0.22, 1, 0.36, 1);
}

.enquiry-card.reveal.is-visible .field-grid:nth-of-type(1) {
    animation: form-content-rise 0.7s 0.44s both cubic-bezier(0.22, 1, 0.36, 1);
}

.enquiry-card.reveal.is-visible .field-grid:nth-of-type(2) {
    animation: form-content-rise 0.7s 0.52s both cubic-bezier(0.22, 1, 0.36, 1);
}

.enquiry-card.reveal.is-visible .enquiry-form > .field {
    animation: form-content-rise 0.7s 0.6s both cubic-bezier(0.22, 1, 0.36, 1);
}

.enquiry-card.reveal.is-visible .button-submit {
    animation: form-content-rise 0.7s 0.68s both cubic-bezier(0.22, 1, 0.36, 1);
}

.enquiry-card.reveal.is-visible .form-accent {
    background-size: 190% 100%;
    animation: form-accent-flow 5.5s 1.15s linear infinite;
}

.enquiry-card.reveal.is-visible .form-icon {
    animation: form-icon-float 4.2s 1.25s ease-in-out infinite;
}

.hero-copy.reveal.is-visible::after {
    animation: hero-corner-pulse 4.5s 1.1s ease-in-out infinite;
}

@keyframes hero-content-rise {
    from {
        opacity: 0;
        transform: translate3d(0, 24px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes form-content-rise {
    from {
        opacity: 0;
        transform: translate3d(0, 18px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes form-accent-flow {
    from {
        background-position: 0 50%;
    }

    to {
        background-position: 190% 50%;
    }
}

@keyframes form-icon-float {
    0%,
    100% {
        transform: translate3d(0, 0, 0) rotate(0);
        box-shadow: 0 16px 30px rgba(8, 42, 74, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    }

    50% {
        transform: translate3d(0, -5px, 0) rotate(1deg);
        box-shadow: 0 22px 38px rgba(8, 42, 74, 0.27), inset 0 1px 0 rgba(255, 255, 255, 0.18);
    }
}

@keyframes hero-corner-pulse {
    0%,
    100% {
        opacity: 0.62;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.06);
    }
}

@media (hover: hover) {
    .hero-copy.reveal.is-visible:hover {
        box-shadow: 32px 42px 92px rgba(7, 32, 55, 0.32), 0 1px 0 rgba(255, 255, 255, 0.08) inset;
        transform: translate3d(0, -5px, 0) scale(1);
    }

    .enquiry-card.reveal.is-visible:hover {
        box-shadow:
            0 48px 98px rgba(18, 56, 88, 0.24),
            0 18px 40px rgba(18, 56, 88, 0.14),
            0 0 0 10px rgba(255, 255, 255, 0.5),
            inset 0 1px 0 rgba(255, 255, 255, 0.95);
        transform: translate3d(0, -5px, 0) scale(1);
    }
}

@media (max-width: 1180px) {
    :root {
        --header-height: 78px;
    }

    .primary-nav {
        gap: 18px;
    }

    .primary-nav > a:not(.nav-cta) {
        font-size: 0.76rem;
    }

    .hero {
        min-height: auto;
    }

    .hero-layout {
        grid-template-columns: minmax(340px, 0.86fr) minmax(0, 1.14fr);
        gap: 45px;
    }

    .hero-copy {
        padding: 34px;
    }

    .hero-copy h1 {
        font-size: clamp(2.55rem, 4.25vw, 3.75rem);
    }

    .enquiry-card {
        padding: 32px;
    }

    .location-content {
        padding: 48px;
    }

    .faq-layout {
        grid-template-columns: minmax(290px, 0.68fr) minmax(0, 1.32fr);
        gap: 34px;
    }

    .faq-heading {
        padding: 40px;
    }

    .product-slide {
        flex-basis: calc((100% - 24px) / 2);
    }

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

    .service-card h3 {
        min-height: 0;
    }

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

@media (max-width: 960px) {
    :root {
        --header-height: 76px;
    }

    .section {
        padding: 88px 0;
    }

    .brand {
        width: 158px;
        height: 68px;
    }

    .menu-toggle {
        display: block;
    }

    .primary-nav {
        position: fixed;
        top: var(--header-height);
        right: 0;
        bottom: 0;
        display: flex;
        align-items: stretch;
        flex-direction: column;
        width: min(88vw, 410px);
        padding: 28px;
        gap: 0;
        background: var(--white);
        box-shadow: -20px 20px 60px rgba(4, 20, 38, 0.2);
        transform: translateX(110%);
        transition: transform 0.3s ease;
        overflow-y: auto;
    }

    .primary-nav.is-open {
        transform: translateX(0);
    }

    .primary-nav > a:not(.nav-cta) {
        padding: 16px 2px;
        color: var(--navy-900);
        border-bottom: 1px solid var(--line);
        font-size: 0.9rem;
    }

    .primary-nav > a:not(.nav-cta)::after {
        display: none;
    }

    .nav-cta {
        margin-top: 24px;
    }

    .hero {
        min-height: auto;
        padding-top: 88px;
    }

    .hero-layout {
        grid-template-columns: 1fr;
        max-width: 760px;
    }

    .hero-media {
        justify-self: center;
        max-width: 680px;
        min-height: 560px;
    }

    .hero-copy {
        justify-self: stretch;
        max-width: none;
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 28px;
    }

    .enquiry-card {
        justify-self: center;
        max-width: 680px;
    }

    .split-layout,
    .faq-layout {
        grid-template-columns: 1fr;
    }

    .image-composition {
        min-height: 560px;
    }

    .benefits-section {
        grid-template-columns: 1fr;
    }

    .benefits-media {
        min-height: 480px;
    }

    .benefits-media {
        background-image: linear-gradient(180deg, transparent 62%, var(--navy-900)), url("../../../images/banner-slider-img/pannel-banner.png");
    }

    .benefits-content {
        max-width: none;
        padding: 30px 40px 80px;
    }

    .location-section {
        padding: 82px 0;
    }

    .location-shell {
        grid-template-columns: 1fr;
        padding: 14px;
        border-radius: 30px;
    }

    .location-media {
        min-height: 480px;
        background-image:
            linear-gradient(180deg, rgba(6, 20, 38, 0.02), rgba(6, 20, 38, 0.3)),
            url("../../../images/homepage-2/portfolio/shende-service2.jpg");
        border-radius: 20px 20px 6px 6px;
    }

    .location-media::before {
        background: linear-gradient(180deg, transparent 68%, rgba(6, 20, 38, 0.58));
    }

    .location-media-inset {
        bottom: 28px;
        left: 28px;
        width: 205px;
    }

    .location-content {
        max-width: none;
        padding: 54px 42px 58px;
    }

    .location-content::before {
        display: none;
    }

    .dual-panels {
        grid-template-columns: 1fr;
    }

    .support-layout {
        grid-template-columns: 1fr;
    }

    .support-visual {
        min-height: 520px;
    }

    .consultation-inner {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .consultation-inner .button {
        justify-self: start;
    }

    .faq-heading {
        position: static;
        min-height: 330px;
        border-radius: 28px 8px 28px 8px;
    }

    .faq-art {
        display: none;
    }

    .site-footer {
        padding-top: 44px;
    }

    .footer-cta {
        grid-template-columns: auto minmax(0, 1fr);
        margin-top: 0;
        margin-bottom: 62px;
    }

    .footer-cta-button {
        grid-column: 2;
        justify-self: start;
    }

    .footer-inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 50px 70px;
    }
}

@media (max-width: 680px) {
    .container {
        width: min(calc(100% - 30px), var(--container));
    }

    .section {
        padding: 74px 0;
    }

    h1 {
        font-size: clamp(2.25rem, 11vw, 3.2rem);
    }

    h2 {
        font-size: clamp(1.75rem, 8vw, 2.55rem);
    }

    .site-header {
        background: rgba(6, 20, 38, 0.94);
    }

    .site-header.is-scrolled {
        background: rgba(255, 255, 255, 0.97);
    }

    .brand {
        width: 148px;
        height: 66px;
    }

    .hero {
        padding-top: calc(var(--header-height) + 54px);
        padding-bottom: 84px;
        background-position: 70% center;
    }

    .hero-layout {
        gap: 34px;
    }

    .banner-slider-controls {
        top: auto;
        right: 14px;
        bottom: 13px;
        display: flex;
        gap: 8px;
        transform: none;
    }

    .banner-slider-arrow {
        width: 43px;
        height: 43px;
    }

    .banner-slider-arrow svg {
        width: 18px;
    }

    .hero-media {
        min-height: clamp(410px, 118vw, 550px);
        padding: 8px;
        border-radius: 8px 28px 8px 28px;
        box-shadow: 0 24px 52px rgba(18, 56, 88, 0.18), 0 0 0 5px rgba(255, 255, 255, 0.32);
    }

    .hero-media::before {
        inset: 8px;
        border-radius: 5px 22px 5px 22px;
    }

    .hero-media img {
        inset: 8px;
        width: calc(100% - 16px);
        height: calc(100% - 16px);
        border-radius: 5px 22px 5px 22px;
    }

    .hero-media-frame {
        top: 25px;
        right: 25px;
        width: 58px;
        height: 58px;
    }

    .hero-media figcaption {
        right: 27px;
        bottom: 28px;
        left: 27px;
        font-size: 0.76rem;
    }

    .hero-copy {
        padding: 28px 21px;
        border-radius: 22px;
    }

    .hero-copy::before {
        top: 20px;
        bottom: 20px;
        width: 3px;
    }

    .hero-copy::after {
        top: 12px;
        right: 12px;
        width: 42px;
        height: 42px;
        border-radius: 0 11px 0 0;
    }

    .hero-copy h1 {
        font-size: clamp(2.2rem, 10.3vw, 3rem);
        line-height: 1.08;
    }

    .hero-copy > p:not(.eyebrow) {
        padding-left: 14px;
        font-size: 0.94rem;
        line-height: 1.68;
    }

    .eyebrow,
    .section-kicker {
        letter-spacing: 0.12em;
    }

    .eyebrow {
        max-width: 100%;
        padding: 8px 10px;
        font-size: 0.65rem;
        border-radius: 16px;
    }

    .enquiry-card {
        padding: 28px 20px 24px;
        border-radius: 25px 8px 25px 8px;
        box-shadow:
            0 28px 58px rgba(18, 56, 88, 0.18),
            0 10px 24px rgba(18, 56, 88, 0.09),
            0 0 0 6px rgba(255, 255, 255, 0.38),
            inset 0 1px 0 rgba(255, 255, 255, 0.95);
    }

    .enquiry-modal {
        align-items: end;
        padding: 12px;
    }

    .enquiry-modal .enquiry-card {
        width: 100%;
        max-height: calc(100dvh - 24px);
        padding: 27px 18px 22px;
        border-radius: 24px 8px 24px 8px;
    }

    .enquiry-modal-close {
        top: 13px;
        right: 13px;
        width: 38px;
        height: 38px;
    }

    .enquiry-modal .form-heading {
        padding-right: 38px;
    }

    .form-intro {
        margin-top: -12px;
        font-size: 0.84rem;
    }

    .form-heading {
        gap: 14px;
        margin-bottom: 25px;
        padding-bottom: 20px;
    }

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

    .form-icon {
        flex-basis: 56px;
        width: 56px;
        height: 56px;
        border-radius: 17px 6px 17px 6px;
    }

    .form-icon svg {
        width: 24px;
    }

    .field-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .field input {
        height: 56px;
    }

    .field textarea {
        min-height: 118px;
    }

    .button-submit {
        min-height: 60px;
    }

    .intro-strip-inner {
        grid-template-columns: 1fr;
        gap: 22px;
        padding-top: 42px;
    }

    .intro-strip-inner p {
        font-size: 1.05rem;
    }

    .intro-mark {
        width: 66px;
        height: 66px;
    }

    .image-composition {
        min-height: 420px;
    }

    .image-frame-main {
        width: 92%;
        height: 360px;
        border-radius: 8px 55px 8px 8px;
    }

    .image-frame-float {
        width: 48%;
        height: 210px;
        border-width: 7px;
    }

    .benefits-media {
        min-height: 340px;
    }

    .benefits-content {
        padding: 20px 24px 70px;
    }

    .location-section {
        padding: 64px 0;
    }

    .location-shell {
        width: min(calc(100% - 24px), var(--container));
        padding: 8px;
        border-radius: 25px;
    }

    .location-media {
        min-height: 310px;
        border-radius: 18px 18px 5px 5px;
    }

    .location-media-frame {
        inset: 18px;
    }

    .location-media-dot {
        right: 24px;
        bottom: 24px;
    }

    .location-media-inset {
        bottom: 22px;
        left: 22px;
        width: 142px;
        border-width: 4px;
        border-radius: 12px 4px 12px 4px;
    }

    .location-content {
        padding: 42px 24px 46px;
    }

    .location-content-inner::before {
        margin-bottom: 24px;
    }

    .location-content p:last-child {
        font-size: 0.96rem;
        line-height: 1.75;
    }

    .feature-panel {
        padding: 40px 25px;
    }

    .panel-number {
        font-size: 7rem;
    }

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

    .product-slide {
        flex-basis: 100%;
    }

    .product-slider-footer {
        align-items: flex-start;
        flex-direction: column;
        gap: 22px;
    }

    .product-slider-actions {
        width: 100%;
    }

    .product-slider-progress {
        flex: 1;
        width: auto;
    }

    .product-image {
        height: 235px;
    }

    .product-content h3 {
        min-height: 0;
    }

    .service-card {
        padding: 35px 25px;
    }

    .process-grid::before {
        display: none;
    }

    .process-card {
        min-height: 0;
    }

    .process-note {
        padding: 24px 20px;
        text-align: left;
    }

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

    .support-visual {
        min-height: 385px;
    }

    .support-visual img {
        border-radius: 45px 8px 8px;
    }

    .consultation-section {
        padding: 76px 0;
    }

    .faq-heading {
        min-height: 275px;
        padding: 34px 25px;
    }

    .faq-heading h2 {
        margin-bottom: 0;
    }

    .faq-question {
        grid-template-columns: 38px minmax(0, 1fr) 34px;
        gap: 12px;
        padding: 18px 14px;
        font-size: 0.94rem;
    }

    .faq-question::before {
        width: 38px;
        height: 38px;
        font-size: 0.66rem;
    }

    .faq-question i {
        width: 34px;
        height: 34px;
    }

    .faq-question i::before,
    .faq-question i::after {
        top: 15px;
        left: 9px;
    }

    .faq-answer > p {
        padding: 0 18px 0 64px;
        font-size: 0.91rem;
    }

    .faq-item.is-open .faq-answer > p {
        padding-bottom: 22px;
    }

    .site-footer {
        padding-top: 32px;
    }

    .footer-cta {
        grid-template-columns: 1fr;
        gap: 20px;
        min-height: 0;
        margin-top: 0;
        margin-bottom: 52px;
        padding: 30px 24px;
        border-radius: 24px 7px 24px 7px;
    }

    .footer-cta-icon {
        width: 64px;
        height: 64px;
    }

    .footer-cta-copy h2 {
        font-size: 1.62rem;
    }

    .footer-cta-button {
        grid-column: auto;
        justify-self: stretch;
        width: 100%;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        padding-bottom: 48px;
        gap: 40px;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
        padding: 18px 0 22px;
        text-align: left;
    }

    .back-to-top {
        right: 16px;
        bottom: 16px;
    }
}

@media (max-width: 1550px) and (min-width: 1201px) {
    .header-socials a {
        width: 35px;
        height: 35px;
    }

    .header-socials svg {
        width: 14px;
        height: 14px;
    }
}

@media (max-width: 1300px) and (min-width: 1201px) {
    .header-inner {
        width: calc(100% - 40px);
    }

    .primary-nav-links {
        padding-left: 24px;
        gap: 18px;
    }

    .header-socials {
        display: none;
    }

    .header-actions {
        gap: 0;
        margin-left: 18px;
    }

    .nav-cta {
        min-width: 190px;
    }
}

@media (max-width: 1200px) {
    :root {
        --header-height: 76px;
    }

    .site-header,
    .site-header.is-scrolled {
        top: 0;
        background: transparent;
    }

    .header-inner,
    .site-header.is-scrolled .header-inner {
        width: 100%;
        min-height: var(--header-height);
        margin: 0;
        padding: 0 20px;
        background: rgba(255, 255, 255, 0.96);
        border: 0;
        border-radius: 0;
        box-shadow: 0 12px 32px rgba(10, 43, 86, 0.14);
        backdrop-filter: none;
    }

    .brand {
        align-self: center;
        flex-basis: 158px;
        width: 158px;
        height: 68px;
        margin-left: 0;
        padding: 4px 10px;
        border-radius: 10px;
        box-shadow: none;
    }

    .brand img {
        width: auto;
        max-width: 100%;
        max-height: 60px;
        margin: auto;
    }

    .menu-toggle {
        display: block;
        margin-left: auto;
        background: rgba(11, 111, 211, 0.1);
    }

    .menu-toggle span {
        background: #0a4ca3;
    }

    .primary-nav {
        position: fixed;
        top: var(--header-height);
        right: 0;
        bottom: auto;
        z-index: 102;
        display: flex;
        align-items: stretch;
        justify-content: flex-start;
        flex-direction: column;
        width: min(88vw, 410px);
        height: calc(100dvh - var(--header-height));
        min-height: 0;
        padding: 28px;
        gap: 0;
        background: var(--white);
        box-shadow: -20px 20px 60px rgba(4, 20, 38, 0.2);
        visibility: hidden;
        transform: translateX(110%);
        transition: transform 0.3s ease, visibility 0s linear 0.3s;
        overscroll-behavior: contain;
        pointer-events: none;
        overflow-y: auto;
    }

    .primary-nav.is-open {
        visibility: visible;
        transform: translateX(0);
        transition-delay: 0s;
        pointer-events: auto;
    }

    .primary-nav-links {
        display: flex;
        align-items: stretch;
        flex-direction: column;
        padding-left: 0;
        gap: 0;
    }

    .primary-nav-links > a {
        display: flex;
        align-items: center;
        width: 100%;
        min-height: 54px;
        padding: 16px 2px;
        color: var(--navy-900);
        border-bottom: 1px solid var(--line);
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .primary-nav-links > a::after {
        display: none;
    }

    .header-actions {
        align-items: stretch;
        flex-direction: column;
        gap: 20px;
        margin: 28px 0 0;
    }

    .header-socials {
        justify-content: center;
    }

    .nav-cta {
        width: 100%;
        margin-top: 0;
    }

    body.menu-open::before {
        position: fixed;
        inset: var(--header-height) 0 0;
        z-index: 99;
        content: "";
        background: rgba(6, 20, 38, 0.52);
        backdrop-filter: blur(3px);
    }

    .banner-slider {
        margin-top: var(--header-height);
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }

    .hero-copy.reveal,
    .enquiry-card.reveal {
        filter: none;
    }

    .hero-copy.reveal > .eyebrow,
    .hero-copy.reveal > h1,
    .hero-copy.reveal > p:not(.eyebrow),
    .hero-copy.reveal > .button,
    .enquiry-card.reveal .form-heading,
    .enquiry-card.reveal .field-grid,
    .enquiry-card.reveal .enquiry-form > .field,
    .enquiry-card.reveal .button-submit {
        opacity: 1;
        animation: none;
    }
}
