html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}


:root {
    --black: #0a0a0a;
    --red: #d90429;
    --red-dark: #9b0320;
    --yellow: #f4c400;
    --gray: #1a1a1a;
    --light: #f5f5f5;
    --white: #ffffff;
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Barlow', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--light);
    color: var(--gray);
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    overflow-x: hidden;
}

    body::before {
        content: '';
        position: fixed;
        inset: 0;
        background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
        pointer-events: none;
        z-index: 9999;
        opacity: .35;
    }

h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    letter-spacing: .03em;
}

h2 {
    font-size: clamp(2.4rem, 5vw, 4rem);
}

h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
}

p {
    font-weight: 300;
    margin-bottom: 0;
}

.text-yellow {
    color: var(--yellow) !important;
}

.text-red {
    color: var(--red) !important;
}

.section-label {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--yellow);
}

.red-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--red), var(--yellow));
    border-radius: 2px;
    margin-bottom: 1.2rem;
}

.reveal,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: opacity .7s ease, transform .7s ease;
}

.reveal {
    transform: translateY(40px);
}

.reveal-left {
    transform: translateX(-50px);
}

.reveal-right {
    transform: translateX(50px);
}

    .reveal.visible,
    .reveal-left.visible,
    .reveal-right.visible {
        opacity: 1;
        transform: none;
    }

.delay-1 {
    transition-delay: .1s;
}

.delay-2 {
    transition-delay: .2s;
}

.delay-3 {
    transition-delay: .3s;
}

.delay-4 {
    transition-delay: .4s;
}

/* NAVBAR */
#mainNav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: .8rem 0;
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(14px);
    border-bottom: 2px solid var(--red);
    transition: all .4s;
}

    #mainNav.scrolled {
        padding: .45rem 0;
        box-shadow: 0 4px 30px rgba(217, 4, 41, .2);
    }

.navbar-brand img,
.footer-logo img {
    height: 52px;
}

.logo-fallback {
    display: none;
    align-items: center;
    gap: .5rem;
}

    .logo-fallback i {
        color: var(--yellow);
        font-size: 1.6rem;
    }

    .logo-fallback span {
        font-family: var(--font-display);
        font-size: 1.6rem;
        letter-spacing: .05em;
        color: var(--gray);
    }

    .logo-fallback .accent {
        color: var(--red);
    }

.nav-link {
    font-weight: 600;
    font-size: .88rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gray) !important;
    padding: .4rem .9rem !important;
    position: relative;
    transition: color .3s;
}

    .nav-link::after {
        content: '';
        position: absolute;
        left: .9rem;
        bottom: 0;
        width: 0;
        height: 2px;
        background: var(--yellow);
        transition: width .3s;
    }

    .nav-link:hover {
        color: var(--yellow) !important;
    }

        .nav-link:hover::after {
            width: calc(100% - 1.8rem);
        }

    .nav-link.active {
        color: var(--red) !important;
    }

        .nav-link.active::after {
            width: calc(100% - 1.8rem);
            background: var(--red);
        }

.navbar-toggler {
    border: 1.5px solid var(--red);
    padding: .3rem .6rem;
}

    .navbar-toggler:focus {
        box-shadow: none;
    }

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23d90429' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.btn-awko {
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: #fff;
    font-weight: 700;
    font-size: .82rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    border: none;
    padding: .7rem 1.5rem;
    border-radius: 3px;
    position: relative;
    overflow: hidden;
    transition: box-shadow .3s, transform .2s;
}

    .btn-awko::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, var(--yellow), var(--red));
        opacity: 0;
        transition: opacity .4s;
    }

    .btn-awko:hover {
        box-shadow: 0 0 22px rgba(217, 4, 41, .6);
        transform: translateY(-2px);
        color: #fff;
    }

        .btn-awko:hover::after {
            opacity: 1;
        }

    .btn-awko span {
        position: relative;
        z-index: 1;
    }

.btn-outline-awko {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, .4);
    color: #fff;
    border-radius: 3px;
    font-weight: 600;
    font-size: .85rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: .7rem 1.5rem;
    transition: border-color .3s, color .3s;
}

    .btn-outline-awko:hover {
        border-color: var(--yellow);
        color: var(--yellow);
    }

/* HERO */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 90px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

#hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(0, 0, 0, .8) 0%, rgba(0, 0, 0, .5) 55%, rgba(0, 0, 0, .2) 100%);
    z-index: 1;
}

#hero .container,
.scroll-indicator {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(244, 196, 0, .1);
    border: 1px solid var(--yellow);
    color: var(--yellow);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    padding: .3rem 1rem;
    border-radius: 2px;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(3.5rem, 9vw, 8rem);
    line-height: .95;
    color: #fff;
}

    .hero-title .highlight {
        color: var(--red);
        text-shadow: 0 0 40px rgba(217, 4, 41, .4);
    }

.hero-sub {
    font-size: clamp(.95rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, .85);
    max-width: 500px;
    margin: 1.5rem 0 2.5rem;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.hero-stat-val {
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: var(--yellow);
    line-height: 1;
}

.hero-stat-lbl {
    font-size: .75rem;
    letter-spacing: .1em;
    color: rgba(255, 255, 255, .65);
    text-transform: uppercase;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .4rem;
    color: #fff;
    font-size: .7rem;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.scroll-dot {
    width: 20px;
    height: 34px;
    border: 2px solid rgba(255, 255, 255, .8);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 5px;
}

    .scroll-dot::before {
        content: '';
        width: 4px;
        height: 8px;
        background: var(--red);
        border-radius: 2px;
        animation: scrollDot 1.8s ease-in-out infinite;
    }

@keyframes scrollDot {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    80% {
        transform: translateY(12px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 0;
    }
}

/* SECTIONS */
#about,
#services,
#products,
#testimonials,
#contact {
    padding: 120px 0;
}

#about,
#contact {
    background: #fff;
}

#services,
#products,
#testimonials {
    background: #f5f5f5;
}

/* ABOUT */
.about-img-block {
    position: relative;
}

.about-img-inner {
    background: #eee;
    border: 1px solid #ddd;
    border-radius: 4px;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    position: relative;
}

    .about-img-inner img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .about-img-inner::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--red), var(--yellow));
    }

.about-badge-fl {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--red);
    color: #fff;
    padding: 1.2rem 1.5rem;
    text-align: center;
    border: 3px solid var(--black);
    border-radius: 3px;
}

    .about-badge-fl span:first-child {
        display: block;
        font-family: var(--font-display);
        font-size: 2.6rem;
        line-height: 1;
        color: var(--yellow);
    }

    .about-badge-fl span:last-child {
        font-size: .7rem;
        letter-spacing: .1em;
        text-transform: uppercase;
    }

.feature-pill {
    background: #f0f0f0;
    border-left: 3px solid var(--red);
    padding: .8rem 1.2rem;
    border-radius: 0 4px 4px 0;
    margin-bottom: .8rem;
    display: flex;
    align-items: center;
    gap: .8rem;
    transition: border-color .3s, background .3s;
}

    .feature-pill:hover {
        border-color: var(--yellow);
        background: #e5e5e5;
    }

    .feature-pill i {
        color: var(--yellow);
        font-size: 1.2rem;
    }

.about-text-muted {
    color: #666;
}

.feature-pill small {
    color: #777;
}

/* SERVICES */
.service-card {
    background-color: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 6px;
    min-height: 300px;
    position: relative;
    overflow: hidden;
    transition: transform .4s, box-shadow .4s, border-color .4s;
}

    .service-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 50px rgba(217, 4, 41, .3);
        border-color: var(--red);
    }

.service-card-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.service-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,.3) 0%, rgba(0,0,0,.65) 50%, rgba(0,0,0,.92) 100%);
    transition: background .4s;
    z-index: 1;
}

.service-card:hover .service-card-overlay {
    background: linear-gradient(to bottom, rgba(217,4,41,.5) 0%, rgba(0,0,0,.75) 55%, rgba(0,0,0,.95) 100%);
}

