:root {
    --red: #E8192C;
    --red-dark: #B8121F;
    --red-light: #FF3347;
    --black: #0A0A0A;
    --dark: #141414;
    --dark-2: #1C1C1C;
    --dark-3: #242424;
    --mid: #3A3A3A;
    --muted: #888888;
    --border: rgba(255, 255, 255, 0.08);
    --white: #FFFFFF;
    --off-white: #F2F0EC;
    --font-display: 'Barlow Condensed', sans-serif;
    --font-body: 'Barlow', sans-serif;
    --radius: 4px;
    --radius-lg: 8px;
}

::selection {
    color: var(--white);
    background: var(--red-dark);
}

::-webkit-scrollbar {
    z-index: 999;
    position: absolute;
    background: transparent;
    width: 5px;
}

::-webkit-scrollbar-thumb {
    background: var(--red-dark);
    border-radius: 50px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--black) !important;
    color: var(--white) !important;
    line-height: 1.6;
    overflow-x: hidden;
}

p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 1rem;
    line-height: 1.75;
    font-family: var(--font-body);
}


ul {
    padding-left: 0 !important;
}

ul.list {
    list-style: none;
}

ul.list, ol.list {
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

ul.list li,
ol.list li {
    font-size: 16px;
    line-height: 1.6;
    color: var(--off-white);
    font-family: var(--font-body);
    color: rgba(255, 255, 255, 0.65);
}

ul.list li {
    padding-left: 18px;
    position: relative;
}

ul.list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--red);
}


/* ========= UTILITY ========= */

.sec-head {
    margin-bottom: 2rem;
}

h1.sec-head  {
    font-family: var(--font-display);
    font-size: clamp(44px, 7vw, 80px);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.01em;
    text-transform: uppercase;
}

.sec-head h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 44px) !important;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    line-height: 1.05;
    margin-bottom: 0;
}

.sec-head span {
    color: var(--red);
    font-style: normal;
}

.tag {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--red);
    border: 1px solid var(--red);
    padding: 4px 12px;
    border-radius: 2px;
    margin-bottom: 1rem;
    width: fit-content;
}

.btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    font-family: var(--font-display) !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    padding: 14px 32px !important;
    border-radius: var(--radius) !important;
    cursor: pointer !important;
    border: 1.5px solid !important;
    transition: 0.3s ease !important;
    width: fit-content;
}

.btn-cta {
    padding: 10px 22px !important;
    font-size: 12px !important;
}

.btn-primary {
    background: var(--red) !important;
    color: var(--white) !important;
    border-color: var(--red) !important;
}

.btn-primary:hover {
    background: var(--red-light) !important;
    border-color: var(--red-light) !important;
}

.btn-outline {
    background: transparent !important;
    color: var(--white) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
}

.btn-outline:hover {
    border-color: var(--white) !important;
}

.btn i {
    font-size: inherit;
    color: inherit;
    transition: 0.3s ease;
}

.btn:hover i {
    transform: translateX(5px);
}

.btn-text {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color:var(--red);
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    line-height: 99%;
    width: fit-content;
}

.btn-text i {
    font-size: 11px;
    transition: 0.3s ease;
} 

.btn-text:hover i {
    transform: translateX(5px);
}

.btn-white {
    background: var(--white) !important;
    color: var(--red) !important;
}

.btn-white:hover {
    background: var(--off-white) !important;
}

.section {
    padding: 80px 0;
}

.black-bg {
    background: var(--black) !important;
}

.dark-bg {
    background: var(--dark) !important;
}

.red-bg {
    background: var(--red-dark) !important;
}

.top-border {
    border-top: 1px solid var(--border) !important;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.sm-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.icon {
    width: 36px;
    height: 36px;
    background: rgba(232, 25, 44, 0.08);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    flex-shrink: 0;
}

.icon i {
    color: var(--red);
    font-size: 18px;
}

.icon-lg {
    width: 48px;
    height: 48px;
    background: rgba(232, 25, 44, 0.1);
    border: 1px solid rgba(232, 25, 44, 0.2);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.icon-lg i {
    color: var(--red);
    font-size: 22px;
}




/* ========= TOP BAR ========= */
.topbar {
    background: var(--red);
    padding: 8px 0;
    text-align: center;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.topbar a {
    color: var(--white);
    text-decoration: none;
}



/* ========= NAVBAR ========= */
.navbar {
    position: relative !important;
    top: 0;
    z-index: 999;
    width: 100%;
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 20px 0px !important;
    transition: 0.5s ease;
    display: flex;
    align-items: center !important;
}

/* Navbar when scrolled */
.navbar.scrolled {
    position: fixed !important;
    padding: 12px 0px !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: block;
    text-decoration: none;
    width: 160px;
}

.nav-logo img{
    width: 100%;
    height: auto;
}

.navbar.scrolled .nav-logo img {
    width: 135px !important;
}

.nav-links {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    height: fit-content;
}

.nav-links a.nav-link {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    line-height: 100%;
    text-decoration: none;
    color: var(--off-white);
    letter-spacing: 0.02em;
    transition: 0.3s ease;
    padding: 8px 10px;
    border-radius: var(--radius);
}

.nav-links a.nav-link:hover,
.nav-links a.active {
    color: var(--off-white);
    background-color: var(--red);
}


/* Dropdown */
.dropdown-li {
    position: relative;
}

.dropdown-li > a.nav-link {
    display: flex;
    flex-direction: row;
    gap: 6px;
    align-items: center;
    border-radius: var(--radius);
}

.dropdown-li.open > a.nav-link {
    color: var(--off-white);
    background-color: var(--red);
}

/* Icon rotation */
a.nav-link .dropdown {
    transition: 0.3s ease;
    flex-shrink: 0;
    font-size: 12px;
}

.dropdown-li.open .dropdown {
    transform: rotate(180deg) translateY(-1px);
}

/* Dropdown wrapper */
.dropdown-li .dropdown-wrapper {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(55px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    background-color: var(--dark-2);
    border-radius: var(--radius-lg);
    padding: 20px 15px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: 0.4s ease;
    z-index: 999;
    border: 2px solid var(--border);
}

.dropdown-li.open .dropdown-wrapper {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(15px);
}

/* Sub menu */
ul.sub-menu {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding-left: 0 !important;
    margin-bottom: 0 !important;
}

/* Dropdown links */
.dropdown-grid a.nav-link {
    font-weight: 500;
    font-size: 15px;
    color: var(--white) !important;
    padding: 12px 20px 12px 15px;
    border-radius: var(--radius);
    min-width: max-content;
}





/* ========= Home ========= */
/* ========= HERO SWIPER ========= */
.hero-swiper-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: var(--dark);
}

.hero-swiper {
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 100% !important;
    height: unset !important;
    overflow: hidden;
}

/* Slide backgrounds */
.hero-slide-img {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 50%;
    overflow: hidden;
    z-index: 3;
}

.hero-slide-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(10,10,10,0.88) 0%, rgba(10,10,10,0.55) 55%, rgba(10,10,10,0.3) 100%);
    z-index: 4;
}

.hero-slide-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    background-position: center;
    transition: 3s ease;
    transform: scale(1.2);
}

.swiper-slide-active .hero-slide-img img {
    transform: scale(1);
}

.hero-slide-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(10,10,10,0.88) 0%, rgba(10,10,10,0.55) 55%, rgba(10,10,10,0.3) 100%);
    z-index: 1;
}

