:root {
    --bg: #010a19;
    --bg-alt: #0a1225;
    --panel: #0e1830;
    --panel-2: #101c38;
    --blue: #2f6bff;
    --blue-light: #5e8bff;
    --blue-glow: rgba(47, 107, 255, .35);
    --red: #e5384d;
    --text: #eef2fb;
    --text-dim: #ffffff;
    --border: rgba(255, 255, 255, .08);
    --ease: cubic-bezier(.22, .9, .32, 1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Manrope', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    text-decoration: none;
}

.text-blue {
    color: var(--blue-light);
}

.text-dim {
    color: var(--text-dim);
}

.bg-panel {
    background: var(--panel);
}

.section-pad {
    padding: 80px 0;
}


main {
    overflow-x: clip;
}




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

.bg-grid {
    background-image:
        linear-gradient(rgba(47, 107, 255, .06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(47, 107, 255, .06) 1px, transparent 1px);
    background-size: 44px 44px;
}

.glow-orb {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--blue-glow) 0%, transparent 70%);
    filter: blur(10px);
    pointer-events: none;
    z-index: 0;
}

.hero-orb {
    top: -200px;
    right: -150px;
}

.hero-image-group {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-image {
    position: absolute;
    z-index: 1;
    pointer-events: auto;
}

.hero-image.one {
    width: 360px;
    top: -48px;
    right: -70px;
    z-index: 9;
    border-radius: 16px;
}

.hero-image.two {
    width: 200px;
    height: 295px;
    bottom: 30px;
    right: -30px;
    border: 8px solid rgb(0 0 27);
    z-index: 9;
    object-fit: cover;
    border-radius: 10px;
}

.hero-visual {
    position: relative;
    min-height: 520px;
}

.device-card {
    position: relative;
    z-index: 2;
    background: #0c1730;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 10px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .5);
    width: 100%;
    height: 420px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 32px;
}

.section-caption {
    color: var(--blue-light);
    font-size: .85rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin: 0 0 10px;
    font-weight: 500;
}

.text-small {
    color: var(--text-dim);
    font-size: .85rem;
}

.price-card .card-title {
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--text-dim);
    margin-bottom: .25rem;
}

.price-card .card-subtitle {
    font-size: .75rem;
    color: var(--text-dim);
    margin-bottom: 18px;
}

.price-card .card-actions {
    margin-top: 24px;
}

.form-select.form-control-custom {
    background: #0a1428;
    border: 1px solid var(--border);
    color: var(--text);
    border-radius: 8px;
    padding: 12px 14px;
}

.form-select.form-control-custom:focus {
    box-shadow: 0 0 0 .2rem var(--blue-glow);
}

/* ===== TOP BAR ===== */
.topbar {
    background: #040810;
    font-size: .88rem;
    padding: 10px 0;
    color: white;
    border-bottom: 1px solid #242424;
}

.topbar i {
    color: var(--blue-light);
    margin-right: 8px;
}

.topbar a {
    color: var(--text-dim);
    transition: color .25s var(--ease);
}

.topbar a:hover {
    color: var(--blue-light);
}

.font-display {
    font-weight: 700;
    color: white;
    font-size: 2.3rem;
    text-transform: uppercase;
    line-height: normal;
}

.font-display span {
    color: var(--blue-light);
}


.top-icons a i {
    width: 22px;
    height: 22px;
    display: grid;
    place-content: center;
    background: white;
    margin: 0;
    border-radius: 100%;
    transition: .4s ease;
}

.top-icons {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-icons a i:hover {
    background: var(--blue-light);
    color: white;
}



/* ===== NAVBAR ===== */


.header {
    position: relative;
    transition: .4s ease;
    z-index: 999;
}



.header.header-scrolled {
    position: sticky;
    top: 0;
    z-index: 999;
}

.header-scrolled .topbar {
    display: none;
}



.navbar-custom {
    background: rgba(6, 11, 22, .85);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    transition: padding .3s var(--ease), box-shadow .3s var(--ease);
}

.navbar-brand img {
    width: 161px;
    height: auto;
    transition: transform .3s var(--ease);
}

.navbar-brand:hover img {
    transform: scale(1.04);
}

.nav-link-custom {
    color: var(--text) !important;
    font-weight: 500;
    font-size: 1rem;
    margin: 0 10px;
    position: relative;
    transition: color .25s var(--ease);
}

.nav-link-custom::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: var(--blue-light);
    transition: width .3s var(--ease);
}

.nav-link-custom:hover {
    color: var(--blue-light) !important;
}

.nav-link-custom:hover::after {
    width: 100%;
}