.service-card-content {
    position: relative;
    z-index: 2;
    padding: 1.7rem 1.5rem;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.service-icon {
    width: 58px;
    height: 58px;
    background: rgba(255,255,255,.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 1rem;
    transition: background .4s, color .4s;
}

.service-card:hover .service-icon {
    background: var(--red);
    color: var(--yellow);
}

.service-card-content h3 {
    margin-bottom: .5rem;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,.5);
}

.service-card-content p {
    font-size: .85rem;
    color: rgba(255,255,255,.85);
    text-shadow: 0 1px 4px rgba(0,0,0,.5);
}

.service-num {
    position: absolute;
    top: 1rem;
    right: 1.2rem;
    font-family: var(--font-display);
    font-size: 3rem;
    color: rgba(255,255,255,.12);
    line-height: 1;
    z-index: 3;
}

.electric-glow {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff0033, transparent);
    box-shadow: 0 0 10px #ff0033, 0 0 5px #ff0033;
    margin: 40px 0;
    opacity: .8;
}

/* PRODUCTS */
#products {
    position: relative;
    overflow: hidden;
}

.product-panel {
    position: relative;
    height: 100%;
    background: linear-gradient(180deg, #181818 0%, #101010 100%);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 20px;
    overflow: hidden;
    transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease;
    box-shadow: 0 12px 30px rgba(0,0,0,.18);
}

    .product-panel::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 20px;
        padding: 1px;
        background: linear-gradient(135deg, rgba(217,4,41,.45), rgba(244,196,0,.28), rgba(255,255,255,.06));
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        pointer-events: none;
        opacity: .85;
        z-index: 3;
    }

    .product-panel:hover {
        transform: translateY(-10px);
        border-color: rgba(244,196,0,.35);
        box-shadow: 0 22px 50px rgba(0,0,0,.35), 0 0 35px rgba(217,4,41,.12), 0 0 20px rgba(244,196,0,.08);
    }

.product-panel-image-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
}

    .product-panel-image-wrap::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(to bottom, rgba(0,0,0,.15), rgba(0,0,0,.45));
        z-index: 1;
    }

.product-panel-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}

.product-panel:hover .product-panel-img {
    transform: scale(1.08);
}

.product-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    height: 32px;
    padding: 0 .9rem;
    border-radius: 999px;
    background: rgba(217,4,41,.9);
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    box-shadow: 0 8px 20px rgba(217,4,41,.25);
}

.product-panel-top {
    padding: 0 1.4rem;
}

.product-icon-wrap {
    width: 58px;
    height: 58px;
    margin-top: -29px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(217,4,41,.85), rgba(244,196,0,.85));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,.28);
    position: relative;
    z-index: 2;
}

.product-panel-body {
    position: relative;
    z-index: 2;
    padding: 1.5rem 1.4rem 1.6rem;
}

    .product-panel-body h3 {
        margin-bottom: .7rem;
        color: #fff;
        font-weight: 700;
    }

    .product-panel-body p {
        color: rgba(255,255,255,.72);
        font-size: .92rem;
        line-height: 1.7;
    }

.product-panel-featured {
    background: linear-gradient(180deg, rgba(217,4,41,.12) 0%, rgba(16,16,16,1) 55%), linear-gradient(180deg, #1b1b1b 0%, #101010 100%);
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    margin-top: 1.1rem;
    color: var(--yellow);
    font-weight: 700;
    text-decoration: none;
    transition: color .3s ease, transform .3s ease;
}

    .product-link:hover {
        color: #fff;
        transform: translateX(4px);
    }

/* WHY US */
#why {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: #080808;
    isolation: isolate;
}

.why-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

#why::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(8,8,8,.88) 0%, rgba(20,8,8,.82) 35%, rgba(120,0,0,.34) 100%);
    z-index: 1;
}

#why::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255,196,0,.18), transparent 28%), radial-gradient(circle at bottom left, rgba(180,0,0,.18), transparent 35%);
    z-index: 1;
    pointer-events: none;
}

#why .container {
    position: relative;
    z-index: 2;
}

#why h2 {
    color: #fff;
}

.why-card {
    position: relative;
    height: 100%;
    text-align: center;
    padding: 2rem 1.2rem;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(20,20,20,.78), rgba(10,10,10,.70));
    border: 1px solid rgba(255,215,90,.18);
    box-shadow: 0 10px 30px rgba(0,0,0,.30), inset 0 1px 0 rgba(255,255,255,.04);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

    .why-card::before {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 22px;
        padding: 1px;
        background: linear-gradient(135deg, rgba(255,210,80,.45), rgba(200,16,46,.22), rgba(255,210,80,.10));
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        pointer-events: none;
    }

    .why-card:hover {
        transform: translateY(-8px);
        border-color: rgba(255,215,90,.35);
        box-shadow: 0 18px 40px rgba(0,0,0,.40), 0 0 24px rgba(200,16,46,.14);
    }