/* Grid texture overlay */
.hero-slide-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(90deg, rgba(255,255,255,0.025) 0, rgba(255,255,255,0.025) 1px, transparent 1px, transparent 80px),
        repeating-linear-gradient(0deg, rgba(255,255,255,0.025) 0, rgba(255,255,255,0.025) 1px, transparent 1px, transparent 80px);
    z-index: 2;
}

/* Red accent glow */
.hero-slide-bg::before {
    content: "";
    position: absolute;
    left: -80px;
    bottom: -80px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232,25,44,0.18) 0%, transparent 70%);
    z-index: 2;
    pointer-events: none;
}

.hero-slide-content {
    position: relative;
    padding: 45px 0;
    z-index: 10;
    width: 100%;
    min-height: 100%;
    display: flex;
    align-items: center;
}

.hero-slide-content .container {
    min-height: 100%;
}

/* Slide text animations */
.slide-tag,
.slide-h1,
.slide-p,
.slide-cta {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.swiper-slide-active .slide-tag  { opacity: 1; transform: translateY(0); transition-delay: 0.1s; }
.swiper-slide-active .slide-h1   { opacity: 1; transform: translateY(0); transition-delay: 0.25s; }
.swiper-slide-active .slide-p    { opacity: 1; transform: translateY(0); transition-delay: 0.4s; }
.swiper-slide-active .slide-cta  { opacity: 1; transform: translateY(0); transition-delay: 0.55s; }

.slide-h1 {
    font-family: var(--font-display);
    font-size: clamp(44px, 7vw, 84px);
    font-weight: 800;
    line-height: 0.93;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 24px;
}

.slide-h1 span {
    color: var(--red);
}

.slide-p {
    font-size: 17px;
    font-weight: 300;
    color: rgba(255,255,255,0.72);
    margin-bottom: 36px;
    max-width: 520px;
    line-height: 1.7;
}

/* Hero stats bar */
.hero-stats-bar {
    position: relative;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 20;
    display: flex;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.hero-stat-item {
    flex: 1;
    padding: 22px 32px;
    border-right: 1px solid rgba(255,255,255,0.08);
    background: rgba(10,10,10,0.7);
    backdrop-filter: blur(10px);
}

.hero-stat-item:last-child {
    border-right: none;
}

.hero-stat-num {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 800;
    color: var(--red);
    line-height: 1;
}

.hero-stat-lbl {
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 5px;
}

/* Hero swiper pagination & nav */
.hero-swiper .swiper-pagination {
    bottom: 90px !important;
    left: unset !important;
    right: 48px !important;
    width: auto !important;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.hero-swiper .swiper-pagination-bullet {
    width: 3px;
    height: 24px;
    border-radius: 2px;
    background: rgba(255,255,255,0.25);
    opacity: 1;
    margin: 0 !important;
    transition: 0.3s;
}

.hero-swiper .swiper-pagination-bullet-active {
    background: var(--red);
    height: 40px;
}

.hero-slide-number {
    position: absolute;
    right: 48px;
    bottom: 24px;
    z-index: 20;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--muted);
    text-transform: uppercase;
}


/* ========= MARQUEE STRIP ========= */
.marquee-section {
    background: var(--red);
    padding: 14px 0;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    gap: 0;
    white-space: nowrap;
    animation: marquee 28s linear infinite;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 40px;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9);
    flex-shrink: 0;
}

.marquee-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    flex-shrink: 0;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ========= ABOUT / INTRO SECTION ========= */
.about-num {
    font-family: var(--font-display);
    font-size: 80px;
    font-weight: 800;
    color: rgba(232,25,44,0.08);
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: -20px;
}

/* ========= STATS ROW ========= */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.stat-card {
    padding: 36px 32px;
    border-right: 1px solid var(--border);
    background: var(--dark-2);
    transition: background 0.2s;
}

.stat-card:last-child {
    border-right: none;
}

.stat-card:hover {
    background: var(--dark-3);
}

.stat-card-num {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
    color: var(--red);
    margin-bottom: 8px;
}

.stat-card-lbl {
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    line-height: 1.5;
}

/* ========= INDUSTRIES STRIP ========= */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.industry-card {
    background: var(--dark-2);
    padding: 32px 28px;
    transition: background 0.2s;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.industry-card:hover {
    background: var(--dark-3);
}

.industry-card h4 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0;
}

.industry-card p {
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    line-height: 1.6;
    margin-bottom: 0;
}

/* ========= TESTIMONIALS ========= */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
    background: var(--dark-2);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: 0.3s ease;
    height: 100% !important;
}

.testimonial-card:hover {
    background: var(--dark-3);
    border-color: rgba(232,25,44,0.35);
}

.testimonial-card .inner {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.testimonial-stars {
    display: flex;
    gap: 3px;
}

.testimonial-stars i {
    color: var(--red);
    font-size: 14px;
}

.testimonial-body {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    line-height: 1.75;
    margin-bottom: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(232,25,44,0.15);
    border: 1px solid rgba(232,25,44,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--red);
    flex-shrink: 0;
}

.testimonial-author .det {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.testimonial-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
}

.testimonial-company {
    font-size: 12px;
    color: var(--muted);
}

/* ========= PARTNERS / CLIENTS ========= */
.clients-strip {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.client-logo {
    flex: 1;
    border-right: 1px solid var(--border);
    padding: 28px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-2);
    transition: background 0.2s;
    height: 100%;
    width: 100%;
}

.client-logo:last-child {
    border-right: none;
}

.client-logo:hover {
    background: var(--dark-3);
}

img.client-logo-text {
    width: auto;
    height: 41px;
    object-fit: cover;
    background-position: center;
}

.client-logo-text {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.25);
}




/* ===== BANNER ===== */
.banner {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--dark);
}

/* Gradient overlay: solid dark on left → transparent on right */
.banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10, 10, 10, 0.97) 0%, rgba(10, 10, 10, 0.92) 35%, rgba(10, 10, 10, 0.65) 60%, rgba(10, 10, 10, 0.20) 100%);
    z-index: 1;
}

/* Subtle red tint pulse on far right */
.banner-accent {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    background: linear-gradient(90deg, rgba(232, 25, 44, 0.06) 0%, transparent 100%);
    z-index: 2;
    pointer-events: none;
}

/* Grid texture */
.banner-grid {
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(90deg, rgba(255,255,255,0.018) 0, rgba(255,255,255,0.018) 1px, transparent 1px, transparent 80px),
        repeating-linear-gradient(0deg,  rgba(255,255,255,0.018) 0, rgba(255,255,255,0.018) 1px, transparent 1px, transparent 80px);
    z-index: 3;
}

/* Content positioned on the left half */
.banner-content {
    position: relative;
    z-index: 10;
    padding: 60px 0;
    max-width: 52%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.banner-content .breadcrumb {
    margin-bottom: 0px !important;
}

.banner-content h1 {
    font-family: var(--font-display);
    font-size: clamp(48px, 6vw, 76px);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 0;
}

.banner-content h1 span {
    color: var(--red);
}

.banner-subline {
    font-size: 18px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.7;
    margin-bottom: 0;
}




/* ========= SERVICES HERO ========= */
.hero {
    position: relative;
    /* min-height: 90vh; */
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--dark);
    padding: 4rem 0;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(232, 25, 44, 0.12) 0%, transparent 50%),
                repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.02) 0, rgba(255, 255, 255, 0.02) 1px, transparent 1px, transparent 80px),
                repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.02) 0, rgba(255, 255, 255, 0.02) 1px, transparent 1px, transparent 80px);
}

.hero-accent {
    position: absolute;
    right: -60px;
    top: -60px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 25, 44, 0.14) 0%, transparent 70%);
    pointer-events: none;
}

