@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #fe6737;
    --primary-hover: #e05324;
    --primary-light: rgba(254, 103, 55, 0.08);
    --primary-gradient: linear-gradient(135deg, #fe6737 0%, #ff8c5a 100%);
    --dark: #036465;
    --dark-gradient: linear-gradient(135deg, #036465 0%, #024b4c 100%);
    --light: #f8fafc;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --success: #10b981;

    --border-radius: 20px;
    --border-radius-sm: 12px;
    --transition-smooth: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);

    --shadow-sm: 0 4px 6px -1px rgba(3, 100, 101, 0.05), 0 2px 4px -1px rgba(3, 100, 101, 0.03);
    --shadow-md: 0 10px 25px -5px rgba(3, 100, 101, 0.08), 0 8px 10px -6px rgba(3, 100, 101, 0.04);
    --shadow-lg: 0 20px 35px -5px rgba(3, 100, 101, 0.1), 0 10px 15px -5px rgba(3, 100, 101, 0.04);
    --shadow-hover: 0 25px 40px -10px rgba(254, 103, 55, 0.15), 0 10px 20px -10px rgba(254, 103, 55, 0.1);

    /* Font Size Scale */
    --fs-xs: 0.8rem;
    --fs-sm: 0.88rem;
    --fs-base: 0.95rem;
    --fs-md: 1.0rem;
    --fs-lg: 1.1rem;
    --fs-h6: 1.05rem;
    --fs-h5: 1.2rem;
    --fs-h4: 1.35rem;
    --fs-h3: 1.5rem;
    --fs-h2: 1.75rem;
    --fs-h1: 2.2rem;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: 'DM Sans', sans-serif;
    font-size: var(--fs-base);
    color: var(--gray-700);
    background-color: #fbfdff;
    /* Slightly cooler white */
    max-width: 100%;
    line-height: 1.8;
}

@media (max-width: 991.98px) {
    body {
        overflow-x: hidden !important;
    }
}