.btn-blue {
    background: linear-gradient(135deg, var(--blue), #1a4fd6);
    color: #fff;
    font-weight: 500;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    transition: transform .25s var(--ease), box-shadow .25s var(--ease), filter .25s var(--ease);
    position: relative;
    overflow: hidden;
}

.btn-blue:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px var(--blue-glow);
    color: #fff;
    filter: brightness(1.08);
}

.btn-blue:active {
    transform: translateY(-1px) scale(.98);
}

.btn-outline-blue {
    border: 1px solid rgba(255, 255, 255, .25);
    color: var(--text);
    font-weight: 600;
    padding: 11px 22px;
    border-radius: 8px;
    background: transparent;
    transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
}

.btn-outline-blue:hover {
    border-color: var(--blue-light);
    color: var(--blue-light);
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(47, 107, 255, .12);
}

.btn-outline-blue:active {
    transform: translateY(-1px) scale(.98);
}

/* ===== HERO / SLIDER ===== */
.hero {
    position: relative;
    padding: 0;
    overflow: hidden;
    z-index: 9;
}

.hero-swiper {
    position: relative;
    width: 100%;
}

.hero-swiper .swiper-slide {
    position: relative;
    padding: 7.5rem 0 6rem;
    overflow: hidden;
    min-height: 640px;
    display: flex;
    align-items: center;
}

/* Ken Burns background layer */
.kenburns {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    z-index: 0;
    animation: kenburns 9s ease-in-out infinite alternate;
}

.kenburns::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .72), rgba(0, 0, 0, .35) 55%, rgba(0, 0, 0, .78));
}

@keyframes kenburns {
    from {
        transform: scale(1) translate(0, 0);
    }

    to {
        transform: scale(1.09) translate(-1%, -1%);
    }
}

.badge-pill {
    border: 1px solid rgba(255, 255, 255, .2);
    color: var(--text-dim);
    font-size: .72rem;
    letter-spacing: .1em;
    padding: 6px 16px;
    border-radius: 30px;
    text-transform: uppercase;
    display: inline-block;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
}

@media(max-width:768px) {
    .hero h1 {
        font-size: 2.1rem;
    }

    .hero-swiper .swiper-slide {
        min-height: 560px;
        padding: 6rem 0 4.5rem;
    }
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .82rem;
    color: var(--text-dim);
}

.hero-feature i {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-light);
    flex-shrink: 0;
    transition: background .3s var(--ease), transform .3s var(--ease);
}

.hero-feature:hover i {
    background: var(--blue);
    color: #fff;
    transform: translateY(-3px);
}

.device-card img {
    border-radius: 10px;
    width: 100%;
    display: block;
    height: 100%;
    object-fit: cover;
}

.ai-badge {
    position: absolute;
    left: -10px;
    bottom: -50px;
    background: rgba(10, 20, 42, .55);
    border: 1px solid rgba(47, 107, 255, .4);
    border-radius: 12px;
    padding: 45px 20px;
    width: 170px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .5);
    text-align: center;
    backdrop-filter: blur(10px);
    animation: floatY 4s ease-in-out infinite;
    z-index: 9;
}

@keyframes floatY {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.ai-badge .icon-circ {
    width: 55px;
    height: auto;
    border-radius: 8px;
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

/* Swiper controls */
.hero-swiper .swiper-button-prev,
.hero-swiper .swiper-button-next {
    color: #fff;
    width: 46px;
    height: 46px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 50%;
    backdrop-filter: blur(6px);
    transition: background .25s var(--ease), transform .25s var(--ease);
}

.hero-swiper .swiper-button-prev:hover,
.hero-swiper .swiper-button-next:hover {
    background: var(--blue);
    transform: scale(1.06);
}

.hero-swiper .swiper-button-prev::after,
.hero-swiper .swiper-button-next::after {
    font-size: 1rem;
    font-weight: 700;
}

.hero-swiper .swiper-pagination-bullet {
    background: rgba(255, 255, 255, .4);
    opacity: 1;
    width: 9px;
    height: 9px;
    transition: background .25s var(--ease), width .25s var(--ease);
}

.hero-swiper .swiper-pagination-bullet-active {
    background: var(--blue-light);
    width: 26px;
    border-radius: 5px;
}

@media(max-width:575px) {

    .hero-swiper .swiper-button-prev,
    .hero-swiper .swiper-button-next {
        display: none;
    }
}

/* ===== GLOBAL IMAGE HOVER ===== */
.img-hover {
    transition: transform .45s var(--ease), box-shadow .4s var(--ease), filter .3s var(--ease);
    border-radius: 12px;
    /* overflow: hidden; */
    display: block;
}

.img-hover:hover {
    transform: translateY(-6px) scale(1.025);
    /*box-shadow: 0 30px 60px rgba(15, 30, 60, .5);*/
    /*filter: brightness(1.03) saturate(1.05);*/
}

.device-card.img-hover {
    transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}

.device-card.img-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, .6);
}

