/* LightCms — Public RTL stylesheet v3 (Navy/Blue theme) */

/* ══════════════════════════════════════════════════════════
   1. RESET & VARIABLES
══════════════════════════════════════════════════════════ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* === Blue / Navy palette === */
    --clr-primary: #1d4ed8;
    --clr-primary-dk: #1e3a8a;
    --clr-primary-lt: rgba(29, 78, 216, 0.09);
    --clr-primary-glow: rgba(29, 78, 216, 0.35);
    --clr-primary-bright: #3b82f6;
    --clr-accent: #f59e0b;
    --clr-dark: #0a1628;
    --clr-dark-2: #0c1c34;
    --clr-dark-3: #12274a;
    --clr-surface: #ffffff;
    --clr-bg: #f0f4ff;
    --clr-text: #0f172a;
    --clr-text-muted: #475569;
    --clr-border: #dde4f0;
    --clr-success: #16a34a;
    --radius-sm: 6px;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow-sm: 0 1px 4px rgba(0, 0, 0, .06);
    --shadow: 0 4px 16px rgba(0, 0, 0, .08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, .12);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, .18);
    --max-w: 1140px;
    --page-pad: 1.5rem;
    --font: 'Vazirmatn', 'Tahoma', Arial, sans-serif;
    --ease: cubic-bezier(.4, 0, .2, 1);
}

/* ══════════════════════════════════════════════════════════
   2. BASE
══════════════════════════════════════════════════════════ */
html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font);
    line-height: 1.75;
    color: var(--clr-text);
    background: var(--clr-bg);
    direction: rtl;
    -webkit-font-smoothing: antialiased;
}

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

h1,
h2,
h3,
h4,
h5 {
    line-height: 1.25;
}

h1 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
}

h2 {
    font-size: clamp(1.375rem, 3vw, 2rem);
}

h3 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--clr-primary);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

ul,
ol {
    list-style: none;
}

/* ══════════════════════════════════════════════════════════
   3. TOPBAR (announcement bar above header)
══════════════════════════════════════════════════════════ */
.topbar {
    background: var(--clr-dark);
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    padding: .55rem var(--page-pad);
    font-size: .82rem;
    color: rgba(255, 255, 255, .65);
}

.topbar__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.topbar__tagline {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.topbar__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--clr-success);
    animation: blink 2.5s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .3;
    }
}

.topbar__phone {
    display: flex;
    align-items: center;
    gap: .4rem;
    color: #fff;
    font-weight: 700;
    font-size: .9rem;
    transition: color .15s;
}

.topbar__phone:hover {
    color: var(--clr-primary-bright);
    text-decoration: none;
}

.topbar__phone svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

/* ══════════════════════════════════════════════════════════
   4. HEADER
══════════════════════════════════════════════════════════ */
.site-header {
    background: rgba(255, 255, 255, .85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    position: sticky;
    top: 0;
    z-index: 200;
    /* isolation: isolate keeps header stacking context separate so the
       fixed off-canvas panel (appended to <body>) always sits above it */
    isolation: isolate;
    transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header.scrolled {
    background: rgba(255, 255, 255, .95);
    border-color: transparent;
    box-shadow: 0 4px 30px rgba(0, 0, 0, .08);
}

.site-header__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: .875rem var(--page-pad);
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.site-header__brand {
    font-weight: 900;
    font-size: 1.35rem;
    color: var(--clr-dark);
    white-space: nowrap;
    flex-shrink: 0;
    letter-spacing: -0.5px;
}

.site-header__logo {
    height: 48px;
    width: auto;
}

.site-header__name {
    color: var(--clr-primary);
}

.header-phone {
    display: none;
    align-items: center;
    gap: .5rem;
    margin-right: auto;
    background: linear-gradient(135deg, var(--clr-primary) 0%, #2563eb 100%);
    color: #fff;
    padding: .5rem 1.25rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: .95rem;
    transition: all .3s ease;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(29, 78, 216, 0.25);
}

.header-phone:hover {
    background: linear-gradient(135deg, var(--clr-primary-dk) 0%, var(--clr-primary) 100%);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(29, 78, 216, 0.35);
}

.header-phone svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
}

/* ══════════════════════════════════════════════════════════
   5. LAYOUT CONTAINERS
══════════════════════════════════════════════════════════ */
#main-content {
    min-height: 60vh;
}

body.page--home #main-content {
    max-width: none;
    padding: 0;
}

body:not(.page--home) #main-content {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 2rem var(--page-pad);
}

.sec-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--page-pad);
}

/* ══════════════════════════════════════════════════════════
   6. FOOTER
══════════════════════════════════════════════════════════ */

/* -- Final CTA banner (sits on top of the footer) -- */
.footer-cta {
    background: linear-gradient(120deg, var(--clr-primary-dk) 0%, var(--clr-primary) 60%, #2563eb 100%);
    position: relative;
    overflow: hidden;
}

.footer-cta::before {
    /* subtle dot-grid texture, no image asset needed */
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, .14) 1.5px, transparent 1.5px);
    background-size: 22px 22px;
    opacity: .5;
    pointer-events: none;
}

.footer-cta__inner {
    position: relative;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 2.25rem var(--page-pad);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-cta__text {
    display: flex;
    flex-direction: column;
    gap: .3rem;
    color: #fff;
}

.footer-cta__eyebrow {
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .04em;
    color: rgba(255, 255, 255, .75);
    text-transform: uppercase;
}

.footer-cta__title {
    font-size: 1.35rem;
    font-weight: 800;
}

.footer-cta__hint {
    color: rgba(255, 255, 255, .85);
    font-size: .9rem;
}

.footer-cta__btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    background: #fff;
    color: var(--clr-primary-dk);
    padding: .9rem 1.8rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.05rem;
    white-space: nowrap;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
    transition: transform .2s var(--ease), box-shadow .2s var(--ease);
    flex-shrink: 0;
}

.footer-cta__btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, .3);
    text-decoration: none;
}

.footer-cta__btn svg {
    position: relative;
    z-index: 1;
}

.footer-cta__btn bdi {
    position: relative;
    z-index: 1;
    direction: ltr;
}

.footer-cta__btn-ring {
    position: absolute;
    inset: -6px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, .65);
    animation: footerCtaPulse 2.2s var(--ease) infinite;
}

