:root{
--primary: #DC2626;
 --dark:#0F172A;
 --light:#F8FAFC;
  --gray: #9ca3af;
      --glass: rgba(255,255,255,0.08);
}

body{font-family:'Nunito',sans-serif;color:var(--dark);background:#fff;}

/* SPINNER */
#spinner{position:fixed;inset:0;background:#fff;display:flex;align-items:center;justify-content:center;z-index:9999}
.spinner{width:60px;height:60px;background:linear-gradient(135deg,var(--primary),#DC2626);animation:spin 1.2s infinite ease-in-out}
@keyframes spin{0%{transform:rotate(0)}50%{transform:rotate(180deg) scale(1.2)}100%{transform:rotate(360deg)}}

/* TOPBAR */
.topbar{background:var(--dark);color:#e5e7eb;font-size:14px}
.topbar i{color:var(--primary)}

/* NAVBAR */
.navbar{background:#fff;box-shadow:0 8px 25px rgba(0,0,0,.06)}
.navbar-brand{font-weight:800;font-size:28px;color:var(--dark)}
.navbar-brand i{color:var(--primary)}
.nav-link{font-weight:700;margin-left:24px;color:var(--dark);position:relative}
.nav-link:hover,.nav-link.active{color:var(--primary)}
.nav-link::after{content:'';position:absolute;left:50%;bottom:-6px;width:0;height:3px;background:var(--primary);transition:.3s}
.nav-link:hover::after,.nav-link.active::after{width:100%;left:0}

/* HERO */
.hero{height:90vh;background:linear-gradient(rgba(2,6,23,.75),rgba(2,6,23,.75)),url('https://images.unsplash.com/photo-1581091012184-5c5f28e1a5b2');background-size:cover;background-position:center;color:#fff;display:flex;align-items:center}
.hero h1{font-size:64px;font-weight:800;animation:fadeUp 1s}
.hero p{font-size:20px;margin:20px 0;animation:fadeUp 1.3s}
.hero .btn{animation:fadeUp 1.6s}

@keyframes fadeUp{from{opacity:0;transform:translateY(40px)}to{opacity:1;transform:none}}

/* BUTTON */
.btn-primary{background:var(--primary);border:none;font-weight:700}
.btn-primary:hover{background:#ea580c;transform:translateY(-2px)}

/* PRODUCTS */
.product-card{background:#fff;border:1px solid #eee;border-radius:10px;padding:30px;text-align:center;transition:.4s}
.product-card:hover{transform:translateY(-10px);box-shadow:0 25px 50px rgba(0,0,0,.12)}
.product-card i{font-size:48px;color:var(--primary);margin-bottom:20px}

/* STATS */
.stats{background:var(--dark);color:#fff}
.stats h2{color:var(--primary);font-weight:800}

/* FOOTER */
/* FOOTER */
.footer-section {
   background:
        radial-gradient(circle at center, rgba(0,0,0,.35), rgba(0,0,0,.85)),
        linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.85));
    color: #cbd5f5;
    padding: 80px 0 30px;
}

.footer-brand {
    color: #ffffff;
    font-weight: 800;
    font-size: 28px;
}

.footer-brand i {
    color: #DC2626;
    margin-right: 8px;
}

.footer-text {
    margin: 20px 0;
    max-width: 350px;
    line-height: 1.7;
    font-size: 15px;
}

/* SOCIAL */
.footer-social a {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,.06);
    color: #fff;
    margin-right: 10px;
    transition: .4s;
}

.footer-social a:hover {
    background: #DC2626;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(249,115,22,.6);
}

/* TITLES */
.footer-title {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 20px;
}

/* LINKS */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: .3s;
}

.footer-links a:hover {
    color: #DC2626;
    padding-left: 6px;
}

/* CONTACT */
.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 15px;
}

.footer-contact i {
    color: #DC2626;
}

/* BOTTOM BAR */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
    color: #94a3b8;
}





/* ================= ULTRA PRO SEARCH OVERLAY ================= */

/* SEARCH OVERLAY */
.search-overlay {
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at center, rgba(0,0,0,.25), rgba(0,0,0,.9)),
        linear-gradient(180deg, rgba(0,0,0,.6), rgba(0,0,0,.95));
    backdrop-filter: blur(8px);
    z-index: 99999;

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    visibility: hidden;
    transition: opacity .6s ease, visibility .6s ease;
}

/* ACTIVE STATE */
.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* SEARCH BOX */
.search-box {
    text-align: center;
    color: #fff;
    max-width: 720px;
    width: 90%;
    padding: 50px;

    transform: translateY(80px) scale(.85);
    opacity: 0;

    animation: none;
}

/* WHEN ACTIVE */
.search-overlay.active .search-box {
    animation: ultraSearchIn .9s cubic-bezier(.16,1,.3,1) forwards;
}

/* ULTRA PRO KEYFRAMES */
@keyframes ultraSearchIn {
    0% {
        opacity: 0;
        transform: translateY(80px) scale(.85);
        filter: blur(12px);
    }
    60% {
        opacity: 1;
        transform: translateY(-10px) scale(1.03);
        filter: blur(2px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}


.search-box h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 10px;
}

.search-box p {
    color: #CBD5F5;
    margin-bottom: 30px;
}

.search-box form {
    position: relative;
}

.search-box input {
    width: 100%;
    height: 70px;
    border-radius: 50px;
    border: none;
    outline: none;
    padding: 0 80px 0 30px;
    font-size: 18px;
    box-shadow: 0 0 40px rgba(249,115,22,.35);
}

.search-box button {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, var(--primary), #DC2626);
    color: #fff;
    font-size: 20px;
    box-shadow: 0 0 25px rgba(249,115,22,.8);
    transition: .3s;
}

.search-box button:hover {
    transform: scale(1.1);
}

.close-search {
    position: absolute;
    top: -70px;
    right: 0;
    background: transparent;
    border: none;
    font-size: 28px;
    color: #fff;
    transition: .3s;
}

.close-search:hover {
    color: var(--primary);
    transform: rotate(90deg);
}


/* ================= HERO BACKGROUND ================= */
.hero-bg {
    position: relative;
    height: 100vh;

    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    background-color: #020617;

    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;

    transition: background-image 1.2s ease-in-out;
}


.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at center,
            rgba(0,0,0,0.30),
            rgba(0,0,0,0.60)
        ),
        linear-gradient(
            180deg,
            rgba(0,0,0,0.45),
            rgba(0,0,0,0.75)
        );
    z-index: 1;
}


.hero-carousel {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 900px;
    padding: 40px;
}

.hero-slide {
    display: none;
    animation: fadeSlide 1.2s ease;
}

.hero-slide.active {
    display: block;
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-slide h5 {
    color: #DC2626;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.hero-slide h1 {
    font-size: 58px;
    font-weight: 800;
    line-height: 1.2;
}

.hero-slide h1 span {
    color: #DC2626;
}

.hero-buttons {
    margin-top: 30px;
}

/* DOT CONTROLS */
.hero-controls {
    position: absolute;
    bottom: 40px;
    display: flex;
    gap: 12px;
    z-index: 3;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,.4);
    cursor: pointer;
    transition: .3s;
}

.dot.active {
    background: #DC2626;
    box-shadow: 0 12px 30px rgba(220,38,38,.35);
}

/* BUTTONS */
.btn-primary {
    background: #DC2626;
    padding: 14px 34px;
    color: #fff;
    font-weight: 700;
    border-radius: 6px;
    margin-right: 15px;
    display: inline-block;
    box-shadow: 0 12px 30px rgba(220,38,38,.35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 45px rgba(220,38,38,.45);
    background: #DC2626;
}

.btn-outline {
    border: 2px solid #fff;
    padding: 14px 34px;
    color: #fff;
    border-radius: 6px;
    font-weight: 700;
}

/* HERO DOTS (duplicate safety cleanup) */
.hero-controls .dot {
    width: 14px;
    height: 14px;
    background: rgba(255,255,255,.4);
    display: inline-block;
    margin: 0 6px;
    border-radius: 50%;
    cursor: pointer;
}

.hero-controls .dot.active {
    background: #DC2626;
    box-shadow: 0 0 18px rgba(220,38,38,.6);
}

/* CATEGORIES */
.categories-section {
    color: #0F172A;
}

.section-sub {
    color: #64748B;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
}


/* PRODUCT CARD */
.product-card {
   
    border: 1px solid #e2e8f0;
    box-shadow: 0 20px 40px rgba(0,0,0,.06);
}

.product-card p {
    color: #475569;
}


.product-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(249,115,22,.15), transparent);
    opacity: 0;
    transition: opacity .5s ease;
}

.product-card:hover::before {
    opacity: 1;
}

.product-card i {
    font-size: 60px;
    color: #DC2626;
    margin-bottom: 20px;
    transition: transform .4s ease;
}

.product-card h4 {
    font-size: 24px;
    font-weight: 700;
}

