@font-face {
    font-family: "Tajawal";
    src: url("../fonts/Tajawal-Regular.woff") format("woff");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "Tajawal";
    src: url("../fonts/Tajawal-Bold.woff") format("woff");
    font-style: normal;
    font-weight: 700;
    font-display: swap;
}

:root {
    --primary-color: #f59b00;
    --secondary-color: #2d3131;
    --font-family: "Tajawal", sans-serif;
    --h1-size: 42px;
    --h2-size: 32px;
    --h3-size: 22px;
    --body-size: 16px;
    --section-padding: 80px;
    --container-width: 1200px;
    --border-radius: 10px;
    --space-20: 20px;
    --space-30: 30px;
    --surface-color: rgba(255, 255, 255, 0.96);
    --surface-alt: #f8f8f6;
    --text-color: #1d2020;
    --muted-color: #667070;
    --border-color: rgba(45, 49, 49, 0.1);
    --shadow-soft: 0 18px 45px rgba(17, 20, 20, 0.08);
    --shadow-strong: 0 20px 60px rgba(17, 20, 20, 0.16);
    --line-height: 1.6;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: clip;
}

body {
    margin: 0;
    font-family: var(--font-family);
    font-size: var(--body-size);
    line-height: var(--line-height);
    color: var(--text-color);
    background:
        radial-gradient(circle at top right, rgba(245, 155, 0, 0.12), transparent 22%),
        linear-gradient(180deg, #fcfbf7 0%, #f4f5f5 100%);
    overflow-x: hidden;
}

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

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

iframe {
    width: 100%;
    border: 0;
}

body,
input,
textarea,
button,
select {
    font-family: var(--font-family);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 var(--space-20);
    font-weight: 700;
    line-height: 1.25;
    color: var(--secondary-color);
}

h1 {
    font-size: var(--h1-size);
}

h2 {
    font-size: var(--h2-size);
}

h3 {
    font-size: var(--h3-size);
}

p {
    margin: 0 0 var(--space-20);
    color: var(--muted-color);
    line-height: var(--line-height);
}

.container {
    width: min(92vw, 1480px);
    margin: 0 auto;
}

.site-loader {
    position: fixed;
    inset: 0;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.14), transparent 28%),
        rgba(17, 20, 20, var(--loader-overlay-opacity, 0.14));
    backdrop-filter: blur(4px);
    z-index: 999;
    transition: opacity 0.55s ease, visibility 0.55s ease;
}

.site-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.site-loader-chip {
    position: relative;
    width: var(--loader-size, 116px);
    height: var(--loader-size, 116px);
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.loader-orbit,
.loader-core {
    position: absolute;
    inset: 0;
    border-radius: 50%;
}

.loader-orbit {
    border: 1px solid rgba(45, 49, 49, 0.08);
}

.loader-orbit-outer {
    inset: 12px;
    background:
        conic-gradient(from 180deg, rgba(245, 155, 0, 0) 0deg, color-mix(in srgb, var(--loader-primary-color, var(--primary-color)) 38%, transparent) 120deg, rgba(245, 155, 0, 0) 220deg),
        radial-gradient(circle, color-mix(in srgb, var(--loader-primary-color, var(--primary-color)) 10%, transparent), transparent 68%);
    animation: loaderSpin 6.8s linear infinite;
}

.loader-orbit-middle {
    inset: 22px;
    border-color: color-mix(in srgb, var(--loader-secondary-color, var(--secondary-color)) 10%, transparent);
    background:
        conic-gradient(from 0deg, color-mix(in srgb, var(--loader-secondary-color, var(--secondary-color)) 8%, transparent) 0deg, rgba(45, 49, 49, 0) 90deg, color-mix(in srgb, var(--loader-secondary-color, var(--secondary-color)) 18%, transparent) 210deg, rgba(45, 49, 49, 0) 360deg);
    animation: loaderSpinReverse 5.6s linear infinite;
}

.loader-core {
    inset: 30px;
    display: grid;
    place-items: center;
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 248, 246, 0.96));
    border: 1px solid color-mix(in srgb, var(--loader-secondary-color, var(--secondary-color)) 8%, transparent);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.74),
        0 22px 48px rgba(17, 20, 20, 0.1);
    overflow: hidden;
}

.loader-core::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, color-mix(in srgb, var(--loader-primary-color, var(--primary-color)) 18%, transparent), transparent 48%),
        radial-gradient(circle at 76% 22%, color-mix(in srgb, var(--loader-primary-color, var(--primary-color)) 16%, transparent), transparent 26%);
    pointer-events: none;
}

.loader-core-glow {
    position: absolute;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: radial-gradient(circle, color-mix(in srgb, var(--loader-primary-color, var(--primary-color)) 26%, transparent), rgba(245, 155, 0, 0) 70%);
    filter: blur(4px);
    animation: pulseGlow 1.9s ease-in-out infinite;
}

.loader-mark {
    position: relative;
    width: 34px;
    height: 48px;
    border-radius: 50% 50% 58% 58% / 36% 36% 64% 64%;
    border: 3px solid var(--loader-secondary-color, var(--secondary-color));
    transform: rotate(180deg);
    animation: loaderLift 2s ease-in-out infinite;
}

.loader-mark::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 50%;
    width: 12px;
    height: 12px;
    border: 3px solid var(--loader-secondary-color, var(--secondary-color));
    border-top: 0;
    border-left: 0;
    transform: translateX(-50%) rotate(45deg);
    border-radius: 3px;
}

.loader-drop {
    position: absolute;
    left: 50%;
    bottom: 7px;
    width: 10px;
    height: 14px;
    transform: translateX(-50%);
    border-radius: 50% 50% 55% 55% / 40% 40% 65% 65%;
    background: linear-gradient(180deg, color-mix(in srgb, var(--loader-primary-color, var(--primary-color)) 70%, white), var(--loader-primary-color, var(--primary-color)));
    box-shadow: 0 8px 18px color-mix(in srgb, var(--loader-primary-color, var(--primary-color)) 32%, transparent);
}