.text-primary {
    color: var(--primary) !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'DM Sans', sans-serif;
    color: var(--dark);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

h1 {
    font-size: var(--fs-h1);
}

h2 {
    font-size: var(--fs-h2);
}

h3 {
    font-size: var(--fs-h3);
}

h4 {
    font-size: var(--fs-h4);
}

h5 {
    font-size: var(--fs-h5);
}

h6 {
    font-size: var(--fs-h6);
}

p {
    font-size: var(--fs-base);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

small,
.small {
    font-size: var(--fs-sm);
}

/* ================================================
   Animations (Powered by AOS - Animate on Scroll)
   ================================================ */

/* ================================================
   Sticky Header
   ================================================ */
.sticky-navbar {
    position: sticky;
    top: 0;
    z-index: 1030;
    background-color: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
    transition: var(--transition-smooth);
    width: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.navbar-brand {
    font-family: 'DM Sans', sans-serif;
    font-weight: 800;
    font-size: var(--fs-lg);
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: -0.03em;
}

.brand-dot {
    color: var(--primary);
}

.nav-link {
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: var(--fs-sm);
    color: var(--gray-600);
    padding: 0.5rem 1.2rem !important;
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--primary);
    transform: translateY(-1px);
}

/* ================================================
   Buttons
   ================================================ */
.btn-primary-theme {
    background: var(--primary-gradient);
    color: #fff;
    border: none;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: var(--fs-sm);
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    box-shadow: 0 8px 20px rgba(254, 103, 55, 0.3);
    transition: var(--transition-smooth);
    letter-spacing: 0.5px;
}

.btn-primary-theme:hover,
.btn-primary-theme:focus {
    background: linear-gradient(135deg, #e05324 0%, #fe6737 100%);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(254, 103, 55, 0.4);
}

.btn-outline-theme {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: var(--fs-sm);
    padding: 0.65rem 1.65rem;
    border-radius: 50px;
    transition: var(--transition-smooth);
    letter-spacing: 0.5px;
}

.btn-outline-theme:hover {
    background: var(--primary-gradient);
    border-color: transparent;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(254, 103, 55, 0.3);
}

/* ================================================
   Hero Banner
   ================================================ */
.hero-banner-container {
    width: 100%;
    background-color: var(--gray-100);
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid var(--gray-200);
}

.hero-banner-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

/* Banner Reveal Overlay Styles */
.banner-reveal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    pointer-events: none;
    display: flex;
}

.reveal-panel {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    will-change: transform;
}

.reveal-panel.layer-1 {
    background-color: #ffffff;
    z-index: 4;
}

.reveal-panel.layer-2.left-panel {
    background: linear-gradient(135deg, #fe6737 0%, #ff8c5a 100%);
    z-index: 3;
}

.reveal-panel.layer-2.right-panel {
    background: linear-gradient(135deg, #036465 0%, #0aa274 100%);
    z-index: 3;
}

.reveal-panel.left-panel {
    left: 0;
}

.reveal-panel.right-panel {
    right: 0;
}

.reveal-badge-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    /* Stays on top of Layer 1 */
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    will-change: transform, opacity;
}

.reveal-badge {
    width: 120px;
    height: 120px;
    background-color: #ffffff;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(3, 100, 101, 0.12), 0 1px 3px rgba(3, 100, 101, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 15px;
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.reveal-badge img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

@media (max-width: 576px) {
    .reveal-badge {
        width: 80px;
        height: 80px;
        padding: 10px;
    }
}

/* ================================================
   Premium Hero & 3D Product Showcase
   ================================================ */
.premium-hero {
    position: relative;
    background: radial-gradient(circle at 50% 30%, #ffffff 0%, #f7f9fb 100%);
    padding: 2rem;
    overflow: hidden;
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.hero-logo-wrapper {
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInDown 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    display: flex;
    justify-content: center;
}

.hero-logo {
    max-height: 30px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(3, 100, 101, 0.05));
}

.hero-title-main {
    font-family: 'DM Sans', sans-serif;
    font-size: calc(2rem + 1vw);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.10em;
    color: var(--dark);
    margin-bottom: 3rem;
    text-align: center;
    background: linear-gradient(135deg, #036465 30%, #0aa274 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.2s forwards;
}

.hero-desc-para {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.15rem;
    font-weight: 550;
    color: var(--gray-600);
    text-align: center;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 4rem;
    line-height: 1.7;
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.4s forwards;
}

/* 3D Showcase Container */
.showcase-scene {
    position: relative;
    width: 100%;
    height: 600px;
    perspective: 1200px;
    display: flex;
    /* align-items: center; */
    justify-content: center;
    /* margin-top: 1rem; */
    opacity: 0;
    animation: fadeInUp 1.0s cubic-bezier(0.25, 1, 0.5, 1) 0.6s forwards;
}

/* Background Glow */
.showcase-glow {
    position: absolute;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(254, 103, 55, 0.1) 0%, rgba(254, 103, 55, 0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
    border-radius: 50%;
}

/* Floating Wrapper */
.sponge-3d-scale-wrapper {
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
    z-index: 2;
}

.sponge-3d-float {
    position: relative;
    transform-style: preserve-3d;
    transform: translateY(-800px);
    /* Pre-animation hidden position */
    will-change: transform;
}

.sponge-3d-float.active-rotation {
    transform: none;
    animation: floatingSponge 5s ease-in-out infinite alternate;
}

/* 3D Box Container */
.sponge-3d-box {
    position: relative;
    width: 200px;
    height: 300px;
    transform-style: preserve-3d;
    /* We tilt it slightly forward (X-axis) so we can see the top/bottom faces for a realistic 3D feel */
    transform: rotateX(-8deg) rotateY(0deg);
    will-change: transform;
}

.sponge-3d-box.active-rotation {
    animation: rotateSponge 18s linear infinite;
}

/* Common style for all faces */
.sponge-face {
    position: absolute;
    /* background-color: #ffffff; */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 1px solid rgba(226, 232, 240, 0.4);
    box-sizing: border-box;
    will-change: transform, opacity;
}

/* Front & Back Faces: 200px x 300px, depth is 70px, so Z-translation is 35px */
.sponge-face.front {
    width: 200px;
    height: 500px;
    transform: rotateY(0deg) translateZ(95px);
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.03);
    background-image: url('../images/product/1-Photoroom.png');
}

.sponge-face.back {
    width: 200px;
    height: 500px;
    transform: rotateY(180deg) translateZ(95px);
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.03);
    background-image: url('../images/product/2-Photoroom.png');
}

/* Left & Right Faces: 70px (depth) x 300px (height), translated by 100px (width/2) */
.sponge-face.left {
    width: 100%;
    height: 500px;
    transform: rotateY(-90deg) translateZ(99px);
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.03);
    background-image: url('../images/product/3-Photoroom.png');
}

.sponge-face.right {
    width: 100%;
    height: 500px;
    transform: rotateY(90deg) translateZ(99px);
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.03);
    background-image: url('../images/product/4-Photoroom.png');
}

/* Top & Bottom Faces: 200px x 70px, translated by 150px (height/2) */
.sponge-face.top {
    width: 200px;
    height: 70px;
    transform: rotateX(90deg) translateZ(150px);
    background: linear-gradient(135deg, #fe6737 0%, #ff8c5a 100%);
    border: 1px solid rgba(254, 103, 55, 0.3);
}

.sponge-face.bottom {
    width: 200px;
    height: 70px;
    transform: rotateX(-90deg) translateZ(150px);
    background: linear-gradient(135deg, #036465 0%, #0aa274 100%);
    border: 1px solid rgba(3, 100, 101, 0.3);
}

/* Dynamic Shadow beneath the sponge */
.sponge-shadow {
    position: absolute;
    width: 180px;
    height: 20px;
    background: radial-gradient(ellipse at center, rgba(3, 100, 101, 0.18) 0%, rgba(3, 100, 101, 0) 70%);
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) scale(0.5);
    opacity: 0;
    filter: blur(5px);
    z-index: 1;
    pointer-events: none;
    will-change: transform, opacity;
}

.sponge-shadow.active-rotation {
    animation: shadowScale 5s ease-in-out infinite alternate;
}

/* Animations */
@keyframes rotateSponge {
    0% {
        transform: rotateX(-8deg) rotateY(0deg);
    }

    100% {
        transform: rotateX(-8deg) rotateY(360deg);
    }
}

@keyframes floatingSponge {
    0% {
        transform: translateY(0px);
    }

    100% {
        transform: translateY(-20px);
    }
}

@keyframes shadowScale {
    0% {
        transform: translateX(-50%) scale(0.9);
        opacity: 0.8;
        filter: blur(4px);
    }

    100% {
        transform: translateX(-50%) scale(1.25);
        opacity: 0.35;
        filter: blur(9px);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsiveness */
@media (max-width: 768px) {
    .premium-hero {
        padding: 4rem 1rem 5rem 1rem;
    }

    .hero-title-main {
        font-size: calc(1.8rem + 1vw);
        letter-spacing: 0.1em;
        margin-bottom: 1.5rem;
    }

    .hero-desc-para {
        font-size: 1.0rem;
        margin-bottom: 2rem;
        max-width: 90%;
    }
}

@media (max-width: 576px) {
    .showcase-scene {
        height: 280px;
        /* Reduced height for mobile screens */
    }

    .sponge-3d-scale-wrapper {
        transform: scale(0.42);
        /* Scale down row layout to fit mobile screens perfectly */
    }

    .sponge-shadow {
        bottom: 20px;
        width: 100px;
    }

    .hero-desc-para {
        font-size: 0.9rem;
        margin-bottom: 2rem;
        max-width: 95%;
        line-height: 1.5;
    }
}

/* ================================================
   Section Headings
   ================================================ */
.section-title {
    font-family: 'DM Sans', sans-serif;
    font-size: var(--fs-h2);
    font-weight: 800;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
    color: var(--dark);
    text-align: left !important;
    /* Force left alignment */
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary-gradient);
    border-radius: 4px;
}

/* ================================================
   Content Cards (Glassmorphism/Soft UI)
   ================================================ */
.custom-card {
    background: #fff;
    border: 1px solid rgba(226, 232, 240, 0.5);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.custom-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

/* ================================================
   Sticky Form (Desktop only)
   ================================================ */
.sticky-form-container {
    position: sticky;
    top: 100px;
    z-index: 10;
    transition: var(--transition-smooth);
}

@media (max-width: 991.98px) {
    .sticky-form-container {
        position: static;
        top: auto;
    }
}

.lead-form-card {
    background: #fff;
    border: none;
    border-radius: var(--border-radius);
    padding: 2.25rem;
    box-shadow: var(--shadow-lg);
    position: relative;
}

/* ================================================
   Forms
   ================================================ */
.form-label {
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: var(--fs-sm);
    color: var(--gray-700);
    margin-bottom: 8px;
}

.form-control,
.form-select {
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--gray-300);
    padding: 0.8rem 1rem;
    font-size: var(--fs-base);
    font-family: 'DM Sans', sans-serif;
    background-color: var(--gray-50);
    transition: var(--transition-smooth);
}

.form-control:focus,
.form-select:focus {
    background-color: #fff;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(254, 103, 55, 0.15);
}

/* ================================================
   Icons & Badges
   ================================================ */
.icon-container {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(254, 103, 55, 0.1), rgba(254, 103, 55, 0.02));
    border: 1px solid rgba(254, 103, 55, 0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.35rem;
    margin-bottom: 1.25rem;
    transition: var(--transition-smooth);
}

.custom-card:hover .icon-container {
    transform: scale(1.05) rotate(-3deg);
    background: var(--primary-gradient);
    color: #fff;
}

.icon-inline {
    color: var(--primary);
    margin-right: 10px;
}

.feature-badge {
    background: linear-gradient(135deg, rgba(254, 103, 55, 0.15), rgba(254, 103, 55, 0.05));
    color: var(--primary);
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 1rem;
    border: 1px solid rgba(254, 103, 55, 0.2);
}

/* ================================================
   Feature Grid Blocks
   ================================================ */
.feature-box {
    background: var(--gray-50);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: var(--border-radius-sm);
    padding: 1.5rem;
    height: 100%;
    transition: var(--transition-smooth);
}

.feature-box:hover {
    background: #fff;
    box-shadow: var(--shadow-md);
    border-color: rgba(254, 103, 55, 0.3);
    transform: translateY(-4px);
}

.feature-box h5 {
    font-size: var(--fs-h6);
    margin-bottom: 0.75rem;
}

/* ================================================
   Interleaved CTA Blocks
   ================================================ */
.interleaved-cta {
    background: var(--dark-gradient);
    border-radius: var(--border-radius);
    padding: 3rem 2rem;
    color: #fff;
    position: relative;
    overflow: hidden;
    margin: 3rem 0;
    box-shadow: var(--shadow-lg);
}

.interleaved-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(254, 103, 55, 0.3) 0%, transparent 70%);
    pointer-events: none;
}

.interleaved-cta::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.interleaved-cta h3 {
    color: #fff;
    font-size: var(--fs-h3);
    font-weight: 800;
}

/* ================================================
   Usage Step Cards
   ================================================ */
.usage-step-card {
    background: #fff;
    border: 1px solid rgba(226, 232, 240, 0.6);
    border-radius: var(--border-radius-sm);
    padding: 1.75rem 1.25rem;
    text-align: center;
    height: 100%;
    position: relative;
    transition: var(--transition-smooth);
    overflow: hidden;
}

.usage-step-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(254, 103, 55, 0.3);
}

/* Highlighted last card */
.usage-step-card--highlight {
    background: var(--dark-gradient);
    border-color: transparent;
}

.usage-step-card--highlight:hover {
    box-shadow: 0 20px 40px -10px rgba(3, 100, 101, 0.5);
    border-color: transparent;
}

/* Icon circle */
.usage-step-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(254, 103, 55, 0.12), rgba(254, 103, 55, 0.06));
    border: 1.5px solid rgba(254, 103, 55, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    font-size: 1.2rem;
    color: var(--primary);
    transition: var(--transition-smooth);
}

.usage-step-card:hover .usage-step-icon {
    background: var(--primary-gradient);
    border-color: transparent;
    color: #fff;
    transform: scale(1.1);
}

.usage-step-icon--light {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.usage-step-card--highlight:hover .usage-step-icon--light {
    background: var(--primary-gradient);
    border-color: transparent;
    color: #fff;
}

/* Step number */
.usage-step-num {
    font-family: 'DM Sans', sans-serif;
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.usage-step-num--light {
    background: linear-gradient(135deg, #fff, rgba(255, 255, 255, 0.7));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Step title */
.usage-step-title {
    font-family: 'DM Sans', sans-serif;
    font-weight: 800;
    font-size: var(--fs-md);
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.usage-step-title--light {
    color: #fff;
}

/* Step description */
.usage-step-desc {
    font-size: var(--fs-sm);
    color: var(--gray-600);
    margin-bottom: 0;
    line-height: 1.7;
}

.usage-step-desc--light {
    color: rgba(255, 255, 255, 0.7);
}

/* ================================================
   Accordion FAQs
   ================================================ */
.accordion-item {
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius-sm) !important;
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.accordion-button {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: var(--fs-md);
    padding: 1.25rem 1.5rem;
    border-radius: var(--border-radius-sm) !important;
    color: var(--dark);
    background-color: #fff;
    transition: var(--transition-smooth);
}

.accordion-button:not(.collapsed) {
    background-color: rgba(254, 103, 55, 0.04);
    color: var(--primary);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(254, 103, 55, 0.5);
}

.accordion-button::after {
    filter: grayscale(1) opacity(0.6);
}

.accordion-button:not(.collapsed)::after {
    filter: none;
}

/* ================================================
   Specifications Table
   ================================================ */
.spec-table {
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    border: 1px solid var(--gray-200);
}

.spec-table th {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: var(--fs-sm);
    background-color: var(--gray-50);
    color: var(--dark);
    width: 35%;
    padding: 1rem;
}

.spec-table td {
    font-size: var(--fs-sm);
    color: var(--gray-700);
    padding: 1rem;
}

/* ================================================
   Footer
   ================================================ */
footer {
    background-color: var(--dark);
    color: #ffffff;
    padding: 4rem 0 2rem;
    font-size: var(--fs-sm);
    border-top: 6px solid var(--primary);
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--primary-gradient);
}

footer h5 {
    color: #ffffff;
    font-family: 'DM Sans', sans-serif;
    font-size: var(--fs-md);
    font-weight: 800;
    margin-bottom: 1.5rem;
}

footer p,
footer li {
    color: white;
    font-size: var(--fs-sm);
}

footer a {
    color: white;
    text-decoration: none;
    transition: var(--transition-smooth);
}

footer a:hover {
    color: var(--primary);
    padding-left: 4px;
}

footer hr {
    border-color: rgba(255, 255, 255, 0.15);
}

/* ================================================
   Mobile Offcanvas Navigation
   ================================================ */
.mobile-offcanvas {
    --bs-offcanvas-width: 90%;
    max-width: 380px;
    border-radius: 20px 0 0 20px;
}

.offcanvas-nav {
    margin: 0;
    padding: 0;
}

.offcanvas-nav li {
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
}

.offcanvas-nav li:last-child {
    border-bottom: none;
}

.offcanvas-nav a {
    display: flex;
    align-items: center;
    padding: 1.1rem 0.5rem;
    font-size: var(--fs-md);
    font-weight: 700;
    color: var(--dark);
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
    transition: var(--transition-smooth);
}

.offcanvas-nav a:hover {
    color: var(--primary);
    padding-left: 10px;
    background: rgba(254, 103, 55, 0.03);
    border-radius: 8px;
}

.offcanvas-nav a i {
    color: var(--primary);
    width: 28px;
    font-size: 1.1rem;
}

@media (max-width: 991.98px) {
    #navbarDesktop {
        display: none !important;
    }
}

/* ================================================
   Premium Product Detail Layout
   ================================================ */
.product-image-container-premium {
    position: relative;
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 24px;
    padding: 3rem 2rem;
    text-align: center;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(3, 100, 101, 0.04);
    transition: var(--transition-smooth);
    overflow: hidden;
}

.product-image-container-premium::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    background: radial-gradient(circle, rgba(254, 103, 55, 0.14) 0%, rgba(3, 100, 101, 0.06) 50%, rgba(255, 255, 255, 0) 80%);
    z-index: 1;
    pointer-events: none;
}

.product-image-container-premium img {
    position: relative;
    z-index: 2;
    transition: var(--transition-smooth);
    max-height: 440px;
    object-fit: contain;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-12px) rotate(1deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

.product-image-container-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(3, 100, 101, 0.08);
    border-color: rgba(254, 103, 55, 0.25);
}

.product-image-container-premium:hover img {
    transform: scale(1.04) rotate(1.5deg);
}

.product-title-gradient {
    background: linear-gradient(135deg, var(--dark) 20%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.badge-stock {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.08);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.15);
    border-radius: 30px;
    padding: 6px 16px;
    font-weight: 700;
    font-size: 0.82rem;
    font-family: 'DM Sans', sans-serif;
    letter-spacing: 0.3px;
}

.dot-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #10b981;
    position: relative;
}

.dot-pulse::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #10b981;
    top: 0;
    left: 0;
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    70% {
        transform: scale(2.5);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 0;
    }
}

.price-container-premium {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 1.5rem;
}

.price-sale-premium {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--primary);
    font-family: 'DM Sans', sans-serif;
    letter-spacing: -0.02em;
}