.hero .container {
    z-index: 3;
    display: block;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}

.breadcrumb {
    display: flex !important;
    align-items: center;
    gap: 8px;
    width: fit-content;
    font-size: 16px !important;
    color: var(--muted);
    background: none;
    font-weight: 500;
    width: fit-content;
    margin-bottom: 1rem;
}

.breadcrumb a {
    color: var(--muted);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--white);
}

.breadcrumb a.active {
    color: var(--red);
}

.breadcrumb span {
    color: var(--muted);
}

.sec-head h1 {
    font-family: var(--font-display);
    font-size: clamp(44px, 7vw, 80px);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero h1 span {
    color: var(--red);
    font-style: normal;
}

.hero p {
    font-size: 17px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-stats {
    position: absolute;
    right: 0;
    bottom: 0;
    display: flex;
    gap: 0;
    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
}

.stat-box {
    padding: 28px 40px;
    border-right: 1px solid var(--border);
    text-align: center;
}

.stat-box .num {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 800;
    color: var(--red);
    line-height: 1;
}

.stat-box .lbl {
    font-size: 12px;
    color: var(--muted);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-top: 6px;
}

/* ========= INTRO SECTION ========= */
.img-stack {
    width: 100%;
    position: relative;
    height: 420px;
}

.img-frame {
    position: absolute;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--dark-2);
    border: 1px solid var(--border);
}

.img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-frame.main {
    width: 75%;
    height: 72%;
    bottom: 0;
    right: 0;
    background: linear-gradient(135deg, var(--dark-2) 0%, #2a1a1c 100%);
}

.img-frame.accent {
    width: 52%;
    height: 50%;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, #1a1c2a 0%, var(--dark-2) 100%);
    border: 2px solid var(--red);
}

.img-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    color: rgba(255, 255, 255, 0.15);
    font-family: var(--font-display);
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.img-icon {
    width: 40px;
    height: 40px;
    opacity: 0.2;
}

.badge-float {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--red);
    color: #fff;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 2px;
    white-space: nowrap;
    z-index: 5;
}

/* ========= SERVICES GRID ========= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.service-card {
    background: var(--dark-2);
    padding: 40px 36px;
    transition: background 0.25s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    columns: inherit;
}

.cta-service-card {
    background: rgba(232,25,44,0.06);
    border: 1px solid rgba(232,25,44,0.2);
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:flex-start;
}

.service-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--red);
    transform: scaleY(0);
    transition: transform 0.25s ease;
    transform-origin: bottom;
}

.service-card:hover {
    background: var(--dark-3);
}

.cta-service-card:hover {
    background: rgba(232,25,44,0.08);
}

.service-card:hover::before {
    transform: scaleY(1);
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 12px;
    color: var(--white);
}

.service-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.65;
    margin-bottom: 20px;
}

.service-card ul {
    list-style: none;
    margin-bottom: 24px;
}

.service-card ul li {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    padding: 6px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.service-card ul li::before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--red);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 6px;
}

.service-num {
    position: absolute;
    top: 24px;
    right: 28px;
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.04);
    line-height: 1;
}

.cta-service-num {
    color:rgba(232,25,44,0.15);
}



/* ========= project GRID ========= */
.project-card {
    background: var(--dark-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color 0.2s, transform 0.2s;
}

.project-card:hover {
    border-color: rgba(232, 25, 44, 0.4);
    transform: translateY(-3px);
}

.project-card-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    background: var(--dark-3);
}

.project-card-body {
    padding: 20px 20px 24px;
}

.project-card-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 8px;
}

.project-card h4 {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 8px;
}

.project-card p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.55;
}



/* ========= PROCESS STRIP ========= */
.process-section {
    padding: 80px 0;
    background: var(--black);
    border-top: 1px solid var(--border);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.process-step {
    padding: 36px 28px;
    background: var(--dark-2);
    border-right: 1px solid var(--border);
    position: relative;
    overflow: visible !important;
    display: flex;
    flex-direction: column;
}

.process-step:last-child {
    border-right: none;
}

.step-num {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--red);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.process-step h4 {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 10px;
}

.process-step p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.6;
    margin-bottom: 0;
}

.step-arrow {
    position: absolute;
    right: -14px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    background: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    flex-shrink: 0;
}

.step-arrow i {
    color: #fff;
    font-size: 12px;
}



/* ========= WHY US ========= */
.why-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.why-feature {
    background: var(--dark-2);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 20px;
    transition: border-color 0.2s;
}

.why-feature:hover {
    border-color: rgba(232, 25, 44, 0.5);
}

.why-feature h4 {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 6px;
}

.why-feature p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.55;
    margin-bottom: 0;
}




/* ========= OTHER SERVICES ========= */
.other-card {
    background: var(--dark-2);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    text-decoration: none;
    color: var(--white);
    display: block;
    transition: border-color 0.2s, transform 0.2s;
}

.other-card:hover {
    border-color: rgba(232, 25, 44, 0.5);
    transform: translateY(-3px);
}

.other-card-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 10px;
}

.other-card h4 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 8px;
}

.other-card p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.5;
    margin-bottom: 16px;
}



/* ========= Scanning process steps ========= */
.scan-process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.scan-step {
    background: var(--dark-2);
    padding: 40px 36px;
    position: relative;
    transition: background 0.25s ease;
}

.scan-step:hover {
    background: var(--dark-3);
}

.scan-step-num {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 16px;
}

.scan-step-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: var(--radius);
    margin-bottom: 20px;
    background: var(--dark-3);
    display: block;
}

.scan-step h4 {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 10px;
}

.scan-step p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.65;
}



/* ========= Gallery strip ========= */
.scan-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.scan-gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    border: 3px solid var(--border);
    aspect-ratio: 4 / 3;
    background: var(--dark-2);
    transition: 0.3s ease;
    position: relative;
}

.scan-gallery-item:hover {
    border-color: rgba(232, 25, 44, 0.75);
}

.scan-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: var(--radius);
    transition: transform 0.4s ease;
}

.scan-gallery-item:hover img {
    transform: scale(1.05);
}

.scan-label {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 14px;
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--white);
    background: linear-gradient(to top, rgba(10, 10, 10, 0.85), rgba(10, 10, 10, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.scan-gallery-item:hover .scan-label {
    opacity: 1;
}



/* ========= FAQ ========= */
.accordion {
    display: flex !important;
    flex-direction: column !important;
    gap: 0px;
}

.accordion-item {
    color: #111718 !important;
    background-color: transparent !important;
    border: none !important;
    overflow: hidden !important;
    border-bottom: 2px solid #F3F4F6 !important;
    padding: 0 !important;
}

.accordion-item:last-child {
    border-bottom: none !important;
}

.accordion-button {
    background-color: transparent !important;
    padding: 25px 0px !important;
    color: var(--off-white) !important;
    font-size: 20px !important;
    font-weight: 600 !important;
    line-height: 130% !important;
    text-align: left;
    border: none !important;
    border-radius: 0px !important;
    transition: 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.accordion-button:focus {
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    color: var(--red) !important;
    box-shadow: none !important;
}

.accordion-button::after {
    display: none !important;
}

.accordion h4 {
    display: flex;
    align-items: center;
    gap: 12px;
}

.accordion-button i {
    font-size: 20px;
    color: var(--white);
    transition: 0.3s ease;
}

.accordion-button:not(.collapsed) i {
    transform: rotate(180deg);
    color: var(--red);
}

.accordion-body {
    font-size: 16px;
    color: var(--white);
    line-height: 1.75;
    padding: 0px 25px 25px 2px !important;
    font-family: var(--font-body);
}

.accordion-body a {
    color: var(--red);
}

.accordion-body p:last-child {
    margin-bottom: 0px;
}




/* ========= TABS ========= */

/* Tab navigation */
.tech-tabs {
    display: flex;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin: 36px 0 0;
}

.tech-tab {
    flex: 1;
    padding: 14px 20px;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    cursor: pointer;
    border: none;
    border-right: 1px solid var(--border);
    background: transparent;
    transition: color 0.2s, background 0.2s;
    font-family: var(--font-body);
}

.tech-tab:last-child {
    border-right: none;
}

.tech-tab:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.05);
}

.tech-tab.active {
    color: var(--white);
    background: var(--red);
    border-right-color: var(--red);
}

/* Panel */
.tech-panel {
    display: none;
    gap: 48px;
    margin-top: 2px;
    padding: 40px 0 0;
    flex-wrap: wrap;
}

.tech-panel.active {
    display: flex;
}

/* Panel image */
.tech-panel-img {
    flex: 0 0 400px;
    max-width: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    align-self: flex-start;
}

.tech-panel-img img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

/* Panel body */
.tech-panel-body {
    flex: 1;
    min-width: 280px;
    font-family: var(--font-body);
    color: var(--off-white);
}

/* Technology badge */
.tech-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--red);
    background: rgba(232, 25, 44, 0.08);
    border: 1px solid rgba(232, 25, 44, 0.2);
    padding: 3px 10px;
    border-radius: var(--radius);
    margin-bottom: 14px;
}