/* ===== LIVE MONITORING ===== */
.live-section {
    background: var(--bg-alt);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative;
}

.police-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 22px 0 10px;
    flex-wrap: wrap;
}

.beacon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    box-shadow: 0 0 22px 6px currentColor;
    animation: blink 1s infinite alternate;
}

.beacon.red {
    color: var(--red);
    background: var(--red);
}

.beacon.blue {
    color: var(--blue);
    background: var(--blue);
}

@keyframes blink {
    from {
        opacity: .35;
    }

    to {
        opacity: 1;
    }
}

.police-badge {
    background: var(--red);
    color: #fff;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .08em;
    padding: 4px 10px;
    border-radius: 4px;
}

.cam-link {
    display: block;
    cursor: zoom-in;
}

.cam-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border);
    width: 100%;
    transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}

.cam-link:hover .cam-card {
    border-color: rgba(47, 107, 255, .5);
    box-shadow: 0 20px 45px rgba(0, 0, 0, .4);
}

.cam-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s var(--ease), filter .35s var(--ease);
}

.cam-link:hover .cam-card img {
    transform: scale(1.08);
    filter: brightness(.75);
}

.cam-zoom {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(1, 10, 25, .45);
    color: #fff;
    font-size: 1.6rem;
    opacity: 0;
    transform: scale(.7);
    transition: opacity .3s var(--ease), transform .3s var(--ease);
}

.cam-link:hover .cam-zoom {
    opacity: 1;
    transform: scale(1);
}

.cam-label {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    background: linear-gradient(180deg, rgba(0, 0, 0, .75), transparent);
    font-size: .8rem;
    font-weight: 600;
    display: none;
}

.cam-live {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: var(--red);
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .05em;
    padding: 3px 9px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 2;
}

.cam-live::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    animation: blink 1s infinite alternate;
}

.cam-time {
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: .72rem;
    font-family: monospace;
    background: rgba(0, 0, 0, .55);
    padding: 3px 8px;
    border-radius: 4px;
    z-index: 2;
}

.live-frame {
    border: 1px solid rgba(47, 107, 255, .35);
    border-radius: 18px;
    padding: 22px;
    background: rgba(16, 28, 56, .4);
}

/* ===== SERVICES ===== */
.service-card {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 26px 20px;
    height: 100%;
    transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease), background .35s var(--ease);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 26px 55px rgba(47, 107, 255, .12);
    border-color: rgba(47, 107, 255, .5);
    background: var(--panel-2);
}

.service-card h5 {
    margin: 10px 0;
    font-size: 1.5rem;
    color: var(--blue-light);
    font-weight: 700;
}

.service-card p {
    margin-bottom: 16px;
    color: var(--text-dim);
    font-size: .95rem;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--text-dim);
    font-size: 1rem;
}

.service-list li i {
    color: var(--blue-light);
    margin-top: 4px;
    min-width: 20px;
}

.section-copy {
    max-width: 720px;
}

.service-icon-wrap {
    overflow: hidden;
    border-radius: 10px;
    width: 100%;
    height: 250px;
    margin: 0 0 15px;
}

.service-icon-wrap img {
    width: 100%;
    height: 100%;
    /* border-radius: 12px; */
    /* background: var(--panel-2); */
    display: flex;
    align-items: center;
    justify-content: center;
    /* margin-bottom: 15px; */
    font-size: 1.4rem;
    color: var(--blue-light);
    /* border: 1px solid rgba(255, 255, 255, .06); */
    object-fit: cover;
    transition: .4s ease;
    border-radius: 10px;
}

.service-card:hover .service-icon-wrap img {
    transform: scale(1.05);
    /* box-shadow: 0 12px 26px var(--blue-glow); */
}

.services-cta {
    border: 1px dashed rgba(47, 107, 255, .35);
    border-radius: 16px;
    padding: 34px 20px;
    background: rgba(47, 107, 255, .04);
}

/* ===== WHY CHOOSE / FEATURE STRIP ===== */
.feature-strip {
    background: transparent;
}

.feature-item {
    text-align: center;
    padding: 33px 12px;
    border-right: 1px solid var(--border);
    font-size: 1.2rem;
    color: white;
    transition: transform .35s var(--ease);
    border-radius: 10px;
}