.price-original-premium {
    font-size: 1.35rem;
    color: var(--gray-400);
    text-decoration: line-through;
    font-family: 'DM Sans', sans-serif;
}

.price-discount-badge-premium {
    background: var(--primary-gradient);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 800;
    padding: 4px 14px;
    border-radius: 30px;
    font-family: 'DM Sans', sans-serif;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(254, 103, 55, 0.2);
}

.product-highlights-premium {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 1.5rem;
}

@media (min-width: 576px) {
    .product-highlights-premium {
        grid-template-columns: repeat(2, 1fr);
    }
}

.highlight-item-premium {
    display: flex;
    gap: 12px;
    padding: 0.65rem 0.85rem;
    border-radius: 12px;
    border: 1.5px solid rgba(226, 232, 240, 0.8);
    background: #ffffff;
    transition: var(--transition-smooth);
}

/* Individual border and background accent classes to make it colorful by default */
.highlight-item-premium.border-blue {
    border-color: rgba(59, 130, 246, 0.18) !important;
    background: rgba(59, 130, 246, 0.04) !important;
}

.highlight-item-premium.border-blue:hover {
    background: rgba(59, 130, 246, 0.08) !important;
    border-color: rgba(59, 130, 246, 0.45) !important;
}

.highlight-item-premium.border-cyan {
    border-color: rgba(2, 132, 199, 0.18) !important;
    background: rgba(2, 132, 199, 0.04) !important;
}