/* Headings */
.tech-panel-body h3 {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 6px;
    font-family: var(--font-display);
    color: var(--white);
}

.tech-sub {
    font-size: 14px;
    font-style: italic;
    color: var(--muted);
    margin-bottom: 18px;
}

/* Body text */
.tech-panel-body > p {
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 24px;
    color: var(--off-white);
}

/* Spec grid */
.tech-specs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 24px;
}

.tech-spec {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 12px 14px;
}

.tech-spec-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 5px;
}

.tech-spec-val {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
}

/* Materials */
.tech-materials-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 8px;
}

.tech-materials {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 22px;
}

.tech-mat {
    font-size: 12px;
    font-weight: 600;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--white);
}

/* Bullet list */
.tech-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tech-list li {
    font-size: 14px;
    line-height: 1.6;
    padding-left: 18px;
    position: relative;
    color: var(--off-white);
}

.tech-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--red);
}




/* ========= CTA BAND ========= */
.cta-section {
    padding: 50px 0;
    background: var(--red-dark);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.03) 0, rgba(255, 255, 255, 0.03) 1px, transparent 1px, transparent 24px);
}

.cta-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}



/* ========= FOOTER ========= */

.footer {
    background: var(--dark);
    border-top: 1px solid var(--border);
}

.ft-inner {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.ft-head {
    color: var(--red-dark);
    line-height: 120%;
    margin-bottom: 1.3rem !important;
    text-transform: uppercase;
    font-family: var(--font-display);
    font-weight: 600;
}

.footer p {
    font-size: 16px;
    font-weight: 400;
    color: var(--off-white);
}

.ft-col {
    display: flex;
    flex-direction: column;
    margin-top: 0;
}

.ft-link-col {
    min-width: fit-content !important;
}

.ft-logo {
    width: 180px;
}

.ft-logo img {
    width: 100%;
}

.ft-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

a.ft-link {
    color: var(--off-white);
    font-size: 16px;
    line-height: 180%;
    font-weight: 400;
    font-family: var(--font-body);
    text-decoration: none;
    transition: 0.3s ease;
    max-width: fit-content;
}

a.ft-link:hover {
    transform: translateX(3px);
    color: var(--red);
}

.ft-bottom {
    padding: 25px 0;
    border-top: 2px solid var(--border);
}

.ft-bottom-inner {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
}

.ft-bottom p {
    margin-bottom: 0;
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.ft-bottom a.ft-link:hover {
    transform: translateY(-4px);
    color: var(--red);
}

.ft-socials {
    display: flex;
    gap: 12px;
}

.social {
    width: 45px;
    height: 45px;
    border: 2px solid var(--border);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    text-decoration: none;
    font-size: 17px;
    background: var(--dark-2);
    transition: 0.3s ease;
}

.social:hover {
    border-color: var(--red);
    color: var(--red);
    background: rgba(232, 25, 44, 0.1);
}

.contact {
    display: flex;
    flex-direction: row;
    gap: 15px;
    text-decoration: none;
    cursor: pointer;
}

.contact .icon {
    margin-top: 5px;
    margin-bottom: 0px;
}

.contact .inner {
    display: flex;
    flex-direction: column;
}

.contact .inner b {
    color: var(--off-white);
    font-size: 14px;
}
.contact .inner p,
.contact .inner b {
    transition: 0.3s ease;
    margin-bottom: 0;
    font-family: var(--font-body);
}



.contact:hover p {
    color: var(--red);
}




/* ========= ANIMATION ========= */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.anim {
    opacity: 0;
    animation: fadeUp 0.6s ease forwards;
}

.anim-1 {
    animation-delay: 0.05s;
}

.anim-2 {
    animation-delay: 0.15s;
}

.anim-3 {
    animation-delay: 0.25s;
}

.anim-4 {
    animation-delay: 0.35s;
}



/* ========= gallery wrapper ========= */
.gallery-wrapper,
.testimonial-wrapper {
    position: relative;
}

/* ========= gallery-swiper ========= */
.gallery-swiper,
.testimonial-swiper {
    padding-bottom: 48px !important;
}

/* Slides */
.gallery-swiper .swiper-slide,
.testimonial-swiper .swiper-slide {
    height: unset !important;
    min-height: 100% !important;
}

/* Cards */
.swiper-card {
    position: relative;
    display: block;
    aspect-ratio: 4 / 3;
    border-radius: var(--radius);
    overflow: hidden;
    border: 3px solid var(--border);
    background: var(--dark-2);
    transition: border-color 0.3s ease;
}

.swiper-card:hover {
    border-color: rgba(232, 25, 44, 0.75);
}

.swiper-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.swiper-card:hover img {
    transform: scale(1.05);
}

/* Label */
.swiper-card-label {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 14px;
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--white);
    background: linear-gradient(to top, rgba(10, 10, 10, 0.85), rgba(10, 10, 10, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.swiper-card:hover .swiper-card-label {
    opacity: 1;
}

/* ========= NAVIGATION ========= */
.gallery-prev, .gallery-next,
.testimonial-prev, .testimonial-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px !important;
    height: 45px !important;
    border-radius: 100px;
    background: rgba(232, 25, 44, 0.08);
    border: 3px solid rgba(232, 25, 44, 0.2);
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: 0.3s ease;
}

.gallery-prev,
.testimonial-prev {
    left: calc(0% - 60px) !important;
}

.gallery-next,
.testimonial-next {
    right: calc(0% - 60px) !important;
}

.gallery-prev:hover, .gallery-next:hover,
.testimonial-prev:hover, .testimonial-next:hover {
    background: var(--red);
    border-color: var(--red);
}

.gallery-prev::after, .gallery-next::after,
.testimonial-prev::after, .testimonial-next::after {
    display: none !important;
}

.gallery-prev i, .gallery-next i,
.testimonial-prev i, .testimonial-next i {
    color: var(--red);
    font-size: 20px;
    transition: 0.3s ease;
}

.gallery-prev:hover i, .gallery-next:hover i,
.testimonial-prev:hover i, .testimonial-next:hover i {
    color: var(--off-white);
}


/* ========= PAGINATION ========= */
.gallery-swiper .swiper-pagination,
.testimonial-swiper .swiper-pagination {
    bottom: 10px !important;
    display: flex;
    justify-content: center;
    gap: 6px;
}

.gallery-swiper .swiper-pagination-bullet,
.testimonial-swiper .swiper-pagination-bullet {
    background: var(--muted);
    opacity: 1;
    width: 6px;
    height: 6px;
    transition: 0.3s ease;
}

.gallery-swiper .swiper-pagination-bullet-active,
.testimonial-swiper .swiper-pagination-bullet-active {
    background: var(--red);
    width: 20px;
    border-radius: 3px;
}





/* ========= COBOT DIFFERENCES GRID ========= */
.cobot-diff-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.cobot-diff-item {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 32px 36px;
    background: var(--dark-2);
    border-bottom: 1px solid var(--border);
    transition: background 0.25s ease;
}

.cobot-diff-item:last-child {
    border-bottom: none;
}

.cobot-diff-item:hover {
    background: var(--dark-3);
}

.cobot-diff-num {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--red);
    flex-shrink: 0;
    padding-top: 3px;
    min-width: 44px;
}

.cobot-diff-body h4 {
    font-family: var(--font-display);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 8px;
}

.cobot-diff-body p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin-bottom: 0;
}

.cobot-diff-body p b {
    color: rgba(255, 255, 255, 0.75);
}



/* ===== MISSION SECTION ===== */
.mission-box {
    background: rgba(232, 25, 44, 0.06);
    border: 1px solid rgba(232, 25, 44, 0.18);
    border-radius: var(--radius-lg);
    padding: 48px 44px;
}

.mission-box blockquote {
    font-family: var(--font-display);
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 700;
    line-height: 1.3;
    text-transform: uppercase;
    color: var(--white);
    margin: 0;
    letter-spacing: -0.01em;
}

.mission-box blockquote span {
    color: var(--red);
}



/* ===== TIMELINE / MILESTONES ===== */
.timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.timeline-item {
    display: flex;
    align-items: stretch;
    border-bottom: 1px solid var(--border);
    background: var(--dark-2);
    transition: background 0.25s ease;
}

.timeline-item:last-child {
    border-bottom: none;
}

.timeline-item:hover {
    background: var(--dark-3);
}

.timeline-year {
    flex: 0 0 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    color: var(--red);
    border-right: 1px solid var(--border);
    padding: 28px 20px;
    letter-spacing: -0.01em;
}

.timeline-body {
    padding: 28px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
}

.timeline-body h4 {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0;
}

.timeline-body p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.6;
    margin-bottom: 0;
}



