/* 
   AETHER – Unified Dark Mode Design Tokens, Fullscreen 3D Slider, and WebGL Canvas Backdrop
*/

:root {
    --color-bg: #FAF8F5;
    --color-bg-alt: #F3EFE9;
    --color-primary: #FFB200;
    /* Warm gold accent */
    --color-primary-light: #FFC229;
    --color-text: #191919;
    --color-text-muted: #606060;
    --font-serif: 'Cinzel', serif;
    --font-sans: 'Outfit', sans-serif;

    --glass-bg: rgba(255, 255, 255, 0.75);
    --glass-border: rgba(255, 178, 0, 0.15);
    --glass-blur: 15px;
}

/* Global Reset & Base Setup */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: auto;
    background-color: var(--color-bg);
    overflow-x: hidden;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-sans);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    perspective: 2000px;
    perspective-origin: center center;
    position: relative;
}

h1,
h2,
h3,
.font-serif {
    font-family: var(--font-serif);
    letter-spacing: 0.15em;
    font-weight: 400;
}

a {
    color: inherit;
    text-decoration: none;
}

/* WebGL Background Canvas */
#webgl-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    pointer-events: none;
}

/* Custom Luxury Cursor */
.luxury-cursor {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 99999;
    mix-blend-mode: normal;
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background-color: var(--color-primary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
}

.cursor-ring {
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-primary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    transition: width 0.3s, height 0.3s, border-color 0.3s;
}

/* Spotlight Mouse Follow effect */
.spotlight {
    position: fixed;
    top: 0;
    left: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 178, 0, 0.04) 0%, rgba(255, 255, 255, 0) 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 2;
}

/* Premium Glassmorphism Navigation */
.premium-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 3rem;
    z-index: 9999;
    backdrop-filter: blur(10px);
    background: rgba(3, 3, 3, 0.4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

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

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-link {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.25em;
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color 0.3s, transform 0.3s;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--color-primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.85, 0, 0.15, 1);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-inquire {
    background: transparent;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    padding: 0.6rem 1.6rem;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.4s, color 0.4s, transform 0.3s;
    text-decoration: none;
}

.btn-inquire:hover {
    background-color: var(--color-primary);
    color: var(--color-bg);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 178, 0, 0.3);
}

/* SECTION 1: HERO FULLSCREEN 3D SLIDER CSS */
.hero-slider-3d {
    position: relative;
    width: 100vw;
    height: 100vh;
    background-color: transparent;
    overflow: hidden;
    perspective: 2500px;
    z-index: 10;
}

.slider-particles-container {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.slider-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background-color: var(--color-primary);
    border-radius: 50%;
    opacity: 0.3;
    filter: blur(1px);
    will-change: transform, opacity;
}

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

.slider-track-3d {
    position: relative;
    width: 100%;
    height: 70vh;
    transform-style: preserve-3d;
}

.slide-3d {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 42vw;
    height: 52vh;
    margin-top: -26vh;
    margin-left: -21vw;
    transform-style: preserve-3d;
    will-change: transform, opacity, filter;
    cursor: grab;
}

.slide-3d:active {
    cursor: grabbing;
}

.slide-3d-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.95);
    transform-style: preserve-3d;
}

/* Reflection mirror effect */
.slide-3d-reflection {
    position: absolute;
    top: 102%;
    left: 0;
    width: 100%;
    height: 35%;
    background-size: cover;
    background-position: center bottom;
    transform: scaleY(-1);
    opacity: 0;
    filter: blur(5px);
    pointer-events: none;
    -webkit-mask-image: linear-gradient(to top, transparent 20%, rgba(0, 0, 0, 0.4) 100%);
    mask-image: linear-gradient(to top, transparent 20%, rgba(0, 0, 0, 0.4) 100%);
    will-change: opacity;
}

.slide-3d-info {
    position: absolute;
    bottom: -16vh;
    left: 50%;
    transform: translateX(-50%) translateZ(120px);
    text-align: center;
    width: 120%;
    opacity: 0;
    pointer-events: none;
    transform-style: preserve-3d;
    will-change: transform, opacity;
}

.slide-category {
    font-size: 0.7rem;
    letter-spacing: 0.35em;
    color: var(--color-primary);
    text-transform: uppercase;
}

.slide-title {
    font-size: clamp(2rem, 4vw, 3.8rem);
    font-family: var(--font-serif);
    color: #fff;
    margin: 0.4rem 0;
    letter-spacing: 0.15em;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.slide-desc {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    letter-spacing: 0.1em;
}

/* Controls */
.controls-container-3d {
    position: absolute;
    bottom: 12vh;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 3.5rem;
    z-index: 100;
}

.slider-btn-3d {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(var(--glass-blur));
    color: #fff;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: background-color 0.4s, border-color 0.4s, color 0.4s, transform 0.3s;
}

.slider-btn-3d:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-bg);
    transform: scale(1.1);
}

.slider-pagination-3d {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: #fff;
    font-size: 0.95rem;
    letter-spacing: 0.1em;
}

.page-num {
    color: var(--color-primary);
    font-weight: 600;
}

.page-line {
    width: 50px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.15);
}

.page-num-total {
    color: var(--color-text-muted);
}

.scroll-indicator {
    position: absolute;
    bottom: 2vh;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    z-index: 5;
}

.scroll-text {
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    color: var(--color-text-muted);
}

.scroll-line {
    width: 1px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.12);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background-color: var(--color-primary);
    animation: scrollScroll 2.2s cubic-bezier(0.85, 0, 0.15, 1) infinite;
}

@keyframes scrollScroll {
    0% {
        transform: translateY(-100%);
    }

    80% {
        transform: translateY(333%);
    }

    100% {
        transform: translateY(333%);
    }
}

/* SECTION 2: PINNED STORYTELLING CSS */
.story-section {
    position: relative;
    width: 100vw;
    height: 100vh;
    background-color: transparent;
    z-index: 10;
}

.pinned-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.zoom-image-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.zoom-image {
    width: 30%;
    height: 30%;
    object-fit: cover;
    will-change: width, height, filter;
    filter: brightness(0.35);
    border-radius: 12px;
}

.image-overlay-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, transparent 20%, rgba(3, 3, 3, 0.95) 90%);
    pointer-events: none;
}

.story-content-wrapper {
    position: relative;
    z-index: 10;
    max-width: 900px;
    padding: 0 2rem;
    text-align: center;
}

.story-step {
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateY(100px) scale(0.9);
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.6s ease;
    will-change: transform, opacity;
}

.story-step.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.story-heading {
    font-size: clamp(2rem, 5vw, 4.5rem);
    color: #fff;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.story-p {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: var(--color-text-muted);
    line-height: 1.8;
    max-width: 650px;
}

/* SECTION 3: HORIZONTAL GALLERY CSS */
.gallery-section {
    position: relative;
    width: 100vw;
    height: 100vh;
    background-color: transparent;
    overflow: hidden;
    perspective: 2000px;
    z-index: 10;
}

.gallery-pin-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transform-style: preserve-3d;
}

.gallery-header {
    padding: 6rem 8% 2rem;
    z-index: 10;
}

.gallery-header-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.slider-3d-controls {
    display: flex;
    gap: 1.5rem;
    z-index: 12;
}

.btn-3d-nav {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(var(--glass-blur));
    color: #fff;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: background-color 0.4s, border-color 0.4s, color 0.4s, transform 0.3s;
}

.btn-3d-nav:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-bg);
    transform: scale(1.1);
}

.gallery-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: #fff;
}

.gallery-subtitle {
    font-size: 0.9rem;
    letter-spacing: 0.25em;
    color: var(--color-primary);
    margin-top: 0.5rem;
}

.horizontal-scroll-container {
    display: flex;
    gap: 6vw;
    padding: 0 8vw;
    width: max-content;
    will-change: transform;
    transform-style: preserve-3d;
}

.gallery-slide {
    width: 45vw;
    height: 55vh;
    flex-shrink: 0;
    position: relative;
    transform-style: preserve-3d;
    will-change: transform;
}

.slide-inner {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.img-wrapper {
    width: 100%;
    height: 85%;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.parallax-img {
    width: 120%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: -10%;
    top: 0;
    will-change: transform;
    filter: brightness(0.85);
    transition: filter 0.4s;
}

.gallery-slide:hover .parallax-img {
    filter: brightness(1);
}

.slide-info {
    display: flex;
    flex-direction: column;
}

.slide-num {
    font-family: var(--font-serif);
    font-size: 0.9rem;
    color: var(--color-primary);
}

.slide-title {
    font-size: 1.4rem;
    letter-spacing: 0.1em;
    margin-top: 0.2rem;
    color: #fff;
}

.slide-desc {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-top: 0.2rem;
}

/* SECTION 4: 3D CARD STACK */
.showcase-section {
    position: relative;
    width: 100vw;
    min-height: 100vh;
    padding: 8rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: transparent;
    z-index: 10;
}

.showcase-header {
    text-align: center;
    margin-bottom: 6rem;
}

.showcase-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: #fff;
}

.showcase-subtitle {
    font-size: 0.9rem;
    letter-spacing: 0.25em;
    color: var(--color-primary);
    margin-top: 0.5rem;
}

.card-stack-container {
    position: relative;
    width: 100%;
    max-width: 1100px;
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    transform-style: preserve-3d;
}

.project-card {
    position: absolute;
    width: 100%;
    max-width: 900px;
    height: 480px;
    background: rgba(25, 25, 25, 0.9);
    border: 1px solid rgba(255, 178, 0, 0.25);
    border-radius: 16px;
    display: flex;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
    transform-style: preserve-3d;
    will-change: transform, opacity;
    cursor: pointer;
}

.card-image-container {
    width: 55%;
    height: 100%;
    overflow: hidden;
}

.card-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.project-card:hover .card-image-container img {
    transform: scale(1.05);
}

.card-details {
    width: 45%;
    padding: 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    background: linear-gradient(135deg, rgba(25, 25, 25, 0.9) 0%, rgba(5, 5, 5, 0.95) 100%);
    border-left: 1px solid rgba(255, 255, 255, 0.05);
}

.card-category {
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    color: var(--color-primary);
}

.card-name {
    font-size: 2.2rem;
    color: #fff;
    line-height: 1.2;
}

.card-description {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* SECTION 5: PREMIUM CONTACT & ESTIMATION */
.contact-section {
    position: relative;
    width: 100vw;
    min-height: 100vh;
    padding: 8rem 0 2rem;
    background-color: transparent;
    display: flex;
    align-items: center;
    z-index: 10;
}

.contact-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 1.3fr;
    gap: 6rem;
    align-items: center;
}

.contact-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    color: #fff;
    line-height: 1.1;
}

.contact-subtitle {
    font-size: 1rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-top: 1.5rem;
    max-width: 480px;
}

.contact-details-list {
    margin-top: 3.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    letter-spacing: 0.15em;
}

.detail-item i {
    color: var(--color-primary);
    font-size: 1.1rem;
    width: 20px;
}