.highlight-item-premium.border-cyan:hover {
    background: rgba(2, 132, 199, 0.08) !important;
    border-color: rgba(2, 132, 199, 0.45) !important;
}

.highlight-item-premium.border-red {
    border-color: rgba(239, 68, 68, 0.18) !important;
    background: rgba(239, 68, 68, 0.04) !important;
}

.highlight-item-premium.border-red:hover {
    background: rgba(239, 68, 68, 0.08) !important;
    border-color: rgba(239, 68, 68, 0.45) !important;
}

.highlight-item-premium.border-green {
    border-color: rgba(34, 197, 94, 0.18) !important;
    background: rgba(34, 197, 94, 0.04) !important;
}

.highlight-item-premium.border-green:hover {
    background: rgba(34, 197, 94, 0.08) !important;
    border-color: rgba(34, 197, 94, 0.45) !important;
}

.highlight-item-premium.border-emerald {
    border-color: rgba(16, 185, 129, 0.18) !important;
    background: rgba(16, 185, 129, 0.04) !important;
}

.highlight-item-premium.border-emerald:hover {
    background: rgba(16, 185, 129, 0.08) !important;
    border-color: rgba(16, 185, 129, 0.45) !important;
}

.highlight-item-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(3, 100, 101, 0.06);
}