/* ===== VALUES GRID ===== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.value-card {
    background: var(--dark-2);
    padding: 40px 34px;
    transition: background 0.2s;
    position: relative;
}

.cta-value-card {
    background: rgba(232,25,44,0.06);
    border: 1px solid rgba(232,25,44,0.2);
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:flex-start;
}

.value-card:hover {
    background: var(--dark-3);
}

.cta-value-card:hover {
    background: rgba(232,25,44,0.08);
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--red);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-card h4 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 10px;
}

.value-card p {
    font-size: 14px;
    color: rgba(255,255,255,0.45);
    line-height: 1.65;
    margin-bottom: 20px;
}

.value-num {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 800;
    color: rgba(232, 25, 44, 0.3);
    line-height: 80%;
    width: fit-content;
    position: absolute;
    right: 34px;
}

.value-card ul {
    list-style: none;
    margin-bottom: 24px;
}

.value-card ul li {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    padding: 6px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.value-card ul li::before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--red);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 6px;
}






/* ========= MATERIALS PAGE ========= */

/* Top bar */
.mat-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
    gap: 16px;
    flex-wrap: wrap;
}

.mat-result-count {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
}

.mat-result-count span {
    color: var(--red);
}

.mat-search-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.mat-search-wrap i {
    position: absolute;
    left: 14px;
    color: var(--muted);
    font-size: 14px;
    pointer-events: none;
}

#mat-search {
    background: var(--dark-2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 14px;
    padding: 10px 16px 10px 38px;
    width: 260px;
    transition: border-color 0.2s;
    outline: none;
}

#mat-search:focus {
    border-color: var(--red);
}

#mat-search::placeholder {
    color: var(--muted);
}

/* Layout */
.mat-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 32px;
    align-items: start;
}

/* ── SIDEBAR ── */
.mat-sidebar {
    background: var(--dark-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: sticky;
    top: 90px;
}

.mat-filter-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
}

.mat-clear-btn {
    background: none;
    border: none;
    color: var(--red);
    font-size: 12px;
    font-family: var(--font-body);
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    transition: opacity 0.2s;
}

.mat-clear-btn:hover {
    opacity: 0.75;
}

.mat-filter-group {
    border-bottom: 1px solid var(--border);
}

.mat-filter-group:last-of-type {
    border-bottom: none;
}

.mat-filter-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    padding: 14px 20px;
    color: var(--off-white);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    transition: color 0.2s;
}

.mat-filter-toggle:hover {
    color: var(--white);
}

.mat-filter-toggle i {
    font-size: 11px;
    color: var(--muted);
    transition: transform 0.25s ease;
}

.mat-filter-options {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 20px;
}

.mat-filter-options.open {
    max-height: 400px;
    padding: 4px 20px 16px;
}

.mat-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    cursor: pointer;
}

.mat-checkbox input[type="checkbox"] {
    appearance: none;
    width: 15px;
    height: 15px;
    border: 1.5px solid var(--mid);
    border-radius: 3px;
    background: transparent;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
    transition: border-color 0.2s, background 0.2s;
}

.mat-checkbox input[type="checkbox"]:checked {
    background: var(--red);
    border-color: var(--red);
}

.mat-checkbox input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    top: 1px; left: 4px;
    width: 4px; height: 8px;
    border: 2px solid #fff;
    border-top: none; border-left: none;
    transform: rotate(45deg);
}

.mat-checkbox span {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    transition: color 0.2s;
}

.mat-checkbox:hover span {
    color: var(--white);
}

.mat-sidebar-cta {
    padding: 20px;
    border-top: 1px solid var(--border);
    background: rgba(232,25,44,0.04);
}

.mat-sidebar-cta p {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    line-height: 1.5;
    margin-bottom: 12px;
}

/* ── GRID ── */
.mat-grid-wrap {
    min-width: 0;
}

.mat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

/* ── CARD ── */
.mat-card {
    background: var(--dark-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
    display: flex;
    flex-direction: column;
}

.mat-card:hover {
    border-color: rgba(232,25,44,0.45);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

/* ── Card image ── */
.mat-card-img {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--dark-3);
    border-bottom: 3px solid var(--red);
    flex-shrink: 0;
}

.mat-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.mat-card:hover .mat-card-img img {
    transform: scale(1.04);
}

/* Fallback when no image */
.mat-card-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--dark-3) 0%, rgba(232,25,44,0.06) 100%);
}

.mat-card-img-placeholder i {
    font-size: 36px;
    color: rgba(232,25,44,0.25);
}

/* Tech badges overlaid on image */
.mat-card-img-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.mat-badge {
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    padding: 3px 9px;
    border-radius: 3px;
    border: 1px solid rgba(232, 25, 44, 0.7);
    text-transform: uppercase;
    background: rgba(232, 25, 44, 0.25);
    color: var(--red);
    backdrop-filter: blur(8px);
}

.mat-badge-lg {
    font-size: 11px;
    padding: 4px 12px;
}