/* Glassmorphism Form Style */
.glass-contact-form {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(var(--glass-blur));
    padding: 4rem;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    position: relative;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.form-group {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.form-group label {
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    color: var(--color-primary);
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    font-family: var(--font-sans);
    font-size: 1rem;
    padding: 0.6rem 0;
    outline: none;
    transition: border-color 0.3s;
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background-color: var(--color-bg-alt);
    color: #fff;
}

.line-effect {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--color-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.form-group input:focus~.line-effect,
.form-group select:focus~.line-effect,
.form-group textarea:focus~.line-effect {
    transform: scaleX(1);
}

/* Premium Button style */
.btn-submit-premium {
    background: transparent;
    border: 1px solid var(--color-primary);
    color: #fff;
    padding: 1.2rem 2.5rem;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    letter-spacing: 0.3em;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.4s, color 0.4s, transform 0.3s;
    margin-top: 1rem;
}

.btn-submit-premium:hover {
    background-color: var(--color-primary);
    color: var(--color-bg);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 178, 0, 0.35);
}

.btn-arrow {
    transform: translateX(0);
    transition: transform 0.3s;
}

.btn-submit-premium:hover .btn-arrow {
    transform: translateX(5px);
}

/* Premium Footer */
.premium-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    color: var(--color-text-muted);
}

.premium-footer a {
    margin-left: 2rem;
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.premium-footer a:hover {
    color: var(--color-primary);
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
    .premium-nav {
        padding: 1.2rem 2rem;
    }

    .nav-links {
        display: none;
        /* collapsed for design clean look */
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .slide-3d {
        width: 60vw;
        height: 45vh;
        margin-left: -30vw;
        margin-top: -22.5vh;
    }

    .slide-3d-reflection {
        display: none;
    }

    .gallery-slide {
        width: 65vw;
        height: 48vh;
    }

    .card-stack-container {
        height: 60vh;
    }

    .project-card {
        height: 420px;
    }
}

@media (max-width: 768px) {
    .contact-container {
        padding: 0 2rem;
    }

    .glass-contact-form {
        padding: 2.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .slide-3d {
        width: 80vw;
        height: 40vh;
        margin-left: -40vw;
        margin-top: -20vh;
    }

    .controls-container-3d {
        gap: 2rem;
        bottom: 14vh;
    }

    .project-card {
        flex-direction: column;
        height: auto;
    }

    .card-image-container {
        width: 100%;
        height: 250px;
    }

    .card-details {
        width: 100%;
        padding: 2rem;
    }

    .gallery-slide {
        width: 80vw;
    }

    .premium-footer {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .premium-footer a {
        margin: 0 1rem;
    }
}

/* ==========================================
   AIERO THEME & EXTRA SERVICES SECTION
   ========================================== */
body.aiero-theme {
    background: #03030b;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
}

/* ==========================================
   AIERO LIGHT THEME DECLARATIVE STYLES
   ========================================== */

/* Base Light Theme Setup */
body:not(.aiero-theme) {
    background-color: #f4f5f8;
    color: #03030b;
}

body {
    transition: background-color 0.5s cubic-bezier(0.25, 1, 0.5, 1), color 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Premium Light Background Gradient */
body:not(.aiero-theme) .aiero-bg-glow {
    background:
        radial-gradient(circle at 10% 20%, rgba(255, 194, 41, 0.04) 0%, transparent 60%),
        radial-gradient(circle at 90% 80%, rgba(255, 194, 41, 0.04) 0%, transparent 60%),
        radial-gradient(circle at 50% 50%, rgba(240, 240, 248, 1) 0%, rgba(244, 245, 248, 1) 100%);
}

body:not(.aiero-theme) .aiero-bg-wave {
    opacity: 0.04;
    mix-blend-mode: multiply;
}

/* Light Theme Spotlight Glow */
body:not(.aiero-theme) .aiero-spotlight {
    background: radial-gradient(circle, rgba(255, 194, 41, 0.04) 0%, rgba(244, 245, 248, 0) 70%);
}

/* Light Theme Glassmorphic Capsule Nav */
body:not(.aiero-theme) .aiero-nav {
    background: white;
    border-color: rgba(0, 0, 0, 0.08);
}

.aiero-nav {
    transition: background 0.5s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.5s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

body:not(.aiero-theme) .aiero-logo {
    color: #03030b;
}

.aiero-logo {
    transition: color 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

body:not(.aiero-theme) .aiero-menu-link {
    color: #555566;
}

body:not(.aiero-theme) .aiero-menu-link:hover,
body:not(.aiero-theme) .aiero-menu-link.active {
    color: #FFC229;
}

body:not(.aiero-theme) .aiero-menu-link i {
    color: rgba(0, 0, 0, 0.3);
}

body:not(.aiero-theme) .aiero-menu-link:hover i {
    color: #FFC229;
}

body:not(.aiero-theme) .aiero-search-login {
    color: #03030b;
}

body:not(.aiero-theme) .aiero-search-btn {
    color: #03030b;
}

body:not(.aiero-theme) .aiero-search-btn:hover {
    color: #FFC229;
}

body:not(.aiero-theme) .aiero-btn-capsule {
    border-color: rgba(0, 0, 0, 0.15);
    color: #03030b;
}

body:not(.aiero-theme) .aiero-btn-capsule:hover {
    border-color: #FFC229;
    color: #fff;
}

.aiero-menu-link,
.aiero-search-login,
.aiero-search-btn,
.aiero-btn-capsule {
    transition: color 0.5s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.5s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Floating Capsule Toggle Button */
body:not(.aiero-theme) .aiero-theme-btn {
    background: #FFC229;
    color: #fff;
}

.aiero-theme-btn {
    transition: background 0.5s cubic-bezier(0.25, 1, 0.5, 1), color 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Hero Section Elements */
body:not(.aiero-theme) .aiero-slide-2d .aiero-slide-title {
    color: white;
}

body:not(.aiero-theme) .aiero-slide-2d .aiero-slide-desc {
    color: white;
}

/* Subpage Hero text colors for light theme readability */
.subpage-hero {
    padding-top: 200px;
}

body:not(.aiero-theme) .subpage-hero .aiero-slide-title {
    color: #03030b;
}

body:not(.aiero-theme) .subpage-hero .aiero-slide-desc {
    color: #555566;
}

.aiero-slide-title,
.aiero-slide-desc {
    transition: color 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* About Us Section Elements */
body:not(.aiero-theme) .aiero-about-title {
    color: #03030b;
}

body:not(.aiero-theme) .aiero-about-desc,
body:not(.aiero-theme) .aiero-about-desc p {
    color: #555566;
}

body:not(.aiero-theme) .aiero-phone-label {
    color: rgba(0, 0, 0, 0.5);
}

.aiero-about-title,
.aiero-about-desc p,
.aiero-phone-label {
    transition: color 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Creations Section Elements */
body:not(.aiero-theme) .aiero-creations-title {
    color: #03030b;
}

body:not(.aiero-theme) .aiero-creation-desc {
    color: rgba(255, 255, 255, 0.6);
}

body:not(.aiero-theme) .aiero-creation-view-more {
    color: #03030b;
    border-color: rgba(3, 3, 11, 0.4);
    background: rgba(255, 255, 255, 0.8);
}

body:not(.aiero-theme) .aiero-creation-card:hover .aiero-creation-view-more {
    background: #FFC229;
    border-color: #FFC229;
    color: #fff;
}

.aiero-creations-title,
.aiero-creation-desc,
.aiero-creation-view-more {
    transition: color 0.5s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.5s cubic-bezier(0.25, 1, 0.5, 1), background 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Footer Container Base Background */
body:not(.aiero-theme) .aiero-footer {
    background: #f4f5f8;
    border-top-color: rgba(0, 0, 0, 0.06);
}

.aiero-footer {
    transition: background 0.5s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}


/* Abstract Organic Wavy Background Layer */
.aiero-bg-glow {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    background:
        radial-gradient(circle at 10% 20%, rgba(30, 20, 80, 0.4) 0%, transparent 60%),
        radial-gradient(circle at 90% 80%, rgba(0, 150, 200, 0.25) 0%, transparent 60%),
        radial-gradient(circle at 50% 50%, rgba(10, 8, 30, 1) 0%, rgba(3, 3, 8, 1) 100%);
    overflow: hidden;
    pointer-events: none;
}

.aiero-bg-wave {
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: url('https://images.unsplash.com/photo-1618005182384-a83a8bd57fbe?auto=format&fit=crop&q=80&w=1920') no-repeat center;
    background-size: cover;
    opacity: 0.15;
    mix-blend-mode: color-dodge;
    filter: hue-rotate(45deg) saturate(1.5);
    animation: slowRotate 80s linear infinite;
}

@keyframes slowRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* AIERO Floating Spotlight */
.aiero-spotlight {
    position: fixed;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 194, 41, 0.08) 0%, rgba(3, 3, 11, 0) 70%);
    pointer-events: none;
    z-index: 2;
    transform: translate(-50%, -50%);
    will-change: transform;
}

/* AIERO Glassmorphic Navigation */
.aiero-nav {
    position: fixed;
    top: 1.5rem;
    left: 5%;
    width: 90%;
    background: rgba(10, 10, 25, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border-radius: 50px;
    padding: 0.8rem 2.5rem;
    z-index: 9999;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.aiero-nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.aiero-logo {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: #fff;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.aiero-logo span {
    color: var(--color-primary);
}

/* AIERO Nav Logo Image Styling */
.aiero-logo img {
    height: 38px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), filter 0.3s ease;
}

.aiero-logo:hover img {
    transform: scale(1.04);
}

/* Smart color filter: Invert dark text to white, but keep yellow accents yellow in Dark Mode */
body.aiero-theme .aiero-logo img {
    filter: invert(1) hue-rotate(180deg) saturate(1.2);
}

.aiero-menu {
    display: flex;
    gap: 2.2rem;
    list-style: none;
}

.aiero-menu-link {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.aiero-menu-link:hover,
.aiero-menu-link.active {
    color: #FFC229;
}

.aiero-menu-link i {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.4);
    transition: transform 0.3s;
}

.aiero-menu-link:hover i {
    transform: translateY(2px);
    color: #FFC229;
}

.aiero-right-controls {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.aiero-search-login {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: #fff;
}

.aiero-search-btn {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 1rem;
    transition: color 0.3s;
}

.aiero-search-btn:hover {
    color: #FFC229;
}

.aiero-login-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    text-decoration: none;
}

.aiero-btn-capsule {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 0.8rem 2rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.4s, border-color 0.4s, color 0.4s, transform 0.3s;
    text-decoration: none;
}

.aiero-btn-capsule:hover {
    background-color: #FFC229;
    border-color: #FFC229;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 194, 41, 0.3);
}

/* 2D Full-Width Sliding Hero Section */
.aiero-hero {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: 10;
    display: flex;
    align-items: center;
}

.aiero-slider-2d-container {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.aiero-slide-2d {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    z-index: 1;
}

.aiero-slide-2d.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* 2D Full-Width Slide Background image with zoom effect */
.aiero-slide-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.4) contrast(1.05);
    transform: scale(1.15);
    will-change: transform;
}

/* Content block */
.aiero-slide-content {
    position: relative;
    z-index: 5;
    max-width: 1000px;
    padding: 0 8%;
    margin-top: 40vh;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: left;
}

.aiero-slide-tagline {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.35em;
    color: #FFC229;
    text-transform: uppercase;
}

.aiero-slide-title {
    font-size: clamp(2.5rem, 6.5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.05;
    color: #fff;
    letter-spacing: -0.01em;
    transform: translateY(60px);
    opacity: 0;
    will-change: transform, opacity;
}

.aiero-slide-desc {
    font-size: clamp(0.95rem, 1.3vw, 1.2rem);
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    max-width: 600px;
    transform: translateY(40px);
    opacity: 0;
    will-change: transform, opacity;
}

/* CTA Red/Coral Button identical to discover button in screenshot */
.aiero-btn-discover {
    background: #e35a57;
    color: #fff;
    padding: 1.2rem 2.8rem;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    align-self: flex-start;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    text-decoration: none;
    transform: translateY(40px);
    opacity: 0;
    will-change: transform, opacity;
    transition: background-color 0.3s, box-shadow 0.3s;
}

.aiero-btn-discover:hover {
    background-color: #d14643;
    box-shadow: 0 15px 30px rgba(227, 90, 87, 0.45);
}

.aiero-btn-discover i {
    font-size: 0.8rem;
    transition: transform 0.3s;
}

.aiero-btn-discover:hover i {
    transform: translate(3px, -3px);
}

/* Bottom Right Video Card identical to VR card in screenshot */
.aiero-video-card {
    position: absolute;
    bottom: 3.5rem;
    right: 8%;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 1.2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    max-width: 480px;
    color: #03030b;
    transform: translateY(30px);
    opacity: 0;
    will-change: transform, opacity;
}

.aiero-video-thumbnail {
    position: relative;
    width: 140px;
    height: 90px;
    border-radius: 12px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.aiero-play-btn {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    font-size: 1.1rem;
    border-radius: 50%;
    transition: background 0.3s, transform 0.3s;
    cursor: pointer;
}

.aiero-video-thumbnail:hover .aiero-play-btn {
    background: rgba(255, 194, 41, 0.85);
    transform: scale(1.1);
}

.aiero-video-info {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.aiero-video-stat {
    font-size: 2.2rem;
    font-weight: 800;
    color: #FFC229;
    line-height: 1;
}

.aiero-video-desc {
    font-size: 0.85rem;
    font-weight: 600;
    color: #555566;
    line-height: 1.4;
}

/* 2D Slide Arrow Navigation */
.aiero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(10, 10, 25, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    z-index: 1000;
    pointer-events: auto;
    transition: background 0.3s, border-color 0.3s, color 0.3s, transform 0.3s;
}

.aiero-arrow:hover {
    background: #FFC229;
    border-color: #FFC229;
    color: #fff;
    transform: translateY(-50%) scale(1.1);
}

.aiero-arrow.btn-prev {
    left: 3rem;
}

.aiero-arrow.btn-next {
    right: 3rem;
}

/* 2D Slide Controllers horizontally aligned at bottom center */
.aiero-nav-controls {
    position: absolute;
    bottom: 3.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: row;
    gap: 1.2rem;
    z-index: 100;
    background: rgba(10, 10, 25, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    padding: 0.8rem 1.8rem;
    border-radius: 30px;
}

.aiero-nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.aiero-nav-dot.active {
    background: #FFC229;
    transform: scale(1.3);
    box-shadow: 0 0 10px #FFC229;
}

/* Side floating Capsule identical to the dark mode capsule in screenshot */
.aiero-floating-tab {
    position: fixed;
    right: 0;
    top: 45%;
    transform: translateY(-50%);
    background: #fff;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    padding: 1.5rem 0.8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.8rem;
    box-shadow: -5px 15px 30px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    color: #03030b;
}

.aiero-tab-icon {
    font-size: 1.1rem;
    cursor: pointer;
    transition: color 0.3s, transform 0.3s;
}

.aiero-tab-icon:hover {
    color: #FFC229;
    transform: scale(1.1);
}

.aiero-theme-btn {
    width: 32px;
    height: 32px;
    background: #03030b;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Auto-progress line indicator at the bottom */
.aiero-progress-bar-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 101;
}

.aiero-progress-bar {
    width: 0%;
    height: 100%;
    background: #FFC229;
    will-change: width;
}

/* About Us Section Styles */
.aiero-about {
    position: relative;
    padding: 8rem 4%;
    z-index: 10;
    background: transparent;
    overflow: hidden;
}

.aiero-about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4.5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.aiero-about-content {
    display: flex;
    flex-direction: column;
    gap: 2.2rem;
    text-align: left;
}

.aiero-about-stars {
    display: flex;
    gap: 0.35rem;
    color: #FFC229;
    font-size: 1.1rem;
}

.aiero-about-tagline {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.35em;
    color: #FFC229;
    text-transform: uppercase;
}

.aiero-about-title {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    letter-spacing: 0.02em;
    font-size: 45px;
}

/* Dynamic word split reveal structures */
.reveal-line-box {
    display: block;
    margin-bottom: 0.3rem;
}

.reveal-wrapper {
    overflow: hidden;
    display: inline-block;
    vertical-align: bottom;
    margin-right: 0.18em;
}

.reveal-inner {
    display: inline-block;
    transform: translateY(100%);
    will-change: transform;
}

.aiero-about-desc {
    font-size: clamp(0.95rem, 1.25vw, 1.15rem);
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.85;
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}

.aiero-about-phone {
    display: flex;
    align-items: center;
    gap: 1.3rem;
    margin-top: 1rem;
}

.aiero-phone-icon {
    width: 58px;
    height: 58px;
    background: rgba(255, 194, 41, 0.08);
    border: 1px solid rgba(255, 194, 41, 0.15);
    color: #FFC229;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    animation: phonePulse 3s ease-in-out infinite;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.4s, color 0.4s, box-shadow 0.4s;
}

.aiero-phone-icon i {
    display: inline-block;
    animation: phoneRingPeriodic 3.8s ease-in-out infinite;
}

.aiero-about-phone:hover .aiero-phone-icon {
    animation: none;
    transform: scale(1.15) rotate(15deg);
    background: #FFC229;
    color: #fff;
    box-shadow: 0 10px 20px rgba(255, 194, 41, 0.35);
}

.aiero-about-phone:hover .aiero-phone-icon i {
    animation: none;
}

.aiero-phone-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.aiero-phone-label {
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    font-weight: 600;
}

.aiero-phone-num {
    font-size: 1.95rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    font-family: 'Outfit', sans-serif;
    text-decoration: none;
    background: linear-gradient(90deg, #03030b 0%, #FFC229 50%, #03030b 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmerGold 4s linear infinite;
    transition: filter 0.3s;
}

body.aiero-theme .aiero-phone-num {
    background: linear-gradient(90deg, #FFC229 0%, #fff 50%, #FFC229 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.aiero-phone-num:hover {
    filter: brightness(1.2);
}

@keyframes phoneRingPeriodic {

    0%,
    35%,
    100% {
        transform: scale(1) rotate(0deg);
    }

    40%,
    50%,
    60%,
    70% {
        transform: scale(1.15) rotate(-10deg);
    }

    45%,
    55%,
    65%,
    75% {
        transform: scale(1.15) rotate(10deg);
    }

    80% {
        transform: scale(1) rotate(0deg);
    }
}

@keyframes shimmerGold {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: -200% center;
    }
}

@keyframes phonePulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 194, 41, 0.25);
    }

    50% {
        transform: scale(1.08);
        box-shadow: 0 0 15px 5px rgba(255, 194, 41, 0.45);
    }
}

/* Overlapping / staggered visual grid on the right */
.aiero-about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.2rem;
    align-items: start;
}

.aiero-about-img-wrapper {
    position: relative;
    width: 100%;
    perspective: 1200px;
    transform-style: preserve-3d;
}

.aiero-about-img-wrapper.shifted {
    margin-top: 4.5rem;
}

.aiero-about-img-box {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.45);
    will-change: transform;
    transform-style: preserve-3d;
}

/* 3D Volumetric Floating & Swiveling Animations */
.aiero-float-left {
    animation: float3DLeft 9s ease-in-out infinite;
}

.aiero-float-right {
    animation: float3DRight 9s ease-in-out infinite;
    animation-delay: -4.5s;
    /* Perfect anti-phase stagger */
}

@keyframes float3DLeft {

    0%,
    100% {
        transform: translateY(0) rotateX(10deg) rotateY(-14deg) rotateZ(-1.5deg);
        box-shadow: -15px 40px 80px rgba(0, 0, 0, 0.5);
    }

    50% {
        transform: translateY(-20px) rotateX(-10deg) rotateY(14deg) rotateZ(1.5deg);
        box-shadow: 15px 45px 90px rgba(0, 0, 0, 0.35);
    }
}

@keyframes float3DRight {

    0%,
    100% {
        transform: translateY(0) rotateX(-10deg) rotateY(14deg) rotateZ(1.5deg);
        box-shadow: 15px 40px 80px rgba(0, 0, 0, 0.5);
    }

    50% {
        transform: translateY(20px) rotateX(10deg) rotateY(-14deg) rotateZ(-1.5deg);
        box-shadow: -15px 45px 90px rgba(0, 0, 0, 0.35);
    }
}

.aiero-about-img-box img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transform: scale(1.2);
    transition: transform 1.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.aiero-about-img-box:hover img {
    transform: scale(1.05);
}

@media (max-width: 991px) {
    .aiero-about-container {
        grid-template-columns: 1fr !important;
        gap: 3.5rem !important;
    }

    .aiero-about-img-wrapper.shifted {
        margin-top: 0;
    }

    .aiero-about-images {
        gap: 1.8rem;
        max-width: 600px;
        margin: 0 auto;
    }
}

/* Creations Section Styles */
.aiero-creations {
    position: relative;
    padding: 8rem 8%;
    z-index: 10;
    background: transparent;
    overflow: hidden;
}

.aiero-creations-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4.5rem;
}

.aiero-creations-header {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.aiero-creations-tagline {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.35em;
    color: #FFC229;
    text-transform: uppercase;
}

.aiero-creations-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.4rem, 4.8vw, 4.2rem);
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    letter-spacing: 0.02em;
    font-size: 40px;
}

.aiero-creations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.2rem;
    width: 100%;
    perspective: 2000px;
    transform-style: preserve-3d;
}

.aiero-creation-card-wrapper {
    position: relative;
    width: 100%;
    will-change: transform;
    border-radius: 15px;
}

/* Pause float animation on hover so clicks always register cleanly */
.aiero-creation-card-wrapper:hover {
    animation-play-state: paused;
}

.aiero-creation-card {
    position: relative;
    height: 480px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: #0a0a14;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    will-change: transform;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.6s ease;
}

.aiero-creation-card:hover {
    transform: scale(1.03);
    box-shadow: 0 35px 70px rgba(255, 194, 41, 0.25);
    z-index: 10;
}

/* Creations Cards 3D Staggered Floating Keyframes */
/* Float animations applied to the WRAPPER so the inner <a> card
   always has a stable hit-box — prevents missed clicks during animation */
.aiero-creation-card-wrapper.card-float-1 {
    animation: cardFloat3D1 10s ease-in-out infinite;
}

.aiero-creation-card-wrapper.card-float-2 {
    animation: cardFloat3D2 11s ease-in-out infinite;
    animation-delay: -3.5s;
}

.aiero-creation-card-wrapper.card-float-3 {
    animation: cardFloat3D3 10.5s ease-in-out infinite;
    animation-delay: -7s;
}

@keyframes cardFloat3D1 {

    0%,
    100% {
        transform: translateY(0px);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    }

    50% {
        transform: translateY(-12px);
        box-shadow: 0 35px 60px rgba(255, 194, 41, 0.12);
    }
}

@keyframes cardFloat3D2 {

    0%,
    100% {
        transform: translateY(0px);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    }

    50% {
        transform: translateY(12px);
        box-shadow: 0 35px 60px rgba(255, 194, 41, 0.12);
    }
}

@keyframes cardFloat3D3 {

    0%,
    100% {
        transform: translateY(0px);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    }

    50% {
        transform: translateY(-10px);
        box-shadow: 0 35px 60px rgba(255, 194, 41, 0.12);
    }
}

.aiero-creation-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.5) contrast(1.1);
    transform: scale(1);
    transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1), filter 0.5s;
}

.aiero-creation-card:hover .aiero-creation-img {
    transform: scale(1.12) !important;
    filter: brightness(0.35) contrast(1.15);
}

/* Staggered Pro Ken Burns Animations for Creations Images */
.aiero-creation-card:nth-child(3n+1) .aiero-creation-img {
    animation: kenBurnsSlow1 22s ease-in-out infinite;
}

.aiero-creation-card:nth-child(3n+2) .aiero-creation-img {
    animation: kenBurnsSlow2 26s ease-in-out infinite;
    animation-delay: -5s;
}

.aiero-creation-card:nth-child(3n+3) .aiero-creation-img {
    animation: kenBurnsSlow3 24s ease-in-out infinite;
    animation-delay: -10s;
}

@keyframes kenBurnsSlow1 {

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

    50% {
        transform: scale(1.08) translate(-1.5%, -1%);
    }
}

@keyframes kenBurnsSlow2 {

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

    50% {
        transform: scale(1.08) translate(1.5%, 1%);
    }
}

@keyframes kenBurnsSlow3 {

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

    50% {
        transform: scale(1.08) translate(-1%, 1.5%);
    }
}

/* View More vertical tag */
.aiero-creation-view-more {
    position: absolute;
    top: 2rem;
    right: 2rem;
    z-index: 5;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    border: 1px solid rgba(255, 255, 255, 0.35);
    padding: 1.2rem 0.6rem;
    border-radius: 4px;
    background: rgba(10, 10, 25, 0.25);
    backdrop-filter: blur(5px);
    transition: background 0.3s, border-color 0.3s, color 0.3s, transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.aiero-creation-card:hover .aiero-creation-view-more {
    background: #FFC229;
    border-color: #FFC229;
    color: #fff;
    transform: translateY(-5px);
}

/* Card Content overlays */
.aiero-creation-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 3rem 2.2rem;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    text-align: left;
    background: linear-gradient(to top, rgba(3, 3, 11, 0.95) 0%, rgba(3, 3, 11, 0.6) 50%, transparent 100%);
}

.aiero-creation-label {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    transition: color 0.3s;
}

.aiero-creation-label::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #FFC229;
    transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.aiero-creation-card:hover .aiero-creation-label {
    color: #FFC229;
}

.aiero-creation-card:hover .aiero-creation-label::after {
    width: 100%;
    background: #FFC229;
}

.aiero-creation-desc {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    transition: color 0.3s;
}

.aiero-creation-card:hover .aiero-creation-desc {
    color: rgba(255, 255, 255, 0.85);
}

/* Responsive */
@media (max-width: 991px) {
    .aiero-creations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .aiero-creations-grid {
        grid-template-columns: 1fr;
    }
}

/* Premium Footer Styles */
.aiero-footer {
    position: relative;
    padding: 4.5rem 8% 2.2rem;
    z-index: 10;
    background: rgba(3, 3, 11, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.aiero-footer-bg-text {
    position: absolute;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Cinzel', serif;
    font-size: clamp(3.2rem, 8vw, 7.5rem);
    font-weight: 800;
    color: rgba(255, 255, 255, 0.015);
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.03);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    pointer-events: none;
    user-select: none;
    z-index: 1;
    white-space: nowrap;
}

body:not(.aiero-theme) .aiero-footer-bg-text {
    color: rgba(0, 0, 0, 0.005);
    -webkit-text-stroke: 1px rgba(0, 0, 0, 0.04);
}

.aiero-footer-glow {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 194, 41, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.aiero-footer-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.8rem;
    z-index: 2;
}

.aiero-footer-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.85fr 0.9fr;
    gap: 3.5rem;
}

.aiero-footer-col {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    text-align: left;
    will-change: transform, opacity;
}

.aiero-footer-col-title {
    font-family: 'Cinzel', serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.05em;
    position: relative;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

body:not(.aiero-theme) .aiero-footer-col-title {
    color: #03030b;
    border-bottom-color: rgba(0, 0, 0, 0.08);
}

.aiero-footer-about-text {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
}

body:not(.aiero-theme) .aiero-footer-about-text {
    color: #555566;
}

/* Language Switcher Capsule */
.aiero-lang-selector {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 0.6rem 1.3rem;
    border-radius: 30px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    cursor: pointer;
    align-self: flex-start;
    transition: background 0.3s, border-color 0.3s, color 0.3s;
}

body:not(.aiero-theme) .aiero-lang-selector {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.1);
    color: #03030b;
}

.aiero-lang-selector:hover {
    background: rgba(255, 194, 41, 0.08);
    border-color: #FFC229;
}

/* Links List */
.aiero-footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.aiero-footer-link {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s, transform 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

body:not(.aiero-theme) .aiero-footer-link {
    color: #555566;
}

.aiero-footer-link::before {
    content: '→';
    font-size: 0.8rem;
    color: #FFC229;
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity 0.3s, transform 0.3s;
}

.aiero-footer-link:hover {
    color: #FFC229;
    transform: translateX(5px);
}

.aiero-footer-link:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Contact Details & Socials */
.aiero-footer-contact-items {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.aiero-footer-contact-item {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    line-height: 1.5;
}

body:not(.aiero-theme) .aiero-footer-contact-item {
    color: #555566;
}

.aiero-footer-contact-item i {
    color: #FFC229;
    font-size: 0.9rem;
}

.aiero-footer-socials {
    display: flex;
    gap: 1rem;
    margin-top: 0.3rem;
}

.aiero-footer-social-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), background 0.3s, border-color 0.3s, color 0.3s;
    text-decoration: none;
}

body:not(.aiero-theme) .aiero-footer-social-btn {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.08);
    color: rgba(3, 3, 11, 0.7);
}

.aiero-footer-social-btn:hover {
    transform: translateY(-5px);
    background: #FFC229;
    border-color: #FFC229;
    color: #fff;
    box-shadow: 0 10px 20px rgba(255, 194, 41, 0.3);
}

/* Footer Separator Line */
.aiero-footer-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0) 100%);
    will-change: transform;
}

body:not(.aiero-theme) .aiero-footer-line {
    background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0) 100%);
}