.product-card p {
    font-size: 15px;
    color: #ccc;
}

.product-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 25px 60px rgba(249,115,22,.25);
}

.product-card:hover i {
    transform: rotate(-5deg) scale(1.1);
}


.stats-section {  
    color: #fff;
}

.stat-box {
    padding: 40px;
    border-radius: 16px;
    background:
        radial-gradient(circle at center, rgba(0,0,0,.35), rgba(0,0,0,.85)),
        linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.85));"
    border: 1px solid rgba(255,255,255,.1);
    transition: all .4s ease;
}

.stat-box h2 {
    font-size: 48px;
    font-weight: 800;
    color: #DC2626;
}

.stat-box p {
    font-size: 16px;
    color: #ccc;
}

.stat-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,.6);
}

.cta-section {
    background: url("../img/cta-bg.jpg") center/cover no-repeat;
    position: relative;
    color: #fff;
}

.cta-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.75);
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    font-size: 42px;
    font-weight: 800;
}

.cta-section p {
    font-size: 18px;
    color: #ddd;
    margin-bottom: 30px;
}


/* ================= INTRO SECTION ================= */

.intro-section {
    background: linear-gradient(180deg, #ffffff, #f8fafc);
    padding: 90px 0 70px;
}

.intro-sub {
    color: #DC2626;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.intro-title {
    font-size: 42px;
    font-weight: 900;
    color: #0F172A;
}

.intro-title span {
    color: #DC2626;
}

.intro-text {
    max-width: 700px;
    margin: 18px auto 0;
    color: #64748B;
    font-size: 17px;
    line-height: 1.7;
}

/* CARDS */
.intro-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(220,38,38,.35);
    transition: all .35s ease;
    height: 100%;
}

.intro-card i {
    font-size: 42px;
    color: #DC2626;
    margin-bottom: 18px;
}

.intro-card h4 {
    font-weight: 800;
    margin-bottom: 10px;
    color: #0F172A;
}

.intro-card p {
    color: #64748B;
    font-size: 15px;
}

/* HOVER PRO EFFECT */
.intro-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 90px rgba(249,115,22,.25);
}
  /* TYPING CURSOR */
.text-dark {
    color: #0F172A; /* deep black / navy */
}

.text-orange {
    color: #DC2626; /* brand orange */
}

/* typing cursor */
.typing::after {
    content: "|";
    margin-left: 4px;
    animation: blink 1s infinite;
    color: #DC2626;
}

@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 1; }
}

/* WHY DIFFERENT SECTION */
.why-different {
    background: #ffffff;
}

.why-different .section-sub {
    color: #DC2626;
    letter-spacing: 3px;
    font-weight: 600;
}

.why-different .section-title {
    font-size: 40px;
    font-weight: 800;
    margin: 15px 0;
}

.why-different .section-title span {
    color: #DC2626;
}

.why-different .section-desc {
    color: #64748b;
    font-size: 16px;
    line-height: 1.8;
}

/* STEPS */
.why-step {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
    align-items: flex-start;
}

.step-icon {
    min-width: 55px;
    height: 55px;
    border-radius: 50%;
   background: linear-gradient(135deg, #DC2626, #991B1B);

    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    box-shadow: 0 15px 30px rgba(249,115,22,.4);
}

.why-step h4 {
    font-weight: 700;
    margin-bottom: 8px;
}

.why-step p {
    color: #64748b;
    font-size: 15px;
    margin: 0;
}

/* PROCESS SECTION */
.process-section {
    background: linear-gradient(180deg, #f8fafc, #ffffff);
}

.process-section .section-sub {
    color: #DC2626;
    letter-spacing: 3px;
    font-weight: 600;
}

.process-section .section-title {
    font-size: 40px;
    font-weight: 800;
}

.process-section .section-title span {
    color: #DC2626;
}

.process-section .section-desc {
    max-width: 650px;
    margin: 15px auto 0;
    color: #64748b;
}

/* PROCESS FLOW */
.process-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.process-step {
    text-align: center;
    max-width: 220px;
}

.process-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: linear-gradient(135deg, #DC2626, #991B1B);

    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 26px;
    box-shadow: 0 20px 40px rgba(249,115,22,.4);
}

.process-step h4 {
    font-weight: 700;
    margin-bottom: 8px;
}

.process-step p {
    font-size: 14px;
    color: #64748b;
}

/* LINE BETWEEN STEPS */
.process-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(
        90deg,
        rgba(249,115,22,.1),
        rgba(249,115,22,.5),
        rgba(249,115,22,.1)
    );
    margin: 0 10px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .process-wrapper {
        flex-direction: column;
    }

    .process-line {
        width: 2px;
        height: 40px;
    }
}


/* MODAL BASE */
.shop-modal {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: none;
}

.shop-modal.active {
    display: block;
}

/* BACKGROUND IMAGE + SHADOW */
.shop-modal-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0,0,0,.85), rgba(0,0,0,.9)),
        url("hard2.jpeg");
            background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    backdrop-filter: blur(4px);
}

/* CONTENT */
.shop-modal-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: auto;
    padding: 80px 40px;
    text-align: center;
    color: #fff;
}

/* CLOSE BUTTON */
.close-modal {
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 38px;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
    transition: transform .3s ease, color .3s ease;
}

.close-modal:hover {
    transform: rotate(90deg);
    color: #DC2626; /* professional red */
}
.shop-modal-content {
    max-height: 85vh;          /* modal height relative to screen */
    overflow-y: auto;          /* enable vertical scroll */
    scrollbar-width: thin;     /* Firefox */
}

/* Chrome, Edge, Safari */
.shop-modal-content::-webkit-scrollbar {
    width: 6px;
}

.shop-modal-content::-webkit-scrollbar-track {
    background: transparent;
}

.shop-modal-content::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 10px;
}

/* TITLES */
.modal-title {
    font-size: 48px;
    font-weight: 800;
}

.modal-subtitle {
    color: #d1d5db;
    max-width: 600px;
    margin: 20px auto 60px;
}

/* LINES (NO BOXES) */
.modal-lines {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 600px;
    margin: auto;
}

/* SINGLE LINE */
.modal-line {
    display: flex;
    align-items: center;
    gap: 25px;
    text-align: left;
    transition: transform .4s ease;
}

.modal-line:hover {
    transform: translateX(10px);
}

/* ICON STYLE (YELLOW + ORANGE MIX) */
.modal-line i {
    font-size: 44px;
    background: linear-gradient(135deg, #DC2626, #991B1B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 8px 14px rgba(220,38,38,.55));
}


/* TEXT */
.modal-line h4 {
    font-size: 22px;
    margin-bottom: 4px;
}

.modal-line span {
    color: #bfc5cc;
    font-size: 15px;
}

/* BUTTON */
.modal-btn {
    display: inline-block;
    margin-top: 70px;
    padding: 16px 40px;
    background: linear-gradient(135deg, #DC2626, #991B1B);
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;

    box-shadow: 0 12px 30px rgba(220,38,38,.5);
}


.modal-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 45px rgba(220,38,38,.75);
}



/* ================= ULTRA PRO BACK TO TOP ================= */

.back-to-top-pro {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    /* 🔴 PROFESSIONAL RED GRADIENT */
    background: linear-gradient(135deg, #DC2626, #991B1B);
    color: #fff;
    font-size: 34px;

    /* 🔴 RED GLOW SHADOW */
    box-shadow:
        0 15px 35px rgba(220,38,38,.55),
        inset 0 0 12px rgba(255,255,255,.35);

    cursor: pointer;
    z-index: 9999;

    opacity: 0;
    visibility: hidden;
    transform: translateY(30px) scale(.85);
    transition: all .45s ease;
}

/* SHOW STATE */
.back-to-top-pro.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* ICON ANIMATION */
.back-to-top-pro i {
    animation: arrowFloat 1.6s infinite ease-in-out;
}

/* HOVER EFFECT */
.back-to-top-pro:hover {
    transform: scale(1.15);
    box-shadow:
        0 25px 55px rgba(220,38,38,.85),
        inset 0 0 16px rgba(255,255,255,.45);
}

/* FLOATING ARROW */
@keyframes arrowFloat {
    0% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
    100% { transform: translateY(0); }
}


/* FOOTER TOGGLE BUTTON */

.nav-footer-btn {
    width: 42px;
    height: 42px;
    background: transparent;
    border: 1px solid rgba(249,115,22,.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    border-radius: 10px;
    cursor: pointer;
    transition: all .3s ease;
}

.nav-footer-btn span {
    width: 22px;
    height: 2px;
    background: linear-gradient(135deg, #DC2626, #7F1D1D);
    transition: all .3s ease;
}

.nav-footer-btn:hover {
    background: #DC2626;
    box-shadow: 0 0 18px rgba(249,115,22,.8);
}

.nav-footer-btn:hover span {
    background: #fff;
}

/* =========================
   SIDE FOOTER WRAPPER
========================= */
.side-footer {
    position: fixed;
    inset: 0;
    z-index: 99998;
    pointer-events: none;
}

.side-footer.active {
    pointer-events: auto;
}

/* =========================
   OVERLAY (DEPTH + FOCUS)
========================= */
.side-footer-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at right, rgba(0,0,0,.35), rgba(0,0,0,.85)),
        linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.9));
    opacity: 0;
    transition: opacity .6s ease;
}