.mat-card-name {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    color: var(--white);
    line-height: 1;
    margin-bottom: 4px;
}

.mat-card-full {
    font-size: 12px;
    color: var(--muted);
    letter-spacing: 0.02em;
    margin-bottom: 10px;
}

.mat-card-body {
    padding: 16px 20px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.mat-card-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    line-height: 1.6;
    margin-bottom: 14px;
    flex: 1;
}

.mat-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid var(--border);
}

.mat-card-lead {
    font-size: 12px;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 5px;
}

.mat-card-cta {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--red);
    background: rgba(232,25,44,0.08);
    border: 1px solid rgba(232,25,44,0.25);
    border-radius: var(--radius);
    padding: 6px 14px;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}

.mat-card-cta:hover {
    background: var(--red);
    color: #fff;
    border-color: var(--red);
}

/* ── EMPTY STATE ── */
.mat-empty {
    grid-column: 1/-1;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    gap: 12px;
    text-align: center;
}

.mat-empty i {
    font-size: 40px;
    color: var(--muted);
    margin-bottom: 8px;
}

.mat-empty h4 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 4px;
}

.mat-empty p {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 16px;
}

/* ── MODAL ── */
.mat-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(6px);
    z-index: 1200;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.mat-modal {
    background: var(--dark-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 640px;
    max-height: 88vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(30px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.mat-modal.open {
    transform: translateY(0);
    opacity: 1;
}

.mat-modal-close {
    position: absolute;
    top: 16px; right: 16px;
    width: 34px; height: 34px;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
    cursor: pointer;
    transition: background 0.2s;
    z-index: 10;
}

.mat-modal-close:hover {
    background: var(--red); border-color: var(--red);
}

/* Modal image header */
.mat-modal-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 7;
    overflow: hidden;
    background: var(--dark-3);
    border-bottom: 3px solid var(--red);
    flex-shrink: 0;
}

.mat-modal-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mat-modal-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--dark-3) 0%, rgba(232,25,44,0.08) 100%);
}

.mat-modal-img-placeholder i {
    font-size: 52px;
    color: rgba(232,25,44,0.2);
}

.mat-modal-img-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 20px 28px;
    background: linear-gradient(to top, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.5) 60%, transparent 100%);
}

.mat-modal-badges {
    margin-bottom: 8px; display: flex; gap: 6px; flex-wrap: wrap;
}

.mat-modal-name {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    color: var(--white);
    line-height: 1;
    margin-bottom: 4px;
}

.mat-modal-full {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
}

.mat-modal-body {
    padding: 24px 28px 28px;
}

.mat-modal-desc {
    font-size: 15px;
    color: rgba(255,255,255,0.6);
    line-height: 1.75;
    margin-bottom: 20px;
}

.mat-modal-highlights h5 {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 10px;
}

.mat-modal-highlights ul {
    list-style: none;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mat-modal-highlights li {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    padding-left: 18px;
    position: relative;
    line-height: 1.55;
}

.mat-modal-highlights li::before {
    content: '';
    position: absolute;
    left: 0; top: 7px;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--red);
}

/* ── MOBILE FILTER BUTTON ── */
.mat-mobile-filter-btn {
    display: none;
    align-items: center;
    gap: 8px;
    background: var(--dark-2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    padding: 10px 18px;
    cursor: pointer;
    margin-bottom: 16px;
    transition: border-color 0.2s;
}

.mat-mobile-filter-btn:hover {
    border-color: var(--red);
}

.mat-active-count {
    background: var(--red);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    width: 18px; height: 18px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
}

/* ── MOBILE DRAWER ── */
.mat-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 1100;
}

.mat-drawer {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: var(--dark);
    border-top: 1px solid var(--border);
    border-radius: 16px 16px 0 0;
    z-index: 1101;
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.32,0.72,0,1);
    max-height: 85vh;
    display: flex;
    flex-direction: column;
}

.mat-drawer.open {
    transform: translateY(0);
}

.mat-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px 14px;
    border-bottom: 1px solid var(--border);
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    flex-shrink: 0;
}

.mat-drawer-header button {
    background: none; border: none;
    color: var(--muted); font-size: 18px; cursor: pointer;
}

.mat-drawer-body {
    overflow-y: auto; flex: 1;
}

.mat-drawer-footer {
    padding: 16px 20px;
    border-top: 1px solid var(--border);
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.mat-drawer-footer .btn {
    flex: 1; justify-content: center !important;
}





/* ===== CONTACT FORM ===== */
.contact-form-wrap {
    background: var(--dark-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 48px 44px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.form-group label {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
}

.form-group label b {
    color: var(--red);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--dark-3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 15px;
    padding: 13px 16px;
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--red);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--muted);
}

.form-group select {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-group select option {
    background: var(--dark-2);
    color: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
    max-height: 140px;
    overflow-y: scroll;
}

.form-note {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
    margin-top: 4px;
}

.form-note a {
    color: var(--red);
}

.form-submit-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 8px;
}


/* ===== FILE UPLOAD ===== */
.form-group-file {
    gap: 8px;
}

.file-upload {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.file-upload-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    background: var(--dark-3);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 12px 20px;
    cursor: pointer;
    transition: 0.3s ease;
    flex-shrink: 0;
}

.file-upload-btn i {
    color: var(--red);
    font-size: 14px;
    transition: 0.3s ease;
}

.file-upload-btn:hover {
    border-color: var(--red);
    background: rgba(232, 25, 44, 0.08);
}

.file-upload.has-file .file-upload-btn {
    border-color: var(--red);
    background: rgba(232, 25, 44, 0.08);
}

/* Visually hide the native input, keep it accessible via the label */
.file-upload-input {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.file-upload-name {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.4;
    word-break: break-all;
}

.file-upload.has-file .file-upload-name {
    color: var(--off-white);
}

.file-upload-clear {
    display: none;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border);
    color: var(--muted);
    cursor: pointer;
    flex-shrink: 0;
    transition: 0.2s ease;
}

.file-upload.has-file .file-upload-clear {
    display: flex;
}

.file-upload-clear:hover {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
}

.file-upload-clear i {
    font-size: 10px;
}

/* CF7 validation state */
.file-upload.wpcf7-not-valid .file-upload-btn,
.wpcf7-file.wpcf7-not-valid + .file-upload-name {
    border-color: var(--red);
}


/* ===== LOCATION STRIP ===== */
.location-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.location-item {
    background: var(--dark-2);
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
}

.location-item h4 {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--red);
}

.location-item p {
    font-size: 15px;
    color: rgba(255,255,255,0.65);
    margin: 0;
    line-height: 1.6;
}

.location-item a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: color 0.2s;
}

.location-item a:hover { color: var(--red); }


/* ===== MAP ===== */
.map-wrap {
    overflow: hidden;
    border-top: 3px solid var(--border);
    height: 380px;
    border-bottom: 1px solid var(--red-light);
}

.map-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    filter: grayscale(60%) contrast(1.1);
}


/* ===== SUCCESS ===== */
.form-success {
    display: none;
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.25);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin-top: 20px;
    color: rgba(255,255,255,0.75);
    font-size: 15px;
    line-height: 1.65;
}

.form-success i {
    color: #22c55e; margin-right: 8px;
}




/* ===== BLOG-CARD ===== */
.blog-card {
    border: 3px solid var(--border);
    border-radius: var(--radius-lg);
    background: rgba(10, 10, 10, 0.92);
    overflow: hidden;
    transition: 0.3s ease;
}

.blog-card:hover {
    border-color: rgba(232, 25, 44, 0.4);
}

.blog-img {
    display: block;
    width: 100%;
    height: 190px;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: 0.5s ease;
}