/* Copyright bottom bar */
.aiero-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    will-change: transform, opacity;
}

.aiero-footer-copy {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
}

body:not(.aiero-theme) .aiero-footer-copy {
    color: rgba(3, 3, 11, 0.5);
}

/* Back to top button */
.aiero-back-to-top {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(18, 18, 18, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), background 0.3s, border-color 0.3s, color 0.3s;
}

body:not(.aiero-theme) .aiero-back-to-top {
    background: rgba(255, 255, 255, 0.75);
    border-color: rgba(0, 0, 0, 0.1);
    color: #03030b;
}

.aiero-back-to-top:hover {
    transform: translateY(-5px);
    background: #FFC229;
    border-color: #FFC229;
    color: #fff;
    box-shadow: 0 10px 20px rgba(255, 194, 41, 0.3);
}

@media (max-width: 991px) {
    .aiero-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .aiero-footer-col:first-child {
        grid-column: span 2;
    }
}

@media (max-width: 650px) {
    .aiero-footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .aiero-footer-col:first-child {
        grid-column: span 1;
    }

    .aiero-footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

/* ==========================================
   AIERO EXTRA SERVICES SECTION
   ========================================== */
.aiero-services-section {
    position: relative;
    padding: 8rem 8%;
    z-index: 10;
    background: transparent;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

body:not(.aiero-theme) .aiero-services-section {
    border-top-color: rgba(0, 0, 0, 0.06);
}

.aiero-services-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Left Side: Premium Text Block */
.aiero-services-text-col {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: left;
}

.aiero-services-subtitle {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.35em;
    color: #FFC229;
    text-transform: uppercase;
}

.aiero-services-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    letter-spacing: 0.02em;
}

body:not(.aiero-theme) .aiero-services-title {
    color: #03030b;
}

.aiero-services-desc {
    font-size: clamp(0.95rem, 1.25vw, 1.15rem);
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.85;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

body:not(.aiero-theme) .aiero-services-desc {
    color: #555566;
}

/* Contact Box in Services Section */
.aiero-services-contact {
    display: flex;
    align-items: center;
    gap: 1.3rem;
    margin-top: 1rem;
}

.aiero-services-contact-icon {
    width: 58px;
    height: 58px;
    background: rgba(255, 194, 41, 0.08);
    border: 1px solid rgba(255, 194, 41, 0.2);
    color: #FFC229;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.4s, color 0.4s;
}

.aiero-services-contact:hover .aiero-services-contact-icon {
    transform: scale(1.1) rotate(15deg);
    background: #FFC229;
    color: #03030b;
}

.aiero-services-contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.aiero-services-contact-label {
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    font-weight: 600;
}

body:not(.aiero-theme) .aiero-services-contact-label {
    color: rgba(0, 0, 0, 0.5);
}

.aiero-services-contact-num {
    font-size: 1.95rem;
    font-weight: 700;
    color: #FFC229;
    letter-spacing: 0.03em;
    font-family: 'Outfit', sans-serif;
    text-decoration: none;
    transition: color 0.3s;
}

.aiero-services-contact-num:hover {
    color: #fff;
}

body:not(.aiero-theme) .aiero-services-contact-num:hover {
    color: #03030b;
}

/* Right Side: Depth Slider Viewport */
.aiero-services-slider-col {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 2rem 0.5rem;
}

.aiero-services-slider-wrapper {
    width: 100%;
    overflow: visible;
}

.aiero-services-slider-track {
    display: flex;
    gap: 2rem;
    width: max-content;
    will-change: transform;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.3, 1);
}

/* Premium Cards Design */
.aiero-service-card {
    width: 320px;
    max-width: 85vw;
    background: rgba(13, 13, 24, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    perspective: 1000px;
    transform-style: preserve-3d;
    transition: border-color 0.4s, box-shadow 0.4s, transform 0.1s ease-out;
    cursor: grab;
}

.aiero-service-card:active {
    cursor: grabbing;
}

body:not(.aiero-theme) .aiero-service-card {
    background: #fcfaf6;
    border-color: rgba(0, 0, 0, 0.06);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.aiero-service-card:hover {
    border-color: rgba(255, 194, 41, 0.4);
    box-shadow: 0 30px 60px rgba(255, 194, 41, 0.15);
}

body:not(.aiero-theme) .aiero-service-card:hover {
    border-color: rgba(255, 194, 41, 0.6);
    box-shadow: 0 25px 45px rgba(255, 194, 41, 0.12);
}

/* Card Image Cover with Depth Parallax */
.aiero-service-card-img-wrap {
    position: relative;
    height: 230px;
    overflow: hidden;
    width: 100%;
}

.aiero-service-card-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    will-change: transform;
    transition: transform 0.5s ease;
}

.aiero-service-card:hover .aiero-service-card-img {
    transform: scale(1.03);
}

/* Card Details Content Area */
.aiero-service-card-content {
    padding: 2.2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    background: transparent;
}

.aiero-service-card-title {
    font-family: 'Cinzel', serif;
    font-size: 1.45rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.02em;
}

body:not(.aiero-theme) .aiero-service-card-title {
    color: #03030b;
}

/* Pricing block */
.aiero-service-card-price-row {
    display: flex;
    align-items: baseline;
    gap: 0.35rem;
}

.aiero-service-card-price {
    font-size: 2rem;
    font-weight: 800;
    color: #FFC229;
    line-height: 1;
}

.aiero-service-card-period {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.45);
    text-transform: lowercase;
    letter-spacing: 0.05em;
}

body:not(.aiero-theme) .aiero-service-card-period {
    color: rgba(3, 3, 11, 0.5);
}

/* Spec list points */
.aiero-service-card-specs {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.aiero-service-card-spec-item {
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s, transform 0.3s;
}

body:not(.aiero-theme) .aiero-service-card-spec-item {
    color: #555566;
}

.aiero-service-card-spec-item:hover {
    transform: translateX(4px);
    color: #fff;
}

body:not(.aiero-theme) .aiero-service-card-spec-item:hover {
    color: #03030b;
}

.aiero-service-card-spec-item i {
    font-size: 0.85rem;
}

.aiero-service-card-spec-item.check i {
    color: #FFC229;
}

.aiero-service-card-spec-item.cross i {
    color: rgba(255, 255, 255, 0.25);
}

body:not(.aiero-theme) .aiero-service-card-spec-item.cross i {
    color: rgba(0, 0, 0, 0.2);
}

/* Custom Dots Slider Navigation */
.aiero-services-nav-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 3.5rem;
}

.aiero-services-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: background 0.4s, border-color 0.4s, transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

body:not(.aiero-theme) .aiero-services-dot {
    border-color: rgba(0, 0, 0, 0.3);
}

.aiero-services-dot.active {
    background: #FFC229;
    border-color: #FFC229;
    transform: scale(1.4);
    box-shadow: 0 0 12px rgba(255, 194, 41, 0.6);
}

/* Media Queries for Services Grid */
@media (max-width: 1100px) {
    .aiero-services-container {
        grid-template-columns: 1fr;
        gap: 4.5rem;
    }

    .aiero-services-text-col {
        text-align: center;
        align-items: center;
    }

    .aiero-services-desc {
        max-width: 700px;
    }

    .aiero-services-slider-col {
        padding: 1rem 0;
    }

    .aiero-service-card {
        width: 290px;
    }
}

@media (max-width: 768px) {
    .aiero-services-section {
        padding: 4rem 1.5rem;
    }

    .aiero-services-container {
        gap: 3rem;
    }

    .aiero-services-title {
        font-size: 2.2rem;
    }

    .aiero-services-contact-num {
        font-size: 1.65rem;
    }

    .aiero-services-slider-track {
        gap: 1.5rem;
    }

    .aiero-service-card {
        width: 280px;
        max-width: 85vw;
    }
}

@media (max-width: 480px) {
    .aiero-services-section {
        padding: 3rem 1rem;
    }

    .aiero-services-container {
        gap: 2.5rem;
    }

    .aiero-services-title {
        font-size: 1.85rem;
    }

    .aiero-services-desc {
        font-size: 0.95rem;
        gap: 1rem;
    }

    .aiero-services-contact {
        gap: 1rem;
    }

    .aiero-services-contact-icon {
        width: 48px;
        height: 48px;
        font-size: 1.1rem;
    }

    .aiero-services-contact-num {
        font-size: 1.45rem;
    }

    .aiero-services-slider-track {
        gap: 1rem;
    }

    .aiero-service-card {
        max-width: 88vw;
    }
}

/* ==========================================================================
   PORTAL EXPANSION UPGRADE STYLES
   ========================================================================== */

/* ==========================================================================
   PREMIUM STATS COUNTER SECTION — Warm Gradient Grow Animation
   ========================================================================== */

.aiero-counters-section {
    position: relative;
    padding: 6rem 8%;
    z-index: 10;
    overflow: hidden;
    /* Warm gradient matching reference */
    background: linear-gradient(135deg,
            rgba(255, 140, 80, 0.18) 0%,
            rgba(255, 100, 60, 0.08) 35%,
            rgba(255, 180, 120, 0.06) 65%,
            rgba(255, 220, 160, 0.04) 100%);
}

/* Dark theme version */
.aiero-theme .aiero-counters-section {
    background: linear-gradient(135deg,
            rgba(229, 120, 60, 0.12) 0%,
            rgba(255, 194, 41, 0.06) 40%,
            transparent 100%);
}

/* Ambient orb glow behind cards — left side */
.aiero-counters-section::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 55%;
    height: 140%;
    background: radial-gradient(ellipse at center,
            rgba(255, 130, 70, 0.22) 0%,
            rgba(255, 180, 100, 0.12) 40%,
            transparent 70%);
    pointer-events: none;
    z-index: 0;
    animation: orbDrift 8s ease-in-out infinite alternate;
}