@keyframes loaderSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes loaderSpinReverse {
    from { transform: rotate(360deg); }
    to { transform: rotate(0deg); }
}

@keyframes loaderLift {
    0%, 100% { transform: rotate(180deg) translateY(0); }
    50% { transform: rotate(180deg) translateY(-4px); }
}

@keyframes pulseGlow {
    0%, 100% { transform: scale(0.92); opacity: 0.62; }
    50% { transform: scale(1.08); opacity: 1; }
}

.site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 100;
    border-bottom: 1px solid transparent;
    transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.page-home .site-header {
    background: transparent;
}

.site-header.is-scrolled,
.page-about .site-header,
.page-services .site-header,
.page-contact .site-header {
    background: rgba(255, 255, 255, 0.9);
    border-color: var(--border-color);
    box-shadow: 0 10px 30px rgba(17, 20, 20, 0.08);
    backdrop-filter: blur(16px);
}

.nav-wrap {
    position: relative;
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-20);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    flex: 0 1 auto;
    min-width: 0;
    max-width: min(100%, 340px);
    color: #fff;
}

.brand-copy {
    display: grid;
    gap: 2px;
    min-width: 0;
    overflow: hidden;
}

.brand-title {
    display: block;
    margin: 0;
    font-size: 1.2rem;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.01em;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.brand-tagline {
    display: block;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.84);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.site-header.is-scrolled .brand,
.page-about .brand,
.page-services .brand,
.page-contact .brand {
    color: var(--secondary-color);
}

    .brand img,
    .brand-badge {
        width: 58px;
    height: 58px;
    border-radius: calc(var(--border-radius) * 2);
    background: linear-gradient(135deg, var(--primary-color), #ffd36d);
    color: var(--secondary-color);
    display: grid;
    place-items: center;
    font-weight: 700;
    box-shadow: 0 12px 30px rgba(245, 155, 0, 0.24);
}

.site-header.is-scrolled .brand-tagline,
.page-about .brand-tagline,
.page-services .brand-tagline,
.page-contact .brand-tagline {
    color: var(--secondary-color);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.site-nav a {
    padding: 12px 16px;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.92);
    font-weight: 700;
    transition: all 0.3s ease;
}

.site-header.is-scrolled .site-nav a,
.page-about .site-nav a,
.page-services .site-nav a,
.page-contact .site-nav a {
    color: var(--secondary-color);
}

.site-nav a:hover,
.site-nav a.active {
    background: rgba(255, 255, 255, 0.14);
}

.site-header.is-scrolled .site-nav a:hover,
.site-header.is-scrolled .site-nav a.active,
.page-about .site-nav a:hover,
.page-about .site-nav a.active,
.page-services .site-nav a:hover,
.page-services .site-nav a.active,
.page-contact .site-nav a:hover,
.page-contact .site-nav a.active {
    background: rgba(45, 49, 49, 0.08);
}

.nav-cta {
    background: linear-gradient(135deg, var(--primary-color), #ffcb57);
    color: var(--secondary-color) !important;
    box-shadow: 0 14px 30px rgba(245, 155, 0, 0.24);
    padding-inline: 24px !important;
    border: 1px solid rgba(245, 155, 0, 0.35);
}

.nav-cta:hover,
.nav-cta.active {
    background: linear-gradient(135deg, #f0a111, #ffd36b) !important;
    color: var(--secondary-color) !important;
    transform: translateY(-1px);
    box-shadow: 0 18px 36px rgba(245, 155, 0, 0.28);
}

.menu-toggle,
.back-to-top {
    display: none;
}

.hero-slider,
.hero-slider-track {
    height: 100vh;
    min-height: 820px;
}

.hero-slider {
    position: relative;
    overflow: hidden;
    color: #fff;
    width: 100%;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
}

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

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

.hero-media,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-media {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transform: scale(1.04);
}

.hero-slide.is-active .hero-media {
    animation: heroZoom 7s ease forwards;
}

@keyframes heroZoom {
    from { transform: scale(1.02); }
    to { transform: scale(1.1); }
}

.hero-overlay {
    background: linear-gradient(110deg, rgba(16, 19, 19, 0.86), rgba(16, 19, 19, 0.55) 45%, rgba(245, 155, 0, 0.4) 100%);
}

.hero-slide-content {
    position: relative;
    z-index: 1;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-top: 220px;
    padding-bottom: 210px;
}

.hero-copy {
    width: 100%;
    max-width: 1120px;
    margin-right: 0;
    margin-left: auto;
    text-align: right;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: 0;
    backdrop-filter: none;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(245, 155, 0, 0.12);
    border: 1px solid rgba(245, 155, 0, 0.16);
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: var(--space-20);
}

.hero-copy .eyebrow {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.16);
    color: #fff;
}

.hero-slide h1 {
    color: #fff;
    max-width: 42ch;
    font-size: var(--h1-size);
    line-height: 1.34;
    text-shadow: 0 3px 20px rgba(0, 0, 0, 0.28);
}

.hero-slide h1,
.hero-slide p,
.hero-slide .hero-actions {
    opacity: 0;
    transform: translateY(28px);
}

.hero-slide.is-active h1 {
    animation: fadeUp 0.8s ease 0.15s forwards;
}

.hero-slide.is-active p {
    animation: fadeUp 0.8s ease 0.3s forwards;
}

.hero-slide.is-active .hero-actions {
    animation: fadeUp 0.8s ease 0.45s forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-copy p {
    max-width: 1020px;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.24);
}

.page-home .site-header .brand-tagline {
    color: rgba(255, 255, 255, 0.9);
}

.page-home .site-header.is-scrolled .brand-tagline {
    color: var(--secondary-color);
}

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

.btn {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    padding: 14px 24px;
    border: 0;
    border-radius: 999px;
    font-size: var(--body-size);
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), #ffcb58);
    color: var(--secondary-color);
    box-shadow: 0 14px 30px rgba(245, 155, 0, 0.25);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.btn-ripple {
    position: absolute;
    border-radius: 50%;
    transform: scale(0);
    background: rgba(255, 255, 255, 0.35);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    cursor: pointer;
    transform: translateY(-50%);
}

.hero-arrow-next {
    right: var(--space-20);
}

.hero-arrow-prev {
    left: var(--space-20);
}

.hero-dots {
    position: absolute;
    left: 24px;
    bottom: 26px;
    z-index: 2;
    display: flex;
    gap: 8px;
    transform: none;
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(18, 22, 22, 0.28);
    backdrop-filter: blur(10px);
}

.hero-dot {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
}

.hero-dot.is-active {
    width: 24px;
    background: var(--primary-color);
}

.hero-bottom-strip {
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 2;
    padding-bottom: 24px;
}

.hero-bottom-grid {
    grid-template-columns: repeat(3, 1fr);
}

.hero-stat {
    padding: var(--space-20);
    border-radius: calc(var(--border-radius) * 2);
    background: linear-gradient(180deg, rgba(24, 28, 28, 0.58), rgba(24, 28, 28, 0.44));
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(10px);
}

.hero-stat strong {
    display: block;
    margin-bottom: 6px;
    color: var(--primary-color);
    font-size: var(--h3-size);
}

.hero-stat span {
    color: rgba(255, 255, 255, 0.84);
}

.section-block,
.page-banner {
    padding: var(--section-padding) 0;
}

.page-banner {
    padding-top: calc(var(--section-padding) + 60px);
}

.page-banner-compact {
    padding-top: 140px;
    padding-bottom: 36px;
}

.client-strip {
    padding: 44px 0 8px;
}

.section-tight {
    padding-top: 42px;
    padding-bottom: 42px;
}

.client-strip-inner,
.feature-grid,
.premium-services-grid,
.split-grid,
.service-cards,
.timeline-grid,
.about-layout,
.value-band,
.contact-grid,
.contact-highlights,
.footer-grid,
.hero-bottom-grid {
    display: grid;
    gap: var(--space-20);
}

.client-strip-inner {
    grid-template-columns: repeat(5, 1fr);
    padding: 24px 28px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 248, 246, 0.96));
    border: 1px solid rgba(45, 49, 49, 0.08);
    box-shadow: var(--shadow-strong);
    position: relative;
    overflow: hidden;
}

.client-strip-inner::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 6px;
    background: linear-gradient(180deg, var(--primary-color), rgba(245, 155, 0, 0.22));
}