.blog-card:hover .blog-img img {
    transform: scale(1.1);
}

.card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 15px;
    padding: 20px 30px 35px !important;
    backdrop-filter: blur(12px);
}

.card-body .inner {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.date {
    font-size: 13px;
    line-height: 100%;
    font-weight: 600;
    font-family: var(--font-display);
    text-transform: uppercase;
    color: var(--red-dark);
}

.blog-card .title {
    color: var(--red);
    font-size: 20px;
    font-family: var(--font-display);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: 0.3s ease;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.blog-card .title:hover {
    color: var(--red-light);
}

.blog-card p {
    font-size: 15px;
    color: var(--off-white);
    line-height: 120%;
    margin-bottom: 0;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}



/* ===== FAQ TABS ===== */
.faq-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    row-gap: 12px;
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid var(--red);
}

.faq-tab {
    background: var(--dark-2);
    color: var(--muted);
    border: 2px solid var(--border);
    padding: 10px 18px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    border-radius: var(--radius);
    min-width: fit-content;
    transition: 0.3s ease;
}

.faq-tab:hover {
    color: var(--white);
    border-color: var(--red-light);
}

.faq-tab.active {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
}

.faq-content {
    background: var(--dark-2);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 30px 45px;
}

.faq-pane {
    display: none;
    animation: fadeUp 0.3s ease;
}

.faq-pane.active {
    display: block;
}


/* ============= BLOG SINGLE POST TEMPLATE ============= */

/* ===== POST HEADER ===== */
.post-header-section {
    padding-bottom: 10px;
}

.post-header {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.post-header .breadcrumb {
    margin-bottom: 0 !important;
}

.post-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 0;
}

.post-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    padding-top: 22px;
    margin-top: 4px;
    border-top: 1px solid var(--border);
}

.post-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.post-author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(232, 25, 44, 0.1);
    border: 1px solid rgba(232, 25, 44, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.post-author-avatar i {
    color: var(--red);
    font-size: 19px;
}

.post-author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.post-author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.post-author-name {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    line-height: 1.3;
}

.post-author-role {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.3;
}

.post-share-btn {
    width: 44px;
    height: 44px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.04);
    border: 1.5px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s ease;
    flex-shrink: 0;
}

.post-share-btn i {
    color: var(--white);
    font-size: 15px;
    transition: 0.3s ease;
}

.post-share-btn:hover {
    background: var(--red);
    border-color: var(--red);
}

/* ===== FEATURED IMAGE ===== */
.post-image-section {
    padding: 10px 0 0;
}

.post-featured-img {
    width: 100%;
    aspect-ratio: 21 / 9;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--dark-2);
}

.post-featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ===== POST BODY LAYOUT ===== */
.post-layout {
    display: flex;
    justify-content: center;
}

.post-content {
    width: 100%;
}

.post-content>p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.85;
    margin-bottom: 20px;
}

.post-content h2 {
    font-family: var(--font-display);
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: var(--white);
    margin: 52px 0 18px;
    padding-top: 4px;
    border-top: 1px solid var(--border);
    padding-top: 40px;
}

.post-content h2:first-of-type {
    margin-top: 0;
    border-top: none;
    padding-top: 0;
}

.post-content h3,
.post-content h3 strong {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--red);
    margin: 28px 0 12px;
}

.post-content p {
    font-size: 15.5px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin-bottom: 16px;
}

.post-content a {
    color: var(--red);
    font-weight: 600;
    text-decoration: none;
    transition: .3s ease;
}

.post-content a:hover {
    color: var(--red-light);
}

.post-content ul {
    margin-bottom: 22px;
}

.post-content strong,
.post-content b {
    color: var(--off-white);
    font-weight: 600;
}

.post-content em {
    font-size: 18px !important;
    color: rgba(255, 255, 255, 0.78) !important;
    font-weight: 300;
    line-height: 1.7 !important;
}

/* ===== BLOCKQUOTE ===== */
.post-content blockquote {
    border-left: 3px solid var(--red);
    padding: 12px 26px;
    margin: 10px 0 28px;
    font-size: 17px;
    font-weight: 300;
    font-style: italic;
    color: var(--off-white);
    background: rgba(232, 25, 44, 0.04);
    line-height: 1.75;
}

.post-content blockquote p {
    margin-bottom: 0;
    color: inherit;
    font-size: inherit;
    font-style: inherit;
}

/* ===== LISTS ===== */

.post-content ul {
    list-style: none;
}

.post-content ul, .post-content ol {
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.post-content ul li,
.post-content ol li {
    font-size: 16px;
    line-height: 1.6;
    color: var(--off-white);
    font-family: var(--font-body);
    color: rgba(255, 255, 255, 0.65);
}

.post-content ul li {
    padding-left: 18px;
    position: relative;
}

.post-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--red);
}

.post-content ol li::marker {
    color: var(--red);
    font-weight: 600;
    font-size: 16px;
}

/* ===== COMPARISON TABLE ===== */
.post-content .post-table-wrap {
    overflow-x: auto;
    margin: 8px 0 32px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.post-content table {
    width: 100%;
    border-collapse: collapse;
    min-width: 640px;
}

.post-content table thead {
    border: none;
}

.post-content table th,
.post-content table td {
    padding: 14px 18px;
    text-align: left;
    font-size: 13.5px;
    border-bottom: 1px solid var(--border);
    vertical-align: top;
}

.post-content table th {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--red);
    background: var(--dark-3);
    white-space: nowrap;
}

.post-content table td {
    color: rgba(255, 255, 255, 0.62);
    background: var(--dark-2);
}

.post-content table tr:last-child td {
    border-bottom: none;
}

.post-content table tr:hover td {
    background: var(--dark-3);
}

/* ===== POST FOOTER META ===== */
.post-updated {
    text-align: right;
    font-size: 15px;
    font-weight: 500;
    color: var(--muted);
    margin-top: 44px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

/* ===== RELATED POSTS ===== */
.related-posts-section {
    border-top: 1px solid var(--border);
}

.related-posts-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
    gap: 16px;
    flex-wrap: wrap;
}

.related-posts-head h3 {
    font-family: var(--font-display);
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 800;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 0;
}





/* ========= 404 ERROR PAGE ========= */
.error-404 {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.error-404-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
    z-index: 3;
    position: relative;
}

.error-404-num {
    font-family: var(--font-display);
    font-size: clamp(110px, 18vw, 220px);
    font-weight: 800;
    line-height: 0.85;
    letter-spacing: -0.02em;
    color: var(--white);
    margin: 10px 0 0;
}

.error-404-num span {
    color: var(--red);
}

.error-404-h2 {
    font-family: var(--font-display);
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    line-height: 1.1;
    color: var(--white);
    margin: 0 0 16px;
}

.error-404-h2 span {
    color: var(--red);
}

.error-404-p {
    font-size: 16px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    max-width: 460px;
    margin-bottom: 32px;
}

/* Search */
.error-404-search {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    max-width: 420px;
    background: var(--dark-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 6px 6px 6px 20px;
    margin-bottom: 32px;
    transition: border-color 0.2s;
}

.error-404-search:focus-within {
    border-color: var(--red);
}

.error-404-search i.fa-magnifying-glass {
    color: var(--muted);
    font-size: 14px;
    flex-shrink: 0;
}

.error-404-search input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 15px;
    padding: 10px 0;
}

.error-404-search input::placeholder {
    color: var(--muted);
}

.error-404-search button {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border: none;
    border-radius: 100px;
    background: var(--red);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
}

.error-404-search button:hover {
    background: var(--red-light);
}