/* Second ambient orb — right side */
.aiero-counters-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -5%;
    width: 45%;
    height: 130%;
    background: radial-gradient(ellipse at center,
            rgba(255, 200, 120, 0.14) 0%,
            rgba(255, 150, 80, 0.07) 45%,
            transparent 70%);
    pointer-events: none;
    z-index: 0;
    animation: orbDrift 8s ease-in-out infinite alternate-reverse;
}

@keyframes orbDrift {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(30px, -20px) scale(1.08);
    }
}

/* Dark-theme orb colors */
.aiero-theme .aiero-counters-section::before {
    background: radial-gradient(ellipse at center,
            rgba(255, 194, 41, 0.15) 0%,
            rgba(255, 130, 60, 0.08) 45%,
            transparent 70%);
}

.aiero-theme .aiero-counters-section::after {
    background: radial-gradient(ellipse at center,
            rgba(229, 150, 60, 0.1) 0%,
            transparent 65%);
}

/* Grid */
.aiero-counters-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.6rem;
    position: relative;
    z-index: 1;
}

@media (max-width: 991px) {
    .aiero-counters-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.4rem;
    }
}

@media (max-width: 480px) {
    .aiero-counters-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
}

/* ── Card — starts scaled down, grows in on scroll ── */
.aiero-counter-card {
    position: relative;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 24px;
    padding: 2.2rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    overflow: hidden;
    cursor: default;
    box-shadow:
        0 4px 24px rgba(200, 100, 40, 0.08),
        0 1px 0 rgba(255, 255, 255, 0.8) inset;
    /* START STATE — scale grow animation */
    opacity: 0;
    transform: scale(0.72);
    transition: box-shadow 0.5s ease, border-color 0.5s ease;
}

