/* ============ DESIGN TOKENS (repaired) ============ */
:root {
    --font-headings: 'Urbanist', 'Segoe UI', system-ui, sans-serif;
    --font-body: 'Inter', 'Segoe UI', system-ui, sans-serif;
    --clr-primary: #0b1c33;
    --clr-primary-light: #162d4a;
    --clr-primary-dark: #0c2d5a;
    --clr-accent: #1a8cff;
    --clr-accent-rgb: 26, 140, 255;
    --clr-accent-hover: #0077e6;
    --clr-success: #10b981;
    --clr-warning: #f59e0b;
    --clr-bg: #060a10;
    --clr-card-bg: #121d2c;
    --clr-text-main: #f8fafc;
    --clr-text-muted: #8fa0b5;
    /*--clr-text-muted: #687386;*/
    --clr-border: rgba(143, 160, 181, .15);
    --clr-border-focus: rgba(26, 140, 255, .6);
    --grad-hero: linear-gradient(135deg, rgba(11, 28, 51, .95) 0%, rgba(6, 10, 16, .9) 100%);
    --grad-card: linear-gradient(145deg, rgba(18, 29, 44, .9) 0%, rgba(11, 28, 51, .95) 100%);
    --grad-accent: linear-gradient(135deg, #1a8cff 0%, #00d2ff 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, .15);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, .3);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, .5);
    --shadow-glow: 0 0 20px rgba(26, 140, 255, .25);
    --glass-bg: rgba(18, 29, 44, .7);
    --glass-blur: blur(12px);
    --max-width: 1280px;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition-smooth: all .35s cubic-bezier(.25, .8, .25, 1);
}

body.light-theme {
    --clr-bg: #f4f6fa;
    --clr-card-bg: #ffffff;
    --clr-text-main: #0b1a30;
    --clr-text-muted: #5e7185;
    --clr-border: rgba(11, 28, 51, .08);
    --clr-border-focus: rgba(26, 140, 255, .4);
    --clr-primary: #ffffff;
    --clr-primary-light: #fdfdfd;
    --clr-primary-dark: #091321;
    --grad-hero: linear-gradient(135deg, rgba(255, 255, 255, .97) 0%, rgba(244, 246, 250, .95) 100%);
    --grad-card: linear-gradient(145deg, #ffffff 0%, #f9fbfd 100%);
    --glass-bg: rgba(255, 255, 255, .85);
    --glass-blur: blur(16px);
    --shadow-sm: 0 2px 8px rgba(11, 28, 51, .03);
    --shadow-md: 0 12px 30px rgba(11, 28, 51, .04);
    --shadow-lg: 0 22px 48px rgba(11, 28, 51, .06);
    --shadow-glow: 0 4px 20px rgba(26, 140, 255, .12);
}

/* ============ RESET / GLOBAL ============ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 95px;
    font-size: 16px
}

body {
    background-color: var(--clr-bg);
    color: var(--clr-text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-headings);
    font-weight: 700;
    line-height: 1.25;
    color: #ffffff
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth)
}

button,
input,
select,
textarea {
    font-family: inherit;
    color: inherit;
    background: none;
    border: none
}

button {
    cursor: pointer
}

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

.container {
    width: 90%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 15px
}

::selection {
    background: rgba(26, 140, 255, .35)
}

i.fa-solid, .fas {
    font-size:18px
}

/* ============ TYPOGRAPHY / UTILITIES ============ */
.text-gradient {
    background: var(--grad-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.section-padding {
    padding: 100px 0
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    letter-spacing: -.5px
}

.section-header p {
    color: var(--clr-text-muted);
    font-size: 1.125rem
}
.section-header--center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
.section-header--left {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background-color: rgba(26, 140, 255, .1);
    border: 1px solid rgba(26, 140, 255, .25);
    color: var(--clr-accent);
    border-radius: 50px;
    font-family: var(--font-headings);
    font-weight: 600;
    font-size: .875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-family: var(--font-headings);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 1
}

.btn-primary {
    background: var(--grad-accent);
    color: #fff;
    box-shadow: var(--shadow-sm)
}

.btn-primary:hover {
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px)
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0077e6 0%, #00d2ff 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity .3s ease
}

.btn-primary:hover::before {
    opacity: 1
}

.btn-secondary {
    background-color: transparent;
    border: 1px solid var(--clr-border);
    color: var(--clr-text-main);
    backdrop-filter: var(--glass-blur)
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, .05);
    border-color: var(--clr-text-muted);
    transform: translateY(-2px)
}

.btn-accent-outline {
    border: 1px solid var(--clr-accent);
    color: var(--clr-accent)
}

.btn-accent-outline:hover {
    background: var(--grad-accent);
    color: #fff;
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px)
}

/* ============ HEADER ============ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    transition: var(--transition-smooth);
    border-bottom: 1px solid transparent
}

.header.scrolled {
    background-color: rgba(6, 10, 16, .85);
    backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--clr-border);
    padding: 10px 0
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px
}

.logo-img {
    height: 75px;
    width: auto;
    border-radius: var(--radius-sm)
}

.logo-fallback {
    display: none;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: var(--clr-primary);
    border: 1px solid var(--clr-border);
    color: #fff;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0
}

.logo-text {
    font-family: var(--font-headings);
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: -.5px;
    line-height: 1.1
}

.logo-sub {
    display: block;
    font-size: .75rem;
    font-weight: 500;
    color: var(--clr-text-muted);
    letter-spacing: .5px
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none
}

.nav-link {
    font-family: var(--font-headings);
    font-weight: 500;
    font-size: 1rem;
    color: var(--clr-text-muted);
    position: relative;
    padding: 8px 0
}

.nav-link:hover,
.nav-link.active {
    color: #fff
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--grad-accent);
    transition: var(--transition-smooth)
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 15px
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-headings);
    font-weight: 600;
    color: var(--clr-text-main)
}

.nav-phone i {
    color: var(--clr-accent)
}

.theme-toggle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--clr-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-accent);
    font-size: 1rem;
    transition: var(--transition-smooth);
    flex-shrink: 0
}

.theme-toggle:hover {
    border-color: var(--clr-accent);
    box-shadow: var(--shadow-glow);
    transform: rotate(20deg)
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    width: 30px;
    height: 20px;
    justify-content: space-between;
    cursor: pointer;
    z-index: 1001
}

.nav-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--clr-text-main);
    transition: var(--transition-smooth);
    border-radius: 2px
}

.nav-toggle.open span:nth-child(1) {
    transform: translateY(9px) rotate(45deg)
}

.nav-toggle.open span:nth-child(2) {
    opacity: 0
}

.nav-toggle.open span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg)
}

/* ============ HERO ============ */
.wrap {
    width: min(1200px, calc(100% - 40px));
    margin: auto;
}

.hero {
    position: relative;
    isolation: isolate;
    display: flex;
    align-items: center;
    min-height: 680px;
    padding: 150px 0 90px;
    overflow: hidden;
    color: #fff;
    text-align: center;
    background:
        radial-gradient(circle at 84% 16%, rgba(39, 151, 255, 0.3), transparent 25%),
        radial-gradient(circle at 14% 88%, rgba(13, 92, 183, 0.28), transparent 28%),
        linear-gradient(125deg, #031326 0%, #06284c 56%, #0b5798 130%);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    opacity: 0.18;
    background:
        linear-gradient(90deg, rgba(1, 12, 28, 0.75), rgba(1, 12, 28, 0.15)),
        url("../images/hero.jpg") center / cover;
}

.hero::after {
    content: "";
    position: absolute;
    z-index: -1;
    right: -220px;
    bottom: -390px;
    width: 660px;
    height: 660px;
    border: 1px solid rgba(135, 205, 255, 0.2);
    border-radius: 50%;
    box-shadow:
        0 0 0 70px rgba(135, 205, 255, 0.045),
        0 0 0 140px rgba(135, 205, 255, 0.025);
}

.hero-content {
    width: min(880px, 100%);
    margin: 0 auto;
    padding: 20px
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 14px;
    border: 1px solid rgba(255, 255, 255, 0.23);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: #e3f2ff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4de0a8;
    box-shadow: 0 0 0 5px rgba(77, 224, 168, 0.15);
}

.hero h1 {
    max-width: 850px;
    margin: 22px auto;
    font-size: clamp(46px, 6vw, 76px);
    line-height: 1.02;
    letter-spacing: -0.07em;
    font-family: Manrope, sans-serif;
}

.hero h1 span {
    color: #48abff;
}

.hero p {
    max-width: 650px;
    margin: 0 auto;
    color: #d1e2f1;
    font-size: 18px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 13px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 14px 21px;
    border-radius: 12px;
    font-family: Manrope, sans-serif;
    font-size: 14px;
    font-weight: 800;
    transition: 0.25s ease;
}

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

.btn-primary {
    background: #1688f5;
    color: #fff;
    box-shadow: 0 13px 24px rgba(22, 136, 245, 0.28);
}

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

.hero-points {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 31px;
    color: #b9d2e8;
    font-size: 13px;
    font-weight: 600;
}

.hero-points i {
    margin-right: 6px;
    color: #4eafff;
}

@media (max-width: 600px) {
    .hero {
        min-height: 580px;
        padding: 120px 0 65px;
    }

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

    .hero-actions .btn {
        width: 100%;
    }

    .hero-points {
        display: grid;
        justify-content: start;
        gap: 9px;
        text-align: left;
    }
}


/* About */
.about-us {
    padding: 105px 0;
    background: linear-gradient(140deg, #ffffff, #eef7ff);
    color: #0b2441;
}

.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: center;
}

/* =========================================
   ABOUT VISUAL
========================================= */

.about-visual {
    position: relative;
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    overflow: visible;
}


/* =========================================
   IMAGE WRAPPER EFFECT
========================================= */

.about-visual::before {
    content: "";
    position: absolute;
    inset: 0;

    border-radius: 28px;

    background: linear-gradient(135deg,
            rgba(26, 140, 255, 0.12),
            transparent 50%);

    opacity: 0;
    pointer-events: none;

    transition: opacity 0.4s ease;

    z-index: 1;
}


/* =========================================
   MAIN IMAGE
========================================= */

.about-image {
    display: block;

    width: 100%;
    height: auto;
    max-height: 520px;

    object-fit: contain;
    object-position: center;

    border-radius: 28px;

    background: #f1f5f9;

    box-shadow:
        0 25px 60px rgba(15, 23, 42, 0.16);

    transition:
        transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.5s ease,
        filter 0.5s ease;
}


/* =========================================
   IMAGE HOVER
========================================= */

.about-visual:hover .about-image {
    transform: scale(1.025) translateY(-5px);

    box-shadow:
        0 35px 75px rgba(15, 23, 42, 0.22);

    filter: saturate(1.05) contrast(1.02);
}

.about-visual:hover::before {
    opacity: 1;
}


/* =========================================
   BADGE
========================================= */

.about-badge {
    position: absolute;

    left: 25px;
    bottom: 25px;

    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 12px 18px;

    background: rgba(20, 45, 75, 0.92);

    border: 1px solid rgba(255, 255, 255, 0.25);

    border-radius: 10px;

    color: #ffffff;

    font-family: var(--font-headings);
    font-size: 14px;
    font-weight: 600;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.18);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    z-index: 3;

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}


/* Badge moves slightly with image */

.about-visual:hover .about-badge {
    transform: translateY(-4px);

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.22);
}