.client-strip-inner span {
    position: relative;
    text-align: center;
    font-weight: 700;
    color: var(--secondary-color);
    padding: 14px 10px;
    border-left: 1px solid rgba(45, 49, 49, 0.08);
    transition: color 0.3s ease, transform 0.3s ease;
}

.client-strip-inner span:last-child {
    border-left: 0;
}

.client-strip-inner span:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.section-head {
    position: relative;
    display: grid;
    gap: 14px;
    margin-bottom: var(--space-30);
}

.section-head-centered {
    max-width: 760px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.section-head > span {
    position: relative;
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 0;
    margin: 0;
    color: #9a6400;
    font-weight: 700;
    letter-spacing: 0.1px;
}

.section-head h2 {
    margin-bottom: 0;
    font-size: var(--h2-size);
    line-height: 1.3;
}

.section-head p {
    max-width: 62ch;
    margin: 0;
    font-size: 1.02em;
    line-height: 1.9;
}

.section-head h2::after,
.page-banner h1::after {
    content: "";
    display: block;
    width: 86px;
    height: 4px;
    margin-top: 18px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(245, 155, 0, 0.18), var(--primary-color), rgba(245, 155, 0, 0.18));
    box-shadow: 0 8px 20px rgba(245, 155, 0, 0.18);
}

.section-head h2::before {
    content: "";
    display: block;
    width: 34px;
    height: 4px;
    margin: 0 0 14px;
    border-radius: 999px;
    background: rgba(45, 49, 49, 0.12);
}

.section-head-centered > span,
.section-head-centered p {
    margin-right: auto;
    margin-left: auto;
}


.section-head-centered h2::before {
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 14px;
}

.page-banner {
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(245, 155, 0, 0.16), transparent 26%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.7));
    pointer-events: none;
}

.page-banner .container {
    position: relative;
    z-index: 1;
}

.alt-block {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(248, 248, 246, 0.96));
}

.inner-intro-grid,
.story-grid,
.metric-chips,
.inline-points,
.contact-inline-points,
.service-detail-layout,
.service-detail-points,
.article-grid {
    display: grid;
    gap: var(--space-20);
}

.inner-intro-grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
}

.service-detail-layout {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
}

.intro-copy-card,
.intro-side-panel,
.story-panel,
.feature-panel,
.process-card,
.contact-side-panel,
.service-detail-copy,
.article-panel {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: calc(var(--border-radius) * 2);
    box-shadow: var(--shadow-soft);
}

.intro-copy-card,
.intro-side-panel,
.story-panel,
.process-card,
.contact-side-panel,
.service-detail-copy,
.article-panel {
    padding: 34px;
}

.intro-copy-card p,
.intro-side-panel p,
.story-panel p,
.contact-side-panel p {
    line-height: 1.9;
}

.about-intro-card {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 28px;
    align-items: center;
}

.about-intro-logo-shell {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 180px;
    border-radius: 28px;
    background:
        radial-gradient(circle at top right, rgba(245, 155, 0, 0.16), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 248, 245, 0.94));
    border: 1px solid rgba(45, 49, 49, 0.08);
    box-shadow: var(--shadow-soft);
}

.about-intro-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

.about-intro-copy {
    min-width: 0;
}

.metric-chips {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 28px;
}

.metric-chip {
    padding: 18px 20px;
    border-radius: 18px;
    background: var(--surface-alt);
    border: 1px solid rgba(45, 49, 49, 0.06);
}

.metric-chip strong {
    display: block;
    margin-bottom: 8px;
    color: var(--secondary-color);
}

.metric-chip span {
    color: var(--muted-color);
}

.story-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
}

.about-story-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 1fr;
    align-items: stretch;
}