/* Subtle shimmer overlay on card */
.aiero-counter-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.35) 0%,
            transparent 100%);
    border-radius: 24px 24px 0 0;
    pointer-events: none;
    z-index: 0;
}

/* Glow border on hover */
.aiero-counter-card::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 25px;
    background: linear-gradient(135deg, rgb(243 230 222 / 60%), rgb(230 206 162 / 40%), rgb(245 245 245 / 30%));
    transition: opacity 0.4s ease;
    z-index: -1;
}

.aiero-counter-card:hover {
    box-shadow:
        0 20px 60px rgba(200, 80, 30, 0.18),
        0 4px 20px rgba(255, 130, 60, 0.12),
        0 1px 0 rgba(255, 255, 255, 0.9) inset;
    border-color: rgba(255, 170, 90, 0.5);
}

.aiero-counter-card:hover::after {
    opacity: 1;
}

/* Dark theme card */
.aiero-theme .aiero-counter-card {
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.06) 0%,
            rgba(255, 255, 255, 0.02) 100%);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.aiero-theme .aiero-counter-card:hover {
    border-color: rgba(255, 194, 41, 0.35);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(255, 194, 41, 0.1);
}

.aiero-theme .aiero-counter-card::after {
    background: linear-gradient(135deg,
            rgba(255, 194, 41, 0.5),
            rgba(255, 140, 60, 0.3));
}

/* ── Number — big, bold, top-left aligned ── */
.aiero-counter-number {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.6rem, 4.2vw, 3.8rem);
    font-weight: 900;
    line-height: 1;
    color: #1a1a2e;
    letter-spacing: -0.02em;
    margin-bottom: 0.85rem;
    position: relative;
    z-index: 1;
    transition: color 0.4s;
}

/* Animated underline accent on number */
.aiero-counter-number::after {
    content: '';
    display: block;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #ff8040, #ffb860);
    border-radius: 3px;
    margin-top: 0.45rem;
    transition: width 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.aiero-counter-card.is-visible .aiero-counter-number::after {
    width: 55%;
}

.aiero-counter-card:hover .aiero-counter-number {
    color: #c05010;
}

/* Dark theme number */
.aiero-theme .aiero-counter-number {
    background: linear-gradient(135deg, #FFE69C 0%, #FFC229 50%, #E09D00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.aiero-theme .aiero-counter-number::after {
    background: linear-gradient(90deg, #FFC229, #E09D00);
}

/* ── Description label — larger, multi-line readable ── */
.aiero-counter-label {
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.55;
    color: rgba(30, 30, 50, 0.6);
    text-transform: none;
    letter-spacing: 0;
    position: relative;
    z-index: 1;
    transition: color 0.4s;
}

.aiero-counter-card:hover .aiero-counter-label {
    color: rgba(30, 30, 50, 0.85);
}

/* Dark theme label */
.aiero-theme .aiero-counter-label {
    color: rgba(255, 255, 255, 0.45);
}

.aiero-theme .aiero-counter-card:hover .aiero-counter-label {
    color: rgba(255, 255, 255, 0.75);
}

/* ── Icon — subtle top-right accent ── */
.aiero-counter-icon {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(255, 130, 60, 0.15), rgba(255, 200, 100, 0.08));
    border: 1px solid rgba(255, 130, 60, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    color: rgba(200, 80, 30, 0.7);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
        background 0.4s, opacity 0.4s;
    z-index: 1;
}

.aiero-counter-card:hover .aiero-counter-icon {
    transform: scale(1.15) rotate(-8deg);
    background: linear-gradient(135deg, rgba(255, 130, 60, 0.28), rgba(255, 200, 100, 0.18));
    opacity: 1;
}

.aiero-theme .aiero-counter-icon {
    background: linear-gradient(135deg, rgba(255, 194, 41, 0.15), rgba(255, 194, 41, 0.05));
    border-color: rgba(255, 194, 41, 0.2);
    color: #FFC229;
}

/* Divider — hidden now, description replaces it */
.aiero-counter-divider {
    display: none;
}

/* ══════════════════════════════════
   GROW-IN ANIMATION — JS adds .is-visible
   ══════════════════════════════════ */
.aiero-counter-card.is-visible {
    opacity: 1;
    transform: scale(1);
    transition:
        opacity 0.7s cubic-bezier(0.34, 1.56, 0.64, 1),
        transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.5s ease,
        border-color 0.5s ease;
}

/* 2. Infinite Sliding Collaboration Marquee */
.aiero-marquee-section {
    position: relative;
    padding: 5rem 0;
    z-index: 10;
    overflow: hidden;
    background: transparent;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

body:not(.aiero-theme) .aiero-marquee-section {
    border-color: rgba(0, 0, 0, 0.05);
}

.aiero-marquee-container {
    max-width: 1400px;
    margin: 0 auto 2.5rem;
    padding: 0 8%;
    text-align: center;
}

.aiero-marquee-track {
    display: flex;
    width: max-content;
    animation: marqueeSlide 30s linear infinite;
}

.aiero-marquee-track:hover {
    animation-play-state: paused;
}

@keyframes marqueeSlide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.aiero-marquee-item {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.25);
    padding: 0 4rem;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 1rem;
    letter-spacing: 0.08em;
    transition: color 0.3s, transform 0.3s;
}

body:not(.aiero-theme) .aiero-marquee-item {
    color: rgba(3, 3, 11, 0.2);
}

.aiero-marquee-item:hover {
    color: #FFC229;
    transform: scale(1.05);
}

body:not(.aiero-theme) .aiero-marquee-item:hover {
    color: #FFC229;
}

.aiero-marquee-item i {
    font-size: 1.1rem;
    opacity: 0.6;
}

/* 3. Luxury FAQ Collapsible Accordions */
.aiero-faq-section {
    position: relative;
    padding: 7rem 8%;
    z-index: 10;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

body:not(.aiero-theme) .aiero-faq-section {
    border-color: rgba(0, 0, 0, 0.05);
}

.aiero-faq-wrapper {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.aiero-faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    overflow: hidden;
    transition: background 0.4s, border-color 0.4s;
}

body:not(.aiero-theme) .aiero-faq-item {
    background: rgba(255, 255, 255, 0.6);
    border-color: rgba(0, 0, 0, 0.06);
}

.aiero-faq-item:hover {
    border-color: rgba(255, 194, 41, 0.3);
}

.aiero-faq-trigger {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.8rem 2.2rem;
    text-align: left;
    gap: 1.5rem;
}

.aiero-faq-question {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    transition: color 0.3s;
}

body:not(.aiero-theme) .aiero-faq-question {
    color: #03030b;
}

.aiero-faq-trigger:hover .aiero-faq-question {
    color: #FFC229;
}

body:not(.aiero-theme) .aiero-faq-trigger:hover .aiero-faq-question {
    color: #FFC229;
}

.aiero-faq-icon {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.4);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), color 0.3s;
}

body:not(.aiero-theme) .aiero-faq-icon {
    color: rgba(3, 3, 11, 0.4);
}

.aiero-faq-item.active .aiero-faq-icon {
    transform: rotate(180deg);
    color: #FFC229;
}

body:not(.aiero-theme) .aiero-faq-item.active .aiero-faq-icon {
    color: #FFC229;
}

.aiero-faq-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.aiero-faq-content {
    padding: 0 2.2rem 2rem;
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
}

body:not(.aiero-theme) .aiero-faq-content {
    color: #555566;
}

/* 4. Interactive Timeline for Journey */
.aiero-journey-timeline {
    position: relative;
    max-width: 1000px;
    margin: 4.5rem auto 1rem;
    padding-left: 3rem;
}

.aiero-journey-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 1rem;
    width: 2px;
    background: linear-gradient(to bottom, #FFC229, #FFC229, #e35a57, #FFC229);
    opacity: 0.3;
}

.aiero-timeline-node {
    position: relative;
    padding-bottom: 3.5rem;
}

.aiero-timeline-dot {
    position: absolute;
    left: -3rem;
    top: 0.2rem;
    width: 1.8rem;
    height: 1.8rem;
    border-radius: 50%;
    background: #0a0a14;
    border: 3px solid #FFC229;
    box-shadow: 0 0 10px rgba(255, 194, 41, 0.5);
    z-index: 5;
    transition: background 0.4s, transform 0.4s;
}

body:not(.aiero-theme) .aiero-timeline-dot {
    background: #fff;
    border-color: #FFC229;
}

.aiero-timeline-node:nth-child(even) .aiero-timeline-dot {
    border-color: #FFC229;
    box-shadow: 0 0 10px rgba(255, 194, 41, 0.5);
}

.aiero-timeline-node:hover .aiero-timeline-dot {
    transform: scale(1.3);
    background: #fff;
}

body:not(.aiero-theme) .aiero-timeline-node:hover .aiero-timeline-dot {
    background: #FFC229;
}

.aiero-timeline-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 2rem 2.2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.4s;
}

body:not(.aiero-theme) .aiero-timeline-card {
    background: rgba(255, 255, 255, 0.6);
    border-color: rgba(0, 0, 0, 0.06);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.aiero-timeline-card:hover {
    transform: translateX(8px);
    border-color: rgba(255, 194, 41, 0.3);
}

.aiero-timeline-card:hover h4 {
    color: #FFC229;
}

body:not(.aiero-theme) .aiero-timeline-card:hover h4 {
    color: #FFC229;
}

.aiero-timeline-year {
    font-family: 'Cinzel', serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: #FFC229;
    margin-bottom: 0.4rem;
}

.aiero-timeline-node:nth-child(even) .aiero-timeline-year {
    color: #FFC229;
}

.aiero-timeline-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.6rem;
    transition: color 0.3s;
}

body:not(.aiero-theme) .aiero-timeline-title {
    color: #03030b;
}

.aiero-timeline-desc {
    font-size: 0.92rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
}

body:not(.aiero-theme) .aiero-timeline-desc {
    color: #555566;
}

/* 5. Minimalist Glassmorphic Breadcrumbs */
.aiero-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    list-style: none;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 0.8rem 1.6rem;
    border-radius: 30px;
    width: max-content;
    margin: 0 auto 3rem;
}

body:not(.aiero-theme) .aiero-breadcrumbs {
    background: rgba(255, 255, 255, 0.6);
    border-color: rgba(0, 0, 0, 0.05);
}

.aiero-breadcrumb-item {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.aiero-breadcrumb-item a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s;
}

body:not(.aiero-theme) .aiero-breadcrumb-item a {
    color: #555566;
}

.aiero-breadcrumb-item a:hover {
    color: #FFC229;
}

.aiero-breadcrumb-item.active {
    color: #FFC229;
}

body:not(.aiero-theme) .aiero-breadcrumb-item.active {
    color: #FFC229;
}

.aiero-breadcrumb-separator {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.25);
}