@keyframes footerCtaPulse {
    0% {
        transform: scale(.94);
        opacity: .9;
    }

    70% {
        transform: scale(1.14);
        opacity: 0;
    }

    100% {
        transform: scale(1.14);
        opacity: 0;
    }
}

.site-footer {
    background: #0f172a;
    color: #94a3b8;
    margin-top: auto;
    font-size: .95rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.site-footer__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 4rem var(--page-pad) 3rem;
    display: grid;
    grid-template-columns: 1.7fr 1.15fr .85fr .95fr;
    gap: 2.75rem;
}

.site-footer__logo {
    color: #fff;
    font-size: 1.5rem;
    display: block;
    margin-bottom: 1rem;
    font-weight: 800;
}

.site-footer__tagline {
    color: #cbd5e1;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    max-width: 400px;
}

/* -- Trust badge chips -- */
.site-footer__badges {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
    margin: 0 0 1.5rem;
    padding: 0;
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .08);
    color: #cbd5e1;
    font-size: .78rem;
    font-weight: 600;
    padding: .4rem .75rem;
    border-radius: 50px;
}

.footer-badge svg {
    color: var(--clr-primary-bright);
    flex-shrink: 0;
}

.site-footer__contact {
    display: flex;
    flex-direction: column;
    gap: .85rem;
}

/* -- Phone "call card" -- */
.footer-call-card {
    display: flex;
    align-items: center;
    gap: .85rem;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--radius);
    padding: .85rem 1rem;
    transition: background .2s, border-color .2s, transform .2s;
}

.footer-call-card:hover {
    background: rgba(255, 255, 255, .09);
    border-color: rgba(59, 130, 246, .4);
    transform: translateY(-2px);
    text-decoration: none;
}

.footer-call-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--clr-primary);
    color: #fff;
}

.footer-call-card__body {
    display: flex;
    flex-direction: column;
    gap: .15rem;
}

.footer-call-card__label {
    font-size: .72rem;
    color: #94a3b8;
    font-weight: 600;
}

.footer-call-card__number {
    font-size: 1.15rem;
    font-weight: 800;
    color: #fff;
    direction: ltr;
}

.footer-info-row {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    font-style: normal;
    color: #94a3b8;
    line-height: 1.6;
    font-size: .88rem;
    padding: 0 .25rem;
}

.footer-info-row svg {
    flex-shrink: 0;
    margin-top: .15rem;
    color: var(--clr-primary-bright);
}

.site-footer__address svg {
    flex-shrink: 0;
    color: var(--clr-primary-bright);
}

.site-footer__nav-title {
    color: #fff;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    position: relative;
    padding-bottom: .75rem;
}

.site-footer__nav-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30px;
    height: 2px;
    background: var(--clr-primary);
    border-radius: 2px;
}

/* -- Services column -- */
.footer-service-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: .85rem;
}

.footer-service-list li {
    display: flex;
    align-items: center;
    gap: .6rem;
    color: #94a3b8;
    font-size: .92rem;
}

.footer-service-list svg {
    color: var(--clr-primary-bright);
    flex-shrink: 0;
}

.site-footer__bottom {
    background: #0b1120;
    padding: 1.5rem 0;
}

.site-footer__bottom-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--page-pad);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.site-footer__copy {
    color: #64748b;
    font-size: .85rem;
}

.site-footer__copy b {
    color: #cbd5e1;
}

.site-footer__socials {
    display: flex;
    gap: 1rem;
}

.site-footer__socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: #cbd5e1;
    transition: all .3s;
}

.site-footer__socials a:hover {
    background: var(--clr-primary);
    color: #fff;
    transform: translateY(-2px);
}

/* align-items: stretch (not the base rule's "center") so each row spans the full
   column width; the row's own flex justify-content then sits it at the RTL start
   (right edge) instead of every link shrink-wrapping and centering as a block. */
.site-footer .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: .6rem;
}

.site-footer .nav-list__link {
    display: flex;
    align-items: center;
    gap: .45rem;
    color: #94a3b8;
    padding: .15rem 0;
    transition: color .2s var(--ease), gap .2s var(--ease);
}

.site-footer .nav-list__link::before {
    content: '';
    width: 0;
    height: 5px;
    border-radius: 50%;
    flex-shrink: 0;
    background: var(--clr-primary-bright);
    transition: width .2s var(--ease);
}

.site-footer .nav-list__link:hover {
    color: var(--clr-primary-bright);
    gap: .65rem;
    text-decoration: none;
}

.site-footer .nav-list__link:hover::before {
    width: 5px;
}

/* ══════════════════════════════════════════════════════════
   7. BUTTONS
══════════════════════════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .7rem 1.75rem;
    border-radius: 50px;
    font-family: var(--font);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all .2s var(--ease);
    text-align: center;
    white-space: nowrap;
}

.btn--primary {
    background: var(--clr-primary);
    color: #fff;
    border-color: var(--clr-primary);
}

.btn--primary:hover {
    background: var(--clr-primary-dk);
    border-color: var(--clr-primary-dk);
    text-decoration: none;
    color: #fff;
}

.btn--outline {
    background: transparent;
    border-color: currentColor;
    color: var(--clr-primary);
}

.btn--outline:hover {
    background: var(--clr-primary);
    border-color: var(--clr-primary);
    color: #fff;
    text-decoration: none;
}

.btn--white {
    background: #fff;
    color: var(--clr-primary);
    border-color: #fff;
}

.btn--white:hover {
    background: #f0f0f0;
    text-decoration: none;
}

.btn--outline-white {
    background: transparent;
    color: rgba(255, 255, 255, .9);
    border-color: rgba(255, 255, 255, .45);
}

.btn--outline-white:hover {
    background: rgba(255, 255, 255, .12);
    border-color: rgba(255, 255, 255, .9);
    text-decoration: none;
    color: #fff;
}

.btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════
   8. NAVIGATION
══════════════════════════════════════════════════════════ */
.site-nav {
    flex: 1;
    display: flex;
    align-items: center;
}

.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: .25rem;
    flex-wrap: wrap;
    align-items: center;
}

.nav-list--sub {
    position: absolute;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--radius);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    flex-direction: column;
    min-width: 220px;
    max-height: 70vh;
    overflow-y: auto;
    padding: .5rem;
    z-index: 300;
    top: 100%;
    margin-top: 5px;
    right: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
}

.nav-list--sub::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 15px;
    background: transparent;
}

.nav-list--sub .nav-list__link {
    border-radius: var(--radius-sm);
    padding: .65rem 1rem;
    font-size: .95rem;
}