.story-panel {
    min-height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 320px;
    padding: 92px 34px 36px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 249, 247, 0.95));
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.story-panel::before {
    content: attr(data-story-index);
    position: absolute;
    top: 24px;
    left: 26px;
    font-size: 58px;
    font-weight: 700;
    line-height: 1;
    color: rgba(45, 49, 49, 0.08);
}

.story-panel:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
    border-color: rgba(245, 155, 0, 0.16);
}

.story-panel h3 {
    margin-bottom: 14px;
    font-size: 28px;
    max-width: none;
}

.story-kicker {
    position: absolute;
    top: 24px;
    right: 24px;
    display: inline-flex;
    align-items: center;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(245, 155, 0, 0.1);
    border: 1px solid rgba(245, 155, 0, 0.14);
    color: var(--primary-color);
    font-weight: 700;
}

.story-orb {
    position: absolute;
    width: 180px;
    height: 180px;
    top: -56px;
    left: -48px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 155, 0, 0.16), transparent 70%);
    pointer-events: none;
}

.story-panel-featured {
    grid-column: auto;
    background: linear-gradient(160deg, #1a1e1e, #2d3131);
    box-shadow: var(--shadow-strong);
    min-height: 320px;
}

.story-panel-featured::before {
    color: rgba(255, 255, 255, 0.08);
}

.story-panel-featured h3,
.story-panel-featured p,
.story-panel-featured .content-list li {
    color: #fff;
}

.story-panel-featured .story-kicker {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.14);
    color: #fff;
}

.about-story-grid .story-panel p {
    max-width: none;
}

.about-story-grid .story-panel-featured p {
    max-width: none;
}

.about-story-grid .story-panel,
.about-story-grid .story-panel-featured {
    height: 100%;
}

.story-panel-featured .story-orb {
    background: radial-gradient(circle, rgba(245, 155, 0, 0.22), transparent 72%);
}

.story-panel-featured .content-list li::before {
    background: var(--primary-color);
}

.feature-panel {
    padding: var(--space-30);
}

.feature-panel .service-icon {
    margin-bottom: 18px;
}

.value-band-refined {
    grid-template-columns: repeat(4, 1fr);
}

.value-box-title {
    margin: 0 0 14px;
    color: var(--secondary-color);
    font-weight: 700;
}

.value-box-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

.value-box-list li {
    position: relative;
    padding-right: 18px;
    color: var(--muted-color);
    line-height: 1.8;
}

.value-box-list li::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0.75em;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--primary-color);
}
.value-band-refined > div {
    padding: 32px;
}

.inline-points,
.contact-inline-points {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 24px;
}

.inline-points span,
.contact-inline-points span {
    padding: 16px 18px;
    border-radius: 16px;
    background: var(--surface-alt);
    border: 1px solid rgba(45, 49, 49, 0.06);
    color: var(--secondary-color);
    font-weight: 700;
    text-align: center;
}

.services-hero-card,
.contact-hero-card {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(245, 155, 0, 0.16), transparent 26%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 249, 247, 0.95));
}

.services-side-panel,
.contact-panel-strong,
.contact-form-strong {
    position: relative;
    overflow: hidden;
}

.services-side-panel {
    display: grid;
    gap: 20px;
    align-content: start;
    padding: 38px;
    background:
        radial-gradient(circle at top right, rgba(245, 155, 0, 0.18), transparent 28%),
        linear-gradient(160deg, rgba(29, 32, 32, 0.98), rgba(45, 49, 49, 0.94));
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-strong);
}

.services-side-panel h2,
.services-side-panel p {
    position: relative;
    z-index: 1;
    color: #fff;
}

.services-side-panel p {
    color: rgba(255, 255, 255, 0.82);
}

.services-side-panel::before,
.contact-panel-strong::before,
.contact-form-strong::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(245, 155, 0, 0.08), transparent 58%);
    pointer-events: none;
}

.services-side-panel::before {
    background:
        radial-gradient(circle at top left, rgba(245, 155, 0, 0.22), transparent 34%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.03), transparent 58%);
}

.services-side-panel .eyebrow {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.14);
    color: #fff;
}

.services-assurance-list {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 14px;
}

.services-assurance-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.services-assurance-item strong {
    color: #fff;
    font-size: 0.98em;
}

.services-assurance-mark {
    flex: 0 0 auto;
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary-color), #ffd36b);
    box-shadow: 0 0 0 6px rgba(245, 155, 0, 0.14);
}

.service-stats-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 26px;
}

.service-stat-chip {
    padding: 18px 18px 16px;
    border-radius: 18px;
    background: rgba(45, 49, 49, 0.04);
    border: 1px solid rgba(45, 49, 49, 0.06);
}

.service-stat-chip strong {
    display: block;
    margin-bottom: 8px;
    color: var(--secondary-color);
}

.service-stat-chip span {
    color: var(--muted-color);
    font-size: 0.96em;
    line-height: 1.7;
}

.contact-cta-btn {
    min-width: 190px;
    border-radius: 18px;
}

.contact-hero-actions {
    margin-top: 28px;
}

.premium-service-card-strong {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    padding: 34px 30px 30px;
}

.premium-service-card-strong::before {
    content: attr(data-service-card);
    position: absolute;
    top: 22px;
    left: 22px;
    font-size: 52px;
    font-weight: 700;
    line-height: 1;
    color: rgba(45, 49, 49, 0.06);
}

.service-card-glow {
    position: absolute;
    width: 180px;
    height: 180px;
    top: -70px;
    right: -60px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 155, 0, 0.18), transparent 70%);
    pointer-events: none;
}

.premium-service-card-strong:hover {
    transform: translateY(-10px) scale(1.01);
}

.premium-service-card-strong:hover .service-link {
    transform: translateX(-4px);
}

.service-link {
    position: relative;
    z-index: 3;
    transition: transform 0.3s ease, color 0.3s ease;
}

.process-card {
    position: relative;
    overflow: hidden;
}

.process-card::after {
    content: "";
    position: absolute;
    inset: auto 24px 0;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
}