/* Search suggestions dropdown */
.error-404-search-wrap {
    position: relative;
    width: 100%;
    max-width: 420px;
    margin-bottom: 32px;
}

.error-404-search-wrap .error-404-search {
    margin-bottom: 0;
}

.error-404-search-results {
    display: none;
    position: relative;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: var(--dark-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    z-index: 30;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
    text-align: left;
}

.error-404-search-results.is-open {
    display: block;
}

.error-404-search-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 18px;
    text-decoration: none;
    border-bottom: 1px solid var(--border);
    transition: background 0.2s;
}

.error-404-search-item:last-child {
    border-bottom: none;
}

.error-404-search-item .title {
    font-size: 14px;
    font-weight: 500;
    color: var(--off-white);
}

.error-404-search-item .type {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--red);
    flex-shrink: 0;
}

.error-404-search-item:hover,
.error-404-search-item.is-active {
    background: var(--dark-3);
}

.error-404-search-empty {
    padding: 14px 18px;
    font-size: 13px;
    color: var(--muted);
}

/* Popular links */
.error-404-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 14px;
    font-size: 14px;
    color: var(--muted);
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
    width: 100%;
}

.error-404-links a {
    color: var(--off-white);
    text-decoration: none;
    transition: color 0.2s;
}

.error-404-links a:hover {
    color: var(--red);
}



/* ========= THANK YOU PAGE ========= */
.thank-you-page {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thank-you-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    z-index: 3;
    position: relative;
}

.thank-you-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.thank-you-icon i {
    font-size: 28px;
    color: #22c55e;
}

.thank-you-tag {
    color: #22c55e !important;
    border-color: rgba(34, 197, 94, 0.4) !important;
}

.thank-you-h1 {
    font-family: var(--font-display);
    font-size: clamp(40px, 6vw, 68px);
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: var(--white);
    margin: 0 0 20px;
}

.thank-you-h1 span {
    color: var(--red);
}

.thank-you-p {
    font-size: 16px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.75;
    max-width: 480px;
    margin-bottom: 36px;
}

/* Steps */
.thank-you-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
    padding-top: 48px;
    border-top: 1px solid var(--border);
    width: 100%;
}

.thank-you-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.thank-you-step .icon-lg {
    margin-left: auto;
    margin-right: auto;
}

.thank-you-step h4 {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--white);
    margin-bottom: 6px;
}

.thank-you-step p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.6;
    margin-bottom: 0;
}




/* ===== QUOTE POPUP MODAL ===== */
.quote-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(6px);
    z-index: 1200;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
}

.quote-modal-overlay.open {
    display: flex;
}

.quote-modal {
    background: var(--dark-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 640px;
    max-height: 88vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(30px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    padding: 44px 40px 40px;
}

.quote-modal-overlay.open .quote-modal {
    transform: translateY(0);
    opacity: 1;
}

.quote-modal-close {
    position: absolute;
    top: 16px; right: 16px;
    width: 34px; height: 34px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
    z-index: 10;
}

.quote-modal-close:hover {
    background: var(--red);
    border-color: var(--red);
}

.quote-modal-header {
    margin-bottom: 28px;
}

.quote-modal-header h3 {
    font-family: var(--font-display);
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    color: var(--white);
    margin: 8px 0 8px;
}

.quote-modal-header p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0;
    line-height: 1.6;
}

.quote-modal-body .form-group,
.quote-modal-body .form-row {
    margin-bottom: 18px;
}

.quote-modal-body .form-submit-row {
    margin-bottom: 0;
}

body.quote-modal-active {
    overflow: hidden;
}




/* ===== FORM SUBMIT LOADER ===== */
.form-loader-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(6px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.form-loader-overlay.active {
    opacity: 1;
    visibility: visible;
}

.form-loader-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.form-loader-spinner {
    width: 52px;
    height: 52px;
    border: 3px solid rgba(232, 25, 44, 0.15);
    border-top: 3px solid var(--red);
    border-radius: 50%;
    animation: form-loader-spin 0.8s linear infinite;
}

@keyframes form-loader-spin {
    to { transform: rotate(360deg); }
}

.form-loader-text {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--off-white);
}





/* ===== BLOG SEARCH (posts-only live search, blogs archive) ===== */
.blog-search-wrap {
    position: relative;
    width: 100%;
    max-width: 420px;
    margin: 0 auto 44px;
}
 
.blog-search {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    background: var(--dark-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 6px 6px 6px 20px;
    transition: border-color 0.2s;
}
 
.blog-search:focus-within {
    border-color: var(--red);
}
 
.blog-search i.fa-magnifying-glass {
    color: var(--muted);
    font-size: 14px;
    flex-shrink: 0;
}
 
.blog-search input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 15px;
    padding: 10px 0;
}
 
.blog-search input::placeholder {
    color: var(--muted);
}
 
.blog-search button {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border: none;
    border-radius: 100px;
    background: var(--red);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
}
 
.blog-search button:hover {
    background: var(--red-light);
}
 
.blog-search-results {
    display: none;
    position: relative;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: var(--dark-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    z-index: 30;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
    text-align: left;
}
 
.blog-search-results.is-open {
    display: block;
}
 
.blog-search-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 18px;
    text-decoration: none;
    border-bottom: 1px solid var(--border);
    transition: background 0.2s;
}
 
.blog-search-item:last-child {
    border-bottom: none;
}
 
.blog-search-item .title {
    font-size: 14px;
    font-weight: 500;
    color: var(--off-white);
}
 
.blog-search-item .date {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--red);
    flex-shrink: 0;
    white-space: nowrap;
}
 
.blog-search-item:hover,
.blog-search-item.is-active {
    background: var(--dark-3);
}
 
.blog-search-empty {
    padding: 14px 18px;
    font-size: 13px;
    color: var(--muted);
}
 
 
 
/* ===== PAGINATION (blogs archive + reusable template-part) ===== */
.pagination-wrap {
    display: flex;
    justify-content: center;
    margin-top: 56px;
}
 
.pagination {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}
 
.pagination-item {
    display: flex;
}
 
.pagination .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 8px;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--off-white);
    background: var(--dark-2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-decoration: none;
    transition: 0.25s ease;
}
 
.pagination .page-numbers:hover {
    border-color: rgba(232, 25, 44, 0.5);
    color: var(--white);
    background: var(--dark-3);
}
 
.pagination .page-numbers.current {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
    cursor: default;
}
 
.pagination .page-numbers.dots {
    background: transparent;
    border: none;
    color: var(--muted);
    cursor: default;
}
 
.pagination .page-numbers.dots:hover {
    background: transparent;
    border-color: transparent;
}
 
.pagination .prev.page-numbers,
.pagination .next.page-numbers {
    background: rgba(232, 25, 44, 0.08);
    border: 1px solid rgba(232, 25, 44, 0.25);
    color: var(--red);
}
 
.pagination .prev.page-numbers:hover,
.pagination .next.page-numbers:hover {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
}
 
.pagination .prev.page-numbers i,
.pagination .next.page-numbers i {
    font-size: 13px;
}


.float {
    text-decoration: none !important;
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 88px;
    right: 7px;
    background-color: transparent !important;
    color: #ffffff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation{
    0% {
        box-shadow: 0 0 0 0px rgba(79, 158, 129, 0.5);
    }
    100% {
        box-shadow: 0 0 0 35px rgba(37, 211, 102, 0);
    }
}

.float:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #317F4E !important;
    border-radius: 50%;
    transition: 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.float i {
    font-weight: 400;
    position: relative;
    z-index: 5;
    transition: 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}