.nav-list__item {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-list__item--current>.nav-list__link,
.nav-list__item--has-active>.nav-list__link,
.nav-list__item--current>.nav-list__label,
.nav-list__item--has-active>.nav-list__label {
    color: var(--clr-primary);
    font-weight: 700;
}

.nav-list__link,
.nav-list__label {
    display: flex;
    align-items: center;
    gap: .25rem;
    padding: .4rem .7rem;
    border-radius: var(--radius-sm);
    color: var(--clr-text-muted);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    background: none;
    border: none;
    font-family: var(--font);
    transition: all .2s var(--ease);
}

.nav-list__link:hover,
.nav-list__label:hover {
    background: rgba(14, 165, 233, 0.05);
    color: var(--clr-primary);
    text-decoration: none;
}

.nav-list__item:hover .nav-list--sub,
.nav-list__item:focus-within .nav-list--sub {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Toggle Button */
.site-nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    margin-right: auto;
    z-index: 500;
}

.site-nav__toggle-bar {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--clr-text);
    border-radius: 2px;
    transition: transform .3s var(--ease), opacity .3s;
}

/* Mobile Off-canvas */
.site-nav__overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 22, 40, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    /* z-index must beat sticky header (200) — use 9998 so the panel (9999) is always on top */
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s var(--ease);
}

.site-nav__panel {
    display: flex;
    flex-direction: column;
}

.site-nav__header-mobile {
    display: none;
}

.site-nav__overlay.is-open,
.site-nav.is-open .site-nav__overlay {
    opacity: 1;
    visibility: visible;
}

/* ══════════════════════════════════════════════════════════
   9. STICKY CTA
══════════════════════════════════════════════════════════ */
.sticky-cta {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    z-index: 500;
    opacity: 0;
    transform: translateY(12px) scale(.95);
    transition: opacity .35s var(--ease), transform .35s var(--ease);
    pointer-events: none;
}

.sticky-cta.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

.sticky-cta.is-dismissed {
    display: none;
}

.sticky-cta__dismiss {
    position: absolute;
    top: -8px;
    left: -8px;
    z-index: 2;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: var(--clr-text-muted);
    border: 1px solid var(--clr-border);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    opacity: 0;
    transform: scale(.7);
    transition: opacity .2s, transform .2s, color .2s, border-color .2s;
}

.sticky-cta:hover .sticky-cta__dismiss {
    opacity: 1;
    transform: scale(1);
}

.sticky-cta__dismiss:hover {
    color: #fff;
    background: var(--clr-danger, #dc2626);
    border-color: transparent;
}

.sticky-cta__link {
    position: relative;
    display: flex;
    align-items: center;
    gap: .8rem;
    background: linear-gradient(135deg, var(--clr-primary-bright), var(--clr-primary));
    color: #fff;
    padding: .55rem .55rem .55rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 8px 28px var(--clr-primary-glow), 0 2px 8px rgba(0, 0, 0, .15);
    font-weight: 700;
    font-size: .95rem;
    transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}

.sticky-cta__link:hover {
    text-decoration: none;
    transform: translateY(-4px);
    box-shadow: 0 14px 36px var(--clr-primary-glow), 0 4px 12px rgba(0, 0, 0, .2);
}

.sticky-cta__icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    flex-shrink: 0;
    background: rgba(255, 255, 255, .18);
}

.sticky-cta__icon svg {
    position: relative;
    z-index: 1;
    animation: stickyRing 2.4s ease-in-out infinite;
}

@keyframes stickyRing {

    0%,
    100% {
        transform: rotate(0deg);
    }

    5% {
        transform: rotate(-18deg);
    }

    10% {
        transform: rotate(14deg);
    }

    15% {
        transform: rotate(-10deg);
    }

    20% {
        transform: rotate(6deg);
    }

    25% {
        transform: rotate(0deg);
    }
}

.sticky-cta__ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .85);
    animation: stickyPulse 2.4s var(--ease) infinite;
}

.sticky-cta__ring--delay {
    animation-delay: 1.2s;
}

@keyframes stickyPulse {
    0% {
        transform: scale(1);
        opacity: .8;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.sticky-cta__text {
    display: flex;
    flex-direction: column;
    gap: .1rem;
    line-height: 1.3;
}

.sticky-cta__status {
    display: flex;
    align-items: center;
    gap: .3rem;
    font-size: .68rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .9);
}

.sticky-cta__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4ade80;
    flex-shrink: 0;
    box-shadow: 0 0 0 rgba(74, 222, 128, .6);
    animation: stickyDot 2s infinite;
}

@keyframes stickyDot {
    0% {
        box-shadow: 0 0 0 0 rgba(74, 222, 128, .6);
    }

    70% {
        box-shadow: 0 0 0 6px rgba(74, 222, 128, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(74, 222, 128, 0);
    }
}

.sticky-cta__number {
    direction: ltr;
    font-size: 1rem;
    font-weight: 800;
}

/* -- Mobile: full-width, high-visibility bottom bar -- */
@media (max-width: 640px) {

    /* Reserve space so the fixed bar never permanently covers the last content
       (e.g. footer social links) once the user scrolls to the very bottom. */
    body:has(.sticky-cta:not(.is-dismissed)) {
        padding-bottom: calc(4.75rem + env(safe-area-inset-bottom, 0px));
    }

    .sticky-cta {
        left: 0;
        right: 0;
        bottom: 0;
        padding: .6rem .75rem calc(.6rem + env(safe-area-inset-bottom, 0px));

        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
        transform: translateY(100%);
    }

    .sticky-cta.visible {
        transform: translateY(0);
    }

    .sticky-cta__dismiss {
        top: .35rem;
        left: .35rem;
        opacity: 1;
        transform: scale(1);
        background: rgba(255, 255, 255, .9);
    }

    .sticky-cta__link {
        width: 100%;
        justify-content: center;
        padding: .8rem 1rem;
        font-size: 1.05rem;
        box-shadow: 0 6px 24px rgba(0, 0, 0, .35);
    }

    .sticky-cta__link:hover {
        transform: none;
    }

    .sticky-cta__text {
        flex-direction: row-reverse;
        align-items: baseline;
        gap: .5rem;
    }

    .sticky-cta__status {
        display: none;
    }

    .sticky-cta__number {
        font-size: 1.15rem;
    }
}

/* ══════════════════════════════════════════════════════════
   10. SECTION UTILITIES
══════════════════════════════════════════════════════════ */
.section {
    padding: 3.5rem 0;
}

.section--sm {
    padding: 2.25rem 0;
}

.section--dark {
    background: var(--clr-dark);
    color: #fff;
}

.section--dark-2 {
    background: var(--clr-dark-2);
    color: #fff;
}

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

.section--tinted {
    background: var(--clr-bg);
}

.section-label {
    display: inline-block;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--clr-primary);
    background: var(--clr-primary-lt);
    padding: .25rem .75rem;
    border-radius: 50px;
    margin-bottom: .75rem;
}