.side-footer.active .side-footer-overlay {
    opacity: 1;
}

/* =========================
   CONTENT PANEL (PRO)
========================= */
.side-footer-content {
    position: absolute;
    top: 0;
    right: -460px;
    width: 460px;
    height: 100%;
   background:
        radial-gradient(circle at center, rgba(0,0,0,.35), rgba(0,0,0,.85)),
        linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.85));
    backdrop-filter: blur(18px);
 /*   box-shadow:
        -25px 0 70px rgba(0,0,0,.6),
        inset 0 0 0 1px rgba(255,255,255,.06);*/
    transition: right .7s cubic-bezier(.68,-0.55,.27,1.55);
    overflow-y: auto;
}

.side-footer.active .side-footer-content {
    right: 0;
}

/* =========================
   CLOSE BUTTON (PRO)
========================= */
.side-footer-close {
    position: absolute;
    top: 18px;
    right: 18px;
    font-size: 34px;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    transition: .4s;
    z-index: 10;
}

.side-footer-close:hover {
    color: #DC2626;
    transform: rotate(90deg) scale(1.15);
    text-shadow: 0 0 18px rgba(249,115,22,.9);
}

/* =========================
   FOOTER STRUCTURE
========================= */
.footer-section {
    padding: 80px 35px 30px;
    color: #E5E7EB;
}

/* Layout */
.footer-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 45px;
}

/* =========================
   BRAND
========================= */
.footer-brand {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: .5px;
}

.footer-brand i {
    background: linear-gradient(135deg, #DC2626, #7F1D1D);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-right: 6px;
}

.footer-col p {
    line-height: 1.7;
    color: #CBD5E1;
}

/* =========================
   TITLES
========================= */
.footer-col h5 {
    color: #fff;
    margin-bottom: 15px;
    position: relative;
}

.footer-col h5::after {
    content: "";
    width: 32px;
    height: 3px;
    background: linear-gradient(90deg,#DC2626,#FB923C);
    display: block;
    margin-top: 6px;
}

/* =========================
   LINKS (ANIMATED)
========================= */
.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #CBD5E1;
    text-decoration: none;
    position: relative;
    padding-left: 18px;
    transition: .35s;
}

.footer-col ul li a::before {
    content: "›";
    position: absolute;
    left: 0;
    opacity: 0;
    transition: .35s;
    color: #DC2626;
}

.footer-col ul li a:hover {
    color: #DC2626;
    padding-left: 24px;
}

.footer-col ul li a:hover::before {
    opacity: 1;
}

/* =========================
   SOCIAL ICONS (FLOAT)
========================= */
.footer-social a {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,.06);
    margin-right: 10px;
    transition: .45s;
}

.footer-social a:hover {
    background: linear-gradient(135deg, #DC2626, #7F1D1D);
    box-shadow: 0 12px 30px rgba(220,38,38,.85);

    transform: translateY(-6px) scale(1.1);
}

/* =========================
   BOTTOM
========================= */
.footer-bottom {
    margin-top: 40px;
    text-align: center;
    font-size: 14px;
    color: #94A3B8;
    border-top: 1px solid rgba(255,255,255,.08);
    padding-top: 15px;
}


/*PRODUCTS*/

/* ================= CATEGORIES PRO ================= */

.categories-pro {
    background: #ffffff;
}

.section-sub {
    color: #64748b;
    letter-spacing: 3px;
    font-weight: 600;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: #0f172a;
}

.section-title span {
    color: #DC2626;
}

/* CATEGORY ITEM */
.category-item {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 14px;
    height: 320px;
    text-decoration: none;
}

/* IMAGE */
.category-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s ease;
}

/* DARK GRADIENT OVER IMAGE */
.category-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,.15),
            rgba(0,0,0,.75)
        );
    z-index: 1;
}

/* CAPTION */
.category-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 25px;
    z-index: 2;
    color: #fff;
    transform: translateY(10px);
    transition: .5s ease;
}

.category-caption h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 6px;
}

.category-caption span {
    font-size: 14px;
    color: #e5e7eb;
}

/* HOVER EFFECT */
.category-item:hover img {
    transform: scale(1.12);
}

.category-item:hover .category-caption {
    transform: translateY(0);
}

/* RED ACCENT LINE */
.category-caption::before {
    content: "";
    position: absolute;
    left: 25px;
    top: -8px;
    width: 40px;
    height: 3px;
    background: #DC2626;
    border-radius: 3px;
}



/* ROW LAYOUT */
.category-row {
    display: flex;
    gap: 30px;
    align-items: center;
}

/* LEFT IMAGE SIZE */
.category-image {
    flex: 0 0 320px;   /* FIXED WIDTH = STABLE */
    height: 320px;
}


/* RIGHT CONTENT */
.category-content {
    flex: 1;
}

.category-content h3 {
    font-size: 26px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
}

.category-content p {
    font-size: 15px;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 16px;
}

/* LIST STYLE */
.category-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.category-content ul li {
    font-size: 14px;
    color: #334155;
    margin-bottom: 6px;
}

/* LINK */
.category-link {
    font-weight: 700;
    font-size: 14px;
    color: #DC2626;
    text-decoration: none;
    position: relative;
}

.category-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: #DC2626;
    transition: .3s ease;
}

.category-link:hover::after {
    width: 100%;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .category-row {
        flex-direction: column;
    }

    .category-image {
        width: 100%;
    }
}


/* =======================
   SCREW MODAL WRAPPER
======================= */
.screw-modal {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: none;
}

.screw-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* =======================
   DARK OVERLAY
======================= */
.screw-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(circle at center, rgba(0,0,0,.55), rgba(0,0,0,.92));
    backdrop-filter: blur(6px);
}

/* =======================
   MODAL CONTENT
======================= */
.screw-modal-content {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 1100px;
    background: #fff;
    padding: 60px 50px;
    border-radius: 20px;
    text-align: center;
        max-height: 85vh;       
    overflow-y: auto;       
    overscroll-behavior: contain;
    animation: modalZoom .6s ease;
}

.screw-modal-content::-webkit-scrollbar {
    width: 6px;
}

.screw-modal-content::-webkit-scrollbar-thumb {
    background: rgba(220,38,38,.45);
    border-radius: 10px;
}

.screw-modal-content::-webkit-scrollbar-track {
    background: transparent;
}

/* =======================
   CLOSE BUTTON
======================= */
.screw-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 40px;
    background: none;
    border: none;
    color: #111;
    cursor: pointer;
    transition: .3s;
}

.screw-close:hover {
    color: #DC2626;
    transform: rotate(90deg);
}

/* =======================
   TITLE & TEXT
======================= */
.screw-modal-content h2 {
    font-size: 44px;
    font-weight: 800;
    color: #0f172a;
}

.screw-modal-content p {
    max-width: 600px;
    margin: 15px auto 50px;
    color: #475569;
}

/* =======================
   GALLERY GRID
======================= */
.screw-gallery {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 22px;
}

/* =======================
   IMAGES
======================= */
.screw-gallery img {
    width: 100%;
    height: 370px; 
    visibility: visible !important;
    object-fit: cover;
    border-radius: 14px;
    cursor: pointer;
    transition: .45s ease;

    box-shadow: 0 14px 30px rgba(220,38,38,.25);
}

.screw-gallery img:hover {
    transform: scale(1.12);
    box-shadow: 0 26px 60px rgba(220,38,38,.55);
}

/* =======================
   ANIMATION
======================= */
@keyframes modalZoom {
    from {
        opacity: 0;
        transform: scale(.85);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* =======================
   PAINT MODAL WRAPPER
======================= */
.paint-modal {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: none;
}

.paint-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* OVERLAY */
.paint-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(circle at center, rgba(0,0,0,.5), rgba(0,0,0,.9));
    backdrop-filter: blur(6px);
}

/* CONTENT */
.paint-modal-content {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 1100px;
    background: #fff;
    padding: 60px 50px;
    border-radius: 20px;
    text-align: center;
        max-height: 85vh;       
    overflow-y: auto;       
    overscroll-behavior: contain;
    animation: modalZoom .6s ease;
}

.paint-modal-content::-webkit-scrollbar {
    width: 6px;
}

.paint-modal-content::-webkit-scrollbar-thumb {
    background: rgba(220,38,38,.45);
    border-radius: 10px;
}

.paint-modal-content::-webkit-scrollbar-track {
    background: transparent;
}
/* CLOSE */
.paint-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 40px;
    background: none;
    border: none;
    color: #111;
    cursor: pointer;
    transition: .3s;
}