body:not(.aiero-theme) .aiero-breadcrumb-separator {
    color: rgba(0, 0, 0, 0.25);
}

/* 6. Dynamic Product Details Page Layout */
.aiero-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5.5rem;
    align-items: start;
}

@media (max-width: 991px) {
    .aiero-details-grid {
        grid-template-columns: 1fr;
        gap: 4.5rem;
    }
}

.aiero-details-gallery {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: sticky;
    top: 100px;
}

.aiero-gallery-main {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.01);
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

body:not(.aiero-theme) .aiero-gallery-main {
    border-color: rgba(0, 0, 0, 0.06);
    background: rgba(255, 255, 255, 0.4);
}

.aiero-gallery-main img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.aiero-gallery-main:hover img {
    transform: scale(1.05);
}

.aiero-gallery-thumbs {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.aiero-gallery-thumb {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.01);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.3s, transform 0.3s;
}

body:not(.aiero-theme) .aiero-gallery-thumb {
    border-color: rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.4);
}

.aiero-gallery-thumb.active {
    border-color: #FFC229;
    transform: scale(1.05);
}

.aiero-gallery-thumb img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

/* Technical Specification Table */
.aiero-spec-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    text-align: left;
}

.aiero-spec-table tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

body:not(.aiero-theme) .aiero-spec-table tr {
    border-color: rgba(0, 0, 0, 0.05);
}

.aiero-spec-table th,
.aiero-spec-table td {
    padding: 1rem 0;
    font-size: 0.95rem;
}

.aiero-spec-table th {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
    width: 35%;
}

body:not(.aiero-theme) .aiero-spec-table th {
    color: #555566;
}

.aiero-spec-table td {
    color: #fff;
    font-weight: 600;
}

body:not(.aiero-theme) .aiero-spec-table td {
    color: #03030b;
}

/* Interactive Tabs for Info Panels */
.aiero-tabs-headers {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    gap: 2rem;
    margin: 2.5rem 0 1.5rem;
}

body:not(.aiero-theme) .aiero-tabs-headers {
    border-color: rgba(0, 0, 0, 0.06);
}

.aiero-tab-header {
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    font-family: 'Cinzel', serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.45);
    padding: 0.8rem 0;
    position: relative;
    transition: color 0.3s;
}

body:not(.aiero-theme) .aiero-tab-header {
    color: #555566;
}

.aiero-tab-header.active {
    color: #FFC229;
}

body:not(.aiero-theme) .aiero-tab-header.active {
    color: #FFC229;
}

.aiero-tab-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 2px;
    background: #FFC229;
    transition: width 0.3s;
}

body:not(.aiero-theme) .aiero-tab-header::after {
    background: #FFC229;
}

.aiero-tab-header.active::after {
    width: 100%;
}

.aiero-tab-panel {
    display: none;
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
}

body:not(.aiero-theme) .aiero-tab-panel {
    color: #555566;
}

.aiero-tab-panel.active {
    display: block;
    animation: tabFadeIn 0.5s ease-out;
}

@keyframes tabFadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

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

/* ==========================================================================
   MOBILE & TABLET RESPONSIVENESS OVERRIDES
   ========================================================================== */

/* 1. Mobile Menu Hamburger Toggle styles */
.aiero-menu-toggle {
    display: none;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.15rem;
    transition: background 0.3s, border-color 0.3s, transform 0.3s;
    outline: none;
    z-index: 10000;
}

body:not(.aiero-theme) .aiero-menu-toggle {
    background: rgba(0, 0, 0, 0.02);
    border-color: rgba(0, 0, 0, 0.1);
    color: #03030b;
}

.aiero-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #FFC229;
    transform: scale(1.05);
}

body:not(.aiero-theme) .aiero-menu-toggle:hover {
    background: rgba(0, 0, 0, 0.04);
    border-color: #FFC229;
}

/* 2. Media Query for Mobile Navigation & General Layouts */
@media (max-width: 991px) {

    /* Navigation Bar */
    .aiero-menu-toggle {
        display: flex;
    }

    .aiero-nav {
        top: 1rem;
        left: 4%;
        width: 92%;
        border-radius: 20px;
        padding: 0.8rem 1.6rem;
    }

    .aiero-menu {
        display: none;
        /* Controlled by dynamic JS logic */
        position: absolute;
        top: 110%;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 25, 0.96);
        backdrop-filter: blur(25px);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 20px;
        padding: 2.2rem;
        flex-direction: column;
        align-items: center;
        gap: 1.6rem;
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
        z-index: 9998;
    }

    body:not(.aiero-theme) .aiero-menu {
        background: rgba(240, 240, 248, 0.98);
        border-color: rgba(0, 0, 0, 0.08);
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    }

    .aiero-right-controls {
        display: none;
        /* Collapsed on mobile */
    }

    .aiero-menu-link {
        font-size: 0.92rem;
        padding: 0.4rem 0;
        width: 100%;
        justify-content: center;
    }

    .aiero-logo img {
        height: 32px;
    }

    /* Hero Slide Content */
    .aiero-slide-content {
        margin-top: 24vh;
        gap: 1.5rem;
        padding: 0 6%;
    }

    .aiero-slide-title {
        font-size: 2.2rem !important;
        line-height: 1.15;
    }

    .aiero-slide-desc {
        font-size: 0.9rem !important;
        line-height: 1.6;
        max-width: 100%;
    }

    .aiero-video-card {
        display: none !important;
        /* Eliminate mobile overlap */
    }

    /* Slider Navigation adjustments */
    .aiero-arrow {
        width: 44px;
        height: 44px;
        font-size: 0.9rem;
    }

    .aiero-arrow.btn-prev {
        left: 1.5rem;
    }

    .aiero-arrow.btn-next {
        right: 1.5rem;
    }

    /* About Us section staggered images */
    .aiero-about-images {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 2.5rem !important;
        width: 100% !important;
        max-width: 500px;
        margin: 0 auto;
    }

    .aiero-about-img-wrapper {
        width: 100% !important;
        max-width: 450px !important;
        margin: 0 auto !important;
    }

    .aiero-about-img-wrapper.shifted {
        margin-top: 0 !important;
    }

    .aiero-about-img-box {
        height: 280px !important;
        /* Simplify 3D floats on mobile to prevent layout overflow */
        animation: floatFlatLeft 6s ease-in-out infinite !important;
    }

    .aiero-about-img-wrapper.shifted .aiero-about-img-box {
        animation: floatFlatRight 6s ease-in-out infinite !important;
        animation-delay: -3s !important;
    }

    /* Force about section content visibility on mobile to bypass ScrollTrigger/GSAP issues */
    .aiero-about-tagline,
    .aiero-about-title,
    .aiero-about-desc,
    .aiero-about-desc p,
    .aiero-about-phone,
    .reveal-inner,
    .animate-img-left,
    .animate-img-right {
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
    }

    .reveal-wrapper {
        overflow: visible !important;
    }

    .aiero-about-content {
        text-align: center !important;
        align-items: center !important;
        gap: 1.8rem !important;
    }

    .aiero-about-title {
        font-size: 2.2rem !important;
        line-height: 1.25 !important;
        text-align: center !important;
    }

    .aiero-about-desc {
        gap: 1.2rem !important;
        font-size: 0.95rem !important;
        line-height: 1.7 !important;
        text-align: center !important;
    }

    .aiero-about-phone {
        margin-top: 1.5rem !important;
        flex-direction: column !important;
        gap: 0.8rem !important;
        justify-content: center !important;
        align-items: center !important;
    }

    .aiero-phone-details {
        align-items: center !important;
        text-align: center !important;
    }

    .aiero-phone-num {
        font-size: 1.8rem !important;
    }

    a[href^="tel"] {
        color: inherit !important;
        text-decoration: none !important;
    }

    @keyframes floatFlatLeft {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-10px);
        }
    }

    @keyframes floatFlatRight {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(10px);
        }
    }

    /* Counter metrics row */
    .aiero-counter-card {
        padding: 1.8rem 1.2rem;
    }

    /* Milestone timeline adjustments */
    .aiero-journey-timeline {
        padding-left: 2rem;
    }

    .aiero-journey-timeline::before {
        left: 0.6rem;
    }

    .aiero-timeline-dot {
        left: -2.3rem;
        width: 1.4rem;
        height: 1.4rem;
    }

    .aiero-timeline-card {
        padding: 1.5rem 1.6rem;
    }

    .aiero-timeline-year {
        font-size: 1.35rem;
    }

    .aiero-timeline-title {
        font-size: 1.05rem;
    }

    /* Product Category Pages details */
    .aiero-gallery-main {
        height: 320px;
    }

    .aiero-spec-table th {
        width: 45%;
    }

    .aiero-details-grid {
        gap: 3.5rem;
    }

    /* Related grid */
    .aiero-creations-grid {
        grid-template-columns: 1fr !important;
        gap: 2.5rem;
    }

    .aiero-creation-card {
        height: 360px !important;
    }
}

/* 3. Extremely small phone screen adjustments */
@media (max-width: 480px) {
    .aiero-slide-title {
        font-size: 1.8rem !important;
    }

    .aiero-slide-content {
        margin-top: 20vh;
    }

    .aiero-about-title {
        font-size: 1.8rem !important;
    }

    .aiero-creations-title {
        font-size: 28px !important;
    }

    .aiero-about-img-box {
        height: 220px !important;
    }

    .aiero-counters-grid {
        grid-template-columns: 1fr;
    }

    .aiero-faq-question {
        font-size: 1.02rem;
    }
}

/* ==========================================================================
   PREMIUM FLOATING BACKGROUND SHAPES
   ========================================================================== */
.aiero-floating-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.32;
    pointer-events: none;
    will-change: transform;
    z-index: 2;
}

body:not(.aiero-theme) .aiero-floating-shape {
    opacity: 0.15;
    filter: blur(100px);
}

/* Shape 1: Vibrant Purple/Blue Blob (Right side) */
.aiero-floating-shape.shape-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(123, 97, 255, 0.8) 0%, rgba(123, 97, 255, 0) 70%);
    top: 15%;
    right: -100px;
    animation: floatBlob1 25s ease-in-out infinite alternate;
}

/* Shape 2: Soft Pink/Peach Blob (Bottom right) */
.aiero-floating-shape.shape-2 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(255, 180, 190, 0.7) 0%, rgba(255, 180, 190, 0) 70%);
    bottom: -50px;
    right: 10%;
    animation: floatBlob2 20s ease-in-out infinite alternate;
}

/* Shape 3: Bright Gold/Yellow Blob (Top left) */
.aiero-floating-shape.shape-3 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.45) 0%, rgba(255, 215, 0, 0) 70%);
    top: -100px;
    left: -100px;
    animation: floatBlob3 30s ease-in-out infinite alternate;
}

/* Shape 4: Premium 3D Glossy Fluid Spiral (Center Left / Drift) */
.aiero-floating-shape.shape-4 {
    width: 400px;
    height: 400px;
    background-size: contain;
    filter: none;
    opacity: 0.65;
    mix-blend-mode: screen;
    top: 40%;
    left: 15%;
    animation: floatSpiral 18s ease-in-out infinite alternate;
}

body:not(.aiero-theme) .aiero-floating-shape.shape-4 {
    opacity: 0.22;
    mix-blend-mode: multiply;
    filter: invert(1) hue-rotate(180deg);
}

/* Keyframe Animations for Natural Floating and Drifting */
@keyframes floatBlob1 {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }

    50% {
        transform: translate(-60px, 40px) scale(1.1) rotate(45deg);
    }

    100% {
        transform: translate(40px, -60px) scale(0.9) rotate(90deg);
    }
}

@keyframes floatBlob2 {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }

    50% {
        transform: translate(50px, -50px) scale(0.9) rotate(-60deg);
    }

    100% {
        transform: translate(-30px, 30px) scale(1.15) rotate(60deg);
    }
}

@keyframes floatBlob3 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(40px, 80px) scale(1.05);
    }

    100% {
        transform: translate(-20px, -40px) scale(0.95);
    }
}

@keyframes floatSpiral {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }

    50% {
        transform: translate(30px, -40px) rotate(15deg) scale(1.05);
    }

    100% {
        transform: translate(-30px, 30px) rotate(-15deg) scale(0.95);
    }
}

/* ==========================================================================
   PREMIUM GEOMETRIC & 3D FLOATING SHAPES — PER SECTION
   ========================================================================== */

/* Base class for all shapes — positioned inside their parent section */
.aiero-geom-shape {
    position: absolute;
    pointer-events: none;
    will-change: transform;
    z-index: 0;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 1;
}