.contact-grid-refined {
    gap: 28px;
}

.contact-form-strong .field input,
.contact-form-strong .field textarea {
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(45, 49, 49, 0.12);
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.contact-form-strong .field input:focus,
.contact-form-strong .field textarea:focus {
    outline: none;
    border-color: rgba(245, 155, 0, 0.42);
    box-shadow: 0 0 0 4px rgba(245, 155, 0, 0.12);
    transform: translateY(-1px);
}

.contact-highlights-refined article {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.contact-highlights-refined article::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 84px;
    height: 84px;
    border-bottom-left-radius: 28px;
    background: linear-gradient(135deg, rgba(245, 155, 0, 0.18), transparent 70%);
}

.contact-highlights-refined article:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
    border-color: rgba(245, 155, 0, 0.18);
}

.process-grid-refined {
    margin-top: 10px;
}

.process-card {
    min-height: 100%;
}

.assurance-panel-refined {
    align-items: start;
}

.service-assurance-block {
    position: relative;
    overflow: hidden;
    padding: 38px;
    border-radius: 30px;
    background:
        radial-gradient(circle at top right, rgba(245, 155, 0, 0.14), transparent 24%),
        linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(246, 246, 243, 0.96));
    border: 1px solid rgba(45, 49, 49, 0.08);
    box-shadow: var(--shadow-strong);
}

.service-assurance-head {
    margin-bottom: 28px;
}

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

.service-assurance-card {
    position: relative;
    display: grid;
    gap: 16px;
    align-content: start;
    margin: 0;
    min-height: 180px;
    padding: 26px 24px 24px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 248, 245, 0.96));
    border: 1px solid rgba(45, 49, 49, 0.08);
    box-shadow: 0 16px 34px rgba(17, 20, 20, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-assurance-card:hover {
    transform: translateY(-6px);
    border-color: rgba(245, 155, 0, 0.18);
    box-shadow: 0 22px 40px rgba(17, 20, 20, 0.1);
}

.service-assurance-card p {
    margin: 0;
    padding: 0;
    background: transparent;
    color: var(--secondary-color);
    font-weight: 700;
    line-height: 1.9;
}

.service-assurance-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(245, 155, 0, 0.12);
    color: var(--primary-color);
    box-shadow: inset 0 0 0 1px rgba(245, 155, 0, 0.1);
}

.service-assurance-icon svg {
    width: 24px;
    height: 24px;
}


.contact-side-panel {
    display: grid;
    gap: 18px;
}

.contact-item {
    padding: 16px 18px;
    border-radius: 16px;
    background: var(--surface-alt);
    border: 1px solid rgba(45, 49, 49, 0.06);
}

.contact-item strong {
    display: block;
    margin-bottom: 8px;
    color: var(--secondary-color);
}

.contact-grid-refined {
    align-items: stretch;
}

.contact-panel-refined,
.contact-form-refined {
    min-height: 100%;
}

.contact-highlights-refined article {
    text-align: right;
}

.service-detail-media {
    height: 480px;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow-strong);
}

.service-detail-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detail-points {
    grid-template-columns: 1fr;
    margin: 24px 0 28px;
}

.service-detail-point {
    padding: 16px 18px;
    border-radius: 16px;
    background: var(--surface-alt);
    border: 1px solid rgba(45, 49, 49, 0.06);
    color: var(--secondary-color);
    font-weight: 700;
}

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

.feature-grid {
    grid-template-columns: repeat(4, 1fr);
}

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

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

.about-layout-refined {
    align-items: start;
    gap: 18px;
}

.feature-grid article,
.premium-service-card,
.service-cards article,
.timeline-grid article,
.contact-highlights article,
.prose-block,
.insight-card,
.contact-panel,
.contact-form,
.assurance-panel,
.value-band > div {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: calc(var(--border-radius) * 2);
    box-shadow: var(--shadow-soft);
}

.feature-grid article,
.premium-service-card,
.service-cards article,
.timeline-grid article,
.contact-highlights article,
.value-band > div,
.assurance-panel {
    padding: var(--space-30);
}

.premium-service-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.premium-service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
}

.service-icon {
    width: 68px;
    height: 68px;
    margin-bottom: var(--space-20);
    display: grid;
    place-items: center;
    border-radius: calc(var(--border-radius) * 2);
    background: rgba(245, 155, 0, 0.1);
    color: var(--primary-color);
    transition: background 0.3s ease, color 0.3s ease;
}

.service-icon svg {
    width: 32px;
    height: 32px;
}

.premium-service-card:hover .service-icon {
    background: var(--primary-color);
    color: #fff;
}

.home-trust-section {
    position: relative;
    overflow: hidden;
}

.home-trust-section::before,
.home-industries-section::before {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 155, 0, 0.12), transparent 70%);
    pointer-events: none;
}

.home-trust-section::before {
    top: 20px;
    left: -60px;
}

.home-industries-section::before {
    right: -80px;
    bottom: 30px;
}

.trust-grid,
.stats-grid,
.industries-grid,
.contact-preview-cards {
    display: grid;
    gap: var(--space-20);
}

.trust-grid {
    grid-template-columns: repeat(4, 1fr);
}

.trust-card,
.stat-card,
.industry-card,
.contact-preview-card,
.about-preview-panel {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: calc(var(--border-radius) * 2);
    box-shadow: var(--shadow-soft);
}

.trust-card,
.industry-card,
.contact-preview-card {
    padding: var(--space-30);
    text-align: right;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.trust-card:hover,
.industry-card:hover,
.contact-preview-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
    border-color: rgba(245, 155, 0, 0.28);
}

.trust-icon,
.industry-icon {
    width: 68px;
    height: 68px;
    margin-bottom: var(--space-20);
    display: grid;
    place-items: center;
    border-radius: calc(var(--border-radius) * 2);
    background: rgba(245, 155, 0, 0.1);
    color: var(--primary-color);
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.trust-icon svg,
.industry-icon svg {
    width: 32px;
    height: 32px;
}

.trust-card:hover .trust-icon,
.industry-card:hover .industry-icon {
    background: var(--primary-color);
    color: #fff;
    transform: scale(1.06);
}

.about-preview-layout,
.contact-preview-grid {
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    gap: 28px;
    align-items: center;
}

.about-preview-media {
    position: relative;
    height: 520px;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow-strong);
}