.paint-close:hover {
    color: #DC2626;
    transform: rotate(90deg);
}

/* TEXT */
.paint-modal-content h2 {
    font-size: 44px;
    font-weight: 800;
    color: #0f172a;
}

.paint-modal-content p {
    max-width: 600px;
    margin: 15px auto 50px;
    color: #475569;
}

/* GALLERY */
.paint-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 22px;
}

/* IMAGES */
.paint-gallery img {
    width: 100%;
    height: 370px; 
    visibility: visible !important;
    object-fit: cover;
    border-radius: 14px;
    cursor: pointer;
    transition: .45s ease;

    box-shadow: 0 14px 30px rgba(220,38,38,.25);
}

.paint-gallery img:hover {
    transform: scale(1.12);
   box-shadow: 0 26px 60px rgba(220,38,38,.55);
}


/* =======================
   ELECTRICAL MODAL
======================= */
.electrical-modal {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: none;
}

.electrical-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* =======================
   OVERLAY
======================= */
.electrical-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(circle at center, rgba(0,0,0,.5), rgba(0,0,0,.9));
    backdrop-filter: blur(6px);
}

/* =======================
   CONTENT
======================= */
.electrical-modal-content {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 1100px;
    background: #fff;
    padding: 60px 50px;
    border-radius: 20px;
    text-align: center;

    max-height: 85vh;
    overflow-y: auto;
    overscroll-behavior: contain;

    animation: modalZoom .6s ease;
}

/* SCROLLBAR */
.electrical-modal-content::-webkit-scrollbar {
    width: 6px;
}

.electrical-modal-content::-webkit-scrollbar-thumb {
    background: rgba(220,38,38,.45);
    border-radius: 10px;
}

.electrical-modal-content::-webkit-scrollbar-track {
    background: transparent;
}

/* =======================
   CLOSE BUTTON
======================= */
.electrical-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 40px;
    background: none;
    border: none;
    color: #111;
    cursor: pointer;
    transition: .3s;
}

.electrical-close:hover {
    color: #DC2626;
    transform: rotate(90deg);
}

/* =======================
   TEXT
======================= */
.electrical-modal-content h2 {
    font-size: 44px;
    font-weight: 800;
    color: #0f172a;
}

.electrical-modal-content p {
    max-width: 600px;
    margin: 15px auto 50px;
    color: #475569;
}

/* =======================
   GALLERY
======================= */
.electrical-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 22px;
}

/* =======================
   IMAGES
======================= */
.electrical-gallery img {
    width: 100%;
    height: 370px;
    visibility: visible !important;
    object-fit: cover;
    border-radius: 14px;
    cursor: pointer;
    transition: .45s ease;

    box-shadow: 0 14px 30px rgba(220,38,38,.25);
}

.electrical-gallery img:hover {
    transform: scale(1.12);
    box-shadow: 0 26px 60px rgba(220,38,38,.55);
}


/* =======================
   TOOLS MODAL
======================= */
.tools-modal {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: none;
}

.tools-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* OVERLAY */
.tools-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(circle at center, rgba(0,0,0,.55), rgba(0,0,0,.92));
    backdrop-filter: blur(6px);
}

/* CONTENT */
.tools-modal-content {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 1100px;
    background: #fff;
    padding: 60px 50px;
    border-radius: 20px;
    text-align: center;

    max-height: 85vh;
    overflow-y: auto;
    overscroll-behavior: contain;

    animation: modalZoom .6s ease;
}

/* SCROLLBAR */
.tools-modal-content::-webkit-scrollbar {
    width: 6px;
}
.tools-modal-content::-webkit-scrollbar-thumb {
    background: rgba(220,38,38,.45);
    border-radius: 10px;
}
.tools-modal-content::-webkit-scrollbar-track {
    background: transparent;
}

/* CLOSE */
.tools-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 40px;
    background: none;
    border: none;
    color: #111;
    cursor: pointer;
    transition: .3s;
}
.tools-close:hover {
    color: #DC2626;
    transform: rotate(90deg);
}

/* TEXT */
.tools-modal-content h2 {
    font-size: 44px;
    font-weight: 800;
    color: #0f172a;
}

.tools-modal-content p {
    max-width: 600px;
    margin: 15px auto 50px;
    color: #475569;
}

/* GALLERY */
.tools-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 22px;
}

/* IMAGES */
.tools-gallery img {
    width: 100%;
    height: 370px;
    object-fit: cover;
    border-radius: 14px;
    cursor: pointer;
    transition: .45s ease;
    box-shadow: 0 14px 30px rgba(220,38,38,.25);
}

.tools-gallery img:hover {
    transform: scale(1.12);
    box-shadow: 0 26px 60px rgba(220,38,38,.55);
}

/* =======================
   MARBLE MODAL
======================= */
.marble-modal {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: none;
}

.marble-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* OVERLAY */
.marble-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(circle at center, rgba(0,0,0,.55), rgba(0,0,0,.92));
    backdrop-filter: blur(6px);
}

/* CONTENT */
.marble-modal-content {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 1100px;
    background: #fff;
    padding: 60px 50px;
    border-radius: 20px;
    text-align: center;

    max-height: 85vh;
    overflow-y: auto;
    overscroll-behavior: contain;

    animation: modalZoom .6s ease;
}

/* SCROLLBAR */
.marble-modal-content::-webkit-scrollbar {
    width: 6px;
}
.marble-modal-content::-webkit-scrollbar-thumb {
    background: rgba(220,38,38,.45);
    border-radius: 10px;
}
.marble-modal-content::-webkit-scrollbar-track {
    background: transparent;
}

/* CLOSE */
.marble-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 40px;
    background: none;
    border: none;
    color: #111;
    cursor: pointer;
    transition: .3s;
}
.marble-close:hover {
    color: #DC2626;
    transform: rotate(90deg);
}

/* TEXT */
.marble-modal-content h2 {
    font-size: 44px;
    font-weight: 800;
    color: #0f172a;
}

.marble-modal-content p {
    max-width: 600px;
    margin: 15px auto 50px;
    color: #475569;
}

/* GALLERY */
.marble-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 22px;
}

/* IMAGES */
.marble-gallery img {
    width: 100%;
    height: 370px;
    object-fit: cover;
    border-radius: 14px;
    cursor: pointer;
    transition: .45s ease;
    box-shadow: 0 14px 30px rgba(220,38,38,.25);
}

.marble-gallery img:hover {
    transform: scale(1.12);
    box-shadow: 0 26px 60px rgba(220,38,38,.55);
}


.marble-video {
    width: 30%;
    height: 500px;
    object-fit: cover;
    border-radius: 14px;
    cursor: pointer;
    transition: .45s ease;
    box-shadow: 0 14px 30px rgba(220,38,38,.25);
}

.marble-video:hover {
    transform: scale(1.12);
    box-shadow: 0 26px 60px rgba(220,38,38,.55);
}


.wood-modal {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: none;
}

.wood-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* OVERLAY */
.wood-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: radial-gradient(circle at center, rgba(0,0,0,.55), rgba(0,0,0,.92));
    backdrop-filter: blur(6px);
}

/* CONTENT */
.wood-modal-content {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 1100px;
    background: #fff;
    padding: 60px 50px;
    border-radius: 20px;
    text-align: center;

    max-height: 85vh;
    overflow-y: auto;
    animation: modalZoom .6s ease;
}

/* CLOSE */
.wood-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 40px;
    background: none;
    border: none;
    color: #111;
    cursor: pointer;
    transition: .3s;
}

.wood-close:hover {
    color: #DC2626;
    transform: rotate(90deg);
}

/* TEXT */
.wood-modal-content h2 {
    font-size: 44px;
    font-weight: 800;
    color: #0f172a;
}

.wood-modal-content p {
    margin-bottom: 40px;
    color: #475569;
}

/* GALLERY */
.wood-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 22px;
}

.wood-gallery img {
    width: 100%;
    height: 370px;
    object-fit: cover;
    border-radius: 14px;
    transition: .45s ease;
    box-shadow: 0 14px 30px rgba(220,38,38,.25);
}

.wood-gallery img:hover {
    transform: scale(1.12);
    box-shadow: 0 26px 60px rgba(220,38,38,.55);
}


/*gypsum*/