.section-title {
    font-size: clamp(1.5rem, 3.5vw, 2.25rem);
    font-weight: 800;
    color: var(--clr-text);
    margin-bottom: .5rem;
}

.section--dark .section-title,
.section--dark-2 .section-title {
    color: #fff;
}

.section-lead {
    font-size: 1.05rem;
    color: var(--clr-text-muted);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.section--dark .section-lead,
.section--dark-2 .section-lead {
    color: rgba(255, 255, 255, .6);
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, .25);
    color: rgba(255, 255, 255, .9);
    padding: .35rem .9rem;
    border-radius: 50px;
    font-size: .85rem;
    font-weight: 600;
}

.badge--accent {
    background: rgba(245, 158, 11, .15);
    border-color: rgba(245, 158, 11, .4);
    color: var(--clr-accent);
}

/* ══════════════════════════════════════════════════════════
   11. SCROLL ANIMATIONS
══════════════════════════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .6s var(--ease), transform .6s var(--ease);
}

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

.reveal-delay-1 {
    transition-delay: .1s;
}

.reveal-delay-2 {
    transition-delay: .2s;
}

.reveal-delay-3 {
    transition-delay: .3s;
}

.reveal-delay-4 {
    transition-delay: .4s;
}

/* ══════════════════════════════════════════════════════════
   12. HERO — Split layout, background image
══════════════════════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: right;
    overflow: hidden;
    padding: 6rem 0;
    background: url('/img/slider-hero.webp') center / cover no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to left,
            rgba(10, 22, 40, 0.95) 0%,
            rgba(10, 22, 40, 0.85) 30%,
            rgba(10, 22, 40, 0.6) 60%,
            rgba(10, 22, 40, 0.2) 100%);
    pointer-events: none;
    z-index: 0;
}

.hero__content {
    position: relative;
    z-index: 1;
    max-width: 60%;
    padding: 0 var(--page-pad);
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #93c5fd;
    padding: .4rem 1rem;
    border-radius: 50px;
    font-size: .85rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero__eyebrow-dot {
    width: 8px;
    height: 8px;
    background: #34d399;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(52, 211, 153, 0.5);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.4);
    }

    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 10px rgba(52, 211, 153, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(52, 211, 153, 0);
    }
}

.hero__heading {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 900;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 1.25rem;
    letter-spacing: -1px;
}

.hero__heading-highlight {
    color: var(--clr-primary-bright);
    font-size: 0.85em;
    display: block;
    margin-top: 0.5rem;
}

.hero__subheading {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 500px;
    font-weight: 400;
}

.hero__subheading strong {
    color: #ffffff;
}

.hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: flex-start;
    margin-bottom: 3rem;
}

.badge--glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.badge--glass svg {
    color: var(--clr-primary-bright);
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: flex-start;
}

.hero__actions .btn {
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    border-radius: 50px;
}

.btn--glow {
    box-shadow: 0 10px 30px rgba(29, 78, 216, 0.3);
}

.btn--glow:hover {
    box-shadow: 0 15px 40px rgba(29, 78, 216, 0.4);
}

.btn--glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn--glass:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.hero__scroll {
    display: none;
}

/* ══════════════════════════════════════════════════════════
   13. STATS STRIP
══════════════════════════════════════════════════════════ */
.stats-strip {
    background: var(--clr-surface);
    border-bottom: 1px solid var(--clr-border);
    padding: 2rem 0;
}

.stats-strip__grid {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--page-pad);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    text-align: center;
}

.stats-strip__item {
    padding: .5rem;
}

.stats-strip__item+.stats-strip__item {
    border-right: 1px solid var(--clr-border);
}

.stats-strip__num {
    font-size: 2.25rem;
    font-weight: 900;
    color: var(--clr-primary);
    line-height: 1;
    margin-bottom: .25rem;
}

.stats-strip__label {
    font-size: .85rem;
    color: var(--clr-text-muted);
    font-weight: 500;
}

/* ══════════════════════════════════════════════════════════
   14. SERVICES GRID
══════════════════════════════════════════════════════════ */
.services-grid {
    padding: 5rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.section-header--minimal {
    margin-bottom: 4rem;
}

.section-label--soft {
    background: rgba(59, 130, 246, 0.1);
    color: var(--clr-primary-bright);
    border: none;
    border-radius: 50px;
    padding: 0.4rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 700;
}

.services-grid__list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.services-grid__item {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.03);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.services-grid__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(29, 78, 216, 0.08);
    border-color: rgba(29, 78, 216, 0.1);
    background: #ffffff;
}

.services-grid__link {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2.5rem 1.5rem;
    text-align: center;
    text-decoration: none;
    color: var(--clr-dark);
}

.services-grid__link:hover {
    text-decoration: none;
    color: var(--clr-primary);
}

.services-grid__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(37, 99, 235, 0.05) 100%);
    border-radius: 50%;
    color: var(--clr-primary);
    transition: transform 0.4s ease;
}

.services-grid__item:hover .services-grid__icon {
    transform: scale(1.1);
    background: var(--clr-primary);
    color: #ffffff;
}

.services-grid__icon svg {
    width: 32px;
    height: 32px;
    transition: color 0.4s ease;
}

.services-grid__title {
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.services-grid__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.03);
    color: var(--clr-text-muted);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(10px);
}

.services-grid__item:hover .services-grid__arrow {
    opacity: 1;
    transform: translateY(0);
    background: rgba(59, 130, 246, 0.1);
    color: var(--clr-primary);
}

/* ══════════════════════════════════════════════════════════
   15. SERVICE AREAS
══════════════════════════════════════════════════════════ */
.service-areas {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--clr-primary-lt) 0%, var(--clr-bg) 100%);
    position: relative;
    overflow: hidden;
}