.about-preview-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(17, 20, 20, 0.05), rgba(17, 20, 20, 0.3));
}

.about-preview-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-preview-panel {
    padding: 40px;
    text-align: right;
}

.about-preview-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 26px 0 30px;
}

.about-preview-points div {
    padding: 18px 20px;
    border-radius: 18px;
    background: var(--surface-alt);
    border: 1px solid rgba(45, 49, 49, 0.06);
}

.about-preview-points strong,
.contact-preview-card strong {
    display: block;
    margin-bottom: 8px;
    color: var(--secondary-color);
}

.about-preview-points span,
.contact-preview-card span {
    color: var(--muted-color);
    line-height: 1.7;
}

.contact-value-ltr {
    display: inline-block;
    direction: ltr;
    unicode-bidi: isolate;
    text-align: left;
}

.home-stats-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1c2121 0%, #2d3131 55%, #3a2d12 100%);
}

.home-stats-section .section-head span,
.home-stats-section .section-head h2,
.home-stats-section .section-head p {
    color: #fff;
}

.home-stats-section .section-head h2::after {
    margin-right: auto;
    margin-left: auto;
}

.stats-grid {
    grid-template-columns: repeat(4, 1fr);
}

.stat-card {
    padding: 34px 24px;
    text-align: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(10px);
}

.stat-number {
    display: block;
    margin-bottom: 10px;
    color: #fff;
    font-size: clamp(32px, 3vw, 46px);
    font-weight: 700;
    line-height: 1.1;
}

.stat-card span {
    color: rgba(255, 255, 255, 0.84);
}

.industries-grid {
    grid-template-columns: repeat(4, 1fr);
}

.home-cta-section {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(17, 20, 20, 0.82), rgba(17, 20, 20, 0.64)),
        url("../images/hero-3.jpg") center/cover no-repeat;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(245, 155, 0, 0.2), transparent 55%);
    pointer-events: none;
}

.cta-panel {
    position: relative;
    z-index: 1;
    max-width: 760px;
    padding: 44px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(12px);
}

.cta-panel h2,
.cta-panel p {
    color: #fff;
}

.cta-panel .eyebrow {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.contact-preview-cards {
    grid-template-columns: 1fr;
}

.contact-preview-copy {
    max-width: 600px;
    text-align: right;
}

.contact-preview-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.contact-preview-secondary {
    color: var(--secondary-color);
    border-color: rgba(45, 49, 49, 0.14);
    background: rgba(45, 49, 49, 0.05);
}

.contact-preview-secondary:hover {
    background: rgba(45, 49, 49, 0.08);
}

.service-link,
.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    font-weight: 700;
    color: var(--primary-color);
}

.service-link::after,
.text-link::after {
    content: "←";
}

.prose-block,
.insight-card,
.contact-panel,
.contact-form {
    padding: var(--space-30);
}

.prose-block-structured {
    display: grid;
    gap: 16px;
}

.story-block {
    padding: 20px 22px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(45, 49, 49, 0.06);
}

.story-block p:last-child {
    margin-bottom: 0;
}

.content-list {
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

.content-list li {
    position: relative;
    padding-right: 18px;
    color: var(--secondary-color);
    line-height: 1.7;
}

.content-list li::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0.7em;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--primary-color);
}

.insight-card,
.contact-panel {
    background: linear-gradient(160deg, #1a1e1e, #2d3131);
    box-shadow: var(--shadow-strong);
}

.insight-card h2,
.contact-panel h2,
.insight-card p,
.contact-panel p {
    color: #fff;
}

.insight-card .eyebrow,
.contact-panel .eyebrow {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.16);
}

.bullet-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 14px;
}

.bullet-list li {
    position: relative;
    padding-right: 20px;
    color: rgba(255, 255, 255, 0.82);
}

.bullet-list li::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0.6em;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--primary-color);
}

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

.timeline-grid article strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: var(--space-20);
    border-radius: calc(var(--border-radius) * 2);
    background: rgba(245, 155, 0, 0.12);
    color: var(--primary-color);
}

.value-band {
    grid-template-columns: repeat(3, 1fr);
}

.value-band span {
    display: inline-block;
    margin-bottom: 10px;
    font-weight: 700;
    color: var(--primary-color);
}

.assurance-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-20);
}

.bullet-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-20);
}

.bullet-columns p {
    margin: 0;
    padding: var(--space-20);
    border-radius: var(--border-radius);
    background: var(--surface-alt);
    color: var(--secondary-color);
}

.map-frame {
    margin-top: var(--space-20);
    min-height: 320px;
    border-radius: calc(var(--border-radius) * 2);
    overflow: hidden;
}

.map-frame iframe {
    min-height: 320px;
}

.field {
    margin-bottom: var(--space-20);
}

.field label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    color: var(--secondary-color);
}

.field input,
.field textarea,
.admin-input,
.admin-textarea,
.admin-select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    background: #fff;
    font-size: var(--body-size);
    color: var(--text-color);
}

.contact-highlights {
    grid-template-columns: repeat(3, 1fr);
}

.site-footer {
    padding: var(--section-padding) 0 var(--space-20);
    background: linear-gradient(180deg, #202525, #141818);
    color: #fff;
}

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

.footer-brand {
    display: grid;
    gap: 14px;
}

.footer-brand-head {
    display: flex;
    align-items: center;
    gap: 18px;
}

.footer-brand-copy {
    display: grid;
    gap: 8px;
}

.footer-brand .eyebrow {
    width: fit-content;
    margin-bottom: 0;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.94);
}

.footer-logo-shell {
    width: 118px;
    height: 118px;
    display: grid;
    place-items: center;
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 18px 40px rgba(0, 0, 0, 0.18);
}