.about-badge i {
    color: #ffd34d;
    font-size: 15px;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .about-image {
        max-height: none;
        border-radius: 20px;
    }

    .about-badge {
        left: 15px;
        bottom: 15px;

        padding: 10px 14px;

        font-size: 12px;
    }

    /* Keep mobile interaction very subtle */
    .about-visual:hover .about-image {
        transform: scale(1.01);
    }

}

.about-badge {
    position: absolute;
    z-index: 2;
    bottom: 24px;
    left: 24px;
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    font-size: 13px;
    backdrop-filter: blur(10px);
}

.about-badge i {
    margin-right: 6px;
    color: #ffd267;
}

.about-content h2 {
    margin: 15px 0;
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 2.5rem;
    line-height: 1.25;
    letter-spacing: -.5px;
    color: #000;
}

.about-content h2 span {
    color: #1688f5;
}

.about-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 30px;
}

.metric {
    padding: 16px;
    border: 1px solid rgba(11, 36, 65, 0.1);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.75);
}

.metric strong {
    display: block;
    color: #1688f5;
    font-family: Manrope, sans-serif;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.06em;
}

.metric span {
    display: block;
    margin-top: 2px;
    color: #66798e;
    font-size: 12px;
}

@media (max-width: 800px) {
    .about-us {
        padding: 75px 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .about-visual {
        min-height: 330px;
    }
}

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

    .about-visual {
        min-height: 280px;
    }
}


.dark-heading {
    color: #060a10
}

/* ============ TRUST / STATS ============ */
.trust-bar {
    background-color: var(--clr-primary-dark);
    padding: 30px 0;
    border-bottom: 1px solid var(--clr-border);
    position: relative;
    z-index: 20
}

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

.trust-item {
    display: flex;
    align-items: center;
    gap: 15px
}

.trust-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(26, 140, 255, .1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-accent);
    font-size: 1.25rem;
    flex-shrink: 0
}

.trust-info h3 {
    font-size: 1.1rem;
    margin-bottom: 2px
}

.trust-info p {
    font-size: .85rem;
    color: var(--clr-text-muted)
}

@media(min-width:1025px) {
    .trust-grid {
        grid-template-columns: repeat(5, 1fr)
    }
}