.feature-item:last-child {
    border-right: none;
}

.feature-item:hover {
    transform: translateY(-8px);
}

.feature-item .icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--blue-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-size: 1.4rem;
    transition: background .35s var(--ease), box-shadow .35s var(--ease), transform .35s var(--ease);
}

.feature-item:hover .icon {
    background: linear-gradient(135deg, var(--blue), var(--blue-light));
    box-shadow: 0 0 0 8px rgba(47, 107, 255, .12), 0 14px 30px var(--blue-glow);
    transform: scale(1.08) rotate(6deg);
}

.feature-item img {
    width: 44px;
    height: 44px;
    margin-bottom: 10px;
    filter: invert(1);
    transition: transform .35s var(--ease);
}

.feature-item:hover img {
    transform: scale(1.1);
}


.why-image-wrapper {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-around;
}

.why-img {
    width: 48%;
    overflow: hidden;
    border-radius: 10px;
}

.why-img img {
    width: 100%;
    transition: .4s ease;
}

.why-img:hover img {
    transform: scale(1.04);
}




/* ===== OFFER BANNER ===== */
.offer-banner {
    background: linear-gradient(120deg, #0d1a3a, #0a1330 60%, #0d1a3a);
    border: 1px solid rgba(47, 107, 255, .35);
    border-radius: 18px;
    padding: 34px;
    position: relative;
    overflow: hidden;
    transition: box-shadow .35s var(--ease), border-color .35s var(--ease);
}

.offer-banner:hover {
    box-shadow: 0 25px 60px rgba(47, 107, 255, .18);
    border-color: rgba(47, 107, 255, .6);
}

.offer-tag {
    background: var(--red);
    color: #fff;
    font-size: .7rem;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 4px;
    display: inline-block;
}

.gift-icon {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    background: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 10px 25px var(--blue-glow);
    animation: floatY 3.5s ease-in-out infinite;
}

/* ===== GEELONG / SERVICE AREA (Ken Burns) ===== */
.mapping-section {
    position: relative;
    overflow: hidden;
}

.mapping-kenburns {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    z-index: 0;
    animation: kenburns 14s ease-in-out infinite alternate;
}

.mapping-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, .53), rgba(0, 0, 0, .41));
    z-index: 0;
}

/* ===== PACKAGES ===== */
.price-card {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px 26px;
    height: 100%;
    position: relative;
    transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}

.price-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, .5);
    border-color: var(--blue-light);
}

.price-card.popular {
    background: linear-gradient(160deg, #12245a, #0c1730);
    border: 1px solid var(--blue);
    transform: scale(1.03);
    box-shadow: 0 20px 50px rgba(47, 107, 255, .25);
}

.price-card.popular:hover {
    transform: scale(1.03) translateY(-12px);
    box-shadow: 0 34px 80px rgba(47, 107, 255, .35);
}

.popular-tag {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--blue);
    color: #fff;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .06em;
    padding: 5px 16px;
    border-radius: 20px;
    animation: pulseTag 2.4s ease-in-out infinite;
}

@keyframes pulseTag {

    0%,
    100% {
        box-shadow: 0 0 0 0 var(--blue-glow);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(47, 107, 255, 0);
    }
}

.price-card ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.price-card ul li {
    padding: 7px 0;
    font-size: .9rem;
    color: var(--text-dim);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform .25s var(--ease);
}

.price-card:hover ul li {
    transform: translateX(3px);
}

.price-card ul li i {
    color: var(--blue-light);
}

.price-amt {
    font-size: 2.1rem;
    font-weight: 700;
}

/* ===== CONTACT ===== */
.contact-panel {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    transition: border-color .35s var(--ease), box-shadow .35s var(--ease);
}

.contact-panel:hover {
    border-color: rgba(47, 107, 255, .3);
    box-shadow: 0 25px 60px rgba(0, 0, 0, .35);
}

.form-control-custom {
    background: #0a1428;
    border: 1px solid var(--border);
    color: var(--text);
    padding: 12px 14px;
    border-radius: 8px;
    transition: border-color .25s var(--ease), box-shadow .25s var(--ease), transform .25s var(--ease);
}

.form-control-custom:focus {
    background: #0a1428;
    color: var(--text);
    border-color: var(--blue);
    box-shadow: 0 0 0 .2rem var(--blue-glow);
    transform: translateY(-2px);
}

.form-control-custom::placeholder {
    color: var(--text-dim);
    opacity: .6;
}

.contact-info-item {
    color: white;
    display: flex;
    gap: 14px;
    align-items: center;
    margin: 0 0 13px;
    padding: 8px;
    border-radius: 10px;
    transition: background .3s var(--ease), transform .3s var(--ease);
}