.service-areas::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(29, 78, 216, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.service-areas .sec-inner {
    position: relative;
    z-index: 1;
}

.service-areas__list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
}

.service-areas__item {
    transition: transform .2s;
}

.service-areas__link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 16px;
    font-size: .95rem;
    color: var(--clr-text);
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: all .3s var(--ease);
}

html.dark .service-areas__link {
    background: rgba(30, 41, 59, 0.5);
    border-color: rgba(255, 255, 255, 0.1);
    color: var(--clr-text);
}

.service-areas__link:hover {
    border-color: rgba(255, 255, 255, 0.9);
    color: var(--clr-primary);
    background: rgba(255, 255, 255, 0.85);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(29, 78, 216, 0.15);
    text-decoration: none;
}

html.dark .service-areas__link:hover {
    background: rgba(30, 41, 59, 0.85);
    border-color: var(--clr-primary);
}

/* ══════════════════════════════════════════════════════════
   16. WHY US (dark bg section)
══════════════════════════════════════════════════════════ */
.why-us {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--clr-dark-3) 0%, #0f172a 100%);
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.section-header--light .section-title {
    color: #ffffff;
}

.section-header--light .section-lead {
    color: rgba(255, 255, 255, 0.7);
}

.section-label--glass {
    background: rgba(255, 255, 255, 0.1);
    color: #60a5fa;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 0.4rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 700;
}

.why-us__content {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.why-us__desc {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.15rem;
    line-height: 2;
    font-weight: 400;
}

.why-us__desc strong {
    color: #f8fafc;
    font-weight: 800;
}

.why-us__desc em {
    color: #93c5fd;
    font-style: normal;
    font-weight: 600;
}

.why-us__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

.why-us__card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.why-us__card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(96, 165, 250, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.why-us__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    background: rgba(96, 165, 250, 0.15);
    border-radius: 50%;
    color: #60a5fa;
    transition: all 0.4s ease;
}

.why-us__card:hover .why-us__icon {
    background: #60a5fa;
    color: #0f172a;
    transform: scale(1.1);
}

.why-us__icon svg {
    width: 32px;
    height: 32px;
    transition: color 0.4s ease;
}

.why-us__card h3 {
    color: #f8fafc;
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    font-weight: 800;
}

.why-us__card p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.7;
}

/* ══════════════════════════════════════════════════════════
   17. HOW IT WORKS
══════════════════════════════════════════════════════════ */
.how-it-works {
    padding: 3.5rem 0;
    background: var(--clr-surface);
}

.how-it-works__steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
}

.how-it-works__steps::before {
    content: '';
    position: absolute;
    top: 2.25rem;
    right: calc(33.333% + 1rem);
    left: calc(33.333% + 1rem);
    height: 2px;
    background: linear-gradient(90deg, var(--clr-border), var(--clr-primary), var(--clr-border));
}

.how-it-works__step {
    text-align: center;
    position: relative;
}

.how-it-works__num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--clr-primary);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 900;
    margin: 0 auto 1rem;
    position: relative;
    z-index: 1;
}

.how-it-works__step h3 {
    font-size: 1.05rem;
    margin-bottom: .5rem;
    color: var(--clr-text);
}

.how-it-works__step p {
    font-size: .9rem;
    color: var(--clr-text-muted);
    margin: 0;
}

.how-it-works__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-primary-bright);
    margin: .625rem auto;
    opacity: .7;
}

/* ══════════════════════════════════════════════════════════
   18. TESTIMONIALS
══════════════════════════════════════════════════════════ */
.testimonials {
    padding: 3.5rem 0;
    background: var(--clr-bg);
}

.testimonial-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 1.5rem;
    position: relative;
    transition: box-shadow .25s var(--ease);
}

.testimonial-card:hover {
    box-shadow: var(--shadow);
}

.testimonial-card__rating {
    display: flex;
    gap: .2rem;
    margin-bottom: .875rem;
}

.star {
    color: #e2e8f0;
    font-size: 1rem;
}

.star--filled {
    color: var(--clr-accent);
}

.testimonial-card__quote {
    border: none;
    padding: 0;
    margin: 0;
}

.testimonial-card__quote p {
    font-size: .95rem;
    line-height: 1.7;
    color: var(--clr-text);
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-card__author {
    font-style: normal;
}

.testimonial-card__author strong {
    display: block;
    color: var(--clr-text);
    font-size: .9rem;
}

.testimonial-card__title {
    color: var(--clr-text-muted);
    font-size: .82rem;
    margin-top: .1rem;
    display: block;
}

/* ══════════════════════════════════════════════════════════
   19. FEATURED ARTICLES
══════════════════════════════════════════════════════════ */
.featured-articles {
    padding: 3.5rem 0;
    background: var(--clr-surface);
}

.article-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.article-card {
    background: var(--clr-bg);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 1.5rem;
    border-top: 2px solid var(--clr-primary);
    transition: box-shadow .25s var(--ease);
}

.article-card:hover {
    box-shadow: var(--shadow);
}

.article-card__title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: .625rem;
    line-height: 1.4;
}

.article-card__title a {
    color: var(--clr-text);
}

.article-card__title a:hover {
    color: var(--clr-primary);
    text-decoration: none;
}

.article-card__excerpt {
    color: var(--clr-text-muted);
    font-size: .875rem;
    margin: 0;
    line-height: 1.65;
}

.article-card__more {
    display: inline-flex;
    align-items: center;
    gap: .25rem;
    font-size: .85rem;
    font-weight: 600;
    color: var(--clr-primary);
    margin-top: .875rem;
}

.article-card__more:hover {
    text-decoration: underline;
}