/* ---- COUNTERS SECTION shapes ---- */
/* Gold Sector — top left corner, partially clipped */
.aiero-counters-section .aiero-geom-shape.shape-gold-sector {
    width: 340px;
    height: 340px;
    background-image: url('assets/shape_gold_sector.png');
    top: -80px;
    left: -80px;
    animation: floatGeom3 28s ease-in-out infinite alternate;
}

/* 3D Spiral Helix — right side, partially clipped */
.aiero-faq-section .aiero-geom-shape.shape-spiral-helix {
    width: 380px;
    height: 380px;
    background-image: url('assets/shape_3d_spiral_helix.png');
    top: 50%;
    left: 97%;
    transform: translateY(-50%);
    animation: floatGeomSpiral 18s ease-in-out infinite alternate;
}

/* ---- ABOUT SECTION shapes ---- */
/* Purple Semi-Circle — right edge, large and bold */
.aiero-about .aiero-geom-shape.shape-purple {
    width: 580px;
    height: 580px;
    background-image: url('assets/shape_purple.png');
    top: 50%;
    right: -180px;
    transform: translateY(-50%);
    animation: fadeInOut 18s ease-in-out infinite;
    ;
}

/* Pink Circle — bottom-right, partially clipped */
.aiero-about .aiero-geom-shape.shape-pink-circle {
    width: 300px;
    height: 300px;
    background-image: url('assets/shape_pink_circle.png');
    bottom: -80px;
    right: 8%;
    animation: floatGeom2 18s ease-in-out infinite alternate;
}

/* ---- SERVICES SECTION shapes ---- */
/* Pink Semicircle Sector — left edge */
.aiero-services-section .aiero-geom-shape.shape-pink-sector {
    width: 320px;
    height: 320px;
    background-image: url('assets/shape_pink_sector.png');
    top: -60px;
    left: -80px;
    animation: floatGeom6 26s ease-in-out infinite alternate;
}

/* Yellow Cone — bottom-left corner */
.aiero-services-section .aiero-geom-shape.shape-yellow-cone {
    width: 260px;
    height: 260px;
    background-image: url('assets/shape_yellow_cone.png');
    top: 0px;
    left: 40%;
    animation: floatGeom5 20s ease-in-out infinite alternate;
}

/* Pink 3D Cube — right side, floating */
.aiero-services-section .aiero-geom-shape.shape-pink-cube {
    width: 200px;
    height: 200px;
    background-image: url('assets/shape_pink_cube.png');
    top: 30%;
    right: 3%;
    animation: floatGeomCube 15s ease-in-out infinite alternate;
}

/* ---- FAQ SECTION shapes ---- */
/* Dark Node — bottom-left area */
.aiero-geom-shape.shape-dark-node {
    width: 360px;
    height: 360px;
    background-image: url('assets/shape_3d_dark_node.png');
    bottom: -185px;
    right: 0;
    animation: floatGeomNode 22s ease-in-out infinite alternate;
}

/* Light Theme — keep shapes visible at slightly reduced opacity */
body:not(.aiero-theme) .aiero-geom-shape {
    opacity: 0.85;
}

/* GPU-Accelerated Floating / Rotation Keyframes */
@keyframes floatGeom1 {
    0% {
        transform: translateY(-50%) translate(0, 0) scale(1) rotate(0deg);
    }

    50% {
        transform: translateY(-50%) translate(-30px, 20px) scale(1.05) rotate(12deg);
    }

    100% {
        transform: translateY(-50%) translate(20px, -30px) scale(0.96) rotate(25deg);
    }
}

@keyframes floatGeom2 {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }

    50% {
        transform: translate(25px, -40px) scale(0.93) rotate(-18deg);
    }

    100% {
        transform: translate(-15px, 15px) scale(1.08) rotate(18deg);
    }
}

@keyframes floatGeomCube {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }

    50% {
        transform: translate(-20px, 30px) rotate(40deg) scale(1.06);
    }

    100% {
        transform: translate(20px, -25px) rotate(80deg) scale(0.94);
    }
}

@keyframes floatGeom3 {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }

    50% {
        transform: translate(20px, 25px) scale(1.04) rotate(-8deg);
    }

    100% {
        transform: translate(-10px, -15px) scale(0.98) rotate(8deg);
    }
}

@keyframes floatGeom5 {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }

    50% {
        transform: translate(-22px, 22px) scale(1.05) rotate(-12deg);
    }

    100% {
        transform: translate(15px, -15px) scale(0.96) rotate(12deg);
    }
}

@keyframes floatGeom6 {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }

    50% {
        transform: translate(22px, -30px) scale(0.97) rotate(15deg);
    }

    100% {
        transform: translate(-15px, 15px) scale(1.03) rotate(-15deg);
    }
}

@keyframes floatGeomSpiral {
    0% {
        transform: translateY(-50%) translate(0, 0) scale(1) rotate(0deg);
    }

    50% {
        transform: translateY(-50%) translate(30px, -25px) scale(1.04) rotate(20deg);
    }

    100% {
        transform: translateY(-50%) translate(-30px, 25px) scale(0.96) rotate(-20deg);
    }
}

@keyframes floatGeomNode {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }

    50% {
        transform: translate(-25px, 25px) scale(1.06) rotate(-15deg);
    }

    100% {
        transform: translate(25px, -25px) scale(0.94) rotate(15deg);
    }
}

@keyframes fadeInOut {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

/* ==========================================
   INTERACTIVE PRODUCT CATEGORIES SECTION
   ========================================== */
.aiero-categories-section {
    position: relative;
    padding: 8rem 8% 6rem;
    background-color: var(--color-bg);
    overflow: hidden;
    z-index: 10;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.aiero-categories-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 178, 0, 0.03) 0%, rgba(3, 3, 3, 0) 70%);
    pointer-events: none;
    z-index: 1;
}

.aiero-categories-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    z-index: 2;
}

.aiero-categories-header {
    text-align: center;
    margin-bottom: 4rem;
}

.aiero-categories-tagline {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.35em;
    color: var(--color-primary);
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 0.8rem;
}

.aiero-categories-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-family: var(--font-serif);
    color: #fff;
    line-height: 1.25;
}

.aiero-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 2rem;
}

.aiero-category-card {
    position: relative;
    background: rgba(25, 25, 25, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    backdrop-filter: blur(15px);
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
}

.aiero-category-card-border {
    position: absolute;
    inset: 0;
    border-radius: 16px;
    border: 1px solid transparent;
    background: linear-gradient(135deg, rgba(255, 178, 0, 0.4) 0%, transparent 100%) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.aiero-category-icon {
    font-size: 2.8rem;
    color: var(--color-primary-light);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), color 0.5s ease;
    display: inline-block;
}

.aiero-category-card-title {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: #fff;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.aiero-category-card-desc {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 0.8rem;
}

.aiero-category-link-btn {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease, color 0.3s ease;
    margin-top: auto;
}

.aiero-category-link-btn i {
    font-size: 0.65rem;
    transition: transform 0.3s ease;
}

/* Hover Interactive States */
.aiero-category-card:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(25, 25, 25, 0.8);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(255, 178, 0, 0.06);
    border-color: rgba(255, 178, 0, 0.2);
}

.aiero-category-card:hover .aiero-category-card-border {
    opacity: 1;
}

.aiero-category-card:hover .aiero-category-icon {
    transform: scale(1.15) rotate(5deg);
    color: var(--color-primary);
}

.aiero-category-card:hover .aiero-category-card-title {
    color: var(--color-primary);
}

.aiero-category-card:hover .aiero-category-link-btn {
    color: var(--color-primary-light);
    gap: 0.8rem;
}

.aiero-category-card:hover .aiero-category-link-btn i {
    transform: translateX(3px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .aiero-categories-section {
        padding: 5rem 6% 4rem;
    }

    .aiero-categories-grid {
        grid-template-columns: 1fr;
    }

    .aiero-category-card {
        padding: 2.5rem 2rem;
    }
}

/* Light Mode Overrides for Product Categories Section */
body:not(.aiero-theme) .aiero-categories-title {
    color: #191919;
}

body:not(.aiero-theme) .aiero-category-card {
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(255, 178, 0, 0.1);
    box-shadow: 0 15px 35px rgba(25, 25, 25, 0.04);
}

body:not(.aiero-theme) .aiero-category-card:hover {
    background: #ffffff;
    border-color: rgba(255, 178, 0, 0.35);
    box-shadow: 0 20px 45px rgba(255, 178, 0, 0.08), 0 10px 25px rgba(25, 25, 25, 0.03);
}

body:not(.aiero-theme) .aiero-category-card-title {
    color: #191919;
}

body:not(.aiero-theme) .aiero-category-card:hover .aiero-category-card-title {
    color: var(--color-primary);
}

body:not(.aiero-theme) .aiero-category-card-desc {
    color: #555555;
}

/* Light Mode Overrides for Form Inputs and Selection Elements */
body:not(.aiero-theme) .form-group input,
body:not(.aiero-theme) .form-group select,
body:not(.aiero-theme) .form-group textarea {
    border-bottom-color: rgba(0, 0, 0, 0.12);
    color: #191919;
}

body:not(.aiero-theme) .form-group select option {
    background-color: #ffffff;
    color: #191919;
}

/* Overrides for contact.html inline styled form elements in light mode */
body:not(.aiero-theme) #name,
body:not(.aiero-theme) #email,
body:not(.aiero-theme) #phone,
body:not(.aiero-theme) #category,
body:not(.aiero-theme) #message {
    background: #ffffff !important;
    border-color: rgba(0, 0, 0, 0.12) !important;
    color: #191919 !important;
}

body:not(.aiero-theme) #name:focus,
body:not(.aiero-theme) #email:focus,
body:not(.aiero-theme) #phone:focus,
body:not(.aiero-theme) #category:focus,
body:not(.aiero-theme) #message:focus {
    border-color: var(--color-primary) !important;
}

/* ==========================================
   PREMIUM PRODUCT STACKED STICKY SHOWCASE
   ========================================== */
.showcase-section {
    position: relative;
    padding: 8rem 0 0;
    background-color: var(--color-bg);
    overflow: visible;
    z-index: 10;
}

.showcase-container {
    max-width: 100%;
    width: 100%;
    margin: 0;
}

.showcase-header {
    text-align: center;
    margin-bottom: 6rem;
    padding: 0 4%;
}

.showcase-subtitle {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.35em;
    color: var(--color-primary);
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 0.8rem;
}

.showcase-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-family: var(--font-serif);
    color: var(--color-text);
    line-height: 1.25;
    margin-bottom: 1.5rem;
}

.showcase-desc-text {
    font-size: 1rem;
    color: var(--color-text-muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.showcase-stack {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 4rem;
}

.showcase-card {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 90%;
    margin: auto;
    border-radius: 30px;
    background-color: #191919;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    will-change: transform, opacity;
    transform: scale(1);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease-out;
}

body:not(.aiero-theme) .showcase-card {
    background-color: #191919;
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.25);
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.showcase-card:hover .card-bg-img {
    transform: scale(1.03);
}

.card-gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(25, 25, 25, 0.25) 0%, rgba(25, 25, 25, 0.8) 100%);
    z-index: 1;
    pointer-events: none;
}

/* Tags Overlay in Top-Left */
.card-tags-overlay {
    position: absolute;
    top: 3rem;
    left: 4.5rem;
    display: flex;
    gap: 1rem;
    z-index: 2;
}