.stats-band {
    padding: 70px 0;
    background: #ffffff;
    border-bottom: 1px solid var(--clr-border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center
}

.stat-number {
    font-family: var(--font-headings);
    font-weight: 800;
    font-size: 2.9rem;
    line-height: 1.1;
    background: var(--grad-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.stat-label {
    color: var(--clr-text-muted);
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 6px
}

/* ============ MARQUEES ============ */
.insurance-section {
    padding: 40px 0;
    background-color: var(--clr-bg);
    overflow: hidden;
    border-bottom: 1px solid var(--clr-border)
}

.insurance-title {
    text-align: center;
    font-size: .9rem;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px
}

.marquee-container {
    display: flex;
    overflow: hidden;
    user-select: none;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent)
}

.marquee-content {
    display: flex;
    gap: 60px;
    animation: scroll-marquee 25s linear infinite;
    flex-shrink: 0;
    align-items: center
}

.marquee-content.reverse {
    animation-direction: reverse
}

@keyframes scroll-marquee {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

.marquee-logo {
    font-family: var(--font-headings);
    font-weight: 800;
    font-size: 1.35rem;
    letter-spacing: .5px;
    color: var(--clr-text-main);
    opacity: .35;
    white-space: nowrap;
    transition: var(--transition-smooth)
}

.marquee-logo:hover {
    opacity: .95;
    color: var(--clr-accent)
}

/* ============ BEFORE / AFTER SLIDER ============ */
.slider-section {
    background-color: var(--clr-primary-dark)
}

.slider-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    height: 500px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--clr-border)
}

.slider-image {
    position: absolute;
    inset: 0;
    background-color: #16283f;
    background-size: cover;
    background-position: center;
    pointer-events: none
}

.slider-after {
    z-index: 1
}

.slider-before {
    z-index: 2;
    width: 50%;
    border-right: 2px solid #fff;
    background-color: #2a2622
}

.slider-before-label,
.slider-after-label {
    position: absolute;
    bottom: 20px;
    background-color: rgba(6, 10, 16, .75);
    padding: 6px 14px;
    font-size: .8rem;
    text-transform: uppercase;
    font-family: var(--font-headings);
    font-weight: 600;
    border-radius: var(--radius-sm);
    letter-spacing: 1px;
    z-index: 3
}

.slider-before-label {
    left: 20px;
    border-left: 2px solid var(--clr-accent)
}

.slider-after-label {
    right: 20px;
    border-right: 2px solid var(--clr-success)
}

.slider-input {
    position: absolute;
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 100%;
    background: transparent;
    outline: none;
    margin: 0;
    z-index: 4;
    cursor: ew-resize
}

.slider-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background-color: #fff;
    z-index: 3;
    transform: translateX(-50%);
    pointer-events: none
}

.slider-handle-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, .5)
}

.slider-handle-button::before,
.slider-handle-button::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    transform: translateY(-50%)
}

.slider-handle-button::before {
    left: 10px;
    border-right: 6px solid var(--clr-primary)
}

.slider-handle-button::after {
    right: 10px;
    border-left: 6px solid var(--clr-primary)
}

.spec-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    max-width: 900px;
    margin: 28px auto 0
}

.spec-chip {
    background: var(--glass-bg);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    text-align: center;
    backdrop-filter: var(--glass-blur)
}

.spec-chip span {
    display: block;
    font-size: .7rem;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 4px
}

.spec-chip strong {
    font-family: var(--font-headings);
    color: #fff;
    font-size: .95rem
}

/* ============ SERVICES ============ */
.services-dark-wrap {
    background: linear-gradient(135deg, #0c2d5a 0%, #03060a 100%);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, .05);
    border-bottom: 1px solid rgba(255, 255, 255, .05)
}

.services-dark-wrap::after {
    content: '';
    position: absolute;
    top: -20%;
    left: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(26, 140, 255, .08) 0%, transparent 60%);
    pointer-events: none
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1
}

.service-card {
    background: rgba(18, 29, 44, .5);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .2)
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(26, 140, 255, .4);
    box-shadow: 0 10px 30px rgba(26, 140, 255, .15)
}

.service-icon-box {
    width: 64px;
    height: 64px;
    background-color: rgba(26, 140, 255, .08);
    border: 1px solid rgba(26, 140, 255, .2);
    color: var(--clr-accent);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 25px;
    transition: var(--transition-smooth)
}

.service-card:hover .service-icon-box {
    background-color: var(--clr-accent);
    color: #fff;
    transform: scale(1.05)
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #fff
}

.service-card p {
    color: #8fa0b5;
    font-size: .95rem;
    margin-bottom: 20px
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-headings);
    font-weight: 600;
    font-size: .9rem;
    color: var(--clr-accent)
}

.service-card:hover .service-link {
    color: #fff
}

.timeline-step {
    font-size: 3rem;
    font-family: var(--font-headings);
    font-weight: 800;
    line-height: 1;
    color: rgba(255, 255, 255, .6);
    position: absolute;
    top: 20px;
    right: 20px
}


/* =========================================
   OTHER SERVICES - LIGHT VERSION
========================================= */

.other-services-section {
    position: relative;
    background: #f7f8fa;
    overflow: hidden;
}

.other-services-section .container {
    position: relative;
    z-index: 1;
}


/* =========================================
   SECTION INTRO
========================================= */

.other-services-intro {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: end;
    gap: 80px;
    margin-bottom: 60px;
}

.other-services-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    letter-spacing: -.5px;
}



.other-services-intro>p {
    max-width: 440px;
    margin: 0 0 5px;

    font-size: 17px;
    line-height: 1.7;

    color: #68717c;
}


/* =========================================
   SERVICES LIST
========================================= */

.other-services-list {
    border-top: 1px solid #dfe3e7;
}


/* =========================================
   SERVICE ITEM
========================================= */

.other-services-section .other-service-item {
    display: grid;
    grid-template-columns: 70px 1fr 52px;
    align-items: center;

    gap: 35px;

    padding: 28px 10px;

    border-bottom: 1px solid #dfe3e7;

    transition:
        background 0.3s ease,
        padding 0.3s ease;
}


/* =========================================
   NUMBER
========================================= */

.other-services-section .service-number {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;

    color: #a5abb2;

    transition: color 0.3s ease;
}


/* =========================================
   MAIN CONTENT
========================================= */

.other-services-section .service-main {
    display: flex;
    align-items: center;
    gap: 25px;
}


/* =========================================
   ICON
   IMPORTANT:
   Unique class so old icons aren't affected
========================================= */

.other-services-section .other-service-icon {
    width: 58px;
    height: 58px;

    flex: 0 0 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffffff;

    border: 1px solid #e3e6e9;
    border-radius: 14px;

    color: var(--clr-accent);
    font-size: 20px;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.045);

    transition:
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}


/* =========================================
   TITLE
========================================= */

.other-services-section .other-service-item h3 {
    margin: 0 0 7px;

    font-size: 21px;
    line-height: 1.25;
    font-weight: 700;

    color: #171b20;
}


/* =========================================
   DESCRIPTION
========================================= */

.other-services-section .other-service-item p {
    margin: 0;

    max-width: 650px;

    font-size: 15px;
    line-height: 1.6;

    color: #707983;
}


/* =========================================
   ARROW
========================================= */

.other-services-section .service-arrow {
    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #dfe3e7;
    border-radius: 50%;

    background: #ffffff;

    color: #343b43;

    text-decoration: none;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}


/* =========================================
   HOVER EFFECT
========================================= */

.other-services-section .other-service-item:hover {
    padding-left: 25px;
    padding-right: 25px;

    background: #ffffff;
}


.other-services-section .other-service-item:hover .service-number {
    color: var(--clr-accent);
}


.other-services-section .other-service-item:hover .other-service-icon {
    background: var(--clr-accent);
    border-color: var(--clr-accent);
    color: #ffffff;

    transform: translateY(-3px);
}


.other-services-section .other-service-item:hover .service-arrow {
    background: var(--grad-accent);
    border-color: var(--clr-accent);
    color: #ffffff;

    transform: rotate(45deg);
}