a.contact-info-item:hover {
    background: rgba(47, 107, 255, .08);
    transform: translateX(4px);
}

.contact-info-item i {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    background: var(--blue-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    transition: background .3s var(--ease), transform .3s var(--ease);
}

.contact-info-item:hover i {
    background: var(--blue);
    transform: scale(1.08) rotate(-6deg);
}

.contact-info-item p {
    color: white;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dim);
    transition: background .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease), color .3s var(--ease);
}

.social-icons a:hover {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
    transform: translateY(-4px);
}

/* ===== FAQ ===== */
.accordion {
    background: transparent;
}

.accordion-item {
    background: var(--panel);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 10px !important;
    overflow: hidden;
    transition: border-color .3s var(--ease), transform .3s var(--ease);
}

.accordion-item:hover {
    border-color: rgba(47, 107, 255, .3);
}

.accordion-button {
    background: transparent;
    color: var(--text);
    font-weight: 600;
    padding: 20px;
    border: none;
    box-shadow: none;
    transition: color .25s var(--ease);
}

.accordion-button:not(.collapsed) {
    background: var(--bg);
    color: white;
}

.accordion-button::after {
    filter: invert(100%) brightness(100);
    transition: transform .3s var(--ease);
}

.accordion-body {
    color: var(--text-dim);
    font-size: 1rem;
    padding: 21px 20px 22px;
    border-top: 1px solid rgba(255, 255, 255, .05);
}

footer {
    border-top: 1px solid var(--border);
    padding: 20px 0;
    /*font-size: .82rem;*/
    color: var(--text-dim);
    text-align: center;
}


.licences-footer {
    display: flex;
    align-items: center;
    gap: 24px;
}

.licence-img {
    display: flex;
    align-items: center;
    gap: 10px;
}

.licence-img img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}




/* ===== Button loading / success states ===== */


.btn-spinner {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255, 255, 255, .4);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin .7s linear infinite;
    vertical-align: middle;
    margin-right: 6px;
}

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

.btn-blue.is-loading {
    opacity: .85;
    cursor: progress;
}

.btn-blue.is-success {
    background: linear-gradient(135deg, #1f9d55, #17b56b);
}

/* ===== Fancybox tweaks ===== */
.fancybox__container {
    z-index: 99999;
    --fancybox-bg: rgba(1, 10, 25, .92);
}

/* ===== Reduced motion ===== */
@media (prefers-reduced-motion: reduce) {

    .kenburns,
    .mapping-kenburns,
    .ai-badge,
    .gift-icon,
    .popular-tag,
    .beacon,
    .cam-live::before {
        animation: none !important;
    }

    .img-hover,
    .service-card,
    .price-card,
    .feature-item,
    .btn-blue,
    .btn-outline-blue,
    .cam-card,
    .cam-card img {
        transition: none !important;
    }
}

/* Responsive */
@media(max-width:991px) {

    .navbar-toggler {
        background: var(--blue-light);
        color: white;
        padding: 5px 6px;
    }

    .navbar-toggler-icon {
        filter: invert(1) brightness(100);
    }

    .navbar-collapse {
        position: absolute;
        top: 80px;
        background: #040810;
        width: 100%;
        left: 0;
        padding: 20px;
        background: rgb(6 11 22 / 99%);
        backdrop-filter: blur(10px);
    }

    .navbar>.container {
        position: relative;
    }
}

@media(max-width:767px) {

    .font-display {
        font-size: 1.8rem;
    }

    .feature-item {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .feature-item:last-child {
        border-bottom: none;
    }

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

    html {
        font-size: 15px;
    }



}



@media(max-width:575px) {

    .navbar-brand img {
      width: 125px; 
    }
    
    .hero-swiper .swiper-slide {
    padding: 3rem 0 3rem;
}

.hero h1 {
    font-size: 1.8rem;
    margin: 10px 0 10px !important;
}

.btn-blue , .btn-outline-blue {font-size: .88rem;}

.hero-feature {
    gap: 5px;
    font-size: .75rem;
}

.feature-item .icon {
    width: 60px;
    height: 60px;
}

.feature-item img {
    width: 35px;
    height: auto;
}

.feature-item {
    font-size: .9rem;
    padding-bottom: 0;
}

.mapping-kenburns {
    background-position: bottom !important;
}

.font-display {
    font-size: 1.4rem;
}

.mb-5 {
    margin-bottom: 1.5rem !important;
}

.navbar-collapse {
    top: 65px;
}


    



}

