/* ══════════════════════════════════════════════════════════
   20. CTA SECTION (homepage — light, modern)
══════════════════════════════════════════════════════════ */
.cta-section {
    padding: 6rem 0;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 60%;
    height: 160%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.cta-box {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.02);
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.cta-box__content {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-box__label {
    display: inline-block;
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
    padding: 0.4rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    align-self: flex-start;
}

.cta-box__title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 1.25rem;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.cta-box__lead {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.cta-box__info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.cta-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.cta-item__icon {
    width: 54px;
    height: 54px;
    background: #f1f5f9;
    color: #3b82f6;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.cta-item:hover .cta-item__icon {
    background: #3b82f6;
    color: #ffffff;
    transform: scale(1.05);
}

.cta-item__icon svg {
    width: 24px;
    height: 24px;
    display: block;
}

.cta-item__text {
    display: flex;
    flex-direction: column;
}

.cta-item__title {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.cta-item__value {
    font-size: 1.1rem;
    color: #0f172a;
    font-weight: 800;
    text-decoration: none;
}

.cta-item__value:hover {
    color: #2563eb;
}

.cta-box__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.cta-box__actions .btn {
    border-radius: 12px;
    padding: 1rem 2rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-box__actions .btn svg {
    width: 20px;
    height: 20px;
    display: block;
}

.cta-box__map {
    position: relative;
    background: #f8fafc;
    min-height: 100%;
}

.map-wrapper {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.map-wrapper iframe {
    width: 100% !important;
    height: 100% !important;
    border: none;
    display: block;
}

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

    .cta-box__content {
        padding: 2.5rem;
    }

    .cta-box__map {
        min-height: 350px;
    }
}

.contact-info__address {
    font-style: normal;
}

/* ══════════════════════════════════════════════════════════
   21. BLOG PAGES
══════════════════════════════════════════════════════════ */
.blog--list,
.blog--category,
.blog--post {
    max-width: 780px;
    margin: 0 auto;
}

.blog__categories ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.blog__categories a {
    padding: .35rem .75rem;
    background: var(--clr-surface);
    border: 1.5px solid var(--clr-border);
    border-radius: 50px;
    font-size: .9rem;
    font-weight: 500;
}

.blog__categories a:hover {
    border-color: var(--clr-primary);
    color: var(--clr-primary);
    text-decoration: none;
}

.blog-card {
    background: var(--clr-surface);
    padding: 1.5rem;
    border-radius: var(--radius);
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--clr-border);
    border-top: 3px solid var(--clr-primary);
}

.blog-card__date {
    display: block;
    color: var(--clr-text-muted);
    font-size: .85rem;
    margin: .25rem 0;
}

.blog-card__excerpt {
    color: var(--clr-text-muted);
    margin: .5rem 0;
}

.blog-card__more {
    display: inline-block;
    margin-top: .75rem;
    font-weight: 600;
}

.blog__pagination {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
}

.blog__breadcrumb ol {
    list-style: none;
    padding: 0;
    display: flex;
    gap: .25rem;
    font-size: .9rem;
    flex-wrap: wrap;
}

.blog__breadcrumb li:not(:last-child)::after {
    content: '/';
    margin-right: .25rem;
    color: var(--clr-text-muted);
}

.post__header {
    margin-bottom: 1.5rem;
}

.post__date {
    display: block;
    color: var(--clr-text-muted);
    font-size: .85rem;
    margin: .5rem 0;
}

.post__body {
    line-height: 1.9;
}

.post__excerpt {
    font-size: 1.1rem;
    color: var(--clr-text-muted);
    margin-bottom: 1.5rem;
}

.post__related {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--clr-border);
}

.post__related ul {
    list-style: none;
    padding: 0;
}

.post__related li {
    margin-bottom: .5rem;
}

/* ══════════════════════════════════════════════════════════
   22. CONTACT PAGE
══════════════════════════════════════════════════════════ */
.contact__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.contact__form-wrap {
    background: var(--clr-surface);
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.contact__intro {
    color: var(--clr-text-muted);
}

/* ══════════════════════════════════════════════════════════
   23. PAGE / SERVICES / ERROR
══════════════════════════════════════════════════════════ */
.page-content {
    max-width: var(--max-w);
    margin: 0 auto;
}

.page-content--contained {
    max-width: 780px;
    margin: 0 auto;
}

.page-content__body {
    line-height: 1.9;
}

.services-page__header {
    margin-bottom: 1.5rem;
}

.services-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
}

.services-list__link {
    display: block;
    background: var(--clr-surface);
    padding: 1.5rem 1rem;
    text-align: center;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    font-weight: 700;
    color: var(--clr-primary);
    border: 1px solid var(--clr-border);
    transition: all .2s;
}

.services-list__link:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    text-decoration: none;
    border-color: var(--clr-primary);
}

.error-page {
    text-align: center;
    padding: 5rem 1rem;
}

.error-page__code {
    font-size: 6rem;
    font-weight: 900;
    color: var(--clr-primary);
    margin-bottom: .5rem;
    line-height: 1;
}

.error-page__message {
    font-size: 1.25rem;
    color: var(--clr-text-muted);
    margin-bottom: 2rem;
}

/* ══════════════════════════════════════════════════════════
   24. FORMS
══════════════════════════════════════════════════════════ */
.form-group {
    margin-bottom: 1.25rem;
}

label {
    display: block;
    font-size: .9rem;
    font-weight: 600;
    margin-bottom: .375rem;
    color: var(--clr-text);
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
    width: 100%;
    padding: .65rem 1rem;
    border: 1.5px solid var(--clr-border);
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: .95rem;
    color: var(--clr-text);
    background: var(--clr-surface);
    transition: border-color .2s;
    direction: rtl;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--clr-primary);
    box-shadow: 0 0 0 3px var(--clr-primary-lt);
}

textarea {
    resize: vertical;
    min-height: 120px;
}

.field-validation-error {
    color: #dc2626;
    font-size: .85rem;
    margin-top: .25rem;
}

/* ══════════════════════════════════════════════════════════
   25. RESPONSIVE
══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .stats-strip__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-strip__item:nth-child(2n+1) {
        border-right: none;
    }

    .stats-strip__item:nth-child(3) {
        border-right: 1px solid var(--clr-border);
    }

    .site-footer__inner {
        grid-template-columns: 1fr 1fr;
        gap: 2.25rem 2rem;
    }

    .site-footer__brand {
        grid-column: 1 / -1;
    }

    .hero__content {
        max-width: 60%;
    }
}

@media (max-width: 860px) {

    .why-us__grid,
    .how-it-works__steps {
        grid-template-columns: 1fr;
    }

    .how-it-works__steps::before {
        display: none;
    }

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

    /* Mobile hero: centered, use mobile slider */
    .hero {
        justify-content: center;
        text-align: center;
        padding: 4rem var(--page-pad);
        background-image:
            url('/img/slider-mobile.webp'),
            linear-gradient(135deg, var(--clr-dark) 0%, var(--clr-dark-3) 100%);
        background-position: center top;
    }

    .hero__content {
        max-width: 100%;
        padding: 0;
    }

    .hero__subheading {
        margin-left: auto;
        margin-right: auto;
    }

    .hero__badges,
    .hero__actions {
        justify-content: center;
    }

    .hero::before {
        /* on mobile: uniform dark overlay */
        background: rgba(10, 22, 40, .82);
    }
}