.highlight-icon-box-premium {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    transition: var(--transition-smooth);
    background: #ffffff !important;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.04);
}

.highlight-item-premium:hover .highlight-icon-box-premium {
    transform: scale(1.08);
}

/* Accent colors for icons based on type */
.bg-icon-blue {
    color: #3b82f6;
}

.bg-icon-cyan {
    color: #0284c7;
}

.bg-icon-red {
    color: #ef4444;
}

.bg-icon-green {
    color: #22c55e;
}

.bg-icon-emerald {
    color: #10b981;
}

.highlight-title-premium {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 2px;
    font-family: 'DM Sans', sans-serif;
}

.highlight-desc-premium {
    font-size: 0.76rem;
    color: var(--gray-600);
    line-height: 1.4;
    margin-bottom: 0;
}

.quantity-input-group-premium {
    display: flex;
    align-items: center;
    border: 1.5px solid rgba(226, 232, 240, 0.8);
    border-radius: 12px;
    background: #ffffff;
    height: 52px;
    width: 140px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.quantity-input-group-premium:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(254, 103, 55, 0.15);
}

.quantity-btn-premium {
    border: none;
    background: transparent;
    color: var(--dark);
    font-weight: 700;
    width: 44px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    font-size: 1.1rem;
    outline: none;
}

.quantity-btn-premium:hover {
    background: var(--gray-50);
    color: var(--primary);
}

.quantity-value-premium {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    border: none;
    text-align: center;
    width: calc(100% - 88px);
    height: 100%;
    outline: none;
    -moz-appearance: textfield;
}

.quantity-value-premium::-webkit-outer-spin-button,
.quantity-value-premium::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.btn-add-to-cart-premium {
    height: 52px;
    font-weight: 700;
    padding: 0 3rem;
    border-radius: 12px;
    background: var(--primary-gradient);
    color: #fff;
    border: none;
    font-family: 'DM Sans', sans-serif;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    letter-spacing: 0.5px;
    animation: btnPulse 3s infinite;
}

@keyframes btnPulse {
    0% {
        box-shadow: 0 8px 20px rgba(254, 103, 55, 0.25);
    }

    50% {
        box-shadow: 0 8px 30px rgba(254, 103, 55, 0.5);
    }

    100% {
        box-shadow: 0 8px 20px rgba(254, 103, 55, 0.25);
    }
}

.btn-add-to-cart-premium:hover {
    background: linear-gradient(135deg, #e05324 0%, #fe6737 100%);
    transform: translateY(-2px);
    animation: none;
    box-shadow: 0 12px 25px rgba(254, 103, 55, 0.4);
}

.btn-add-to-cart-premium:active {
    transform: translateY(0);
}

/* ================================================
   Modernized Product Overview Redesign
   ================================================ */
.overview-card {
    padding: 3.5rem;
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 32px;
    background: #ffffff;
    box-shadow: 0 20px 50px rgba(3, 100, 101, 0.05);
}

@media (max-width: 991.98px) {
    .overview-card {
        padding: 2rem;
        border-radius: 24px;
    }
}

.overview-badge {
    background: #ff5e36;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    padding: 0.45rem 1.25rem;
    border-radius: 50px;
    display: inline-block;
    /* Changed from block to inline-block */
    width: auto;
    /* Auto width instead of fit-content */
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 10px rgba(255, 94, 54, 0.2);
}


.overview-title {
    font-size: var(--fs-h1);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1.75rem;
    position: relative;
    padding-bottom: 12px;
    display: inline-block;
    text-align: left !important;
}

.overview-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: #ff5e36;
    border-radius: 4px;
}