/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .other-services-intro {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 45px;
    }

    .other-services-intro>p {
        max-width: 600px;
    }

    .other-services-section .other-service-item {
        grid-template-columns: 55px 1fr 50px;
        gap: 20px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .other-services-intro {
        margin-bottom: 35px;
    }

    .other-services-intro h2 {
        font-size: 38px;
        letter-spacing: -1px;
    }

    .other-services-intro>p {
        font-size: 15px;
    }


    .other-services-section .other-service-item {
        grid-template-columns: 38px 1fr;

        gap: 14px;

        padding: 24px 0;
    }


    .other-services-section .service-number {
        font-size: 11px;
    }


    .other-services-section .service-main {
        align-items: flex-start;
        gap: 15px;
    }


    .other-services-section .other-service-icon {
        width: 48px;
        height: 48px;

        flex-basis: 48px;

        border-radius: 12px;

        font-size: 17px;
    }


    .other-services-section .other-service-item h3 {
        font-size: 18px;
    }


    .other-services-section .other-service-item p {
        font-size: 14px;
        line-height: 1.55;
    }


    .other-services-section .service-arrow {
        display: none;
    }


    .other-services-section .other-service-item:hover {
        padding-left: 12px;
        padding-right: 12px;
    }

}


/* ============ PROCESS TIMELINE ============ */
.process-section {
    background-color: #fff
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto
}

.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background-color: rgb(70 70 70 / 25%);
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%)
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right
}

.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    right: -12px;
    background-color: var(--clr-bg);
    border: 4px solid var(--clr-accent);
    border-radius: 50%;
    top: 25px;
    z-index: 10
}

.timeline-item:nth-child(even)::after {
    left: -12px
}

.timeline-content {
    padding: 30px;
    background: linear-gradient(135deg, #073a70 0%, #0d78c9 52%, #63c6ff 140%);
    border: 1px solid rgba(126, 211, 255, 0.35);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: 0 14px 34px rgba(8, 115, 200, 0.18);
}

.timeline-content::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    top: -110px;
    right: -70px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.13);
    filter: blur(2px);
}

.timeline-content:hover {
    transform: translateY(-5px);
    border-color: rgba(196, 238, 255, 0.7);
    box-shadow: 0 20px 42px rgba(8, 115, 200, 0.3);
}

.timeline-content .timeline-step {
    color: #fff
}

.timeline-item:nth-child(odd) .timeline-content .timeline-step {
    left: 20px;
    right: auto
}

.timeline-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #fff
}

.timeline-content p {
    color: #d7d7d7;
    font-size: .925rem
}

@media (max-width: 567px){
    .timeline-content h3{
        padding-right: 20px
    }
}

/* ============ REVIEWS ============ */
.reviews-section {
    background-color: #e3f2ff;
    padding: 80px 0;
    border-top: 1px solid var(--clr-border);
    border-bottom: 1px solid var(--clr-border);
}

.google-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 22px;
    border-radius: 50px;
    background: var(--glass-bg);
    border: 1px solid var(--clr-border);
    font-family: var(--font-headings);
    font-weight: 700;
    backdrop-filter: var(--glass-blur)
}

.google-badge .score {
    font-size: 1.2rem;
    color: var(--clr-text-main)
}

.google-badge .g-stars {
    color: var(--clr-warning);
    font-size: .85rem;
    letter-spacing: 2px
}

.reviews-carousel-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    padding: 15px 0
}

.reviews-carousel-track {
    display: flex;
    gap: 30px;
    transition: transform .5s cubic-bezier(.25, .8, .25, 1);
    width: 100%
}

.review-card {
    background: var(--grad-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    flex: 0 0 calc(33.333% - 20px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 22px;
    box-shadow: var(--shadow-sm)
}

.review-rating {
    color: var(--clr-warning);
    font-size: .95rem;
    letter-spacing: 3px;
    margin-bottom: 14px
}

.review-text {
    font-size: .98rem;
    font-style: italic;
    line-height: 1.65;
    color: var(--clr-text-main)
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px
}

.author-avatar {
    width: 48px;
    height: 48px;
    background-color: var(--clr-primary-light);
    color: var(--clr-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-headings);
    font-weight: 700;
    flex-shrink: 0
}

.author-name {
    font-weight: 600;
    font-size: 1rem;
    color: #fff
}

.author-meta {
    font-size: .8rem;
    color: var(--clr-text-muted)
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--clr-border);
    cursor: pointer;
    transition: var(--transition-smooth)
}

.slider-dot.active {
    background-color: var(--clr-accent);
    width: 24px;
    border-radius: 50px
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    margin-top: 36px
}

.carousel-controls .slider-dots {
    margin-top: 0
}

.carousel-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid var(--clr-border);
    background: var(--glass-bg);
    color: var(--clr-text-main);
    font-size: .95rem;
    transition: var(--transition-smooth);
    backdrop-filter: var(--glass-blur)
}

.carousel-btn:hover {
    background: var(--clr-accent);
    border-color: var(--clr-accent);
    color: #fff;
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px)
}

/* ============ CTA / FOOTER ============ */
.cta-banner {
    padding: 80px 0;
    border-top: 1px solid var(--clr-border);
    border-bottom: 1px solid var(--clr-border);
    text-align: center;
    position: relative;
    overflow: hidden
}

.cta-dark-gradient {
    background: linear-gradient(135deg, #0c2d5a 0%, #03060a 100%);
    border-top: 1px solid rgba(255, 255, 255, .08);
    border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.cta-dark-gradient h2 {
    color: #fff;
    font-size: 2.25rem;
    margin-bottom: 15px
}

.cta-dark-gradient p {
    color: #8fa0b5;
    max-width: 600px;
    margin: 0 auto 30px
}

.cta-steps {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin: 32px 0 38px
}

.cta-step {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-headings);
    font-weight: 600;
    color: var(--clr-text-muted)
}

.cta-step i {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(26, 140, 255, .12);
    border: 1px solid rgba(26, 140, 255, .3);
    color: var(--clr-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.cta-note {
    margin-top: 18px;
    font-size: .85rem;
    color: var(--clr-text-muted)
}

.footer {
    background-color: #03060a;
    padding: 80px 0 30px 0;
    border-top: 1px solid var(--clr-border)
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr 1fr;
    gap: 50px;
    margin-bottom: 60px
}

.footer-brand p {
    color: var(--clr-text-muted);
    margin-top: 20px;
    margin-bottom: 25px;
    font-size: .95rem
}

.footer-socials {
    display: flex;
    gap: 12px
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: var(--clr-card-bg);
    border: 1px solid var(--clr-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition-smooth)
}

.social-icon:hover {
    background-color: var(--clr-accent);
    color: #fff;
    transform: translateY(-3px)
}
.social-icon i{
    color: #fff
}

.footer-links h3,
.footer-contact h3 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 8px;
    color: #fff
}

.footer-links h3::after,
.footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--grad-accent)
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.footer-links a {
    color: var(--clr-text-muted);
    font-size: .95rem
}

.footer-links a:hover {
    color: #fff;
    padding-left: 5px
}

.footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px
}

.footer-contact-item {
    display: flex;
    gap: 15px;
    font-size: .95rem;
    color: var(--clr-text-muted)
}

.footer-contact-item i {
    color: var(--clr-accent);
    margin-top: 4px
}

.footer-contact-item strong {
    color: #fff;
    display: block;
    margin-bottom: 2px
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--clr-border);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: .85rem;
    color: var(--clr-text-muted)
}

.footer-bottom-links {
    display: flex;
    gap: 20px
}

.footer-bottom-links a:hover {
    color: #fff
}

/* ============ LIGHT THEME ELEMENT OVERRIDES ============ */
body.light-theme h1,
body.light-theme h2,
body.light-theme h3,
body.light-theme h4,
body.light-theme h5,
body.light-theme h6 {
    color: #0b1a30
}