.why-icon-wrap {
    width: 82px;
    height: 82px;
    margin: 0 auto 1.2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #ffd24d;
    border: 2px solid rgba(255,210,80,.85);
    background: radial-gradient(circle at 30% 30%, rgba(255,217,102,.18), rgba(120,0,0,.10));
    box-shadow: inset 0 0 12px rgba(255,215,90,.08), 0 0 18px rgba(255,196,0,.12);
    transition: all .35s ease;
}

.why-card:hover .why-icon-wrap {
    background: linear-gradient(135deg, #ffd24d, #c8102e);
    color: #111;
    border-color: #ffd24d;
    transform: scale(1.08) rotate(3deg);
    box-shadow: 0 0 24px rgba(255,196,0,.28);
}

.why-card h4 {
    margin-bottom: .55rem;
    font-size: 1.1rem;
    color: #fff;
    font-weight: 700;
}

.why-card p {
    font-size: .92rem;
    line-height: 1.7;
    color: rgba(255,255,255,.84);
}

/* COUNTER */
#counter {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--red-dark), var(--red));
    position: relative;
    overflow: hidden;
}

    #counter::before {
        content: '?';
        position: absolute;
        left: -4%;
        top: 50%;
        transform: translateY(-50%);
        font-size: 20rem;
        opacity: .04;
        line-height: 1;
    }

.counter-val {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 5.5rem);
    color: var(--yellow);
    line-height: 1;
}

.counter-lbl {
    font-size: .85rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: rgba(255,255,255,.7);
}

/* TESTIMONIALS */
.testi-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    padding: 2rem;
    height: 100%;
    transition: border-color .3s;
}

    .testi-card:hover {
        border-color: var(--red);
    }

.testi-quote {
    font-size: 3rem;
    color: var(--red);
    font-family: Georgia, serif;
    line-height: 1;
    margin-bottom: .5rem;
}

.stars {
    color: var(--yellow);
    font-size: .85rem;
    margin-bottom: .8rem;
}

.testi-text {
    font-size: .92rem;
    color: #555;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testi-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--yellow);
    flex-shrink: 0;
}

.testi-name {
    font-weight: 700;
    font-size: .95rem;
}

.testi-loc {
    font-size: .75rem;
    color: #999;
}

/* CONTACT */
.contact-form .form-control,
.contact-form .form-select {
    background: #f5f5f5;
    border: 1px solid #ddd;
    color: #111;
    border-radius: 4px;
    padding: .9rem 1.1rem;
    transition: border-color .3s, box-shadow .3s, background .3s;
}

    .contact-form .form-control:focus,
    .contact-form .form-select:focus {
        background: #fff;
        border-color: var(--red);
        box-shadow: 0 0 0 3px rgba(217,4,41,.15);
        color: #111;
    }

    .contact-form .form-control::placeholder {
        color: #999;
    }

.contact-form textarea {
    resize: vertical;
    min-height: 140px;
}

.contact-info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-info-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: rgba(217,4,41,.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    font-size: 1.1rem;
    border: 1px solid rgba(217,4,41,.2);
}

.contact-info-lbl {
    font-size: .72rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #999;
}

.contact-info-val {
    font-size: .95rem;
    color: #111;
    font-weight: 500;
}