.card-pill-tag {
    padding: 0.55rem 1.4rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* Scroll Progress Circle */
.card-scroll-indicator {
    position: absolute;
    right: 4.5rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.progress-ring {
    transform: rotate(-90deg);
}

.progress-ring__circle-bg {
    stroke: rgba(255, 255, 255, 0.15);
}

.progress-ring__circle {
    stroke-dasharray: 150.79;
    stroke-dashoffset: 150.79;
    transition: stroke-dashoffset 0.1s linear;
}

.progress-val {
    position: absolute;
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 700;
}

/* Bottom Content Overlay */
.card-content-overlay {
    position: absolute;
    bottom: 3.5rem;
    left: 4.5rem;
    width: 65%;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    z-index: 2;
    color: #ffffff;
    transition: opacity 0.4s ease-out, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.card-category {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    color: var(--color-primary);
    text-transform: uppercase;
}

.card-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-family: var(--font-serif);
    color: #ffffff;
    line-height: 1.15;
}

.card-rating {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.stars {
    color: var(--color-primary);
    letter-spacing: 2px;
}

.rating-val {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.card-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.card-footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 0.5rem;
}

.card-price {
    font-size: 2rem;
    font-weight: 600;
    color: #ffffff;
    font-family: var(--font-sans);
}

.card-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.btn-shop-now {
    background-color: var(--color-primary);
    color: #191919;
    border: 1px solid var(--color-primary);
    padding: 0.9rem 2.2rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    transition: background-color 0.4s, color 0.4s, transform 0.3s;
}

.btn-shop-now:hover {
    background-color: var(--color-primary-light);
    border-color: var(--color-primary-light);
    transform: translateY(-2px);
}

.btn-view-details {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 0.9rem 2.2rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.4s, border-color 0.4s, color 0.4s, transform 0.3s;
}

.btn-view-details:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: #ffffff;
    transform: translateY(-2px);
}

/* Mobile responsive styles */
@media (max-width: 991px) {
    .showcase-section {
        padding: 6rem 6% 8rem;
    }

    .showcase-header {
        margin-bottom: 4rem;
    }

    .showcase-stack {
        gap: 2rem;
    }

    .showcase-card {
        position: relative !important;
        top: auto !important;
        height: auto;
        min-height: auto;
        margin-bottom: 0;
        transform: none !important;
    }

    .card-inner {
        flex-direction: column;
    }

    .card-bg-img {
        position: relative;
        width: 100%;
        height: 320px;
    }

    .card-gradient-overlay {
        display: none;
    }

    .card-tags-overlay {
        top: 1.5rem;
        left: 2rem;
        flex-wrap: wrap;
        gap: 0.6rem;
    }

    .card-pill-tag {
        padding: 0.45rem 1rem;
        font-size: 0.65rem;
    }

    .card-scroll-indicator {
        display: none;
    }

    .card-content-overlay {
        position: relative;
        bottom: auto;
        left: auto;
        width: 100%;
        padding: 3rem 2rem;
        background: #191919;
        gap: 1.2rem;
    }

    .card-footer-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        width: 100%;
    }

    .card-actions {
        flex-direction: column;
        width: 100%;
        gap: 0.8rem;
    }

    .btn-shop-now,
    .btn-view-details {
        width: 100%;
        justify-content: center;
        padding: 0.85rem 1.8rem;
    }
}

/* ==========================================
   GALLERY SECTION — dual-row horizontal slider
   ========================================== */
.aiero-gallery-section {
    position: relative;
    padding: 7rem 0;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 10;
}

body:not(.aiero-theme) .aiero-gallery-section {
    border-color: rgba(0, 0, 0, 0.05);
}

.aiero-gallery-container {
    max-width: 1400px;
    margin: 0 auto 3rem;
    padding: 0 8%;
}

.aiero-gallery-header {
    text-align: center;
    margin-bottom: 4rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.aiero-gallery-subtitle {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.35em;
    color: var(--color-primary);
    text-transform: uppercase;
    opacity: 0;
    animation: galleryFadeIn 0.8s 0.2s forwards;
}

.aiero-gallery-title {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    letter-spacing: 0.12em;
    color: var(--color-text);
    line-height: 1.2;
}

body.aiero-theme .aiero-gallery-title {
    color: #ffffff;
}

body:not(.aiero-theme) .aiero-gallery-title {
    color: #03030b;
}

.aiero-gallery-desc {
    font-size: 1rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
    opacity: 0.8;
}

.aiero-gallery-rows {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.aiero-gallery-row {
    overflow: hidden;
    position: relative;
}

.aiero-gallery-track {
    display: flex;
    gap: 1.25rem;
    width: max-content;
    will-change: transform;
}

.aiero-gallery-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: border-color 0.4s, box-shadow 0.4s;
}

body:not(.aiero-theme) .aiero-gallery-card {
    border-color: rgba(0, 0, 0, 0.06);
}

.aiero-gallery-card:hover {
    border-color: var(--color-primary);
    box-shadow: 0 12px 40px rgba(255, 178, 0, 0.12);
}

.aiero-gallery-card--sm {
    width: 200px;
    height: 220px;
}

.aiero-gallery-card--md {
    width: 280px;
    height: 260px;
}

.aiero-gallery-card--lg {
    width: 360px;
    height: 300px;
}

.aiero-gallery-card-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.aiero-gallery-card:hover .aiero-gallery-card-img {
    transform: scale(1.08);
}

.aiero-gallery-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem 1.25rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.4s, transform 0.4s;
}

.aiero-gallery-card:hover .aiero-gallery-card-overlay {
    opacity: 1;
    transform: translateY(0);
}

.aiero-gallery-card-label {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: #ffffff;
    text-transform: uppercase;
}

/* Gallery floating shapes */
.aiero-gallery-section .shape-gold-sector {
    position: absolute;
    top: -10%;
    right: -5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 178, 0, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.aiero-gallery-section .shape-pink-circle {
    position: absolute;
    bottom: -8%;
    left: -4%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255, 107, 157, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

@keyframes galleryFadeIn {
    to {
        opacity: 1;
    }
}

/* Gallery Responsive */
@media (max-width: 991px) {
    .aiero-gallery-section {
        padding: 5rem 0;
    }

    .aiero-gallery-header {
        margin-bottom: 3rem;
    }

    .aiero-gallery-card--sm {
        width: 160px;
        height: 180px;
    }

    .aiero-gallery-card--md {
        width: 220px;
        height: 210px;
    }

    .aiero-gallery-card--lg {
        width: 280px;
        height: 240px;
    }
}

@media (max-width: 768px) {

    .aiero-about,
    .aiero-counters-section,
    .aiero-categories-section,
    .aiero-creations,
    .aiero-services-section,
    .aiero-faq-section {
        padding: 4rem 1.5rem !important;
    }

    .aiero-gallery-section {
        padding: 4rem 0 !important;
    }

    .aiero-marquee-section {
        padding: 2.5rem 0 !important;
    }

    .showcase-section {
        padding: 4rem 1.5rem 0 !important;
    }

    /* Internal container gaps and margins */
    .aiero-about-container,
    .aiero-creations-container,
    .aiero-categories-container,
    .aiero-services-container,
    .aiero-faq-wrapper {
        gap: 2rem !important;
    }

    .aiero-about-content,
    .aiero-creations-header,
    .aiero-categories-header,
    .aiero-services-text-col {
        gap: 1.2rem !important;
    }

    .aiero-gallery-container {
        margin-bottom: 2rem !important;
        padding: 0 1.5rem !important;
    }

    .aiero-gallery-header {
        margin-bottom: 2rem !important;
    }

    .showcase-header {
        margin-bottom: 2rem !important;
    }

    .showcase-stack {
        margin-top: 2rem !important;
        gap: 1.5rem !important;
    }

    .card-content-overlay {
        padding: 2rem 1.5rem !important;
        gap: 0.8rem !important;
    }

    .card-footer-row {
        gap: 1rem !important;
    }

    .aiero-services-nav-controls {
        margin-top: 1.5rem !important;
    }

    .aiero-marquee-container {
        margin-bottom: 1.5rem !important;
    }

    #map {
        padding: 0 1.5rem 3rem !important;
    }

    .aiero-gallery-card--sm {
        width: 140px;
        height: 160px;
    }

    .aiero-gallery-card--md {
        width: 180px;
        height: 180px;
    }

    .aiero-gallery-card--lg {
        width: 230px;
        height: 200px;
    }

    .aiero-gallery-track {
        gap: 0.85rem;
    }
}

@media (max-width: 480px) {

    .aiero-about,
    .aiero-counters-section,
    .aiero-categories-section,
    .aiero-creations,
    .aiero-services-section,
    .aiero-faq-section {
        padding: 3rem 1rem !important;
    }

    .aiero-gallery-section {
        padding: 3rem 0 !important;
    }

    .aiero-marquee-section {
        padding: 2rem 0 !important;
    }

    .showcase-section {
        padding: 3rem 1rem 0 !important;
    }

    .aiero-about-container,
    .aiero-creations-container,
    .aiero-categories-container,
    .aiero-services-container,
    .aiero-faq-wrapper {
        gap: 1.5rem !important;
    }

    .aiero-gallery-container {
        padding: 0 1rem !important;
    }

    .card-content-overlay {
        padding: 1.5rem 1rem !important;
    }

    #map {
        padding: 0 1rem 2rem !important;
    }
}

/* ==========================================================================
   CONTACT PAGE CUSTOM MOBILE RESPONSIVENESS
   ========================================================================== */
.aiero-contact-form-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 3rem;
    width: 100%;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
}

.aiero-contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.aiero-contact-info-card {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 1.8rem;
    border-radius: 16px;
    text-align: left;
    width: 100%;
}

@media (max-width: 991px) {
    .aiero-about-container {
        grid-template-columns: 1fr !important;
        gap: 3.5rem !important;
    }
}

@media (max-width: 768px) {
    .aiero-contact-form-card {
        padding: 1.8rem;
        border-radius: 16px;
    }

    #map>div {
        height: 300px !important;
    }
}

@media (max-width: 600px) {
    .aiero-contact-form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .aiero-contact-info-card {
        padding: 1.2rem;
        gap: 1rem;
    }
}

/* ==========================================================================
   AIERO FOUNDER CARD STYLING (ABOUT PAGE)
   ========================================================================== */
.aiero-founder-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 194, 41, 0.15);
    /* Gold-tinted border */
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 2.5rem;
    max-width: 420px;
    width: 100%;
    text-align: center;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.4s;
    position: relative;
    overflow: hidden;
}

body:not(.aiero-theme) .aiero-founder-card {
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(255, 194, 41, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.aiero-founder-card:hover {
    transform: translateY(-8px);
    border-color: #FFC229;
}

.aiero-founder-img-wrapper {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 1.8rem;
    border-radius: 50%;
    padding: 5px;
    background: linear-gradient(135deg, #FFC229 0%, rgba(255, 194, 41, 0.2) 100%);
    box-shadow: 0 15px 35px rgba(255, 194, 41, 0.2);
    overflow: hidden;
}

/* Square variant for Founder card */
.aiero-founder-img-wrapper--square {
    border-radius: 16px !important;
}

.aiero-founder-img--square {
    border-radius: 12px !important;
}

.aiero-founder-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    background: #0d0c1d;
    /* Fallback dark background */
}

.aiero-founder-card:hover .aiero-founder-img {
    transform: scale(1.08);
}

.aiero-founder-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.aiero-founder-tag {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    color: #FFC229;
    text-transform: uppercase;
}

.aiero-founder-name {
    font-family: 'Cinzel', serif;
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.4rem;
}

body:not(.aiero-theme) .aiero-founder-name {
    color: #03030b;
}

.aiero-founder-quote {
    font-size: 0.88rem;
    font-style: italic;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-top: 0.4rem;
}

.text-center {
    text-align: center;
}

/* =============================================
   LEADER BADGE CHIPS
   ============================================= */
.aiero-leader-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #FFC229;
    background: rgba(255, 194, 41, 0.08);
    border: 1px solid rgba(255, 194, 41, 0.25);
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    transition: background 0.3s, border-color 0.3s;
}

.aiero-leader-badge:hover {
    background: rgba(255, 194, 41, 0.15);
    border-color: rgba(255, 194, 41, 0.5);
}

/* Wide founder card in leadership section */
.aiero-leader-founder {
    max-width: 680px;
    width: 100%;
    flex-direction: row;
    display: flex;
    gap: 2.5rem;
    align-items: center;
    text-align: left;
    padding: 2.8rem 3rem;
}

.aiero-leader-founder .aiero-founder-details {
    flex: 1;
}

.aiero-leader-founder .aiero-founder-img-wrapper {
    flex-shrink: 0;
    margin: 0;
}

@media (max-width: 640px) {
    .aiero-leader-founder {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
        gap: 1.5rem;
    }

    .aiero-leader-founder .aiero-founder-img-wrapper {
        margin: 0 auto;
    }
}

/* =============================================
   ACTIVE (2026) TIMELINE NODE
   ============================================= */
.aiero-timeline-dot--active {
    background: #FFC229 !important;
    box-shadow: 0 0 0 6px rgba(255, 194, 41, 0.2), 0 0 20px rgba(255, 194, 41, 0.4) !important;
    animation: pulse-gold 2s ease-in-out infinite;
}

.aiero-timeline-card--active {
    border-color: rgba(255, 194, 41, 0.35) !important;
    background: rgba(255, 194, 41, 0.04) !important;
}

@keyframes pulse-gold {

    0%,
    100% {
        box-shadow: 0 0 0 6px rgba(255, 194, 41, 0.2), 0 0 20px rgba(255, 194, 41, 0.4);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(255, 194, 41, 0.08), 0 0 30px rgba(255, 194, 41, 0.6);
    }
}