body.light-theme .header.scrolled {
    background-color: rgba(255, 255, 255, .92)
}

body.light-theme .nav-link {
    color: #5e7185
}

body.light-theme .nav-link:hover,
body.light-theme .nav-link.active {
    color: #0b1a30
}

body.light-theme .nav-phone {
    color: #0b1a30
}

body.light-theme .hero-slider-item.active {
    opacity: .12
}

body.light-theme .hero-card {
    background: rgba(255, 255, 255, .95);
    border-color: rgba(11, 28, 51, .1)
}

body.light-theme .quick-input {
    background-color: #fff;
    border-color: rgba(11, 28, 51, .12);
    color: #0b1a30
}

body.light-theme .quick-input:focus {
    background-color: #fff;
    border-color: var(--clr-accent)
}

body.light-theme .trust-bar {
    background-color: #fff
}

body.light-theme .trust-info h3 {
    color: #0b1a30
}

body.light-theme .insurance-section {
    background-color: #fff
}

body.light-theme .timeline-step {
    color: rgba(26, 140, 255, .08)
}

body.light-theme .timeline-item::after {
    background-color: #f4f6fa
}

body.light-theme .timeline-content {
    box-shadow: var(--shadow-md)
}

body.light-theme .slider-section,
body.light-theme .process-section {
    background-color: #fff
}

body.light-theme .review-card {
    box-shadow: var(--shadow-lg)
}

body.light-theme .author-avatar {
    background-color: rgba(26, 140, 255, .08)
}

body.light-theme .author-name {
    color: #0b1a30
}

body.light-theme .spec-chip strong {
    color: #0b1a30
}

body.light-theme .google-badge .score {
    color: #0b1a30
}

body.light-theme .services-dark-wrap h2,
body.light-theme .services-dark-wrap h3 {
    color: #fff
}

body.light-theme .services-dark-wrap p {
    color: #8fa0b5
}

body.light-theme .services-dark-wrap .timeline-step {
    color: rgba(255, 255, 255, .05)
}

body.light-theme .cta-dark-gradient h2 {
    color: #fff
}

body.light-theme .cta-dark-gradient p {
    color: #8fa0b5
}

body.light-theme .footer h3,
body.light-theme .footer-contact-item strong,
body.light-theme .footer-bottom p {
    color: #fff
}

/* ============ RESPONSIVE ============ */
@media(max-width:1024px) {
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 50px
    }

    .hero-text {
        text-align: center;
        margin: 0 auto
    }

    .hero-ctas,
    .hero-chips {
        justify-content: center
    }

    .hero-card {
        max-width: 550px;
        margin: 0 auto;
        width: 100%
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .review-card {
        flex: 0 0 calc(50% - 15px)
    }
}

@media(max-width:768px) {
    .section-padding {
        padding: 70px 0
    }

    .section-header h2 {
        font-size: 2rem
    }

    .hero-text h1 {
        font-size: 2.5rem
    }

    .nav-links,
    .nav-cta {
        display: none
    }

    .nav-toggle {
        display: flex
    }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        background-color: var(--clr-primary-dark);
        border-left: 1px solid var(--clr-border);
        padding: 100px 30px 40px 30px;
        z-index: 1000;
        box-shadow: var(--shadow-lg);
        gap: 25px;
        align-items: flex-start
    }

    body.light-theme .nav-links.open {
        background: #fff
    }

    body.light-theme .nav-links.open .nav-link {
        color: #5e7185
    }

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

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

    .slider-container {
        height: 350px
    }

    .timeline::after {
        left: 20px
    }

    .timeline-item {
        width: 100%;
        padding-left: 50px;
        padding-right: 0;
        text-align: left !important;
        left: 0 !important
    }

    .timeline-item::after {
        left: 10px !important;
        right: auto !important
    }

    .timeline-item:nth-child(odd) .timeline-content .timeline-step {
        right: 20px;
        left: auto
    }

    .review-card {
        flex: 0 0 100%
    }

    .spec-row {
        grid-template-columns: repeat(2, 1fr)
    }

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

@media(max-width:480px) {
    .trust-grid {
        grid-template-columns: 1fr
    }

    .slider-container {
        height: 250px
    }

    .slider-before-label,
    .slider-after-label {
        font-size: .7rem;
        padding: 4px 8px
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px
    }

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

/* =========================
   BACK TO TOP
========================= */

.back-to-top {
    position: fixed;
    right: 25px;
    bottom: 25px;

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--grad-accent);
    color: #fff;

    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;

    font-size: 16px;

    box-shadow: 0 10px 30px rgba(26, 140, 255, 0.25);

    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;

    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(26, 140, 255, 0.4);
}

.back-to-top i {
    transition: transform 0.3s ease;
}

.back-to-top:hover i {
    transform: translateY(-2px);
}


/* Mobile */