.map-frame-wrapper {
    position: relative;
    margin-top: 2rem;
    border-radius: 8px;
    padding: 2px;
    box-shadow: 0 0 12px rgba(255, 0, 51, .4), 0 0 4px rgba(255, 0, 51, .2);
}

    .map-frame-wrapper::before {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 8px;
        background: linear-gradient(135deg, transparent, #ff0033 40%, #ff0033 60%, transparent);
        z-index: 0;
    }

    .map-frame-wrapper iframe {
        position: relative;
        display: block;
        width: calc(100% - 4px);
        height: 300px;
        border: 0;
        border-radius: 6px;
        z-index: 1;
        margin: 2px;
    }

.map-caption {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    gap: 8px;
    margin-top: 1rem;
    font-size: .95rem;
    font-weight: 500;
    letter-spacing: .5px;
    color: #666;
    text-transform: uppercase;
}

    .map-caption .map-icon {
        color: #ff0033;
        font-size: 1.1rem;
        filter: drop-shadow(0 0 4px #ff0033);
    }

.map-spinner {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: #111;
    z-index: 2;
}

.map-spinner-ring {
    width: 48px;
    height: 48px;
    border: 4px solid rgba(255, 0, 51, .2);
    border-top-color: #ff0033;
    border-radius: 50%;
    animation: mapSpin 0.9s linear infinite;
    box-shadow: 0 0 12px rgba(255, 0, 51, .5);
}

@keyframes mapSpin {
    to {
        transform: rotate(360deg);
    }
}

/* FOOTER */
footer {
    background: #f5f5f5;
    border-top: 3px solid var(--red);
    padding: 70px 0 30px;
}

.footer-tagline,
.footer-copy,
.footer-contact {
    color: #666;
}

.footer-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    letter-spacing: .1em;
    color: var(--yellow);
    margin-bottom: 1.2rem;
}

.footer-link {
    display: block;
    color: #555;
    text-decoration: none;
    font-size: .88rem;
    padding: .25rem 0;
    transition: color .3s, padding-left .3s;
}

    .footer-link:hover {
        color: var(--red);
        padding-left: 6px;
    }

.footer-divider {
    border-color: #ddd;
    margin: 2.5rem 0 1.5rem;
}

.footer-copy {
    font-size: .78rem;
}

.footer-contact {
    font-size: .85rem;
    margin-bottom: .5rem;
}

    .footer-contact i {
        color: var(--red);
    }

.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #1a1a1a;
    color: #888;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all .3s ease;
    border: 1px solid #333;
}

    .social-btn.facebook:hover {
        color: #fff;
        background-color: #1877f2;
        border-color: #1877f2;
        box-shadow: 0 0 12px rgba(24,119,242,.5);
    }

    .social-btn.instagram:hover {
        color: #fff;
        background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
        border-color: #dc2743;
        box-shadow: 0 0 12px rgba(220,39,67,.5);
    }

    .social-btn.whatsapp:hover {
        color: #fff;
        background-color: #25d366;
        border-color: #25d366;
        box-shadow: 0 0 12px rgba(37,211,102,.5);
    }

    .social-btn.tiktok:hover {
        color: #fff;
        background-color: #000;
        border-color: #00f2fe;
        box-shadow: -2px -2px 8px rgba(0,242,254,.6), 2px 2px 8px rgba(254,44,85,.6);
    }
/* BACK TO TOP */
#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--red);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: opacity .4s, transform .4s, box-shadow .3s, background .3s;
    z-index: 9000;
    box-shadow: 0 4px 20px rgba(217,4,41,.4);
    overflow: visible;
}

    #backToTop.show {
        opacity: 1;
        pointer-events: all;
        transform: translateY(0);
    }

    #backToTop:hover {
        background: #ff0a2a;
        box-shadow: 0 0 12px rgba(217,4,41,.8), 0 0 30px rgba(217,4,41,.5), 0 0 60px rgba(217,4,41,.3);
    }

    #backToTop.neon-burst::after {
        content: '';
        position: absolute;
        inset: -10px;
        border-radius: 8px;
        background: transparent;
        border: 2px solid var(--red);
        animation: neonPulse .6s ease-out forwards;
        pointer-events: none;
    }

@keyframes neonPulse {
    0% {
        inset: -2px;
        opacity: 1;
    }

    100% {
        inset: -22px;
        opacity: 0;
    }
}

@media (max-width: 768px) {
    #backToTop {
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 768px) {
    .about-badge-fl {
        position: static;
        margin-top: 1.5rem;
        display: inline-block;
    }

    #backToTop {
        bottom: 20px;
        right: 20px;
    }

    #why {
        padding: 80px 0;
    }

    .why-card {
        padding: 1.5rem 1rem;
    }

        .why-card p {
            font-size: .88rem;
        }
}

}

@media (max-width: 575px) {
    .product-panel-image-wrap {
        height: 190px;
    }

    .product-panel-body {
        padding: 1.3rem 1.2rem 1.4rem;
    }

        .product-panel-body h3 {
            font-size: 1.1rem;
        }

        .product-panel-body p {
            font-size: .88rem;
        }
}

