/* ==============================
   CSS Reset & Ultra-Premium Dark Variables
   ============================== */
:root {
    --bg-base: #000000;
    --bg-surface: #0a0a0a;
    --primary-color: #1d5dda;
    /* Cyber Cyan */
    --accent-color: #0088FF;

    --text-primary: #FFFFFF;
    --text-secondary: #A1A1AA;

    --font-main: 'Montserrat', sans-serif;

    --glass-bg: rgba(10, 10, 10, 0.4);
    --glass-border: rgba(255, 255, 255, 0.05);

    --transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    /* Offset for fixed navbar */
}

body {
    font-family: var(--font-main);
    color: var(--text-primary);
    background-color: var(--bg-base);
    line-height: 1.6;
    font-size: 16px;
    /* Base font size */
}

@media (min-width: 1280px) {

    html,
    body {
        min-width: 1280px;
    }

    html {
        scroll-padding-top: 88px;
    }
}

/* ==============================
   Typography & Utilities
   ============================== */
.text-glow {
    color: var(--primary-color);
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.mb-5 {
    margin-bottom: 2rem;
}

.mb-huge {
    margin-bottom: 3.5rem;
}

.z-10 {
    z-index: 10;
}

.relative {
    position: relative;
}

.mega-title {
    font-size: clamp(2.5rem, 6vw, 4.0rem);
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.subtitle {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: #FFFFFF;
    font-weight: 400;
    margin: 15px 10px 15px 10px;
}

.container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 5vw;
}

/* ==============================
   Navbar
   ============================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 15px 2vw;
    background: #0a0a0a;
    z-index: 9999;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1600px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 58px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: clamp(10px, 2vw, 30px);
}

.nav-links a {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
    transition: var(--transition);
}

.nav-links a:hover {
    color: #fff;
}

/* ==============================
   Navbar Navigation Dropdowns (Desktop)
   ============================== */
.nav-item-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-trigger {
    display: inline-block;
    padding-bottom: 5px;
    cursor: pointer;
}

.dropdown-trigger::after {
    content: ' ▾';
    font-size: 10px;
    vertical-align: middle;
    color: rgba(255, 255, 255, 0.3);
    transition: color 0.3s ease;
}

.nav-item-dropdown:hover .dropdown-trigger::after {
    color: #1d5dda;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(10, 10, 10, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-radius: 12px;
    padding: 8px 0;
    min-width: 240px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(29, 93, 218, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 10000;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    font-size: 12px;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
    text-align: left;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.dropdown-menu a:last-child {
    border-bottom: none;
}

.dropdown-menu a:hover {
    color: #ffffff;
    background: rgba(29, 93, 218, 0.15);
    padding-left: 25px;
    /* Slide-in hover effect */
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.btn-buy {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    flex-shrink: 0 !important;
    padding: 8px 24px;
    border-radius: 30px;
    background: #1d5dda !important;
    color: #ffffff !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    transition: background 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s ease;

    /* Always visible */
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

.btn-buy:hover {
    background: #0088FF !important;
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 136, 255, 0.6);
}

/* ==============================
   Fullscreen Parallax Sections
   ============================== */
.fullscreen-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* PARALLAX EFFECT */
    display: flex;
    align-items: center;
    overflow: hidden;
}

.mobile-section-img {
    display: none;
    width: 100%;
}

.content-wrapper {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0px 10px 100px 10px;
}


.left-align .content-wrapper {
    display: flex;
    justify-content: flex-start;
}

.right-align .content-wrapper {
    display: flex;
    justify-content: flex-end;
}

.center-align .content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ==============================
   Glassmorphism Panels
   ============================== */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid var(--glass-border);
    padding: 3rem;
    border-radius: 20px;
    max-width: 600px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
}

.glass-panel:hover {
    border-color: rgba(29, 93, 218, 0.3);
    box-shadow: 0 30px 80px rgba(29, 93, 218, 0.1);
}

.lg-panel {
    max-width: 800px;
}

.hero-content-left {
    max-width: 900px;
    width: 100%;
}

/* Grid within Fullscreen */
/* Tags */
.feature-tags {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.justify-end {
    justify-content: flex-end;
}

.feature-tags span {
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.luxury-list {
    list-style: none;
    text-align: left;
    margin-top: 1.5rem;
}

.luxury-list li {
    font-size: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #dddddd;
}

.luxury-list li strong {
    color: #ffffff;
    display: block;
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

/* ==============================
   Dark Grid Sections (Cards)
   ============================== */
/* ==============================
   Filters & Animation
   ============================== */
.filters-cloud {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.pulse-tag {
    padding: 10px 20px;
    background: #151515;
    /* Solid non-transparent background */
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    animation: pulseGlow 4s infinite alternate;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 10px rgba(29, 93, 218, 0.2);
        border-color: rgba(255, 255, 255, 0.2);
    }

    100% {
        box-shadow: 0 0 20px rgba(29, 93, 218, 0.6);
        border-color: var(--primary-color);
        color: var(--primary-color);
    }
}

/* ==============================
   Ultra-Premium Specs Table
   ============================== */
.specs-section {
    background: var(--bg-base);
    padding: 100px 0;
}

.glass-table-wrapper {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2px;
    overflow-x: auto;
}

.premium-table {
    width: 100%;
    min-width: 900px;
    border-collapse: collapse;
    background: var(--bg-surface);
    border-radius: 18px;
}

.premium-table th {
    padding: 1.5rem 1.5rem;
    text-align: left;
    font-size: 1.05rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.premium-table td {
    padding: 1.5rem;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    color: #fff;
}

.premium-table tr:last-child td {
    border-bottom: none;
}

.premium-table tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

.param-name {
    font-weight: 700;
    color: var(--text-secondary) !important;
}

/* ==============================
   Footer
   ============================== */
.footer-premium {
    position: relative;
    background-color: #0a0a0a;
    background-size: cover !important;
    background-position: center !important;
    background-attachment: fixed !important;
    padding: 60px 5vw 40px;
    overflow: hidden;
}

.footer-premium .container {
    position: relative;
    z-index: 2;
}

.footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0.5rem;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    display: inline-block;
}

.footer-tagline {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin: 0.5rem 0 2rem;
}

.footer-links-inline {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-links-inline a {
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    font-weight: 600;
}

.footer-links-inline a:hover {
    color: var(--primary-color);
}

.copyright {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.85rem;
}

.overlay-light {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.15);
    pointer-events: none;
    z-index: 1;
}

/* ==============================
   FAQ Accordion Section
   ============================== */
.faq-section {
    padding: 100px 5vw;
    background-color: var(--bg-surface);
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-list {
    margin-top: 40px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    margin-bottom: 20px;
    padding: 24px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.faq-item:hover {
    border-color: rgba(29, 93, 218, 0.3);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.faq-item[open] {
    border-color: rgba(29, 93, 218, 0.5);
    background: rgba(255, 255, 255, 0.03);
}

.faq-item summary {
    font-size: 1.15rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    outline: none;
    color: var(--text-primary);
    user-select: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.8rem;
    font-weight: 300;
    color: #dddddd;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    line-height: 1;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
    color: #cc0000;
}

.faq-answer {
    margin-top: 18px;
    color: #dddddd;
    font-size: 1rem;
    line-height: 1.7;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 18px;
    animation: fadeInFaq 0.5s ease-out;
}

@keyframes fadeInFaq {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==============================
   New Premium Hero Section (Countdown & Form)
   ============================== */
.hero-price {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 100px 0 120px 0;
    /* Add top padding to clear fixed navbar, bottom padding for banner */
    overflow: visible;
}

#hero-section-price {
    margin-top: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 188px;
    padding-bottom: 0;
}

.hero-new-container.centered-hero {
    width: 100%;
    max-width: 750px;
    margin-left: 5vw;
    margin-right: auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: left;
    gap: 24px;
    z-index: 2;
}

@media (min-width: 1600px) {
    .hero-new-container.centered-hero {
        margin-left: calc((100vw - 1600px) / 2 + 5vw);
    }
}

/* Control Mobile Only Elements */
.mobile-only-element {
    display: none !important;
}

/* Brand Name */
.hero-brand {
    font-size: clamp(3rem, 6vw, 4.2rem);
    font-weight: 900;
    letter-spacing: 2px;
    color: #FFFFFF;
    text-align: center;
    line-height: 1.1;
    width: 100%;
}

.hero-brand .text-white {
    color: #FFFFFF;
}

.hero-brand .text-blue {
    color: #1d5dda;
}

/* Slogan / Subtitle */
.hero-subtitle {
    font-size: clamp(1rem, 1.8vw, 1.4rem);
    font-weight: 700;
    letter-spacing: 0px;
    color: #E4E4E7;
    text-transform: uppercase;
    text-align: center;
    padding: 0px 10px 0px 10px;
    max-width: 750px;
    line-height: 1.4;
    width: 100%;
}

/* Timer */
.hero-timer,
.footer-timer {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-left: 0;
}

.countdown-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.countdown-timer {
    display: flex;
    gap: 14px;
}

.timer-box {
    background: rgba(10, 10, 10, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    width: 80px;
    height: 80px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.timer-num {
    font-size: 2rem;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.1;
}

.timer-label {
    font-size: 0.65rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.5px;
    margin-top: 2px;
}

.countdown-note {
    font-size: 0.78rem;
    font-weight: 600;
    color: #1d5dda;
    letter-spacing: 0.5px;
    margin-left: 0;
    text-align: center;
    width: 100%;
}

/* Pre-order Form */
.hero-form {
    width: 100%;
    max-width: 750px;
    display: flex;
    justify-content: center;
}

.hero-form .text-blue {
    color: #1d5dda;
}

.preorder-card {
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(29, 93, 218, 0.2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    transition: var(--transition);
    width: 100%;
    max-width: 550px;
}

.preorder-card:hover {
    border-color: rgba(29, 93, 218, 0.35);
    box-shadow: 0 20px 50px rgba(29, 93, 218, 0.15);
}

.form-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    text-align: center;
}

.preorder-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.form-group input {
    width: 100%;
    background: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 14px 16px;
    color: #0F172A;
    font-size: 0.95rem;
    font-weight: 700;
    outline: none;
    transition: var(--transition);
}

.form-group input::placeholder {
    color: #94A3B8;
    font-weight: 700;
}

.form-group input:focus {
    box-shadow: 0 0 10px rgba(29, 93, 218, 0.35);
    border-color: rgba(29, 93, 218, 0.5);
}

.btn-submit {
    background: #0066cc;
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    padding: 14px;
    font-size: 0.95rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.35);
}

.btn-submit:hover {
    background: #0052a3;
    box-shadow: 0 0 15px rgba(0, 102, 204, 0.6);
    transform: translateY(-1px);
}

/* Top Banner */
.hero-top-banner {
    position: absolute;
    top: 88px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 5vw;
    z-index: 9990;
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

/* Bottom Banner */
.hero-bottom-banner {
    position: relative;
    margin-top: 200px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding: 0px 5vw;
    z-index: 10;
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.hero-top-banner .banner-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: 1px;
}

.hero-bottom-banner .banner-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: 1px;
}

.aircomfort-brand {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ac-brand-logo-img {
    height: 42px;
    width: auto;
    display: block;
}

/* Price Section */
.hero-price-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: 750px;
    margin-top: 10px;
    align-items: center;
}

.price-row {
    display: flex;
    align-items: center;
    gap: 20px;
}

.price-main {
    width: 100%;
    max-width: 750px;
    font-size: clamp(3rem, 6vw, 4.0rem);
    font-weight: 700;
    letter-spacing: 2px;
    color: #FFFFFF;
    line-height: 1.1;
    text-shadow: 0 0 30px rgba(29, 93, 218, 0.3);
    text-align: center;
}

.price-retail-label {
    max-width: 750px;
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    color: var(--text-secondary);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-align: center;
    padding: 0px 10px 0px 10px;
}

.price-retail-value {
    font-size: clamp(0.95rem, 2.5rem, 4.5rem);
    color: #da1d1d;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-align: center;
    padding: 0px 5px 0px 5px;
}

.promo-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0px 10px 0px 10px;
    max-width: 750px;
    align-items: center;
}

.promo-tag {
    background: rgba(29, 92, 218, 0.5);
    border: 2px solid;
    border-color: #1d5dda;
    color: #ffffff;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 1.00rem;
    font-weight: 700;
    transition: var(--transition);
}

.promo-tag:hover {
    background: rgb(29, 92, 218);
    border-color: #1d5dda;
    color: #ffffff;
    transform: translateY(-2px);
}

.order-notice {
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 0px 10px 0px 10px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #94a3b8;
    line-height: 1.5;
    width: 100%;
    max-width: 750px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

/* Responsive adjustment for Mobile */
/* ==========================================================================
   MOVED STYLES (INLINE TO EXTERNAL CSS)
   ========================================================================== */
/* Head style block moved to external CSS */
/* Global Text Blue utility */
.text-blue {
    color: #1d5dda;
}

/* Footer company info and links styling */
.footer-company-info {
    margin: 20px auto;
    max-width: 800px;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-company-info p:first-child {
    margin-bottom: 5px;
}

.footer-company-info a {
    color: var(--primary-color);
    font-weight: 600;
}

/* Background styling for section #hero-section-price */
/* Background styling for section #hero-section-timer */
/* Background styling for section #welcome-section */
/* Background styling for section #smart-voice */
/* Background styling for section #smart-app */
/* Background styling for section #smart-arrive-leave */
/* Background styling for section #smart-learning */
/* Background styling for section #smart-whole-home */
/* Background styling for section #smart-restart */
/* Background styling for section #dry-contact */
/* Background styling for section #energy-tai */
/* Background styling for section #energy-monitoring */
/* Background styling for section #energy-generator */
/* Background styling for section #energy-rating */
/* Background styling for section #cross-flow-fan */
/* Background styling for section #dual-louver */
/* Background styling for section #gentle-breeze */
/* Background styling for section #extreme-cooling */
/* Background styling for section #extreme-heating */
/* Background styling for section #fast-cool-heat */
/* Background styling for section #health-self-cleaning */
/* Background styling for section #health-filters-info */
/* Background styling for section #health-filters */
/* Background styling for section #footer-section-timer */

/* ==============================
   YouTube Video Showcase Section
   ============================== */
.video-section {
    background-color: #000;
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 100vh;
    padding-top: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-container iframe {
    width: 100vw;
    height: calc(100vw * 9 / 16);
    max-width: calc((100vh - 88px) * 0.9 * 16 / 9);
    max-height: calc((100vh - 88px) * 0.9);
    aspect-ratio: 16 / 9;
    border: 0;
}

/* ==========================================
   Fan Speed Widget Styles
   ========================================== */
.fan-speed-widget {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

.fan-icon-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(0, 217, 255, 0.05);
    border-radius: 50%;
    border: 1px solid rgba(0, 217, 255, 0.1);
    color: #e0f7fc;
    box-shadow: 0 0 15px rgba(0, 217, 255, 0.1);
    transition: all 0.3s ease;
}

.fan-icon-container.active {
    color: #00f0ff;
    border-color: rgba(0, 240, 255, 0.3);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
}

.fan-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    animation: spin var(--spin-duration, 0s) linear infinite;
    transform-origin: center center;
}

.fan-icon {
    width: 28px;
    height: 28px;
    display: block;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.speed-control-container {
    flex-grow: 1;
}

.speed-bars {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.speed-bar-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.speed-bar-item .bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.speed-bar-item.active .bar {
    background: linear-gradient(90deg, #00b8ff, #00f0ff);
    box-shadow: 0 0 12px rgba(0, 240, 255, 0.8), 0 0 4px rgba(0, 240, 255, 0.4);
}

.speed-bar-item.preview .bar {
    background: rgba(0, 240, 255, 0.4);
    box-shadow: 0 0 8px rgba(0, 240, 255, 0.3);
}

.speed-num {
    font-family: 'Outfit', 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.speed-bar-item.active .speed-num {
    color: #00f0ff;
    text-shadow: 0 0 8px rgba(0, 240, 255, 0.6);
}

.speed-bar-item:hover .speed-num {
    color: rgba(255, 255, 255, 0.9);
}

/* ==========================================================================
   UNIFIED RESPONSIVE MOBILE LAYOUT (Viewports < 1280px)
   ========================================================================== */
@media (max-width: 1279px) {

    .nav-links {
        display: none;
    }

    .logo-img {
        height: 43px;
    }

    .btn-buy {
        padding: 6px 16px;
        font-size: 12px;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }

    .left-align .content-wrapper,
    .right-align .content-wrapper {
        justify-content: center;
    }

    body {
        overflow-x: hidden;
    }

    /* Clean Mobile Flow: Text First, Image Second */
    .fullscreen-section {
        background-attachment: scroll;
        min-height: auto;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        background-image: none !important;
        /* Remove background images completely */
        background-color: #030303 !important;
        /* Solid dark background */
        /* Ambient cyber glows for dynamic depth */
        background: radial-gradient(circle at 80% 20%, rgba(29, 93, 218, 0.04) 0%, transparent 50%),
            radial-gradient(circle at 20% 80%, rgba(0, 136, 255, 0.04) 0%, transparent 50%),
            #030303 !important;
        padding-top: 0;
    }

    .hero-section {
        padding-top: 100px !important;
    }

    .footer-section {
        padding-top: 110px;
        /* Space below navbar */
    }

    .mega-title {
        font-size: 2.1rem !important;
        /* Reduced by 15% on mobile */
    }

    .mobile-section-img {
        display: block;
        /* Show the real image */
        width: 95%;
        max-width: 100%;
        height: auto;
        margin: 1rem auto 2.5rem;
        border-radius: 16px;
        border: 1px solid rgba(29, 93, 218, 0.18);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6),
            0 0 30px rgba(29, 93, 218, 0.12);
        transition: transform 0.3s ease, border-color 0.3s ease;
    }

    /* Style for transparent product cutouts (PNG) so they don't get the card border/shadow */
    .content-wrapper {
        padding: 3rem 2.5vw 1rem;
        width: 100%;
    }

    .container {
        padding: 0 2.5vw !important;
    }

    /* Premium glass cards on mobile with top reflection borders */
    .glass-panel {
        background: rgba(255, 255, 255, 0.03) !important;
        border: 1px solid rgba(29, 93, 218, 0.15) !important;
        backdrop-filter: blur(20px) !important;
        -webkit-backdrop-filter: blur(20px) !important;
        padding: 1.75rem !important;
        border-radius: 20px !important;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5),
            0 0 25px rgba(29, 93, 218, 0.06),
            inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
        width: 100% !important;
        max-width: 100% !important;
        text-align: left !important;
        margin-bottom: 0.5rem !important;
    }

    .glass-panel:hover {
        transform: none !important;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5),
            0 0 25px rgba(29, 93, 218, 0.06) !important;
    }

    .feature-tags {
        margin-top: 1.2rem;
        margin-bottom: 0.5rem;
        gap: 0.5rem;
    }

    .justify-end {
        justify-content: flex-start !important;
    }

    .feature-tags span {
        padding: 6px 14px;
        font-size: 0.75rem;
    }

    /* Specifications Table Mobile Overrides (Prevent unnecessary horizontal scroll) */
    .premium-table {
        min-width: 100% !important;
    }

    .premium-table th,
    .premium-table td {
        padding: 1.2rem 0.75rem !important;
        font-size: 0.85rem !important;
    }

    .glass-table-wrapper {
        border-radius: 16px;
        padding: 0;
        border: 1px solid rgba(29, 93, 218, 0.12);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5),
            0 0 25px rgba(29, 93, 218, 0.06);
    }

    /* Navbar styling on mobile */
    .navbar {
        background: #0a0a0a !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
    }

    .pulse-tag {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .specs-section {
        padding: 60px 0;
    }

    .faq-section {
        padding: 60px 4vw;
    }

    .faq-item {
        padding: 18px;
    }

    .faq-item summary {
        font-size: 1rem;
    }

    .faq-answer {
        font-size: 0.9rem;
    }

    .footer-premium {
        padding: 40px 5vw 20px;
        background: transparent !important;
    }

    .footer-logo-img {
        height: 45px;
    }

    .footer-links-inline {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .hero-price {
        padding: 90px 0 160px 0;
        /* Add bottom spacing to avoid bottom banner overlap */
        min-height: 1025px;
    }

    /* Show mobile-only elements on mobile screen */
    .mobile-only-element {
        display: flex !important;
    }

    .hero-new-container.centered-hero {
        gap: 20px;
        align-items: center;
        text-align: center;
        max-width: 100%;
        margin: 0px 10px 0px 10px;
        padding: 0 2.5vw;
    }

    .hero-brand {
        font-size: 3.0rem;
        text-align: center;
    }

    .hero-subtitle {
        line-height: 1.4;
        text-align: center;
        margin: 0 auto;
        width: 100%;
    }

    .hero-timer,
    .footer-timer {
        justify-content: center;
    }

    .countdown-wrapper {
        align-items: center;
    }

    .countdown-note {
        text-align: center;
    }

    .hero-form {
        justify-content: center;
    }

    .form-title {
        text-align: center;
    }

    /* AC Unit Styles on Mobile */
    .hero-ac-unit {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 15px 0 50px 0;
    }

    .floating-ac-wrapper {
        position: relative;
        width: 100%;
        max-width: 320px;
    }

    .ac-unit-img {
        width: 100%;
        height: auto;
        filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.5));
    }

    .countdown-timer {
        gap: 8px;
    }

    .timer-box {
        width: 68px;
        height: 68px;
        border-radius: 10px;
    }

    .timer-num {
        font-size: 1.6rem;
    }

    .preorder-card {
        padding: 24px;
        max-width: 100%;
    }

    /* Voice Assistant Styles on Mobile */
    /* Speech bubbles on Mobile arranged 2D around the mic */
    /* Bubble positioning on Mobile around the centered mic (container is 360px wide) */
    /* Triangles for Mobile bubbles pointing to the center */
    .hero-top-banner {
        position: absolute;
        top: 73px;
        left: 0;
        padding: 10px 4vw;
        background: transparent !important;
        background-color: transparent !important;
        border: none !important;
        box-shadow: none !important;
        z-index: 9990;
    }

    .hero-bottom-banner {
        position: relative;
        bottom: auto;
        margin-top: 50px;
        flex-direction: column;
        gap: 8px;
        padding: 50px 10px 0px 0px;
        text-align: center;
        background: transparent !important;
        background-color: transparent !important;
        border: none !important;
        box-shadow: none !important;
    }

    .hero-top-banner .banner-text {
        font-size: 0.75rem;
    }

    .hero-bottom-banner .banner-text {
        font-size: 0.75rem;
    }

    .ac-brand-logo-img {
        height: 32px;
    }

    /* Mobile Overrides for Price Section */
    .price-row {
        justify-content: center;
    }

    .promo-tags {
        justify-content: center;
    }

    .order-notice {
        text-align: center;
    }

    #hero-section-price {
        margin-top: 0 !important;
        min-height: auto !important;
        height: auto !important;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 0px !important;
        padding-bottom: 0 !important;
        background-image: var(--bg-mobile) !important;
        background-size: cover !important;
        background-position: center top !important;
        background-attachment: scroll !important;
    }

    #hero-section-timer {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }


    /* Video Showcase Mobile Overrides */
    .video-section {
        height: auto;
        min-height: auto;
        margin-top: 0;
        padding: 60px 0 !important;
        background: #030303 !important;
    }

    .video-container {
        width: 95%;
        max-width: 900px;
        margin: 0 auto;
        height: 0;
        padding-bottom: 56.25%;
        /* 16:9 Aspect Ratio */
        display: block;
        position: relative;
    }

    .video-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        max-width: none;
        max-height: none;
        aspect-ratio: auto;
    }

    /* Fan Speed Widget Mobile Overrides */
    .fan-speed-widget {
        gap: 12px;
        padding: 12px;
        margin-top: 20px;
    }

    .fan-icon-container {
        width: 38px;
        height: 38px;
    }

    .fan-icon {
        width: 22px;
        height: 22px;
    }

    .speed-bars {
        gap: 6px;
    }

    .speed-bar-item .bar {
        height: 4px;
    }

    .speed-num {
        font-size: 11px;
    }
}


/* ==========================================
   GDPR Cookie Consent Banner (Added for Compliance)
   ========================================== */
.cookie-banner {
    position: fixed;
    bottom: -130px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 600px;
    background: rgba(10, 10, 10, 0.85);
    border: 1px solid rgba(29, 93, 218, 0.3);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    padding: 16px 24px;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(255, 255, 255, 0.05);
    z-index: 99999;
    transition: bottom 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner.show {
    bottom: 24px;
}

.cookie-banner-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    color: #E4E4E7;
    font-size: 0.88rem;
    font-weight: 500;
}

.cookie-banner-text {
    width: 100%;
    text-align: center;
}

.cookie-banner-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.cookie-policy-link {
    color: #0088FF;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s ease;
}

.cookie-policy-link:hover {
    color: #00f0ff;
}

.btn-cookie-decline {
    background: transparent;
    color: #A1A1AA;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    order: 1;
}

.btn-cookie-decline:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #FFFFFF;
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-cookie-accept {
    background: #1d5dda;
    color: #ffffff;
    border: none;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    order: 2;
}

.btn-cookie-accept:hover {
    background: #0088FF;
    color: #ffffff;
    box-shadow: 0 0 15px rgba(0, 136, 255, 0.5);
    transform: translateY(-1px);
}

@media (max-width: 600px) {
    .cookie-banner {
        width: 100%;
        max-width: 100%;
        left: 0;
        bottom: -250px;
        transform: none;
        border-radius: 0;
        border-left: none;
        border-right: none;
        border-bottom: none;
        padding: 16px 20px calc(16px + env(safe-area-inset-bottom, 0px));
    }

    .cookie-banner.show {
        bottom: 0;
    }

    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .cookie-banner-text {
        min-width: 100%;
        text-align: center;
        margin-bottom: 4px;
    }

    .cookie-banner-buttons {
        flex-direction: column;
        width: 100%;
        gap: 8px;
    }

    .btn-cookie-accept {
        order: 1;
        width: 100%;
        padding: 10px;
    }

    .btn-cookie-decline {
        order: 2;
        width: 100%;
        padding: 10px;
    }

    .hero-price-container,
    .price-retail,
    .price-main {
        font-size: 1.8rem;
    }

    .price-retail-value {
        font-size: 1.4rem;
    }

    .price-retail-label {
        font-size: 1.0rem;
    }
}

/* Footer Address reset (keep original style without italics) */
footer address {
    font-style: normal;
}

/* ==============================
   Success Modal
   ============================== */
.success-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.success-modal-backdrop.show {
    opacity: 1;
    visibility: visible;
}

.success-modal-card {
    background: rgba(10, 10, 10, 0.9);
    border: 1px solid rgba(29, 93, 218, 0.25);
    border-radius: 24px;
    padding: 40px 30px;
    max-width: 480px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(29, 93, 218, 0.1);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.success-modal-backdrop.show .success-modal-card {
    transform: scale(1);
}

.success-modal-icon {
    width: 70px;
    height: 70px;
    background: rgba(29, 93, 218, 0.1);
    border: 2px solid #1d5dda;
    color: #1d5dda;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
    animation: icon-pulse 2s infinite;
}

.success-modal-icon svg {
    width: 36px;
    height: 36px;
}

.success-modal-title {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.success-modal-message {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 28px;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
}

.btn-modal-close {
    background: #1d5dda;
    color: #ffffff;
    border: none;
    border-radius: 30px;
    padding: 12px 36px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.btn-modal-close:hover {
    background: #154bb3;
    box-shadow: 0 0 15px rgba(29, 93, 218, 0.4);
}

@keyframes icon-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(29, 93, 218, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(29, 93, 218, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(29, 93, 218, 0);
    }
}

/* Floating Contact Menu & Phone Button */
.contact-phone {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    border: none;
    outline: none;
    background-color: #29b97a;
    color: #fff;
    cursor: pointer;
    width: 44px;
    height: 44px;
    line-height: 44px;
    border-radius: 50%;
    font-size: 18px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, background-color 0.3s ease;
    text-decoration: none;
    align-items: center;
    justify-content: center;
}

.contact-phone:hover {
    background-color: #1e8e5c;
    transform: scale(1.05);
}

@media (max-width: 1279px) {
    .contact-phone {
        display: flex;
    }
}

.contact-menu {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
    width: 44px;
    height: 44px;
}

.contact-menu__toggle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #1d5dda;
    color: #fff;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    transition: transform .3s ease, background-color .3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
}

.contact-menu__toggle:hover {
    background-color: #0088FF;
    transform: scale(1.05);
}

.contact-menu__icon--close,
.contact-menu.open .contact-menu__icon--default {
    display: none;
}

.contact-menu.open .contact-menu__icon--close {
    display: inline;
}

.contact-menu.open .contact-menu__toggle {
    background-color: #da1d1d;
}

.contact-menu__options {
    position: absolute;
    bottom: 0;
    left: 0;
    pointer-events: none;
}

.contact-menu .contact-option {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    opacity: 0;
    transform: translate(0) scale(.4);
    transition: opacity .25s ease, transform .25s ease;
    pointer-events: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.contact-menu .contact-option--phone {
    background-color: #4caf50;
}

.contact-menu .contact-option--whatsapp {
    background-color: #25d366;
}

.contact-menu .contact-option--viber {
    background-color: #7360f2;
}

.contact-menu .contact-option--messenger {
    background-color: #0084ff;
}

.contact-menu.open .contact-menu__options {
    pointer-events: auto;
}

.contact-menu.open .contact-option {
    opacity: 1;
    pointer-events: auto;
}

.contact-menu.open .contact-option:nth-child(1) {
    transform: translate(0, -72px) scale(1);
    transition-delay: 0s;
}

.contact-menu.open .contact-option:nth-child(2) {
    transform: translate(51px, -51px) scale(1);
    transition-delay: .07s;
}

.contact-menu.open .contact-option:nth-child(3) {
    transform: translate(72px, 0) scale(1);
    transition-delay: .14s;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #1d5dda;
    color: #ffffff;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9998;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, background-color 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background-color: #0088FF;
    transform: scale(1.05);
}

@media (max-width: 1279px) {
    .scroll-to-top {
        bottom: 80px;
        /* Position above the floating phone button on mobile to prevent overlap */
    }
}

/* Brand Link Section under promo-tags */
.brand-link-container {
    text-align: center;
    margin-top: 20px;
    width: 100%;
}

.brand-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid #0066cc;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.brand-link:hover {
    background: rgba(29, 93, 218, 0.1);
    border-color: #1d5dda;
    color: #fff;
    box-shadow: 0 4px 20px rgba(29, 93, 218, 0.25);
    transform: translateY(-2px);
}

/* ==========================================
   Welcome Features Grid (Extras Icons under Title)
   ========================================== */
.bottom-features-section {
    padding: 100px 0;
    background-color: var(--bg-base);
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.welcome-features {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 25px 20px;
    margin-top: 35px;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 20px;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.welcome-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 5px;
}

/* Thin vertical separators between items on desktop (excluding the last item in each row of 4) */
@media (min-width: 768px) {
    .welcome-feature-item:not(:nth-child(8n))::after {
        content: '';
        position: absolute;
        right: -10px;
        top: 15%;
        height: 70%;
        width: 1px;
        background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.06), transparent);
    }
}

.welcome-feature-circle {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1.5px solid var(--feature-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    background: radial-gradient(circle, var(--feature-bg-color) 0%, rgba(10, 10, 10, 0.7) 100%);
    box-shadow: 0 0 15px var(--feature-shadow-color), inset 0 1px 1px rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0.85;
}

.welcome-feature-circle i {
    font-size: 20px;
    color: var(--feature-color);
    text-shadow: 0 0 10px var(--feature-color);
    transition: all 0.4s ease;
    z-index: 1;
}

/* Shield custom styling to stack shield and number */
.welcome-feature-circle.shield-wrapper {
    position: relative;
}

.welcome-feature-circle.shield-wrapper i {
    font-size: 24px;
    color: var(--feature-color);
}

.welcome-feature-circle.shield-wrapper .shield-num {
    position: absolute;
    font-size: 11px;
    font-weight: 900;
    color: #030303;
    /* dark color to contrast with bright shield */
    top: 51%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

/* Hover Effect */
.welcome-feature-item:hover .welcome-feature-circle {
    box-shadow: 0 0 20px var(--feature-shadow-color);
    transform: translateY(-3px);
    opacity: 1;
    background: radial-gradient(circle, var(--feature-bg-color) 0%, rgba(10, 10, 10, 0.8) 100%);
}

.welcome-feature-item:hover .welcome-feature-circle i {
    transform: scale(1.08);
    color: #ffffff;
    text-shadow: 0 0 15px var(--feature-color);
}

.welcome-feature-title {
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--feature-color);
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    opacity: 0.95;
}

.welcome-feature-item:hover .welcome-feature-title {
    color: #ffffff;
    text-shadow: 0 0 10px var(--feature-color);
}

.welcome-feature-desc {
    font-size: 0.6rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.3;
    text-transform: uppercase;
    max-width: 120px;
    transition: color 0.3s ease;
}

.welcome-feature-item:hover .welcome-feature-desc {
    color: #ffffff;
}

/* Responsive Overrides */
@media (max-width: 1024px) {
    .welcome-features {
        grid-template-columns: repeat(4, 1fr);
        gap: 25px 15px;
        margin-top: 25px;
        padding: 18px 12px;
        max-width: 850px;
    }

    .welcome-feature-item::after {
        display: none !important;
    }

    .welcome-feature-item:not(:nth-child(4n))::after {
        content: '';
        position: absolute;
        right: -7.5px;
        top: 10%;
        height: 80%;
        width: 1px;
        background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.06), transparent);
        display: block !important;
    }
}

@media (max-width: 600px) {
    .welcome-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 8px;
        padding: 12px 8px;
    }

    .welcome-feature-item::after {
        display: none !important;
    }

    .welcome-feature-circle {
        width: 50px;
        height: 50px;
    }

    .welcome-feature-circle i {
        font-size: 18px;
    }

    .welcome-feature-circle.shield-wrapper i {
        font-size: 22px;
    }

    .welcome-feature-circle.shield-wrapper .shield-num {
        font-size: 10px;
    }

    .welcome-feature-title {
        font-size: 0.74rem;
    }

    .welcome-feature-desc {
        font-size: 0.55rem;
    }
}