.footer-logo {
    width: 84px;
    height: 84px;
    object-fit: contain;
    filter: drop-shadow(0 12px 28px rgba(245, 155, 0, 0.18));
}

.footer-brand h3,
.footer-links h4,
.footer-contact h4 {
    color: #fff;
}

.footer-grid p,
.footer-grid a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-links-list {
    display: grid;
    gap: 12px;
    margin-top: 14px;
}

.footer-links-list a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-links-list a::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--primary-color);
    flex-shrink: 0;
}

.footer-links-list a:hover {
    color: #fff;
    transform: translateX(-3px);
}

.footer-bottom {
    margin-top: var(--space-20);
    padding-top: var(--space-20);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-20);
    text-align: center;
}

.footer-actions {
    display: flex;
    gap: var(--space-20);
}

.whatsapp-float,
.back-to-top {
    position: fixed;
    z-index: 90;
    box-shadow: var(--shadow-strong);
}

.whatsapp-float {
    left: var(--space-20);
    bottom: 22px;
    width: 60px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #25d366;
    animation: whatsappPulse 2.2s infinite ease-in-out;
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease, box-shadow 0.3s ease;
}

.whatsapp-float svg {
    width: 48px;
    height: 48px;
    transition: transform 0.3s ease;
}

.whatsapp-float::before {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 211, 102, 0.28) 0%, rgba(37, 211, 102, 0) 72%);
    opacity: 0;
    transform: scale(0.88);
    transition: opacity 0.35s ease, transform 0.35s ease;
    pointer-events: none;
}

.whatsapp-float::after {
    content: attr(data-tooltip);
    position: absolute;
    left: calc(100% + 14px);
    top: 50%;
    transform: translateY(-50%);
    padding: 10px 12px;
    border-radius: var(--border-radius);
    background: rgba(22, 26, 26, 0.92);
    color: #fff;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.whatsapp-float:hover::after {
    opacity: 1;
}

.whatsapp-float:hover {
    box-shadow: 0 18px 40px rgba(37, 211, 102, 0.28);
    transform: translateY(-3px) scale(1.03);
}

.whatsapp-float:hover::before {
    opacity: 1;
    transform: scale(1);
}

.whatsapp-float:hover svg {
    transform: scale(1.06);
}

body.hero-whatsapp-lift .whatsapp-float {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(16px) scale(0.92);
}

@keyframes whatsappPulse {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

.back-to-top {
    right: var(--space-20);
    bottom: 90px;
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    background: var(--secondary-color);
    color: #fff;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease;
}

.back-to-top:hover {
    transform: translateY(-3px);
    background: #222626;
}

.back-to-top svg {
    width: 20px;
    height: 20px;
    display: block;
    overflow: visible;
}

.alert {
    padding: 14px 16px;
    border-radius: var(--border-radius);
    font-weight: 700;
}

.alert.success {
    background: #e9fff0;
    color: #106e39;
}

.alert.error {
    background: #fff1f1;
    color: #a23131;
}

[data-animate] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-animate].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1100px) {
    .premium-services-grid,
    .feature-grid,
    .timeline-grid,
    .value-band,
    .contact-highlights,
    .footer-grid,
    .client-strip-inner,
    .hero-bottom-grid,
    .trust-grid,
    .stats-grid,
    .industries-grid,
    .metric-chips,
    .inline-points,
    .contact-inline-points,
    .service-stats-strip,
    .story-grid,
    .article-grid,
    .service-assurance-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .split-grid,
    .about-layout,
    .contact-grid,
    .assurance-panel,
    .about-preview-layout,
    .contact-preview-grid,
    .inner-intro-grid,
    .service-detail-layout {
        grid-template-columns: 1fr;
    }

    .about-intro-card {
        grid-template-columns: 1fr;
    }

    .about-intro-logo-shell {
        width: 160px;
        height: 160px;
        margin: 0 auto;
    }

    .about-preview-media {
        height: 380px;
    }
}

.cms-rich-card {
    padding: 32px;
    border-radius: calc(var(--border-radius) * 2);
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
}

.cms-cta-panel {
    background-size: cover;
    background-position: center;
}

.cms-grid-cols-2,
.cms-grid-cols-3,
.cms-grid-cols-4 {
    display: grid;
    gap: 20px;
}

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

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

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

.cms-media-right .about-preview-panel {
    order: 2;
}

.cms-media-right .about-preview-media {
    order: 1;
}

@media (max-width: 991px) {
    .cms-grid-cols-2,
    .cms-grid-cols-3,
    .cms-grid-cols-4 {
        grid-template-columns: 1fr;
    }

    .cms-media-right .about-preview-panel,
    .cms-media-right .about-preview-media {
        order: initial;
    }
}