/* ===============================
   ULTRA GYPSUM FRONT
================================ */
.gypsum-ultra {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    padding: 120px 8%;
    background: linear-gradient(120deg, #f8fafc, #ffffff);
}

/* LEFT */
.gypsum-ultra-left .gypsum-label {
    font-size: 12px;
    letter-spacing: 3px;
    color: #dc2626;
    font-weight: 700;
}
.gypsum-ultra-left {
    transform: translateX(-90px);
}

.gypsum-ultra-left h1 {
    font-size: 56px;
    font-weight: 900;
    color: #020617;
    margin: 15px 0;
}

.gypsum-ultra-left h1 span {
    color: #dc2626;
}

.gypsum-ultra-left p {
    max-width: 520px;
    line-height: 1.9;
    color: #475569;
    margin-bottom: 25px;
}

.gypsum-points div {
    margin-bottom: 8px;
    font-size: 15px;
    color: #1e293b;
}

.gypsum-btn {
    margin-top: 25px;
    padding: 16px 36px;
    border-radius: 50px;
    border: none;
    font-weight: 800;
    background: #dc2626;
    color: white;
    cursor: pointer;
    transition: .4s;
}

.gypsum-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 50px rgba(220,38,38,.4);
}

/* RIGHT */
.gypsum-ultra-right {
    display: grid;
    grid-template-columns: repeat(2, minmax(240px, 1fr));
    gap: 30px;
    align-content: center;
}

/* GLASS CARD */
.glass {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(14px);
    border-radius: 24px;
    padding: 36px 32px;
    box-shadow: 0 30px 60px rgba(0,0,0,.12);
    transition: transform .4s ease, box-shadow .4s ease;
}

.glass:hover {
    transform: translateY(-6px);
    box-shadow: 0 40px 80px rgba(220,38,38,.18);
}

.gypsum-card span {
    font-size: 13px;
    letter-spacing: 2px;
    color: #dc2626;
    font-weight: 900;
}

.gypsum-card h4 {
    font-size: 20px;
    margin-top: 12px;
    color: #020617;
}


/* ===============================
   ULTRA MODAL
================================ */
.gypsum-ultra-modal {
    position: fixed;
    inset: 0;
    z-index: 999999;
    pointer-events: none;
}

.gypsum-ultra-modal.active {
    pointer-events: auto;
}

.gypsum-ultra-overlay {
    position: absolute;
    inset: 0;
    background: rgba(2,6,23,.85);
    opacity: 0;
    transition: .6s;
}

.gypsum-ultra-modal.active .gypsum-ultra-overlay {
    opacity: 1;
}

/* PANEL */
.gypsum-ultra-panel {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 70%;
    background: #ffffff;
    padding: 80px;
    transform: translateX(100%) scale(.95);
    transition: .7s cubic-bezier(.4,0,.2,1);
    overflow-y: auto;
}

.gypsum-ultra-modal.active .gypsum-ultra-panel {
    transform: translateX(0) scale(1);
}

/* CLOSE */
.gypsum-ultra-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 42px;
    border: none;
    background: none;
    cursor: pointer;
}

/* GRID */
.gypsum-ultra-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 26px;
    margin-top: 40px;
}

.gypsum-ultra-grid img {
    width: 103%;              /* keep width perfect */
    height: 350px;            /* height stays as it is */
    object-fit: cover;
    border-radius: 18px;
    transition: transform 0.4s ease;
}

.gypsum-ultra-grid img:hover {
    transform: scale(1.05);   /* smooth zoom without breaking layout */
}




.brand-signoff {
    margin-top: 60px;
    border-top: 1px solid #e5e7eb;
    padding-top: 30px;
}

.brand-signoff span {
    display: block;
    font-size: 20px;
    font-weight: 800;
    color: #020617;
}

.brand-signoff em {
    font-style: normal;
    color: #64748b;
    font-size: 16px;
}

.ultra-products {
    padding: 120px 6%;
    background:
        radial-gradient(circle at center, rgba(0,0,0,.35), rgba(0,0,0,.85)),
        linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.85));
    color: #fff;
    overflow: hidden;
}

.ultra-header {
    text-align: center;
    max-width: 700px;
    margin: auto;
}

.ultra-tag {
    display: inline-block;
    padding: 6px 18px;
    border: 1px solid #ff2b2b;
    color: #ff2b2b;
    letter-spacing: 2px;
    font-size: 12px;
    margin-bottom: 20px;
}

.ultra-header h2 {
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(90deg, #ff2b2b, #ff8c8c);
    -webkit-background-clip: text;
    color: transparent;
}

.ultra-header p {
    opacity: .7;
    margin-top: 10px;
}

.ultra-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
    margin-top: 80px;
}

.ultra-card {
    position: relative;
    padding: 60px 30px;
    border-radius: 20px;
    background: linear-gradient(145deg, #0e0e0e, #1b1b1b);
    box-shadow: 0 30px 80px rgba(255,0,0,.15);
    text-align: center;
    transition: .6s cubic-bezier(.19,1,.22,1);
    cursor: pointer;
    overflow: hidden;
}

.ultra-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(255,43,43,.35), transparent);
    transform: translateX(-100%);
    transition: .8s;
}

.ultra-card:hover::before {
    transform: translateX(100%);
}

.ultra-card:hover {
    transform: translateY(-20px) scale(1.04);
    box-shadow: 0 60px 120px rgba(255,0,0,.35);
}

.ultra-icon {
    width: 90px;
    height: 90px;
    margin: auto;
    border-radius: 50%;
    background: radial-gradient(circle, #ff2b2b, #7a0000);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    box-shadow: 0 0 40px rgba(255,43,43,.6);
    margin-bottom: 25px;
    transition: .6s;
}

.ultra-card:hover .ultra-icon {
    transform: rotateY(360deg);
}

.ultra-card h4 {
    font-size: 22px;
    margin-bottom: 8px;
}

.ultra-card span {
    font-size: 14px;
    opacity: .7;
}




.services-ultra {
    max-width: 1300px;
    margin: 180px auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 100px;
    align-items: center;
}

/* LEFT */
.services-label {
    font-size: 12px;
    letter-spacing: 3px;
    color: #dc2626;
    font-weight: 700;
}

.services-ultra-left h1 {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.15;
    margin: 16px 0 28px;
    color: #020617;
}

.services-ultra-left h1 span {
    color: #dc2626;
}

.services-intro {
    font-size: 19px;
    line-height: 1.9;
    color: #475569;
    max-width: 650px;
    margin-bottom: 40px;
}

.services-list {
    display: grid;
    gap: 26px;
    margin-bottom: 50px;
}

.services-list div strong {
    display: block;
    font-size: 18px;
    color: #020617;
    margin-bottom: 6px;
}

.services-list div span {
    font-size: 16px;
    color: #64748b;
}

.services-sign {
    border-top: 1px solid #e5e7eb;
    padding-top: 26px;
}

.services-sign span {
    display: block;
    font-size: 20px;
    font-weight: 800;
}

.services-sign em {
    font-style: normal;
    color: #64748b;
}

/* RIGHT VISUAL */
.services-ultra-visual {
    display: flex;
    justify-content: center;
}

.visual-frame {
    width: 360px;
    height: 360px;
    border-radius: 26px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 90px rgba(0,0,0,.25);
    transform: perspective(900px) rotateY(-12deg);
    transition: .6s ease;
}

.visual-frame:hover {
    transform: perspective(900px) rotateY(0deg) scale(1.04);
}

.grid-svg {
    width: 100%;
    height: 100%;
}

.visual-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    gap: 10px;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    background: linear-gradient(to top, rgba(0,0,0,.65), transparent);
}

.service-framework {
    max-width: 1400px;
    margin: 200px auto;
    padding: 0 60px;
}

/* HEADER */
.framework-header {
    max-width: 700px;
    margin-bottom: 90px;
}

.framework-header span {
    font-size: 12px;
    letter-spacing: 3px;
    font-weight: 700;
    color: #dc2626;
}

.framework-header h2 {
    font-size: 52px;
    font-weight: 900;
    line-height: 1.15;
    margin: 18px 0 26px;
    color: #020617;
}

.framework-header h2 span {
    color: #dc2626;
}

.framework-header p {
    font-size: 18px;
    line-height: 1.9;
    color: #475569;
}

/* FLOW GRID */
.framework-flow {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* STEP CARD */
.flow-step {
    position: relative;
    padding: 40px 32px;
    border-radius: 20px;
background: linear-gradient(145deg, #7f1d1d, #dc2626);
box-shadow: 0 25px 70px rgba(127, 29, 29, .35);

    transition: .4s ease;
}

.flow-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 90px rgba(0,0,0,.15);
}

.step-index {
    font-size: 42px;
    font-weight: 900;
    color:  radial-gradient(circle at center, rgba(0,0,0,.35), rgba(0,0,0,.85)),
        linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.85));"
    margin-bottom: 20px;
}

.flow-step h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 14px;
    color: #020617;
}

.flow-step p {
    font-size: 16px;
    line-height: 1.8;
    color: #fff;
}

/*.service-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.service-logo img {
    width: 100px;
    height: auto;
    display: block;
}*/


.about-ultra {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 120px;
    padding: 160px 8%;
    background: #ffffff;
}

/* LEFT */
.about-ultra-left {
    max-right: 720px;
}

.about-eyebrow {
    font-size: 12px;
    letter-spacing: 3px;
    font-weight: 700;
    color: #dc2626;
}