@media (min-width: 769px) {
    .header-phone {
        display: inline-flex;
    }
}

@media (max-width: 768px) {
    .site-footer__inner {
        grid-template-columns: 1fr;
        gap: 2.25rem;
    }

    .site-footer__brand {
        grid-column: auto;
    }

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

    .section {
        padding: 2.5rem 0;
    }

    .footer-cta__inner {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        padding: 2rem var(--page-pad);
    }

    .footer-cta__text {
        align-items: center;
    }

    .footer-cta__btn {
        justify-content: center;
    }

    /* ── Mobile header improvements ── */
    .site-header__inner {
        padding: .65rem var(--page-pad);
        gap: .75rem;
    }

    .site-header__logo {
        height: 40px;
    }

    .site-header__brand {
        font-size: 1.1rem;
    }

    /* Hamburger toggle */
    .site-nav__toggle {
        display: flex;
        margin-right: auto;
        margin-left: 0;
    }

    .site-nav__toggle-bar {
        background: var(--clr-primary);
    }

    .site-nav__toggle.active .site-nav__toggle-bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .site-nav__toggle.active .site-nav__toggle-bar:nth-child(2) {
        opacity: 0;
    }

    .site-nav__toggle.active .site-nav__toggle-bar:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    /* ── Off-canvas panel ──
       The panel is moved to <body> by JS so it escapes the sticky header's
       stacking context. We use transform instead of right so it is not
       affected by any parent overflow / stacking context. */
    .site-nav__panel {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 320px;
        max-width: 85vw;
        background: var(--clr-surface);
        z-index: 9999;
        /* Start off-screen to the right (RTL: off-screen to the left) */
        transform: translateX(100%);
        transition: transform 0.38s cubic-bezier(0.16, 1, 0.3, 1),
            box-shadow 0.38s cubic-bezier(0.16, 1, 0.3, 1);
        padding: 0;
        box-shadow: none;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
        /* Safe area for notched phones */
        padding-bottom: env(safe-area-inset-bottom, 0px);
    }

    .site-nav__panel.is-open,
    .site-nav.is-open .site-nav__panel {
        transform: translateX(0);
        box-shadow: -8px 0 40px rgba(0, 0, 0, .22);
    }

    /* Mobile panel header */
    .site-nav__header-mobile {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1.25rem 1.5rem;
        border-bottom: 1px solid var(--clr-border);
        background: linear-gradient(135deg, var(--clr-primary-dk) 0%, var(--clr-primary) 100%);
        flex-shrink: 0;
    }

    .site-nav__title-mobile {
        font-weight: 800;
        font-size: 1.1rem;
        color: #fff;
    }

    .site-nav__close {
        background: rgba(255, 255, 255, .15);
        border: 1px solid rgba(255, 255, 255, .25);
        border-radius: 8px;
        cursor: pointer;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: .4rem;
        transition: background .2s;
    }

    .site-nav__close:hover {
        background: rgba(255, 255, 255, .28);
        color: #fff;
    }

    /* Nav list inside panel */
    .site-nav .site-nav__panel>.nav-list {
        flex-direction: column;
        padding: 1rem;
        gap: .4rem;
        align-items: stretch;
        display: flex;
    }

    /* Mobile Accordion Logic (scoped to .site-nav — the header's off-canvas menu —
       so it never leaks onto the footer's identical .nav-list__item/__link classes) */
    .site-nav .nav-list__item {
        flex-direction: column;
        align-items: stretch;
    }

    .site-nav .nav-list--sub {
        position: static;
        box-shadow: none;
        border: none;
        background: rgba(0, 0, 0, 0.02);
        padding: 0 1rem 0 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, margin-top 0.4s ease;
        border-radius: var(--radius-sm);
        margin-top: 0;
        display: block;
    }

    .site-nav .nav-list__label,
    .site-nav .nav-list__link {
        justify-content: space-between;
        padding: .85rem 1rem;
        border-radius: var(--radius-sm);
        background: var(--clr-bg);
    }

    .site-nav .nav-list__item.is-expanded>.nav-list--sub {
        max-height: 800px;
        margin-top: .4rem;
    }

    .nav-list__item.is-expanded>.nav-list__label span {
        transform: rotate(180deg);
        transition: transform 0.3s;
    }

    .hero__actions .btn {
        min-width: 180px;
    }
}

@media (max-width: 480px) {
    :root {
        --page-pad: 1rem;
    }

    .stats-strip__num {
        font-size: 1.75rem;
    }

    .hero {
        min-height: 50vh;
    }

    .topbar {
        display: none;
    }
}

/* ══════════════════════════════════════════════════════════
   BLOG & POST UI (Added for redesign)
══════════════════════════════════════════════════════════ */
.blog--list {
    max-width: var(--max-w);
    margin: 3rem auto;
    padding: 0 var(--page-pad);
}

.blog__header h1 {
    text-align: center;
    color: var(--clr-primary-dk);
    margin-bottom: 3rem;
    font-weight: 900;
}

.blog__articles {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.blog-card__image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #f1f5f9;
}

.blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s var(--ease);
}

.blog-card:hover .blog-card__image img {
    transform: scale(1.05);
}