.overview-subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.overview-desc {
    font-size: 0.95rem;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.overview-image-container {
    border-radius: 16px;
    overflow: hidden;
    margin-top: 1.5rem;
}

.overview-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.overview-image:hover {
    transform: scale(1.02);
}

/* Dome Cards Grid */
.dome-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

@media (max-width: 767.98px) {
    .dome-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.dome-card {
    position: relative;
    border-radius: 120px 120px 24px 24px;
    padding: 2.5rem 1.5rem 2rem 1.5rem;
    text-align: center;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    transition: var(--transition-smooth);
    min-height: 310px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dome-card:hover {
    transform: translateY(-8px);
}

.dome-card .card-icon {
    margin-bottom: 1.5rem;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
}

.dome-card:hover .card-icon {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.dome-card .card-icon svg {
    width: 50px;
    height: 50px;
}

.dome-card .card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.dome-card .card-description {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
    line-height: 1.5;
    font-weight: 400;
}

/* Card color gradients and shadows matching mockup */
.card-orange {
    background: linear-gradient(180deg, #ff7e43 0%, #ff521d 100%);
    box-shadow: 0 15px 30px rgba(255, 82, 29, 0.35);
}

.card-orange:hover {
    box-shadow: 0 20px 45px rgba(255, 82, 29, 0.5);
}

.card-blue {
    background: linear-gradient(180deg, #182b6c 0%, #0c1538 100%);
    box-shadow: 0 15px 30px rgba(12, 21, 56, 0.35);
}

.card-blue:hover {
    box-shadow: 0 20px 45px rgba(12, 21, 56, 0.5);
}

.card-gold {
    background: linear-gradient(180deg, #d49a37 0%, #a26b14 100%);
    box-shadow: 0 15px 30px rgba(162, 107, 20, 0.35);
}

.card-gold:hover {
    box-shadow: 0 20px 45px rgba(162, 107, 20, 0.5);
}

.card-green {
    background: linear-gradient(180deg, #0aa274 0%, #04654a 100%);
    box-shadow: 0 15px 30px rgba(4, 101, 74, 0.35);
}

.card-green:hover {
    box-shadow: 0 20px 45px rgba(4, 101, 74, 0.5);
}

/* ================================================
   Redesigned Why Choose Section Styles (Premium Light Shield Cards)
   ================================================ */
.choice-card-wrapper {
    position: relative;
    padding: 3px;
    /* Border thickness */
    height: 100%;
    min-height: 430px;
    clip-path: polygon(0 0, 100% 0, 100% 92%, 50% 100%, 0 92%);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
}

.choice-card-wrapper:hover {
    transform: translateY(-12px);
}

.choice-card-inner {
    background: #ffffff;
    clip-path: polygon(0 0, 100% 0, 100% 92%, 50% 100%, 0 92%);
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 1.5rem 1.5rem 2.5rem 1.5rem;
    box-sizing: border-box;
}

.choice-img-container {
    width: 100%;
    height: 220px;
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    background: #f8fafc;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.choice-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.choice-card-wrapper:hover .choice-img-container img {
    transform: scale(1.08);
}

.choice-card-inner .choice-title {
    font-size: 1.45rem;
    font-weight: 800;
    color: #023047;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 0.5rem;
    margin-bottom: 0.75rem;
    text-align: center;
    font-family: 'DM Sans', sans-serif;
    line-height: 1.3;
}

.choice-card-inner .choice-desc {
    font-size: 0.92rem;
    color: #475569;
    line-height: 1.6;
    font-weight: 500;
    text-align: center;
    margin-bottom: 0;
    padding: 0 0.5rem;
}

/* Choice card gradient borders & glows */
.choice-orange-glow {
    background: var(--primary-gradient);
    filter: drop-shadow(0 8px 16px rgba(255, 123, 0, 0.15));
}

.choice-orange-glow:hover {
    filter: drop-shadow(0 15px 30px rgba(255, 123, 0, 0.35));
}

.choice-green-glow {
    background: var(--primary-gradient);
    filter: drop-shadow(0 8px 16px rgba(60, 160, 96, 0.15));
}

.choice-green-glow:hover {
    filter: drop-shadow(0 15px 30px rgba(60, 160, 96, 0.35));
}

.choice-blue-glow {
    background: var(--primary-gradient);
    filter: drop-shadow(0 8px 16px rgba(31, 101, 184, 0.15));
}

.choice-blue-glow:hover {
    filter: drop-shadow(0 15px 30px rgba(31, 101, 184, 0.35));
}

/* ================================================
   Premium Modern Upgrades for Key Features, Benefits, Apps, Splits & FAQ
   ================================================ */

/* Premium Feature Boxes (Features & Benefits) */
.feature-box-premium {
    background: #ffffff;
    border: 1.5px solid rgba(226, 232, 240, 0.7);
    border-radius: 20px;
    padding: 2.25rem 2rem;
    height: 100%;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(3, 100, 101, 0.02);
}

.feature-box-premium:hover {
    transform: translateY(-6px);
    border-color: rgba(254, 103, 55, 0.3);
    box-shadow: 0 15px 35px rgba(254, 103, 55, 0.12);
}

.icon-circle-premium {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(254, 103, 55, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 1.25rem;
    transition: var(--transition-smooth);
}

.feature-box-premium:hover .icon-circle-premium {
    background: var(--primary-gradient);
    color: #ffffff;
    transform: scale(1.05) rotate(-3deg);
}

.feature-title-premium {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.feature-desc-premium {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.65;
    margin-bottom: 0;
}

/* Benefits (Green Theme modifier) */
.feature-box-premium.green-theme:hover {
    border-color: rgba(10, 162, 116, 0.3);
    box-shadow: 0 15px 35px rgba(10, 162, 116, 0.12);
}

.feature-box-premium.green-theme .icon-circle-premium {
    background: rgba(10, 162, 116, 0.1);
    color: #0aa274;
}

.feature-box-premium.green-theme:hover .icon-circle-premium {
    background: linear-gradient(135deg, #0aa274 0%, #04654a 100%);
    color: #ffffff;
}

/* Premium Product Application Cards */
.application-card {
    background: #ffffff;
    border: 1.5px solid rgba(226, 232, 240, 0.7);
    border-radius: 24px;
    padding: 2.75rem 1.75rem;
    text-align: center;
    transition: var(--transition-smooth);
    height: 100%;
    box-shadow: 0 8px 30px rgba(3, 100, 101, 0.02);
}

.application-card:hover {
    transform: translateY(-8px);
}

.app-icon-circle {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.65rem;
    margin: 0 auto 1.5rem auto;
    transition: var(--transition-smooth);
}

.app-blue .app-icon-circle {
    background: rgba(31, 101, 184, 0.1);
    color: #1f65b8;
}

.app-blue:hover {
    border-color: rgba(31, 101, 184, 0.3);
    box-shadow: 0 15px 35px rgba(31, 101, 184, 0.12);
}

.app-blue:hover .app-icon-circle {
    background: linear-gradient(135deg, #53f3f3 0%, #1f65b8 100%);
    color: #ffffff;
}

.app-orange .app-icon-circle {
    background: rgba(254, 103, 55, 0.1);
    color: var(--primary);
}

.app-orange:hover {
    border-color: rgba(254, 103, 55, 0.3);
    box-shadow: 0 15px 35px rgba(254, 103, 55, 0.12);
}

.app-orange:hover .app-icon-circle {
    background: var(--primary-gradient);
    color: #ffffff;
}

.app-green .app-icon-circle {
    background: rgba(10, 162, 116, 0.1);
    color: #0aa274;
}

.app-green:hover {
    border-color: rgba(10, 162, 116, 0.3);
    box-shadow: 0 15px 35px rgba(10, 162, 116, 0.12);
}

.app-green:hover .app-icon-circle {
    background: linear-gradient(135deg, #0aa274 0%, #04654a 100%);
    color: #ffffff;
}

.app-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.app-desc {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.65;
    margin-bottom: 0;
}

/* Split Performance & Durability Accent Cards */
.split-card-performance {
    border-left: 5px solid #1f65b8 !important;
    background: linear-gradient(90deg, rgba(31, 101, 184, 0.03) 0%, #ffffff 100%) !important;
}

.split-card-performance:hover {
    box-shadow: 0 15px 30px rgba(31, 101, 184, 0.06) !important;
    border-color: #1f65b8 !important;
}

.split-card-durability {
    border-left: 5px solid #ff5e36 !important;
    background: linear-gradient(90deg, rgba(255, 94, 54, 0.03) 0%, #ffffff 100%) !important;
}

.split-card-durability:hover {
    box-shadow: 0 15px 30px rgba(255, 94, 54, 0.06) !important;
    border-color: #ff5e36 !important;
}

/* Premium Accordions for FAQ */
.accordion-item {
    border: 1px solid rgba(226, 232, 240, 0.8) !important;
    border-radius: 16px !important;
    margin-bottom: 1rem;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 4px 15px rgba(3, 100, 101, 0.01);
    transition: var(--transition-smooth);
}

.accordion-item:hover {
    border-color: rgba(254, 103, 55, 0.2) !important;
    box-shadow: 0 8px 25px rgba(3, 100, 101, 0.03);
}

.accordion-button {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    color: var(--dark) !important;
    padding: 1.25rem 1.5rem;
    background-color: #ffffff !important;
    border: none !important;
    box-shadow: none !important;
    transition: var(--transition-smooth);
}

.accordion-button:not(.collapsed) {
    color: var(--primary) !important;
    background-color: rgba(254, 103, 55, 0.02) !important;
}

.accordion-body {
    font-size: 0.92rem;
    color: var(--gray-700);
    line-height: 1.7;
    padding: 1.25rem 1.5rem 1.5rem 1.5rem;
    background-color: #ffffff;
}

/* ================================================
   Why Choose Mockup Redesign: Panel Carousel, Hexagons & App Cards
   ================================================ */

/* 1. Key Features Stacked Panel Carousel */
.feature-panel-grid {
    display: flex;
    gap: 24px;
    margin-top: 2rem;
}

@media (max-width: 991.98px) {
    .feature-panel-grid {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 20px;
        margin-bottom: 1rem;
    }

    .feature-panel-grid>div {
        flex: 0 0 290px;
        scroll-snap-align: start;
    }
}

@media (min-width: 992px) {
    .feature-panel-grid>div {
        flex: 1;
    }
}

.feature-panel-card {
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(3, 100, 101, 0.03);
    transition: var(--transition-smooth);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.feature-panel-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(3, 100, 101, 0.08);
    border-color: rgba(254, 103, 55, 0.2);
}

.feature-panel-img-box {
    width: 100%;
    height: 200px;
    background: #ffffff;
    overflow: hidden;
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-panel-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.feature-panel-card:hover .feature-panel-img-box img {
    transform: scale(1.05);
}

.feature-panel-body {
    padding: 1.75rem 1.25rem;
    text-align: center;
}

.feature-panel-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.feature-panel-desc {
    font-size: 0.88rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 0;
}

/* 2. Benefits Hexagonal Grid */
.benefits-hex-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 2.5rem;
}

.hex-card-wrapper {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.hex-card-wrapper:hover {
    transform: translateY(-8px);
}

.hex-card-svg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    filter: drop-shadow(0 8px 16px rgba(3, 100, 101, 0.05));
    transition: var(--transition-smooth);
}

.hex-card-wrapper:hover .hex-card-svg {
    filter: drop-shadow(0 15px 30px rgba(3, 100, 101, 0.1));
}

.hex-card-inner {
    position: relative;
    width: 86%;
    height: 86%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2.25rem 1.5rem;
    text-align: center;
}

.hex-icon-circle {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    color: #ffffff;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.hex-card-wrapper:hover .hex-icon-circle {
    transform: scale(1.08) rotate(-3deg);
}

.hex-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #023047;
    margin-bottom: 0.5rem;
}

.hex-desc {
    font-size: 0.82rem;
    color: #475569;
    line-height: 1.5;
    margin-bottom: 0;
    font-weight: 500;
}

/* 3. Product Applications Modernized Cards */
.app-card-modern {
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(3, 100, 101, 0.02);
    transition: var(--transition-smooth);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.app-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(3, 100, 101, 0.08);
}

.app-card-img-box {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.app-card-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.app-card-modern:hover .app-card-img-box img {
    transform: scale(1.05);
}

.app-card-body {
    padding: 2.25rem 1.5rem;
    text-align: center;
}

.app-card-icon-badge {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -50px auto 1.25rem auto;
    position: relative;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    color: #ffffff;
    font-size: 1.25rem;
    transition: var(--transition-smooth);
    border: 2px solid #ffffff;
}

.app-card-modern:hover .app-card-icon-badge {
    transform: scale(1.08) rotate(-3deg);
}

.app-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.app-card-desc {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 0;
}

/* ================================================
   Product Overview Points List Redesign
   ================================================ */
.overview-points-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 2rem;
}

.overview-point-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fbfdff;
    border: 1px solid rgba(226, 232, 240, 0.6);
    border-radius: 16px;
    padding: 1rem 1.25rem;
    transition: var(--transition-smooth);
}

.overview-point-item:hover {
    transform: translateX(6px);
    border-color: rgba(254, 103, 55, 0.2);
    box-shadow: 0 5px 15px rgba(3, 100, 101, 0.03);
}

.point-icon-circle {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    color: #ffffff;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
}

.overview-point-item:hover .point-icon-circle {
    transform: scale(1.05) rotate(-3deg);
}

.point-orange {
    background: linear-gradient(135deg, #ff7e43 0%, #ff521d 100%);
    box-shadow: 0 4px 12px rgba(255, 82, 29, 0.2);
}

.point-blue {
    background: linear-gradient(135deg, #1f65b8 0%, #0d1b2a 100%);
    box-shadow: 0 4px 12px rgba(31, 101, 184, 0.2);
}

.point-gold {
    background: linear-gradient(135deg, #d49a37 0%, #a26b14 100%);
    box-shadow: 0 4px 12px rgba(162, 107, 20, 0.2);
}

.point-green {
    background: linear-gradient(135deg, #0aa274 0%, #04654a 100%);
    box-shadow: 0 4px 12px rgba(10, 162, 116, 0.2);
}

.point-content {
    flex-grow: 1;
}

.point-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 2px;
    line-height: 1.2;
}

.point-desc {
    font-size: 0.88rem;
    color: var(--gray-600);
    margin-bottom: 0;
    line-height: 1.45;
}









/* ================================================
   Circular Arc C-Shape Carousel
   ================================================ */
.coverflow-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1200px;
    overflow: visible;
}

.coverflow-stage {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coverflow-item {
    position: absolute;
    width: 250px;
    height: 250px;
    transform-style: preserve-3d;
    cursor: pointer;
    will-change: transform, opacity;
}

.coverflow-item-inner {
    width: 100%;
    height: 100%;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    box-sizing: border-box;
    transition: box-shadow 0.4s ease;
}

.coverflow-item.active .coverflow-item-inner {
    box-shadow: 0 25px 50px rgba(254, 103, 55, 0.15);
    border-color: rgba(254, 103, 55, 0.3);
    animation: coverflowFloat 3s ease-in-out infinite alternate;
}

.coverflow-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.04));
}

@keyframes coverflowFloat {
    0% {
        transform: translateY(0px);
    }

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

/* Responsive adjustments */
@media (max-width: 576px) {
    .coverflow-container {
        height: 480px;
        max-width: 320px;
    }

    .coverflow-item {
        width: 180px;
        height: 180px;
    }
}

/* Announcement Marquees */
.marquee-announcement-1 {
    background: linear-gradient(135deg, #fe6737 0%, #ff8c5a 100%);
    color: #ffffff;
    font-family: 'DM Sans', sans-serif;
    padding: 10px 0;
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.15);
    display: block;
    margin: 0;
    overflow: hidden;
}

/* Modern Ticker styles (Home page only) */
.modern-ticker-wrap {
    background: linear-gradient(135deg, #fe6737 0%, #ff8c5a 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding: 14px 0;
    overflow: hidden;
    position: relative;
    width: 100%;
    display: flex;
}

.modern-ticker {
    display: flex;
    white-space: nowrap;
    width: 100%;
}

.ticker-item-list {
    display: flex;
    align-items: center;
    animation: ticker-slide 12s linear infinite;
    flex-shrink: 0;
}

.ticker-item {
    font-family: 'DM Sans', sans-serif;
    color: #ffffff;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 0 45px;
    display: flex;
    align-items: center;
    transition: color 0.3s;
}

.ticker-item-divider {
    color: rgba(255, 255, 255, 0.35);
    font-weight: 300;
    font-size: 22px;
}

.modern-ticker-wrap:hover .ticker-item-list,
.marquee-announcement-1:hover .ticker-item-list {
    animation-play-state: paused;
}

/* Custom speed & size overrides for header ticker */
.header-ticker-speed {
    animation: ticker-slide 12s linear infinite;
}

.header-ticker-font {
    font-size: 15px !important;
    font-weight: 700 !important;
    letter-spacing: 0.8px;
    padding: 0 50px;
}

@keyframes ticker-slide {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

/* Fix for section wrappers */

.custom-card .section-title,
#features .section-title,
#benefits .section-title,
#applications .section-title,
#layer-tech .section-title,
#faq .section-title {
    text-align: left !important;
}

#features .text-center,
#benefits .text-center,
#applications .text-center,
#layer-tech .text-center,
#faq .text-center {
    text-align: left !important;
}

#features .text-center .text-muted,
#benefits .text-center .text-muted,
#applications .text-center .text-muted,
#layer-tech .text-center .text-muted,
#faq .text-center .text-muted {
    text-align: center !important;
}

#features .overview-badge,
#benefits .overview-badge,
#applications .overview-badge,
#layer-tech .overview-badge,
#faq .overview-badge {
    display: inline-block;
    width: auto;
}


/* Fix for any parent containers that might be centering content */

.overview-text-content {
    text-align: left !important;
}

.overview-badge-wrapper {
    text-align: left !important;
}

[data-aos].text-center {
    text-align: left !important;
}

/* 10. But keep the product showcase title centered */
.hero-title-main {
    text-align: center !important;
}

/* 11. Keep "Product Overview" section badge and title left-aligned */
#overview .overview-badge,
#overview .overview-title {
    text-align: left !important;
}

/* 12. Fix for feature panel cards - ensure content is left-aligned */
.feature-panel-body {
    text-align: left !important;
}

/* 13. Fix for benefit hex cards - keep content centered */
.hex-card-inner {
    text-align: center !important;
}

/* 14. Fix for application cards - keep content centered */
.app-card-body {
    text-align: center !important;
}

/* 15. Fix for FAQ section - keep content left-aligned */
#faq .accordion {
    text-align: left !important;
}

/* 16. Ensure section descriptions are left-aligned when they should be */
#features .text-muted,
#benefits .text-muted,
#applications .text-muted,
#layer-tech .text-muted,
#faq .text-muted {
    text-align: left !important;
    max-width: 100% !important;
}

/* 17. Specifically target the "Discover the Difference" span */
#features .overview-badge,
#benefits .overview-badge,
#applications .overview-badge,
#layer-tech .overview-badge,
#faq .overview-badge {
    display: inline-block !important;
    width: auto !important;
    text-align: left !important;
}

/* 18. Fix for section titles that are inside text-center divs */
.text-center .section-title {
    text-align: left !important;
}

/* 19. Keep the product showcase title centered */
.hero-title-main {
    text-align: center !important;
}

/* 20. Fix for layer tech section - left align content */
#layer-tech .container .custom-card {
    text-align: left !important;
}

/* But keep the center image centered */
#layer-tech .tech-product-placeholder {
    text-align: center !important;
}

/* 21. Fix for "Why Choose Us" section - keep titles left-aligned */
#benefits .overview-badge,
#benefits .section-title {
    text-align: left !important;
}

/* 22. Fix for "Versatile Usage" section */
#applications .overview-badge,
#applications .section-title {
    text-align: left !important;
}

/* 23. Fix for "Got Questions?" section */
#faq .overview-badge,
#faq .section-title {
    text-align: left !important;
}

/* 24. Fix for "Innovative Design" section */
#layer-tech .overview-badge,
#layer-tech .section-title {
    text-align: left !important;
}

/* 25. Override any global text-center that might affect these */
.text-center .overview-badge,
.text-center .section-title {
    text-align: left !important;
    display: inline-block !important;
    width: auto !important;
}