.about-ultra-left h1 {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.1;
    color: #020617;
    margin: 20px 0 30px;
}

.about-ultra-left h1 span {
    color: #dc2626;
}

.about-lead {
    font-size: 22px;
    color: #020617;
    margin-bottom: 25px;
}

.about-ultra-left p {
    font-size: 18px;
    line-height: 1.9;
    color: #475569;
    margin-bottom: 22px;
}

/* STATS */
.about-stats {
    margin-top: 50px;
    display: grid;
    gap: 20px;
}

.about-stats div strong {
    display: block;
    font-size: 18px;
    color: #020617;
}

.about-stats div span {
    font-size: 14px;
    color: #64748b;
}

/* RIGHT */
.about-ultra-right {
    display: flex;
    align-items: center;
}

.about-visual {
    position: relative;
    padding-left: 40px;
}

.visual-line {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #dc2626, transparent);
}

.visual-block {
    margin-bottom: 45px;
}

.visual-block h3 {
    font-size: 20px;
    font-weight: 800;
    color: #020617;
}

.visual-block p {
    font-size: 15px;
    color: #475569;
    margin-top: 6px;
}


.about-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}


.about-system {
    position: relative;
    height: 420px;
    margin-top: -300px;
    overflow: hidden;
}

#systemCanvas {
    width: 100%;
    height: 100%;
    display: block;
}

.system-label {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    font-family: system-ui, sans-serif;
}

.system-label strong {
    display: block;
    font-size: 20px;
    font-weight: 800;
    color: #020617;
}

.system-label span {
    font-size: 14px;
    color: #64748b;
    letter-spacing: 1px;
}




/*
.testimonials {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background: #fff;
}

.testimonial {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 300px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.15);
  border-radius: 20px;
  opacity: 0;
  transform: scale(0.8);
  animation: fadeIn 2s ease-in-out forwards;
  animation-delay: 0.5s;
  z-index: 1;
  transition: all 0.3s ease;
}

.testimonial:nth-child(1) {
  animation-delay: 0.3s;
  top: 10%;
  left: 5%;
}

.testimonial:nth-child(2) {
  animation-delay: 1s;
  top: 30%;
  left: 40%;
}

.testimonial:nth-child(3) {
  animation-delay: 1.7s;
  top: 50%;
  left: 70%;
}

.testimonial-text p {
  font-size: 1.2rem;
  color: #555;
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.5;
}

.testimonial-text h3 {
  font-size: 1.3rem;
  font-weight: bold;
  color: #DC2626;
  margin-bottom: 5px;
}

.position {
  font-size: 1rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.testimonial:hover {
  transform: scale(1.05) translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.testimonial:hover .testimonial-text p {
  color: #DC2626;
  font-weight: 500;
}

.testimonial:hover .testimonial-text h3 {
  color: #fff;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.testimonial::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #DC2626 0%, #FF5733 100%);
  border-radius: 20px;
  opacity: 0.2;
  z-index: -1;
  transition: opacity 0.3s ease;
}

.testimonial:hover::before {
  opacity: 0.5;
}*/





.contact-ultra-pro {
    max-width: 1200px;
    margin: 140px auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 100px;
}

.contact-tag {
    color: #dc2626;
    letter-spacing: 3px;
    font-size: 12px;
    font-weight: 700;
}

.contact-left h1 {
    font-size: 48px;
    font-weight: 900;
    margin: 20px 0;
}

.contact-left span {
    color: #dc2626;
}

.contact-left p {
    font-size: 18px;
    color: #475569;
    line-height: 1.8;
}

.contact-right {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 26px 30px;
    border-radius: 18px;
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    box-shadow: 0 20px 60px rgba(0,0,0,.08);
    text-decoration: none;
    color: #020617;
    transition: transform .4s ease, box-shadow .4s ease;
    cursor: pointer;
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 80px rgba(220,38,38,.25);
}

.contact-card i {
    font-size: 30px;
    color: #dc2626;
}

.contact-card h4 {
    font-weight: 800;
    margin-bottom: 4px;
}

/* MODAL */
.location-modal-ultra {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
}

.location-modal-ultra.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.75);
    backdrop-filter: blur(8px);
}

.modal-panel {
    position: relative;
    background: #fff;
    width: 90%;
    max-width: 900px;
    border-radius: 24px;
    padding: 50px;
    z-index: 2;
    transform: scale(.85) translateY(120px);
    opacity: 0;
}

.modal-map {
    margin-top: 30px;
    height: 360px;
    border-radius: 16px;
    overflow: hidden;
}

.modal-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.modal-close {
    position: absolute;
    top: 18px;
    right: 24px;
    font-size: 34px;
    background: none;
    border: none;
    cursor: pointer;
}

.direct-visual {
    margin-top: 20px;
    max-width: 420px;
}

.direct-visual img {
    width: 100%;
    height: auto;
    border-radius: 18px;
    box-shadow: 
        0 30px 80px rgba(0,0,0,0.12),
        inset 0 1px 0 rgba(255,255,255,0.3);
    transition: transform .6s ease, box-shadow .6s ease;
}

/* subtle pro hover (desktop only) */
.direct-visual img:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 40px 100px rgba(0,0,0,0.18);
}
.trade-readiness {
    background: #ffffff;
    padding: 140px 8% 120px;
    margin-top: -200px;
}

.trade-container {
    max-width: 1200px;
    margin: auto;
    border-top: 1px solid #e5e7eb;
    padding-top: 80px;
}

.trade-header {
    max-width: 620px;
    margin-bottom: 70px;
}

.trade-label {
    font-size: 12px;
    letter-spacing: 3px;
    color: #dc2626;
    font-weight: 700;
}

.trade-header h2 {
    font-size: 42px;
    font-weight: 900;
    margin: 14px 0 20px;
    color: #020617;
}

.trade-header p {
    font-size: 18px;
    line-height: 1.8;
    color: #475569;
}

.trade-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 90px;
}

.trade-signal {
    display: flex;
    align-items: center;
    gap: 18px;
    opacity: 0;
    transform: translateY(30px);
    transition: all .8s ease;
}

.trade-signal.active {
    opacity: 1;
    transform: translateY(0);
}

.trade-signal strong {
    display: block;
    font-size: 16px;
    font-weight: 800;
    color: #020617;
}

.trade-signal em {
    font-style: normal;
    font-size: 15px;
    color: #64748b;
}

.signal-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #dc2626;
    box-shadow: 0 0 0 rgba(220,38,38,.6);
    animation: pulse 2.5s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(220,38,38,.5); }
    70% { box-shadow: 0 0 0 12px rgba(220,38,38,0); }
    100% { box-shadow: 0 0 0 0 rgba(220,38,38,0); }
}

.trade-footer {
    border-top: 1px solid #e5e7eb;
    padding-top: 40px;
}

.trade-footer span {
    display: block;
    font-size: 20px;
    font-weight: 900;
    color: #020617;
}

.trade-footer em {
    font-style: normal;
    font-size: 15px;
    color: #64748b;
}

/* Responsive */
@media (max-width: 1024px) {
    .trade-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .trade-grid {
        grid-template-columns: 1fr;
    }
}



.trade-invite {
    position: relative;
    padding: 140px 8% 160px;
    background: linear-gradient(
        180deg,
        #ffffff 0%,
        #f8fafc 100%
    );
    overflow: hidden;
}

.trade-invite-inner {
    max-width: 900px;
    margin: auto;
    text-align: center;
}

.trade-invite h3 {
    font-size: 36px;
    font-weight: 900;
    color: #020617;
    line-height: 1.3;
    margin-bottom: 18px;
    opacity: 0;
    transform: translateY(20px);
}

.trade-invite h3 span {
    color: #dc2626;
}

.trade-invite p {
    font-size: 17px;
    color: #64748b;
    letter-spacing: .3px;
    opacity: 0;
    transform: translateY(20px);
}

/* Glow effect */
.trade-invite::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at center,
        rgba(220,38,38,.08),
        transparent 70%
    );
    opacity: 0;
    transition: opacity .6s ease;
}

.trade-invite:hover::before {
    opacity: 1;
}


.cement-ultra {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 90px;
    padding: 140px 8%;
    background: linear-gradient(120deg, #f8fafc, #ffffff);
}

.cement-badge {
    font-size: 12px;
    letter-spacing: 3px;
    color: #dc2626;
    font-weight: 800;
}

.cement-left h1 {
    font-size: 58px;
    font-weight: 900;
    margin: 20px 0;
    color: #020617;
}

.cement-left h1 span {
    color: #dc2626;
}

.cement-left p {
    max-width: 520px;
    line-height: 1.9;
    color: #475569;
    margin-bottom: 30px;
}

.cement-points li {
    list-style: none;
    margin-bottom: 12px;
    font-weight: 600;
    color: #020617;
}

.cement-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 16px 38px;
    border-radius: 40px;
    background: #dc2626;
    color: #fff;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 20px 50px rgba(220,38,38,.35);
    transition: .4s ease;
}