@media (max-width: 767px) {
    .container {
        width: calc(100% - 24px);
    }

    .site-header .nav-wrap {
        min-height: 74px;
        gap: 10px;
    }

    .brand {
        gap: 10px;
        flex: 1 1 auto;
        max-width: calc(100% - 58px);
    }

    .brand img,
    .brand-badge {
        width: 50px;
        height: 50px;
        border-radius: 18px;
    }

    .brand strong {
        font-size: 0.98rem;
        line-height: 1.15;
    }

    .brand-copy {
        gap: 1px;
    }

    .brand-tagline {
        font-size: 0.78rem;
        line-height: 1.3;
        white-space: normal;
    }

    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 46px;
        height: 46px;
        border: 0;
        border-radius: var(--border-radius);
        background: rgba(255, 255, 255, 0.12);
        color: #fff;
        cursor: pointer;
    }

    .site-header.is-scrolled .menu-toggle,
    .page-about .menu-toggle,
    .page-services .menu-toggle,
    .page-contact .menu-toggle {
        background: var(--secondary-color);
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 10px);
        right: 0;
        left: 0;
        display: flex;
        flex-direction: column;
        padding: 14px;
        background: rgba(255, 255, 255, 0.96);
        border-radius: calc(var(--border-radius) * 2);
        box-shadow: var(--shadow-strong);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-8px);
        transition: opacity 0.26s ease, transform 0.26s ease, visibility 0.26s ease;
        z-index: 20;
    }

    .site-nav.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .site-nav a {
        width: 100%;
        justify-content: center;
        color: var(--secondary-color) !important;
    }

    .site-nav .nav-cta {
        margin-top: 6px;
        background: linear-gradient(135deg, var(--primary-color), #ffcb57);
    }

    .hero-arrow {
        display: none;
    }

    .hero-slider,
    .hero-slider-track {
        min-height: 720px;
        height: 100svh;
    }

    .hero-slide-content {
        height: auto;
        min-height: 100svh;
        align-items: flex-end;
        justify-content: flex-end;
        padding-top: 96px;
        padding-bottom: 178px;
    }

    .hero-copy {
        max-width: 100%;
        padding: 18px 16px 16px;
        border-radius: 24px;
        background: linear-gradient(180deg, rgba(20, 24, 24, 0.48), rgba(20, 24, 24, 0.24));
        border: 1px solid rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(10px);
    }

    .hero-copy,
    .section-head,
    .contact-preview-copy,
    .about-preview-panel {
        overflow-wrap: anywhere;
    }

    .hero-slide h1 {
        max-width: 100%;
        font-size: calc(var(--h1-size) * 0.5);
        line-height: 1.36;
        margin-bottom: 10px;
    }

    .hero-copy .eyebrow {
        margin-bottom: 10px;
        padding: 8px 12px;
        font-size: 0.82rem;
    }

    .hero-copy p {
        max-width: 100%;
        margin-bottom: 12px;
        font-size: 0.88rem;
        line-height: 1.82;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .hero-actions .btn {
        width: 100%;
        min-width: 0;
        padding: 13px 18px;
    }

    .hero-dots {
        left: 14px;
        bottom: 102px;
        padding: 6px 8px;
        gap: 6px;
        background: rgba(18, 22, 22, 0.42);
    }

    .hero-dot {
        width: 8px;
        height: 8px;
    }

    .hero-dot.is-active {
        width: 20px;
    }

    .hero-bottom-strip {
        padding-bottom: 12px;
    }

    .hero-stat {
        min-height: 78px;
        min-width: 0;
        padding: 10px 10px;
        border-radius: 18px;
        background: linear-gradient(180deg, rgba(22, 26, 26, 0.78), rgba(22, 26, 26, 0.64));
    }

    .hero-stat strong {
        margin-bottom: 3px;
        font-size: calc(var(--h3-size) * 0.68);
    }

    .hero-stat span {
        font-size: 0.7rem;
        line-height: 1.45;
    }

    .hero-bottom-grid,
    .client-strip-inner,
    .feature-grid,
    .premium-services-grid,
    .trust-grid,
    .service-cards,
    .timeline-grid,
    .value-band,
    .bullet-columns,
    .contact-highlights,
    .footer-grid,
    .stats-grid,
    .industries-grid,
    .about-preview-points,
    .metric-chips,
    .inline-points,
    .contact-inline-points,
    .service-stats-strip,
    .story-grid,
    .article-grid,
    .service-assurance-grid {
        grid-template-columns: 1fr;
    }

    .hero-bottom-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
        overflow: visible;
        padding-inline: 0;
    }

    .story-panel-featured {
        grid-column: auto;
    }

    .site-footer {
        padding-top: 54px;
        padding-bottom: 24px;
    }

    .footer-grid {
        gap: 14px;
    }

    .footer-grid > div {
        padding: 20px 18px;
        border-radius: 22px;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 8px;
    }

    .footer-brand-head {
        flex-direction: row;
        align-items: center;
        gap: 12px;
    }

    .footer-logo-shell {
        width: 74px;
        height: 74px;
        border-radius: 20px;
        flex: 0 0 auto;
    }

    .footer-logo {
        width: 50px;
        height: 50px;
    }

    .footer-brand-copy {
        gap: 6px;
        min-width: 0;
        flex: 1 1 auto;
    }

    .footer-brand h3,
    .footer-links h4,
    .footer-contact h4 {
        margin-bottom: 10px;
    }

    .footer-brand h3 {
        font-size: 1.12rem;
        line-height: 1.5;
    }

    .footer-grid p,
    .footer-grid a,
    .footer-contact p {
        line-height: 1.8;
    }

    .footer-links-list {
        gap: 10px;
        margin-top: 8px;
    }

    .footer-links-list a {
        width: 100%;
        padding: 10px 12px;
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.06);
    }

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

    .footer-contact p {
        margin: 0;
        padding: 10px 12px;
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.06);
    }

    .contact-hero-actions {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        margin-top: 22px;
        text-align: center;
    }

    .contact-cta-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: min(100%, 230px);
        min-width: 0;
        margin: 0 auto;
        align-self: center;
    }

    .client-strip {
        padding-top: 28px;
    }

    .client-strip-inner {
        padding: 18px;
    }

    .client-strip-inner span {
        border-left: 0;
        border-bottom: 1px solid rgba(45, 49, 49, 0.08);
    }

    .client-strip-inner span:last-child {
        border-bottom: 0;
    }

    .about-preview-panel,
    .cta-panel {
        padding: 26px;
    }

    .about-preview-media {
        height: 300px;
    }

    .service-detail-media {
        height: 300px;
    }

    .contact-preview-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .back-to-top {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .whatsapp-float {
        left: 14px;
        right: auto;
        bottom: 16px;
        width: 52px;
        height: 52px;
        max-width: calc(100vw - 28px);
    }

    .whatsapp-float svg {
        width: 40px;
        height: 40px;
    }

    .whatsapp-float::after {
        display: none;
    }

    .site-loader-chip {
        width: 98px;
        height: 98px;
        border-radius: 28px;
    }

    .loader-orbit-outer {
        inset: 10px;
    }

    .loader-orbit-middle {
        inset: 19px;
    }

    .loader-core {
        inset: 26px;
    }

    .back-to-top {
        right: 14px;
        bottom: 76px;
        width: 46px;
        height: 46px;
    }
}