.blog-card__content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card__title {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.blog-card__title a {
    color: var(--clr-dark);
    transition: color 0.2s;
}

.blog-card__title a:hover {
    color: var(--clr-primary);
    text-decoration: none;
}

.blog-card__date {
    display: inline-block;
    font-size: 0.85rem;
    color: var(--clr-text-muted);
    background: #f1f5f9;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    margin-bottom: 1rem;
    font-weight: 600;
}

.blog-card__excerpt {
    color: var(--clr-text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.blog-card__more {
    align-self: flex-start;
    color: var(--clr-primary);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--clr-primary-lt);
    border-radius: var(--radius-sm);
    transition: background 0.2s;
}

.blog-card__more:hover {
    background: var(--clr-primary);
    color: #fff;
    text-decoration: none;
}

.blog--post {
    max-width: 800px;
    margin: 3rem auto;
    padding: 0 var(--page-pad);
}

.post__image {
    margin-bottom: 2rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.post__image img {
    width: 100%;
    height: auto;
    display: block;
}

.post__header {
    text-align: center;
    margin-bottom: 3rem;
}

.post__title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--clr-dark);
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.post__date {
    font-size: 0.9rem;
    color: var(--clr-text-muted);
    background: #e2e8f0;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    display: inline-block;
    font-weight: bold;
}

.post__excerpt {
    font-size: 1.2rem;
    line-height: 2;
    color: var(--clr-text-muted);
    border-right: 4px solid var(--clr-primary);
    padding-right: 1.5rem;
    margin-bottom: 3rem;
    background: var(--clr-primary-lt);
    padding: 1.5rem;
    border-radius: var(--radius);
}

.post__body {
    background: #ffffff;
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
    font-size: 1.15rem;
    line-height: 2.2;
    color: #334155;
    margin-bottom: 4rem;
}

.post__body h1 {
    font-size: 2rem;
    color: var(--clr-dark);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 900;
}

.post__body h2 {
    font-size: 1.75rem;
    color: var(--clr-primary-dk);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.post__body h3 {
    font-size: 1.5rem;
    color: var(--clr-dark);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.post__body h4,
.post__body h5,
.post__body h6 {
    font-size: 1.25rem;
    color: var(--clr-dark);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.post__body p {
    margin-bottom: 1.5rem;
    text-align: justify;
}

.post__body ul,
.post__body ol {
    margin-bottom: 1.5rem;
    padding-right: 2rem;
}

.post__body li {
    margin-bottom: 0.5rem;
}

.post__body blockquote {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--clr-text-muted);
    border-right: 4px solid var(--clr-accent);
    padding: 1rem 2rem 1rem 1rem;
    background: #f8fafc;
    border-radius: var(--radius-sm);
    margin: 2rem 0;
}

.post__body img {
    border-radius: var(--radius);
    margin: 2rem 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* ══════════════════════════════════════════════════════════
   COMMENTS UI (Redesign)
══════════════════════════════════════════════════════════ */
.comment-list {
    margin-top: 4rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 3rem;
}

.comment-list__heading {
    margin-bottom: 2.5rem;
    font-weight: 900;
    font-size: 1.8rem;
    color: var(--clr-dark);
}

.comment {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.04);
    padding: 1.5rem;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.comment:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.comment__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.comment__author {
    font-weight: 800;
    color: var(--clr-primary);
    font-size: 1.05rem;
}

.comment__date {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
}

.comment__body {
    line-height: 1.8;
    color: #475569;
    font-size: 0.95rem;
}

.comment__replies {
    margin-top: 1.5rem;
    padding-right: 2.5rem;
    border-right: 3px solid rgba(29, 78, 216, 0.15);
}

.comment__reply .comment {
    background: #f8fafc;
    border: none;
    box-shadow: none;
    border-radius: 16px;
}

.comment__reply .comment:hover {
    transform: none;
    box-shadow: none;
}

.comment-form {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 24px;
    margin-top: 3rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

.comment-form h2.comment-form__heading {
    margin-bottom: 2rem;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--clr-dark);
}

.comment-form__field {
    margin-bottom: 1.5rem;
}

.comment-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: #334155;
    font-size: 0.95rem;
}

.comment-form__hint {
    font-size: 0.8rem;
    color: #94a3b8;
    font-weight: normal;
}

.comment-form input,
.comment-form textarea {
    width: 100%;
    padding: 0.85rem 1.25rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    background: rgba(248, 250, 252, 0.8);
    color: #0f172a;
    transition: all 0.3s ease;
}

.comment-form input:focus,
.comment-form textarea:focus {
    outline: none;
    background: #fff;
    border-color: var(--clr-primary-bright);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.comment-form textarea {
    resize: vertical;
    min-height: 120px;
}

.comment-form__submit {
    background: var(--clr-primary);
    color: #fff;
    border: none;
    padding: 0.85rem 2.5rem;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(29, 78, 216, 0.25);
    width: 100%;
}

@media (min-width: 600px) {
    .comment-form__submit {
        width: auto;
    }
}

.comment-form__submit:hover {
    transform: translateY(-2px);
    background: var(--clr-primary-dk);
    box-shadow: 0 6px 20px rgba(29, 78, 216, 0.35);
}

.comment-form__hp {
    display: none;
}

.comment-form__status {
    padding: 1rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.comment-form__status--success {
    background: rgba(22, 163, 74, 0.1);
    color: #15803d;
    border: 1px solid rgba(22, 163, 74, 0.2);
}

.comment-form__status--error {
    background: rgba(220, 38, 38, 0.1);
    color: #b91c1c;
    border: 1px solid rgba(220, 38, 38, 0.2);
}

/* ══════════════════════════════════════════════════════════
   MODERN CONTACT US PAGE (Glassmorphism)
══════════════════════════════════════════════════════════ */
.lc-contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-top: 2rem;
    align-items: start;
}

@media (max-width: 900px) {
    .lc-contact-container {
        grid-template-columns: 1fr;
    }
}

.lc-contact-info-panel {
    background: linear-gradient(135deg, rgba(29, 78, 216, 0.95), rgba(30, 58, 138, 0.95));
    color: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(29, 78, 216, 0.2);
    position: relative;
    overflow: hidden;
}

.lc-contact-info-panel::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.lc-contact-info-title {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.lc-contact-info-desc {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.lc-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 1.75rem;
}

.lc-contact-icon {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.lc-contact-icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.lc-contact-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: #fff;
    font-weight: 700;
}

.lc-contact-text p,
.lc-contact-text a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    text-decoration: none;
    display: block;
    line-height: 1.6;
}

.lc-contact-text a:hover {
    color: #f59e0b;
}

.lc-contact-form-panel {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.lc-contact-form-title {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #0f172a;
}

.lc-contact-form-subtitle {
    color: #64748b;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.lc-form-group {
    margin-bottom: 1.5rem;
}

.lc-form-label {
    display: block;
    font-weight: 600;
    color: #334155;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.lc-form-control {
    width: 100%;
    padding: 0.85rem 1.25rem;
    background: rgba(248, 250, 252, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    color: #0f172a;
    transition: all 0.3s ease;
}

.lc-form-control:focus {
    outline: none;
    background: #fff;
    border-color: #3b82f6;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

textarea.lc-form-control {
    resize: vertical;
    min-height: 120px;
}

.lc-form-submit {
    background: #1d4ed8;
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(29, 78, 216, 0.3);
}

.lc-form-submit:hover {
    background: #1e3a8a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(29, 78, 216, 0.4);
}