.cement-btn:hover {
    transform: translateY(-4px);
}

/* IMAGE STACK */
.cement-stack {
    position: relative;
    height: 420px;
}

.cement-stack img {
    position: absolute;
    width: 300px;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,.18);
    transition: .6s ease;
}

.cement-stack img:nth-child(1) {
    top: 0;
    left: 0;
    transform: rotate(-8deg);
}

.cement-stack img:nth-child(2) {
    top: 60px;
    left: 120px;
    z-index: 2;
}

.cement-stack img:nth-child(3) {
    top: 140px;
    left: 40px;
    transform: rotate(6deg);
}

.cement-stack:hover img {
    transform: rotate(0) scale(1.05);
}

.cement-modal {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 999999;
    perspective: 1400px;
}

.cement-modal-content {
    max-height: 80vh;          /* controls modal height */
    overflow-y: auto;          /* enables vertical scroll */
    padding-right: 10px;       /* space so scrollbar doesn’t overlap content */
}

.cement-modal-content::-webkit-scrollbar {
    width: 6px;
}

.cement-modal-content::-webkit-scrollbar-thumb {
    background: rgba(220,38,38,.45);
    border-radius: 10px;
}

.cement-modal-content::-webkit-scrollbar-track {
    background: transparent;
}


.cement-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cement-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(0,0,0,.5), rgba(0,0,0,.95));
}

.cement-modal-box {
    position: relative;
    background: #fff;
    width: 90%;
    max-width: 1100px;
    padding: 70px;
    border-radius: 24px;
    text-align: center;
    transform: rotateX(90deg) scale(.8);
    animation: cementFlip .8s forwards ease;
}

@keyframes cementFlip {
    to {
        transform: rotateX(0) scale(1);
    }
}

.cement-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 40px;
    background: none;
    border: none;
    cursor: pointer;
}

.cement-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
    gap: 30px;
    margin-top: 50px;
}

.cement-gallery img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(220,38,38,.3);
    transition: .5s;
}

.cement-gallery img:hover {
    transform: scale(1.08);
}

.call-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: .3s ease;
    z-index: 9999;
}

.call-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.call-modal {
    background: #fff;
    width: 90%;
    max-width: 320px;
    padding: 25px;
    border-radius: 14px;
    text-align: center;
    transform: scale(.85);
    transition: .35s ease;
}

.call-overlay.active .call-modal {
    transform: scale(1);
}

.call-modal h3 {
    margin-bottom: 20px;
    color: #d60000;
}

.call-option {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    margin-bottom: 12px;
    border-radius: 10px;
    text-decoration: none;
    background: #d60000;
    color: #fff;
    font-weight: 500;
}

.call-option:hover {
    background: #b80000;
}

.close-call {
    background: none;
    border: none;
    margin-top: 10px;
    color: #666;
    cursor: pointer;
}

.email-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: .3s ease;
    z-index: 9999;
}

.email-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.email-modal {
    background: #fff;
    width: 90%;
    max-width: 340px;
    padding: 25px;
    border-radius: 14px;
    text-align: center;
    transform: scale(.85);
    transition: .35s ease;
}

.email-overlay.active .email-modal {
    transform: scale(1);
}

.email-modal h3 {
    margin-bottom: 20px;
    color: #d60000;
}

.email-option {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    margin-bottom: 12px;
    border-radius: 10px;
    text-decoration: none;
    background: #d60000;
    color: #fff;
    font-weight: 500;
    word-break: break-all;
}

.email-option:hover {
    background: #b80000;
}

.close-email {
    background: none;
    border: none;
    margin-top: 10px;
    color: #666;
    cursor: pointer;
}


/* ===========================
   ROOF MODAL
=========================== */

.roof-modal {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: none;
}

.roof-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* OVERLAY */
.roof-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: radial-gradient(circle at center, rgba(0,0,0,.55), rgba(0,0,0,.92));
    backdrop-filter: blur(6px);
}

/* CONTENT */
.roof-modal-content {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 1100px;
    background: #ffffff;
    padding: 60px 50px;
    border-radius: 20px;
    text-align: center;

    max-height: 85vh;
    overflow-y: auto;
    animation: modalZoom .6s ease;
}

/* CLOSE BUTTON */
.roof-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 40px;
    background: none;
    border: none;
    color: #111;
    cursor: pointer;
    transition: .3s;
}

.roof-close:hover {
    color: #dc2626;
    transform: rotate(90deg);
}

/* TEXT */
.roof-modal-content h2 {
    font-size: 44px;
    font-weight: 800;
    color: #0f172a;
}

.roof-modal-content p {
    margin-bottom: 40px;
    color: #475569;
    font-size: 17px;
}

/* GALLERY */
.roof-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 22px;
}

.roof-gallery img {
    width: 100%;
    height: 370px;
    object-fit: cover;
    border-radius: 14px;
    transition: .45s ease;
    box-shadow: 0 14px 30px rgba(15,23,42,.25);
}

.roof-gallery img:hover {
    transform: scale(1.12);
    box-shadow: 0 26px 60px rgba(15,23,42,.55);
}

/* ANIMATION */
@keyframes modalZoom {
    from {
        transform: scale(.85);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}


.supreme-products {
    padding: 140px 5%;
    background:
        radial-gradient(circle at center, rgba(0,0,0,.35), rgba(0,0,0,.85)),
        linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.85));
    color: #fff;
    overflow: hidden;
}

.supreme-title {
    text-align: center;
    max-width: 800px;
    margin: auto;
}

.supreme-title h2 {
    font-size: 56px;
    font-weight: 900;
    letter-spacing: -1px;
    background: linear-gradient(90deg, #ff1f1f, #ff6b6b);
    -webkit-background-clip: text;
    color: transparent;
}

.supreme-title p {
    margin-top: 15px;
    opacity: .65;
}

.supreme-track {
    margin-top: 100px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.supreme-item {
    position: relative;
    height: 180px;
    background: linear-gradient(135deg, #0c0c0c, #141414);
    border-radius: 30px;
    overflow: hidden;
    cursor: pointer;
    transform-style: preserve-3d;
    transition: .8s cubic-bezier(.19,1,.22,1);
    box-shadow: 0 40px 120px rgba(255,0,0,.15);
}

.supreme-bg {
    position: absolute;
    font-size: 120px;
    font-weight: 900;
    color: rgba(255,255,255,.03);
    top: 50%;
    left: -10%;
    transform: translateY(-50%);
    letter-spacing: 15px;
    transition: .8s;
    white-space: nowrap;
}

.supreme-content {
    position: relative;
    height: 100%;
    padding: 0 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
}

.supreme-content h3 {
    font-size: 32px;
    margin-bottom: 6px;
}

.supreme-content p {
    opacity: .65;
}

.supreme-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--x) var(--y),
        rgba(255,40,40,.35),
        transparent 40%);
    opacity: 0;
    transition: .4s;
}

.supreme-item:hover::before {
    opacity: 1;
}

.supreme-item:hover {
    transform: scale(1.04);
}

.supreme-item:hover .supreme-bg {
    transform: translate(40px, -50%);
    letter-spacing: 30px;
}




.svc-flow {
   max-width: 1300px;
    margin: 180px auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 100px;
    align-items: center;
}

.svc-flow-head {
    max-width: 600px;
    margin-bottom: 80px;
}

.svc-flow-head h2 {
    font-size: 54px;
    font-weight: 900;
    color: #111;
}

.svc-flow-head p {
    margin-top: 12px;
    color: #666;
}

/* FLOW STRIP */
.svc-flow-wrap {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.svc-flow-item {
    flex: 1 1 260px;
    height: 140px;
    border-radius: 999px;
    border: 2px solid rgba(220,38,38,.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    color: #111;
    position: relative;
    cursor: pointer;
    transition: .6s cubic-bezier(.19,1,.22,1);
    overflow: hidden;
}

/* red energy */
.svc-flow-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(220,38,38,.18),
        transparent
    );
    transform: translateX(-100%);
    transition: .8s;
}

.svc-flow-item:hover::before {
    transform: translateX(100%);
}

.svc-flow-item:hover {
    border-color: #DC2626;
    transform: scale(1.05);
}



.abt-engine {
     max-width: 1700px;
    margin: 250px auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 100px;
    align-items: center;}

.abt-engine__intro {
    max-width: 680px;
    margin-bottom: 100px;
}

.abt-engine__intro h2 {
    font-size: 60px;
    font-weight: 900;
    letter-spacing: -1px;
}

.abt-engine__intro p {
    margin-top: 16px;
    font-size: 18px;
    color: #555;
}

/* GRID SYSTEM */
.abt-engine__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-bottom: 90px;
}