@media (max-width: 600px) {
    .back-to-top {
        width: 44px;
        height: 44px;
        right: 18px;
        bottom: 18px;
        font-size: 14px;
    }
}
/* ================= INTERNAL PAGES ================= */
/* HERO / BREADCRUMB */
.wy-hero {
  padding: 150px 24px 80px;
 background:
        radial-gradient(
            circle at 84% 16%,
            rgba(39, 151, 255, 0.35),
            transparent 25%
        ),
        radial-gradient(
            circle at 14% 88%,
            rgba(13, 92, 183, 0.35),
            transparent 28%
        ),
        linear-gradient(
            125deg,
            rgba(3, 19, 38, 0.92) 0%,
            rgba(6, 40, 76, 0.88) 56%,
            rgba(11, 87, 152, 0.72) 130%
        ),
        url(../images/hero-1.jpg) center center / cover no-repeat;
  color: #fff;
}
.wy-hero-inner{max-width:1160px;margin:0 auto;text-align:center}
.wy-breadcrumb{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:14px;
  margin-bottom:30px;
  font-size:16px;
  color:#aeb8c8;
}
.wy-breadcrumb a{color:#aeb8c8;text-decoration:none}
.wy-breadcrumb a:hover{color:#fff}
.wy-breadcrumb .current{color:#e8edf5}
.wy-breadcrumb .slash{opacity:.55}
.wy-hero h1{
  margin:0 auto 20px;
  max-width:1000px;
  font-size:clamp(42px,5.3vw,56px);
  line-height:1.06;
  letter-spacing:-2px;
  font-weight:800;
}
.wy-hero h1 span{color:#fff}
.wy-hero p{
  max-width:780px;
  margin:0 auto;
  color:#c5cfdd;
  font-size:18px;
  line-height:1.75;
}

/* GENERAL */
.wy-section{padding:96px 0}
.wy-container{max-width:1160px;margin:0 auto;padding:0 24px}
.wy-section.light{background:#fff}
.wy-section.soft{background:#e3f2ff}
.wy-section.light{background:#fff}
.wy-eyebrow{
  display:inline-block;
  margin-bottom:14px;
  color:var(--wy-blue-dark);
  font-size:13px;
  line-height:1;
  font-weight:800;
  letter-spacing:1.6px;
  text-transform:uppercase;
}
.wy-heading{
  margin:0 0 18px;
  color:var(--wy-text);
  font-size:clamp(34px,4vw,54px);
  line-height:1.12;
  letter-spacing:-1.3px;
  font-weight:800;
}
.wy-heading span{color:var(--wy-blue-dark)}
.wy-lead{
  margin:0;
  color:var(--wy-muted);
  font-size:17px;
  line-height:1.85;
}

/* INTRO TWO-COLUMN */
.wy-intro{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:76px;
  align-items:center;
}
.wy-intro-image{
  position:relative;
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 22px 55px rgba(17,27,45,.13);
}
.wy-intro-image img{
  width:100%;
  height:480px;
  display:block;
  object-fit:cover;
}
.wy-image-label{
  position:absolute;
  left:24px;
  bottom:24px;
  padding:12px 16px;
  border-radius:10px;
  background:rgba(17,27,45,.92);
  color:#fff;
  font-size:14px;
  font-weight:700;
}
.wy-checks{
  display:grid;
  gap:18px;
  margin:30px 0 0;
  padding:0;
}
.wy-check{
  display:flex;
  gap:14px;
  align-items:flex-start;
}
.wy-check-icon{
  flex:0 0 30px;
  width:30px;
  height:30px;
  display:grid;
  place-items:center;
  margin-top:1px;
  border-radius:50%;
  background:#eaf5ff;
  color:var(--wy-blue-dark);
  font-size:12px;
}
.wy-check h3{
  margin:0 0 5px;
  color:var(--wy-text);
  font-size:17px;
}
.wy-check p{
  margin:0;
  color:var(--wy-muted);
  font-size:14px;
  line-height:1.65;
}

/* VALUE CARDS */
.wy-section-heading{
  max-width:700px;
  margin:0 auto 48px;
  text-align:center;
}
.wy-section-heading p{max-width:620px;margin:0 auto}
.wy-cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.wy-card{
  padding:34px 30px;
  background:#fff;
  border:1px solid #e4e9ef;
  border-radius:16px;
  transition:transform .25s ease,box-shadow .25s ease,border-color .25s ease;
}
.wy-card:hover{
  transform:translateY(-5px);
  border-color:#cfe4f8;
  box-shadow:0 18px 40px rgba(17,27,45,.08);
}
.wy-card-icon{
  width:50px;height:50px;
  display:grid;place-items:center;
  margin-bottom:22px;
  border-radius:12px;
  background:#edf6ff;
  color:var(--wy-blue-dark);
  font-size:20px;
}
.wy-card h3{margin:0 0 10px;font-size:20px;color:var(--wy-text)}
.wy-card p{margin:0;color:var(--wy-muted);font-size:15px;line-height:1.75}
.wy-step {
  position: relative;
  padding: 30px 24px;
  background: #fff;
  border: 1px solid #e4e9ef;
  border-radius: 14px;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

/* Blue accent line */
.wy-step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #1b8ff3;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

/* Hover */
.wy-step:hover {
  transform: translateY(-8px);
  border-color: #b9ddf9;
  box-shadow: 0 18px 40px rgba(17, 27, 45, 0.10);
}

.wy-step:hover::before {
  transform: scaleX(1);
}

/* Number */
.wy-step-number {
  display: block;
  margin-bottom: 22px;
  color: #9aa7b8;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.wy-step:hover .wy-step-number {
  color: #1b8ff3;
}

/* Heading */
.wy-step h3 {
  margin: 0 0 9px;
  font-size: 18px;
  color: #182235;
  transition: color 0.3s ease;
}

.wy-step:hover h3 {
  color: #0872d1;
}

/* Description */
.wy-step p {
  margin: 0;
  color: #687386;
  font-size: 14px;
  line-height: 1.7;
}
/* PROCESS */
.wy-process{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
  margin-top:50px;
}
.wy-step{
  position:relative;
  padding:30px 24px;
  background:#fff;
  border:1px solid #e4e9ef;
  border-radius:14px;
}
.wy-step-number{
  display:block;
  margin-bottom:22px;
  color:#9aa7b8;
  font-size:13px;
  font-weight:800;
  letter-spacing:1px;
}
.wy-step h3{margin:0 0 9px;font-size:18px;color:var(--wy-text)}
.wy-step p{margin:0;color:var(--wy-muted);font-size:14px;line-height:1.7}

/* CTA */
.wy-cta{
  padding:82px 24px;
  background:var(--wy-navy);
  color:#fff;
  text-align:center;
}
.wy-cta-inner{max-width:760px;margin:0 auto}
.wy-cta h2{
  margin:0 0 12px;
  font-size:clamp(30px,4vw,48px);
  line-height:1.15;
}
.wy-cta p{
  margin:0 auto 26px;
  color:#bfc9d8;
  line-height:1.7;
}
.wy-btn{
  display:inline-flex;
  align-items:center;
  gap:9px;
  padding:14px 22px;
  border-radius:8px;
  background:var(--wy-blue);
  color:#fff;
  text-decoration:none;
  font-weight:700;
  box-shadow:0 8px 20px rgba(27,143,243,.2);
}
.wy-btn:hover{background:var(--wy-blue-dark)}

/* MOBILE */
@media(max-width:900px){
  .wy-hero{min-height:auto;padding:170px 24px 90px}
  .wy-intro{grid-template-columns:1fr;gap:45px}
  .wy-cards{grid-template-columns:1fr 1fr}
  .wy-process{grid-template-columns:1fr 1fr}
}
@media(max-width:620px){
  .wy-hero{padding:145px 20px 70px}
  .wy-breadcrumb{font-size:14px;margin-bottom:24px}
  .wy-hero h1{font-size:42px;letter-spacing:-1px}
  .wy-hero p{font-size:16px}
  .wy-section{padding:70px 0}
  .wy-container{padding:0 20px}
  .wy-intro-image img{height:330px}
  .wy-cards,.wy-process{grid-template-columns:1fr}
  .wy-heading{font-size:36px}
}



/*services*/

.svc-services-section{
  padding:96px 0;
}
.svc-services-section.white{background:#fff}
.svc-services-section.light{background:#e3f2ff}

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

.svc-service-card{
  position:relative;
  min-height:245px;
  padding:28px;
  background:#fff;
  border:1px solid #e2e8ef;
  border-radius:16px;
  box-shadow:0 8px 24px rgba(24,34,53,.055);
  overflow:hidden;
  transition:transform .3s ease,box-shadow .3s ease,border-color .3s ease;
}

.svc-service-card::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:3px;
  background:#1b8ff3;
  transform:scaleX(0);
  transform-origin:left;
  transition:transform .3s ease;
}

.svc-service-card:hover{
  transform:translateY(-7px);
  border-color:rgba(27,143,243,.28);
  box-shadow:0 18px 38px rgba(24,34,53,.12);
}

.svc-service-card:hover::before{
  transform:scaleX(1);
}

.svc-card-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  margin-bottom:22px;
}

.svc-service-icon{
  width:50px;
  height:50px;
  display:grid;
  place-items:center;
  border-radius:12px;
  background:#edf7ff;
  color:#1b8ff3;
  font-size:24px;
  transition:.3s ease;
}

.svc-service-card:hover .svc-service-icon{
  background:#1b8ff3;
  color:#fff;
}

.svc-service-number{
  color:#aab5c2;
  font-size:26px;
  line-height:1;
  font-weight:800;
}

.svc-service-card h3{
  margin:0 0 10px;
  color:#182235;
  font-size:24px;
}

.svc-service-card p{
  margin:0 0 20px;
  color:#687386;
  font-size:16px;
  line-height:1.7;
}

.svc-request{
  display:inline-flex;
  align-items:center;
  gap:7px;
  color:#0872d1;
  text-decoration:none;
  font-size:13px;
  font-weight:700;
}

.svc-request i{
  font-size:11px;
  transition:transform .2s ease;
}

.svc-service-card:hover .svc-request i{
  transform:translateX(5px);
}


/* OTHER SERVICES */

.svc-other-head{
  display:grid;
  grid-template-columns:1fr .9fr;
  gap:70px;
  align-items:end;
  margin-bottom:38px;
}

.svc-other-head .section-header{
  margin-bottom:0;
}

.svc-other-list{
  border-top:1px solid #e2e8ef;
}

.svc-other-item{
  display:grid;
  grid-template-columns:52px 48px 1fr 40px;
  gap:17px;
  align-items:center;
  min-height:92px;
  border-bottom:1px solid #e2e8ef;
  transition:background .25s ease,padding .25s ease;
}

.svc-other-item:hover{
  background:#f7fbff;
  padding-left:12px;
  padding-right:12px;
}

.svc-other-number{
  color:#a5b0bd;
  font-size:12px;
  font-weight:700;
}

.svc-other-icon{
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  border-radius:10px;
  background:#edf7ff;
  color:#1b8ff3;
}

.svc-other-item h3{
  margin:0 0 4px;
  color:#182235;
  font-size:21px;
}

.svc-other-item p{
  margin:0;
  color:#687386;
  font-size:16px;
  line-height:1.55;
}

.svc-other-link{
  width:34px;
  height:34px;
  display:grid;
  place-items:center;
  border:1px solid #dfe7ef;
  border-radius:50%;
  color:#0872d1;
  text-decoration:none;
  transition:.25s ease;
}

.svc-other-item:hover .svc-other-link{
  color:#fff;
  background:#1b8ff3;
  border-color:#1b8ff3;
}


/* LOCAL SUPPORT */

.svc-support{
  padding:82px 0;
  background:#e3f2ff;
}

.svc-support-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  align-items:center;
}

.svc-support-copy .section-header{
  margin-bottom:0;
}

.svc-support-points{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}

.svc-support-point{
  display:flex;
  align-items:center;
  gap:11px;
  min-height:62px;
  padding:14px 16px;
  background:#fff;
  border:1px solid rgba(27,143,243,.12);
  border-radius:12px;
}

.svc-support-point i{
  color:#1b8ff3;
}

.svc-support-point span{
  color:#182235;
  font-size:13px;
  font-weight:700;
}


/* MOBILE */

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

  .svc-other-head,
  .svc-support-grid{
    grid-template-columns:1fr;
    gap:30px;
  }
}

@media(max-width:620px){
  .svc-services-section{
    padding:70px 0;
  }

  .svc-service-grid{
    grid-template-columns:1fr;
  }

  .svc-service-card{
    min-height:220px;
  }

  .svc-other-item{
    grid-template-columns:32px 42px 1fr;
    gap:12px;
    padding:16px 0;
  }

  .svc-other-link{
    display:none;
  }

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




/*our work*/

.work-section{
  padding:96px 0;
}
.work-section.white{background:#fff}
.work-section.light{background:#e3f2ff}

.work-container{
  width:min(1160px,calc(100% - 48px));
  margin:0 auto;
}

/* Before / After */
.work-feature{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
  margin-top:48px;
}

.work-shot{
  position:relative;
  margin:0;
  overflow:hidden;
  border-radius:18px;
  background:#fff;
  border:1px solid #dfe7ef;
  box-shadow:0 10px 30px rgba(24,34,53,.08);
}

.work-shot img{
  display:block;
  width:100%;
  aspect-ratio:16 / 9;
  object-fit:cover;
  transition:transform .55s ease;
}

.work-shot:hover img{
  transform:scale(1.035);
}

.work-shot figcaption{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:15px;
  padding:18px 20px;
  background:#fff;
}

.work-shot figcaption strong{
  color:#182235;
  font-size:16px;
}

.work-shot figcaption span{
  color:#687386;
  font-size:13px;
}

/* Work story */
.work-story{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:70px;
  align-items:center;
  margin-top:60px;
}

.work-story-copy .wy-heading{
  margin-bottom:16px;
}

.work-story-copy .wy-lead{
  margin-bottom:26px;
}

.work-points{
  display:grid;
  gap:14px;
}

.work-point{
  display:flex;
  gap:12px;
  align-items:flex-start;
}

.work-point-icon{
  flex:0 0 38px;
  width:50px;
  height:50px;
  display:grid;
  place-items:center;
  border-radius:10px;
  background: #168cf2;
    color: #ffffff;
}

.work-point h3{
  margin:0 0 4px;
  color:#182235;
  font-size:16px;
}

.work-point p{
  margin:0;
  color:#687386;
  font-size:13px;
  line-height:1.6;
}

/* Process cards */
.work-process{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
  margin-top:48px;
}
.work-process-card {
    position: relative;
    padding: 30px;
    background: linear-gradient(
        135deg,
        rgb(7, 58, 112) 0%,
        rgb(13, 120, 201) 52%,
        rgb(99, 198, 255) 140%
    );
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(7, 58, 112, 0.18);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.work-process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 45px rgba(7, 58, 112, 0.28);
}

.work-process-number {
    display: inline-flex;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 30px;
    line-height: 1;
    font-weight: 800;
}

.work-process-icon {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    margin-bottom: 20px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    font-size: 18px;
}

.work-process-card h3 {
    margin: 0 0 10px;
    color: #fff;
    font-size: 20px;
}

.work-process-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    line-height: 1.7;
}

/* CTA */
.work-cta{
  padding:84px 24px;
  background:linear-gradient(135deg,#18263b,#101b2c);
  text-align:center;
  color:#fff;
}

.work-cta-inner{
  max-width:760px;
  margin:auto;
}

.work-cta h2{
  margin:0 0 14px;
  font-size:clamp(32px,4vw,48px);
  line-height:1.12;
}

.work-cta h2 span{color:#168cf2}

.work-cta p{
  margin:0 auto 26px;
  max-width:620px;
  color:#bdc8d8;
  font-size:16px;
  line-height:1.75;
}

@media(max-width:900px){
  .work-feature,
  .work-story{
    grid-template-columns:1fr;
  }

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

  .work-story{
    gap:38px;
  }
}

@media(max-width:620px){
  .work-section{
    padding:70px 0;
  }

  .work-container{
    width:min(100% - 40px,1160px);
  }

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

  .work-shot figcaption{
    padding:15px 16px;
  }
}


/* ================= CONTACT MAIN ================= */

.contact-main-section {
    padding: 100px 0;
    background: #fff;
}

.contact-main-grid {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 80px;
    align-items: center;
}


/* ================= CONTACT DETAILS ================= */

.contact-details {
    display: grid;
    gap: 20px;
    margin-top: 38px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-detail-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    flex-shrink: 0;

    background: #edf7ff;
    color: #168cf2;
    border-radius: 12px;
}

.contact-detail span {
    display: block;
    margin-bottom: 5px;

    color: #687386;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .7px;
}

.contact-detail h3 {
    margin: 0;

    color: #182235;
    font-size: 16px;
    line-height: 1.5;
}

.contact-detail h3 a {
    color: inherit;
    text-decoration: none;
}

.contact-detail h3 a:hover {
    color: #168cf2;
}


/* ================= ACTION PANEL ================= */

.contact-action-panel {
    padding: 42px;

    background: linear-gradient(
        135deg,
        rgb(7, 58, 112) 0%,
        rgb(13, 120, 201) 52%,
        rgb(99, 198, 255) 140%
    );

    border-radius: 22px;
    color: #fff;

    box-shadow: 0 20px 45px rgba(7, 58, 112, .20);
}

.contact-action-icon {
    width: 58px;
    height: 58px;

    display: grid;
    place-items: center;

    margin-bottom: 25px;

    background: rgba(255,255,255,.13);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 14px;

    color: #fff;
    font-size: 21px;
}

.contact-action-panel .badge {
    background: rgba(255,255,255,.12);
    border-color: rgba(255,255,255,.2);
    color: #fff;
}

.contact-action-panel h3 {
    margin: 18px 0 13px;

    color: #fff;
    font-family: var(--font-headings);
    font-size: 30px;
    line-height: 1.2;
}

.contact-action-panel h3 span {
    color: #bfe8ff;
}

.contact-action-panel > p {
    margin: 0;

    color: rgba(255,255,255,.82);
    font-size: 15px;
    line-height: 1.75;
}


/* ================= ACTIONS ================= */

.contact-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;

    margin-top: 28px;
}

.contact-action-panel .btn-primary {
    background: #fff;
    color: #0872d1;
}

.contact-action-panel .btn-primary:hover {
    background: #f2f8fd;
}

.contact-email-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.contact-email-link:hover {
    color: #dff3ff;
}


/* ================= ADDRESS ================= */

.contact-panel-address {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-top: 30px;
    padding-top: 22px;

    border-top: 1px solid rgba(255,255,255,.18);

    color: rgba(255,255,255,.82);
    font-size: 13px;
}

.contact-panel-address i {
    color: #fff;
}


/* ================= CONTACT FORM PANEL ================= */

.contact-form-panel {
    padding: 42px;

    background: #fff;
    border: 1px solid #e9edf3;
    border-radius: 22px;

    box-shadow: 0 20px 45px rgba(11, 28, 51, .08);
}

.form-panel-icon {
    width: 58px;
    height: 58px;

    display: grid;
    place-items: center;

    margin-bottom: 20px;

    background: #edf7ff;
    border: 1px solid rgba(26, 140, 255, .18);
    border-radius: 14px;

    color: #168cf2;
    font-size: 21px;
}

.form-panel-heading {
    margin: 6px 0 12px;

    color: #182235;
    font-family: var(--font-headings);
    font-size: 30px;
    line-height: 1.2;
}

.form-panel-text {
    margin: 0 0 28px;

    color: #687386;
    font-size: 15px;
    line-height: 1.75;
}

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

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: #182235;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .7px;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 13px 16px;

    background: #f8fafc;
    border: 1px solid #e1e7ee;
    border-radius: 12px;

    color: #182235;
    font-size: 14px;

    transition: var(--transition-smooth);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9aa5b4;
}

.form-group input:focus,
.form-group textarea:focus,
.multiselect.open .multiselect-toggle {
    background: #fff;
    border-color: var(--clr-accent);
    box-shadow: 0 0 0 4px rgba(26, 140, 255, .12);
    outline: none;
}

.form-group textarea {
    min-height: 130px;
    resize: vertical;
}

.form-hint {
    color: #9aa5b4;
    font-size: 12px;
}


/* Services multiselect */

.multiselect {
    position: relative;
}

.multiselect-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 13px 16px;

    background: #f8fafc;
    border: 1px solid #e1e7ee;
    border-radius: 12px;

    color: #182235;
    font-size: 14px;
    text-align: left;

    transition: var(--transition-smooth);
}

.multiselect-toggle i {
    color: #687386;
    font-size: 13px;
    transition: transform .25s ease;
}

.multiselect.open .multiselect-toggle i {
    transform: rotate(180deg);
}

.multiselect-panel {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    z-index: 20;

    display: none;
    max-height: 240px;
    overflow-y: auto;

    padding: 10px;

    background: #fff;
    border: 1px solid #e9edf3;
    border-radius: 14px;

    box-shadow: 0 20px 45px rgba(11, 28, 51, .14);
}

.multiselect.open .multiselect-panel {
    display: block;
}

.multiselect-option {
    display: flex;
    align-items: center;
    gap: 10px;

    padding: 9px 10px;
    border-radius: 8px;

    color: #374151;
    font-size: 14px;
}

.multiselect-option:hover {
    background: #f2f8fd;
}

.multiselect-option input {
    width: 16px;
    height: 16px;
    flex-shrink: 0;

    accent-color: var(--clr-accent);
}

.form-submit {
    width: 100%;
}

.form-status {
    display: none;
    padding: 12px 16px;
    border-radius: 10px;

    font-size: 13px;
    font-weight: 600;
    line-height: 1.5;
}

.form-status.success {
    display: block;

    background: #e9f9f0;
    border: 1px solid #b6ecd0;
    color: #0a9a5c;
}

.form-status.error {
    display: block;

    background: #fdeceb;
    border: 1px solid #f6c6c2;
    color: #d92d20;
}


/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {

    .contact-main-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

}

@media (max-width: 600px) {

    .contact-main-section {
        padding: 70px 0;
    }

    .contact-form-panel {
        padding: 30px 22px;
    }

    .form-panel-heading {
        font-size: 26px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

}



@media (max-width: 1120px){
    .nav-phone{
        display: none
    }
}

/*for booking online button*/


.book-btn{
  background:#e63329;color:#fff;border:0;padding:12px 26px;
  font-size:16px;border-radius:4px;cursor:pointer;
}
.booking-overlay{
  display:none;position:fixed;inset:0;z-index:99999;
  background:rgba(0,0,0,.7);padding:20px;
  align-items:center;justify-content:center;
}
/*.booking-overlay.active{display:flex;}*/
/*.booking-box{*/
/*  position:relative;background:#fff;border-radius:6px;*/
/*  width:100%;max-width:900px;height:90vh;overflow:hidden;*/
/*}*/
.booking-box iframe{width:100%;height:100%;border:0;display:block;}
.booking-close{
  position:absolute;top:8px;right:10px;z-index:2;
  width:34px;height:34px;border:0;border-radius:50%;
  background:#000;color:#fff;font-size:24px;line-height:1;cursor:pointer;
}
.booking-overlay.active{display:flex !important;}
.booking-box{height:90vh !important;min-height:500px;}
.booking-box iframe{
  width:100% !important;
  height:100% !important;
  min-height:500px;
  display:block !important;
  visibility:visible !important;
  opacity:1 !important;
}

.booking-loader{
  position:absolute;inset:0;z-index:1;
  display:flex;flex-direction:column;
  align-items:center;justify-content:center;
  background:#fff;gap:14px;
}
.booking-loader.hide{display:none;}
.booking-loader p{
  margin:0;font-size:14px;color:#666;font-family:inherit;
}
.spinner{
  width:42px;height:42px;border-radius:50%;
  border:4px solid #eee;border-top-color:#e63329;
  animation:bkspin .8s linear infinite;
}
@keyframes bkspin{to{transform:rotate(360deg);}}

@media (min-width: 991px) {
    .booking-box iframe {
        min-width: 500px;
    }
}

@media (max-width:768px){
  .booking-overlay{padding:0;}
  .booking-box{max-width:100%;height:100%;border-radius:0;}
  .booking-box iframe{height:100%;}
}