.abt-engine__cell {
    position: relative;
    height: 150px;
    border-radius: 20px;
    border: 2px solid #eee;
    background: transparent;
    font-size: 22px;
    font-weight: 800;
    cursor: pointer;
    transition: transform .6s cubic-bezier(.19,1,.22,1),
                border-color .4s,
                box-shadow .6s;
}

/* intelligent glow layer */
.abt-engine__cell::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at center,
        rgba(220,38,38,.22),
        transparent 65%
    );
    opacity: 0;
    transition: .4s;
}

/* ACTIVE STATE */
.abt-engine__cell.is-active {
    border-color: #DC2626;
    transform: translateY(-14px) scale(1.02);
    box-shadow: 0 25px 50px rgba(220,38,38,.18);
}

.abt-engine__cell.is-active::before {
    opacity: 1;
}

/* OUTPUT PANEL */
.abt-engine__output {
    max-width: 720px;
}

.abt-engine__output h3 {
    font-size: 38px;
    margin-bottom: 14px;
}

.abt-engine__output p {
    font-size: 18px;
    color: #555;
    line-height: 1.65;
}



  


    .glas {
      background: var(--glass);
        padding: 6rem 2rem;
      max-width: 1200px;
      margin: auto;
      backdrop-filter: blur(18px);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 24px;
      padding: 3rem;
      box-shadow: 0 25px 80px rgba(0,0,0,0.5);
    }

    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 2.5rem;
      margin-top: 3rem;
    }

    .card {
      background: linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.02));
      border-radius: 20px;
      padding: 2.5rem;
      position: relative;
      overflow: hidden;
      transition: transform .6s ease, box-shadow .6s ease;
    }

    .card::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(120deg, transparent, rgba(220,38,38,0.35), transparent);
      opacity: 0;
      transition: opacity .6s ease;
    }

    .card:hover {
      transform: translateY(-12px) scale(1.03);
      box-shadow: 0 30px 70px rgba(220,38,38,0.35);
    }

    .card:hover::after {
      opacity: 1;
    }

    .card h3 {
      color: var(--primary);
      margin-bottom: 1rem;
      font-weight: 600;
    }

    .card p {
      color: var(--gray);
      font-size: .95rem;
      line-height: 1.7;
    }

    /* STATS */
    .stats {
        background:
        radial-gradient(circle at center, rgba(0,0,0,.35), rgba(0,0,0,.85)),
        linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.85));
      display: flex;
      justify-content: space-between;
      gap: 2rem;
      flex-wrap: wrap;
      margin-top: 4rem;
    }

    .stat {
      flex: 1 1 200px;
      text-align: center;
    }

    .stat span {
      font-size: 3rem;
      font-weight: 800;
      color: var(--primary);
      display: block;
    }

    .stat small {
      color: var(--gray);
      letter-spacing: 1px;
    }



    /* ANIMATIONS */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(40px); }
      to { opacity: 1; transform: translateY(0); }
    }






.orbit-testimonials {
  position: relative;
  padding: 110px 0 140px;
  background:
    radial-gradient(circle at 50% 0%, #ffffff 0%, #f7f7f7 60%, #f2f2f2 100%);
  overflow: hidden;
}

/* ================= HEADER ================= */

.orbit-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 70px;
}

.orbit-header h2 {
  font-size: 46px;
  font-weight: 800;
  color: #111;
  letter-spacing: -0.02em;
}

.orbit-header p {
  margin-top: 14px;
  font-size: 16px;
  line-height: 1.6;
  color: #666;
}

/* ================= STAGE ================= */

.orbit-stage {
  position: relative;
  width: 100%;
  height: 520px;
  perspective: 1600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* subtle orbit ground */
.orbit-stage::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 120px;
  bottom: 80px;
  background: radial-gradient(circle, rgba(220,38,38,0.25), transparent 70%);
  filter: blur(40px);
  opacity: 0.35;
}

/* ================= CARDS ================= */

.orbit-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 340px;
  padding: 38px 36px;
  background: linear-gradient(160deg, #ffffff, #f4f4f4);
  border-radius: 22px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.12);
  transform-style: preserve-3d;

  transition:
    transform 1s cubic-bezier(.22,1,.36,1),
    opacity 0.5s ease,
    filter 0.5s ease,
    box-shadow 0.5s ease;

  opacity: 0.35;
  filter: blur(1px);
}

/* ACTIVE CARD */
.orbit-card.active {
  opacity: 1;
  filter: blur(0);
  box-shadow: 0 60px 140px rgba(220,38,38,0.28);
}

/* QUOTE MARK */
.orbit-card::before {
  content: "“";
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 72px;
  font-weight: 700;
  color: rgba(220,38,38,0.14);
}

/* TEXT */
.orbit-card .quote {
  font-size: 15.5px;
  line-height: 1.65;
  color: #333;
}

.orbit-card h4 {
  margin-top: 22px;
  font-size: 17px;
  font-weight: 700;
  color: #111;
}

.orbit-card span {
  display: block;
  margin-top: 4px;
  font-size: 13.5px;
  color: #777;
}




.trust-heading {
  text-align: center;
  margin-bottom: 90px;
}

.trust-heading h2 {
  font-size: 48px;
  font-weight: 800;
  color: #111;
}

.trust-heading p {
  max-width: 620px;
  margin: 14px auto 0;
  color: #555;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  perspective: 1200px;
}

.trust-card {
  padding: 36px;
  border-radius: 22px;
  box-shadow: 0 25px 70px rgba(0,0,0,.1);
  transition: transform .35s ease, opacity .35s ease, filter .35s ease;
  transform-style: preserve-3d;
  position: relative;
}

.trust-card::before {
  content: "“";
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 72px;
  color: #DC2626;
}

.trust-stars {
  color: #DC2626;
  letter-spacing: 3px;
  margin-bottom: 14px;
}

.trust-card p {
  font-size: 15.5px;
  line-height: 1.7;
  color: #fff;
}

.trust-card h4 {
  margin-top: 22px;
  font-weight: 700;
  color: #fff;
}

.trust-card span {
  font-size: 13.5px;
  color: #666;
}

/* Passive cards */
.trust-card.is-dimmed {
  opacity: .45;
  filter: blur(0.8px);
  transform: scale(.92);
}






.lens-header {
  text-align: center;
  margin-bottom: 100px;
}

.lens-header h2 {
  font-size: 46px;
  font-weight: 800;
  color: #111;
}

.lens-header p {
  max-width: 620px;
  margin: 16px auto 0;
  color: #555;
}

.lens-stage {
  position: relative;
  height: 420px;
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lens-card {
  position: absolute;
  width: 360px;
  padding: 40px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 35px 90px rgba(0,0,0,.12);
  transition: 
    transform .6s cubic-bezier(.22,1,.36,1),
    filter .6s ease,
    opacity .6s ease;
  text-align: left;
}

.lens-card::before {
  content: "“";
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 80px;
  color: rgba(220,38,38,.12);
}

.lens-stars {
  color: #DC2626;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.lens-card p {
  font-size: 15.5px;
  line-height: 1.7;
  color: #222;
}

.lens-card h4 {
  margin-top: 22px;
  font-weight: 700;
  color: #111;
}

.lens-card span {
  font-size: 13.5px;
  color: #666;
}




.hub-header {
  text-align: center;
  margin-bottom: 90px;
}

.hub-header h2 {
  font-size: 46px;
  font-weight: 800;
  color: #111;
}

.hub-header p {
  color: #555;
  margin-top: 14px;
}

.hub-form {
  max-width: 560px;
  margin: auto;
  position: relative;
}

.hub-field {
  position: relative;
  margin-bottom: 42px;
}

.hub-field input,
.hub-field textarea {
  width: 100%;
  padding: 14px 4px;
  border: none;
  background: transparent;
  font-size: 16px;
  outline: none;
  color: #111;
}

.hub-field label {
  position: absolute;
  top: 14px;
  left: 4px;
  color: #777;
  font-size: 14px;
  pointer-events: none;
  transition: .3s ease;
}

.hub-field .hub-line {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background: #ddd;
  overflow: hidden;
}

.hub-field .hub-line::after {
  content: "";
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: #DC2626;
  transition: .4s ease;
}

.hub-field input:focus + label,
.hub-field textarea:focus + label,
.hub-field input:not(:placeholder-shown) + label,
.hub-field textarea:not(:placeholder-shown) + label {
  transform: translateY(-22px);
  font-size: 12px;
  color: #DC2626;
}

.hub-field input:focus ~ .hub-line::after,
.hub-field textarea:focus ~ .hub-line::after {
  left: 0;
}

.hub-send {
  margin-top: 20px;
  width: 100%;
  padding: 16px;
  border-radius: 40px;
  border: none;
  background: #DC2626;
  color: #fff;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease;
  position: relative;
  overflow: hidden;
}

.hub-send:hover {
  box-shadow: 0 25px 60px rgba(220,38,38,.35);
}

.hub-status {
  margin-top: 26px;
  font-size: 14px;
  color: #555;
  text-align: center;
}



