:root {
  /* Colors */
  --accent: #ff6a00;       /* vivid orange */
  --accent-neon: #ff8a3d;  /* secondary bright orange */
  --accent-dark: #e55a00;
  --bg: #f5f6f8;           /* light grey background */
  --bg-dark: #cfd3d8;      /* darker grey for sections */
  --card: #ffffff;         /* white cards */
  --muted: #343a40;           /* muted text */
  --fg: #111;              /* main dark text */


  /* Typography */
  --font-heading: 'Montserrat', sans-serif;
  --font-body:  'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
  --font-heading-size: 3rem;
  --font-body-size: 1.063rem;

  /* Base sizes - mobile first */
  --text-base-size: 1rem; /* 16px default */
  --text-scale-ratio: 1.2;
  
  /* Type scale - mobile */
  --text-xs: calc(var(--text-base-size) / pow(var(--text-scale-ratio), 2));
  --text-sm: calc(var(--text-base-size) / var(--text-scale-ratio));
  --text-md: var(--text-base-size);
  --text-lg: calc(var(--text-base-size) * var(--text-scale-ratio));
  --text-xl: calc(var(--text-base-size) * pow(var(--text-scale-ratio), 2));
  --text-2xl: calc(var(--text-base-size) * pow(var(--text-scale-ratio), 3));
  --text-3xl: calc(var(--text-base-size) * pow(var(--text-scale-ratio), 4));
  --text-4xl: calc(var(--text-base-size) * pow(var(--text-scale-ratio), 5));
  --text-5xl: calc(var(--text-base-size) * pow(var(--text-scale-ratio), 6));
  
  /* Line heights */
  --heading-line-height: 1.2;
  --body-line-height: 1.6;
  --loose-line-height: 1.75;
  
  /* Font weights */
  --light: 300;
  --regular: 400;
  --medium: 500;
  --semibold: 600;
  --bold: 700;
  --black: 900;
  
  /* Spacing */
  --space-xxs: 0.25rem;
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-xxl: 3rem;
  
  /* Max text widths for optimal readability */
  --max-width-sm: 65ch;
  --max-width-md: 75ch;
  --max-width-lg: 85ch;

  /* Layout & UI */
  --radius: 18px;
  --radius-md: 8px;
  --space-md: 16px;
  --maxwidth: 100vw;

  /* Effects */
  --glass: #ffffff0a;
  --transition-fast: 0.2s ease-in-out;
  --shadow-md: 0 1px 2px rgba(0,0,0,0.07), 
                0 2px 4px rgba(0,0,0,0.07), 
                0 4px 8px rgba(0,0,0,0.07), 
                0 8px 16px rgba(0,0,0,0.07),
                0 16px 32px rgba(0,0,0,0.07), 
                0 32px 64px rgba(0,0,0,0.07);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-body);
  font-weight: 300;
  transition: all 0.3s ease;
}

/* Smooth scrolling for the entire page */
html {
    scroll-behavior: smooth;
    overflow-x: hidden !important;
}

.disabled {
  pointer-events: none;
  color: grey;
}

h1, .h1 {
            font-size: var(--text-4xl);
            line-height: var(--heading-line-height);
            font-weight: var(--black);
            margin-bottom: var(--space-lg);
            color: var(--accent);
            font-family: var(--font-heading);
        }

        h2, .h2 {
            font-size: var(--text-3xl);
            line-height: var(--heading-line-height);
            font-weight: var(--bold);
            margin-bottom: var(--space-md);
            color: var(--accent-dark);
            font-family: var(--font-heading);
        }

        h3, .h3 {
            font-size: var(--text-2xl);
            line-height: var(--heading-line-height);
            font-weight: var(--semibold);
            margin-bottom: var(--space-md);
            color: var(--muted);
            font-family: var(--font-heading);
        }

        h4, .h4 {
            font-size: var(--text-xl);
            line-height: var(--heading-line-height);
            font-weight: var(--semibold);
            margin-bottom: var(--space-sm);
            color: var(--muted);
        }

        h5, .h5 {
            font-size: var(--text-lg);
            line-height: var(--heading-line-height);
            font-weight: var(--medium);
            margin-bottom: var(--space-sm);
            color: var(--muted);
        }

        h6, .h6 {
            font-size: var(--text-md);
            line-height: var(--heading-line-height);
            font-weight: var(--medium);
            margin-bottom: var(--space-sm);
            color: var(--muted);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        p {
            margin-bottom: var(--space-md);
            max-width: var(--max-width-md);
        }

        .lead {
            font-size: var(--text-lg);
            font-weight: var(--light);
            max-width: var(--max-width-lg);
        }

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

        /* Text utilities */
        .text-center {
            text-align: center;
        }
        
        .text-left {
            text-align: left;
        }
        
        .text-right {
            text-align: right;
        }
        
        .text-accent {
            color: var(--accent);
        }
        
        .text-muted {
            color: var(--muted);
            opacity: 0.8;
        }

        /* Layout components for demo */
        .container {
            background: white;
            border-radius: 12px;
            padding: var(--space-xl);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-bottom: var(--space-xl);
        }

        .grid {
            display: grid;
            gap: var(--space-lg);
            margin: var(--space-xl) 0;
        }

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

        .section-title {
            border-bottom: 2px solid var(--accent);
            padding-bottom: var(--space-sm);
            margin-bottom: var(--space-lg);
        }

        /* Responsive adjustments */
        @media (min-width: 768px) {
            :root {
                --text-base-size: 1.05rem;
                --text-scale-ratio: 1.25;
            }
            
            body {
                padding: var(--space-xl);
            }
        }

        @media (min-width: 1024px) {
            :root {
                --text-base-size: 1.1rem;
                --text-scale-ratio: 1.333; /* Perfect fourth scale */
            }
        }

        /* Helper class to show the current breakpoint */
        .breakpoint-info {
            position: fixed;
            top: 10px;
            right: 10px;
            background: var(--accent);
            color: white;
            padding: 5px 10px;
            border-radius: 3px;
            font-size: var(--text-sm);
            z-index: 1000;
        }

        /* Demo content styles */
        .content-block {
            margin-bottom: var(--space-xl);
        }

        .color-swatch {
            display: inline-block;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            vertical-align: middle;
            margin-right: 8px;
        }

        .swatch-primary {
            background-color: var(--accent);
        }

        .swatch-muted {
            background-color: var(--muted);
        }

body {overflow-x: hidden;}

/* PRODUCTS: page is light; heavy decorative background */
body.page-products{background:var(--bg-dark);color:#0b1220}
body.site-header .logo{color:var(--accent)}

.chip-bar{position:fixed;right:22px;top:50%;transform:translateY(-50%);display:flex;flex-direction:column;gap:10px;z-index:80}
.chip{background:rgba(2,6,23,0.04);padding:10px 14px;border-radius:999px;cursor:pointer;border:1px solid rgba(2,6,23,0.04);color:#0b1220}
.chip.active{background:linear-gradient(90deg,var(--accent),var(--accent-neon));color:var(--bg-dark);font-weight:700;box-shadow:0 8px 30px rgba(255,106,0,0.08)}

.products-viewport{min-height:100vh;position:relative;overflow:hidden}
.products-bg{position:absolute;inset:0;pointer-events:none;z-index:2}
.pblob{position:absolute;border-radius:50%;opacity:0.9;filter:blur(24px);transform:translate3d(0,0,0)}
.pblob.b1{width:420px;height:420px;left:-8%;top:5%;background:radial-gradient(circle at 30% 30%, rgba(255,106,0,0.22), rgba(255,106,0,0.06))}
.pblob.b2{width:320px;height:320px;right:6%;top:18%;background:radial-gradient(circle at 60% 40%, rgba(255,138,61,0.18), rgba(255,138,61,0.04))}
.pblob.b3{width:260px;height:260px;left:20%;bottom:10%;background:radial-gradient(circle at 30% 70%, rgba(255,106,0,0.12), rgba(255,255,255,0.02))}
.pblob.b4{width:180px;height:180px;right:30%;bottom:18%;background:radial-gradient(circle at 40% 30%, rgba(255,200,150,0.12), rgba(255,200,150,0.02))}
.pblob.b5{width:140px;height:140px;left:52%;top:36%;background:radial-gradient(circle at 30% 30%, rgba(255,106,0,0.10), rgba(255,255,255,0.01))}

.products-viewport .product-section{min-height:100vh;display:flex;align-items:center;justify-content:center;padding:120px 20px;z-index:10}
.product-card{display:flex;gap:28px;align-items:center;max-width:960px;width:100%;background:#ffffff;padding:28px;border-radius:20px;box-shadow:0 8px 30px rgba(2,6,23,0.06);transition:transform .6s ease,box-shadow .6s}
.product-card.active{transform:translateY(-8px);box-shadow:0 28px 70px rgba(2,6,23,0.08)}
.product-card.portrait{flex-direction:row}
.product-media{flex:0 0 360px;position:relative}
.product-media img{width:100%;height:auto;border-radius:14px;display:block}
.variants{overflow:hidden;position:relative;height:540px}
.variant{position:absolute;inset:0;opacity:0;transform:translateY(12px);transition:all .6s cubic-bezier(.2,.9,.2,1)}
.variant.active{opacity:1;transform:translateY(0)}
.variant-dots{position:absolute;left:50%;transform:translateX(-50%);bottom:12px;display:flex;gap:8px}
.variant-dots button{width:10px;height:10px;border-radius:50%;border:1px solid rgba(2,6,23,0.06);background:transparent}
.variant-dots button.active{background:var(--accent);border-color:var(--accent)}
.product-info{flex:1}
.product-info h2{margin-top:0}
.eyebrow{color:#475569;text-transform:uppercase;font-size:12px}


/* CONTACT */
.contact-main{padding:120px 20px;display:flex;flex-direction:column;align-items:center}
.contact-card{background:linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));padding:28px;border-radius:16px;max-width:720px;width:100%;text-align:center}
.contact-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin-top:20px}
.contact-item{display:flex;flex-direction:column;align-items:center}
.contact-item .icon{width:46px;height:46px;fill:var(--muted);margin-bottom:8px}
.contact-link{color:var(--accent);text-decoration:none;font-weight:600;transition:transform .35s cubic-bezier(.2,.9,.2,1)}
.contact-link:hover{transform:translateY(-6px);text-shadow:0 6px 18px rgba(255,106,0,0.12)}
.social-row{display:flex;gap:10px}
.social{padding:8px 12px;border-radius:8px;background:rgba(255,255,255,0.02)}
.fun-note{color:var(--muted);margin-top:12px}

/* FOOTER animations */
.site-footer{padding:60px 20px;position:relative;overflow:visible}
.footer-inner{max-width:var(--maxwidth);margin:0 auto;display:flex;justify-content:space-between;align-items:center;gap:20px}
.footer-left .logo{font-size:18px}
.footer-right .foot-nav a{margin-right:12px;color:var(--muted);text-decoration:none}
.footer-blob{position:absolute;left:0;right:0;bottom:-20px;height:200px;width:100%;pointer-events:none;transform-origin:center}
.footer-blob .blob-group .f1{animation:blob-move 8s ease-in-out infinite}
.footer-blob .blob-group .f2{animation:blob-move 11s ease-in-out infinite reverse}
@keyframes blob-move{0%{transform:translateY(0) scale(1)}50%{transform:translateY(-8px) scale(1.02)}100%{transform:translateY(0) scale(1)}}

/* Responsive tweaks */
@media (max-width:1100px){
  .about-sections{grid-template-columns:1fr}
  .sample-grid{grid-template-columns:1fr}
  .footer-inner{flex-direction:column;align-items:flex-start}
}
@media (max-width:900px){
  .product-card{flex-direction:column}
  .product-media{flex-basis:auto;width:80%}
  .site-header{left:18px;transform:none;width:calc(100% - 36px)}
  .chip-bar{right:12px}
  .track{animation:none;overflow:auto}
  .track{padding:12px}
}





/* ----------------------------- */





/* - Preloader */


.container {
text-align: center;
padding: 20px;
max-width: var(--maxwidth);
margin: 0 auto;
}

/* Preloader Styles */
.preloader {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: var(--bg);
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
z-index: 10000;
}

.logo-container {
position: relative;
width: 422px;
height: 121px;
}

.vana-svg {
width: 100%;
height: 100%;
}

/* Neon outline effect */
.outline-path {
fill: none;
stroke: var(--accent);
stroke-width: 2;
stroke-dasharray: 1000;
stroke-dashoffset: 1000;
filter: url(#neon-glow);
}


/* - homepage carousel */

.carousel-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
}

.carousel-track {
  display: flex;
  width: 500%; /* 5 slides = 5 * 100% */
  animation: autoscroll 25s ease-out infinite;
}

.carousel-slide {
  width: 20%; /* 100% / 5 slides */
  flex-shrink: 0;
}

.carousel-slide img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  height: 100vh;
}

/* Pause animation on hover */
.carousel-container:hover .carousel-track {
  animation-play-state: paused;
}

@keyframes autoscroll {
  0%, 16% { /* First slide shows for 4.8s (0% to 16%) */
    transform: translateX(0%);
  }
  20%, 36% { /* Second slide shows for 4.8s (20% to 36%) */
    transform: translateX(-20%);
  }
  40%, 56% { /* Third slide shows for 4.8s (40% to 56%) */
    transform: translateX(-40%);
  }
  60%, 76% { /* Fourth slide shows for 4.8s (60% to 76%) */
    transform: translateX(-60%);
  }
  80%, 96% { /* Fifth slide shows for 4.8s (80% to 96%) */
    transform: translateX(-80%);
  }
  100% { /* Return to first slide */
    transform: translateX(0%);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .carousel-track {
    animation-duration: 20s;
  }
}


/* --- */

/* Animation keyframes */
@keyframes drawOutline {
to {
    stroke-dashoffset: 0;
}
}

@keyframes pulseGlow {
0% {
    filter: url(#neon-glow);
}
50% {
    filter: url(#neon-glow-pulse);
}
100% {
    filter: url(#neon-glow);
}
}

@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}

@keyframes fadeOut {
from { opacity: 1; }
to { opacity: 0; }
}

/* Responsive design */
@media (max-width: 768px) {
.logo-container {
    width: 300px;
    height: 86px;
}
.carousel-container {
    height: 50vh;
  }
  
  .carousel-slide img {
    height: 50vh;
    object-fit: cover;
  }
  
  .hero-inner {
    position: relative;
    height: auto;
    padding: 20px;
    margin-top: 20vh;
  }
  
  .cta-row {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .btn {
    width: 100%;
    text-align: center;
  }

}

@media (max-width: 480px) {
.logo-container {
    width: 250px;
    height: 72px;
}

}

/*- Home */

*{box-sizing:border-box}
html,body{height:100%}
body{margin:0;background:var(--bg);color:var(--muted);line-height:1.4;transition:background .9s ease,color .5s; padding: 0;}
.site-header{position:fixed;top:18px;left:50%;transform:translateX(0%);width:calc(100% - 0px);max-width:var(--maxwidth);display:flex;justify-content:space-between;align-items:center;z-index:60}
.site-header .logo{font-weight:900;letter-spacing:4px;color:var(--accent);text-decoration:none;font-size:22px}
.site-header a{margin-left:18px;color:var(--muted);text-decoration:none}
.site-header a:hover{color:var(--accent)}
/* HERO */
.hero{position:relative;min-height:100vh;display:flex;align-items:center;justify-content:center;padding-top:120px}
.hero-decor{position:absolute;inset:0;overflow:hidden;z-index:1}
.hero-svg{width:120%;height:100%;transform:translateX(-5%)}
.blob{fill:rgba(255,106,0,0.06)}
.blob-2{fill:rgba(255,106,0,0.04)}
.floating-bubbles{position:absolute;inset:0}
.floating-bubbles::before{content:"";position:absolute;left:12%;top:30%;width:60px;height:60px;border-radius:50%;background:rgba(255,106,0,0.12);animation:float 6s ease-in-out infinite}
.floating-bubbles::after{content:"";position:absolute;right:10%;top:12%;width:90px;height:90px;border-radius:50%;background:rgba(255,255,255,0.02);animation:float 9s ease-in-out infinite}
@keyframes float{0%{transform:translateY(0)}50%{transform:translateY(-18px)}100%{transform:translateY(0)}}

.hero-inner {
    position: absolute;
    z-index: 10;
    width: 100%;
    text-align: center;
    padding: 40px;
    border-radius: 22px;
    height: 100%;
    background: rgba(255,255,255,0.65);
}
.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, var(--accent), var(--accent-neon));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    z-index: 10;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.5s;
    margin-top: 30vh;
}
.lead{color:var(--muted);font-weight:300;margin-bottom:20px}
.btn{display:inline-block;padding:12px 20px;border-radius:12px;text-decoration:none;font-weight:600}
.btn-primary{background:linear-gradient(90deg,var(--accent),var(--accent-neon));color:var(--bg)}
.btn-ghost{border:1px solid rgba(255,255,255,0.06);color: var(--fg);}

.features{display:flex;justify-content:center;gap:28px;padding:60px 20px 140px}
.feature{background:var(--glass);padding:22px;border-radius:14px;max-width:280px;text-align:center}

.feature p{color:var(--muted);margin:0;font-size: var(--font-body-size);}

.feature h3 {
    margin: 0 0 6px;
    font-size: 1.5rem;
}


.home-content{padding:60px 20px 40px}
.home-content .container{max-width:var(--maxwidth);margin:0 auto; text-align: left;}
.home-content .container p{padding: 0.5rem 0rem; line-height: 2rem;}
.sample-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;margin-top:18px}
.sample-grid img{width:100%;border-radius:12px}

/* - Products */

.parallax {
    background-image: url("/imgs/products_hero.png");
    min-height: 100vh;
    min-width: 100vw;
    margin: -2em;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.parallax_hero {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: var(--radius);
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 80vw;
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    align-content: space-around;
    flex-direction: column;
    margin-top: 20vh;
}
/* Header Styles */
.site-header {
    display: none;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(207, 211, 216, 0.32);
    color: var(--fg);
    border-bottom: 1px solid rgba(2,6,23,0.04);
    transition: all 0.4s ease;
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(17.3px);
    -webkit-backdrop-filter: blur(17.3px);
}

.site-header.scrolled {
    padding: 1rem 2rem;
    box-shadow: var(--shadow-md);
}

.site-header .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo img {
    width: 4.2rem;
    height: inherit;
    padding-right: 0.5em;
}

.site-header {
    display: flex;
    gap: 2rem;
}

.site-header a {
    color: var(--muted);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.site-header a:hover {
    color: var(--accent);
}

/* Hero Section */
.hero-products {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-color: var(--bg);
}

.hero-products h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, var(--accent), var(--accent-neon));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    z-index: 10;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.5s;
}

.hero-products p {
    font-size: 1.2rem;
    width: 100%;
    color: var(--muted);
    margin-bottom: 2rem;
    position: relative;
    z-index: 10;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.8s;
    padding: 0 9rem;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
}

.scroll-indicator p {
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: var(--muted);
}

.scroll-line {
    width: 2px;
    height: 50px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    border-radius: 1px;
}

/* Background Animation Canvas */
#animation-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* Main Content */
main {
    position: relative;
    z-index: 5;
}

/* Background Blobs */
.products-viewport {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.products-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
     backdrop-filter: blur(22px) saturate(200%);
    -webkit-backdrop-filter: blur(22px) saturate(200%);
    background-color: rgba(255, 255, 255, 0.23);
    border-radius: 12px;
    border: 1px solid rgba(209, 213, 219, 0.3);
}

.pblob {
    position: absolute;
    border-radius: 50%;
    opacity: 0.9;
    filter: blur(24px);
    transform: translate3d(0,0,0);
}

.pblob.b1 {
    width: 420px;
    height: 420px;
    left: -8%;
    top: 5%;
    background: radial-gradient(circle at 30% 30%, rgba(255,106,0,0.22), rgba(255,106,0,0.06));
}

.pblob.b2 {
    width: 320px;
    height: 320px;
    right: 6%;
    top: 18%;
    background: radial-gradient(circle at 60% 40%, rgba(255,138,61,0.18), rgba(255,138,61,0.04));
}

.pblob.b3 {
    width: 260px;
    height: 260px;
    left: 20%;
    bottom: 10%;
    background: radial-gradient(circle at 30% 70%, rgba(255,106,0,0.12), rgba(255,255,255,0.02));
}

.pblob.b4 {
    width: 180px;
    height: 180px;
    right: 30%;
    bottom: 18%;
    background: radial-gradient(circle at 40% 30%, rgba(255,200,150,0.12), rgba(255,200,150,0.02));
}

.pblob.b5 {
    width: 140px;
    height: 140px;
    left: 52%;
    top: 36%;
    background: radial-gradient(circle at 30% 30%, rgba(255,106,0,0.10), rgba(255,255,255,0.01));
}

/* Category Navigation */
.chip-bar {
    position: fixed;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 80;
}


.chip {
    background: rgba(207, 211, 216, 0.8);
    padding: 10px 14px;
    border-radius: 999px;
    cursor: pointer;
    border: 1px solid rgba(2,6,23,0.04);
    box-shadow: var(--shadow-md);
    color: var(--fg);
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-family: var(--font-heading);
    font-weight: 600;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blure(10px);
}

.chip:hover {
    background: rgba(255,106,0,0.1);
}

.chip.active {
    background: linear-gradient(90deg, var(--accent), var(--accent-neon));
    color: #081024;
    font-weight: 700;
    box-shadow: 0 8px 30px rgba(255,106,0,0.08);
}

/* Product Sections */
.products-viewport .product-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 150px 20px;
    z-index: 10;
    position: relative;
}

.products-viewport {
  margin-top: 10vh;
}

.product-card {
    display: flex;
    gap: 40px;
    align-items: center;
    max-width: 1100px;
    width: 100%;
    background: var(--card);
    padding: 40px;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    transition: transform 0.6s ease, box-shadow 0.6s;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px);
}

.product-card.revealed {
    opacity: 1;
    transform: translateY(0);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255,106,0,0.03), rgba(255,138,61,0.01));
    z-index: -1;
}

.product-card.active {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.product-card.portrait {
    flex-direction: row;
}

.product-media {
    flex: 0 0 420px;
    position: relative;
}

.product-media img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
    transition: all 0.5s ease;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.product-card:hover .product-media img {
    transform: scale(1.03);
    box-shadow: 0 25px 40px rgba(0,0,0,0.15);
}

.variants {
    overflow: hidden;
    position: relative;
    height: 580px;
    border-radius: 16px;
}

.variant {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    inset: 0;
    opacity: 0;
    transform: translateY(12px);
    transition: all 0.6s cubic-bezier(0.2,0.9,0.2,1);
}

.variant.active {
    opacity: 1;
    transform: translateY(0);
}

.variant-dots {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 12px;
    display: flex;
    gap: 8px;
}

.variant-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid rgba(2,6,23,0.06);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.variant-dots button.active {
    background: var(--accent);
    border-color: var(--accent);
    transform: scale(1.2);
}

.product-info {
    flex: 1;
}
.nav-btn {
    position: absolute;
    top: 50%;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--bg);
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.nav-btn i {
    font-size: 24px;
    color: var(--accent);
    transition: color 0.3s ease;
}

.nav-btn:hover {
    transform: scale(1.2);
    font-size: 28px;
    background: var(--accent);
}
.nav-btn:hover i {
    color: var(--bg-dark);
}

.fa-chevron-left:before {
    content: "\f053";
}
.fa-chevron-right:before {
    content: "\f054";
}
.nav-btn.prev {
    left: 20px;
}

.nav-btn.next {
    right: 20px;
}

.product-info h2 {
    margin-top: 0;
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    color: var(--muted);
}

.eyebrow {
    color: var(--accent);
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    display: inline-block;
}

.product-info p {
    color: var(--muted);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.product-features {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--muted);
    background: rgba(2,6,23,0.03);
    padding: 8px 12px;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.feature i {
    color: var(--accent);
}



/* Second product special styling */
.product-section:nth-child(2) .product-media {
    transform: perspective(800px) rotateY(-5deg);
    transition: transform 0.7s ease;
}

.product-section:nth-child(2) .product-card:hover .product-media {
    transform: perspective(800px) rotateY(0deg);
}

.product-section:nth-child(2) .product-media::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid var(--accent-neon);
    border-radius: 20px;
    opacity: 0.3;
    z-index: -1;
    transition: all 0.5s ease;
}

.product-section:nth-child(2) .product-card:hover .product-media::after {
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    opacity: 0.5;
}

/*- Footer */
.site-footer {
    position: relative;
    background: var(--bg-dark);
    color: var(--fg);
    font-family: var(--font-body);
    overflow: hidden;
    width: 100vw;
    height: auto;
    padding: 0;
}

.footer-inner {
    max-width: 100vw;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    z-index: 2;
    height: 25vh;
    padding: 2rem;
}

.footer-left p {
  margin-top: 0.5rem;
  color: var(--muted);
}

.foot-nav {
  margin-bottom: 1rem;
}
.foot-nav a {
  color: var(--fg);
  margin: 0 0.75rem;
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition-fast);
}
.foot-nav a:hover {
  color: var(--accent);
}

.footer-socials {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}
.footer-socials .social {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: var(--white);
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
}
.footer-socials .social:hover {
  background: var(--accent-neon);
  transform: scale(1.1) rotate(6deg);
}

.footer-blob {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: auto;
    z-index: 1;
    height: 25vh;
}


/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pathReveal {
    from {
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    }
    to {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
}

/* Responsive Design */
@media (max-width: 1000px) {
    .product-card {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .product-media {
        flex: 0 0 auto;
        width: 100%;
        max-width: 400px;
    }
    
    .variants {
        height: 400px;
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .chip-bar {
        bottom: 20px;
        top: auto;
        left: 0;
        right: 0;
        flex-direction: row;
        justify-content: center;
        transform: none;
        background: rgba(255,255,255,0.8);
        padding: 10px;
        border-radius: 50px;
        width: fit-content;
        margin: 0 auto;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);

    }
    
}

@media (max-width: 600px) {
  .home-content {
    margin-top: 12vh;
  }
    .hero h1 {
        font-size: 2rem;
    }
    
    .site-header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .product-features {
        flex-direction: column;
        align-items: center;
        gap: 0em;
    }
    
    .product-card {
        padding: 25px;
    }
    
    .product-info h2 {
        font-size: 1.8rem;
    }
    .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    padding: 3rem 1rem;
  }
  
  .product-info h2 {
    font-size: 1.8rem;
  }
  
  .chip-bar {
    bottom: 20px;
    top: auto;
    left: 0;
    right: 0;
    flex-direction: row;
    justify-content: center;
    transform: none;
    background: rgba(255,255,255,0.8);
    padding: 10px;
    border-radius: 50px;
    width: fit-content;
    margin: 0 auto;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
  
  .chip {
    font-size: 12px;
    padding: 8px 12px;
  }
}

    .overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.6);
      z-index: 98;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s ease;
    }

    .overlay.active {
      opacity: 1;
      visibility: visible;
    }


/*- about section */

.carousel-container-about {
    display: flex;
    overflow: hidden;
    scroll-behavior: smooth;
    border-radius: var(--radius);
    background: white;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    padding: 2rem;
}

.team-member {
    flex: 0 0 auto;
    width: 300px;
    margin: 0 1.5rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.team-member > .member-name {
    font-size: var(--font-body-size);
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    border: 4px solid var(--accent);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* - temp */

.member-image > i {
    font-size: 120px;
}

.member-name {
    color: var(--accent-dark);
    margin-bottom: 0.5rem;
}

.member-role {
    color: var(--muted);
    margin-bottom: 1rem;
    font-weight: 500;
}

.member-desc {
    font-size: 0.95rem;
    color: var(--muted);
}

.carousel-nav {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--bg-dark);
    margin: 0 0.5rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.carousel-dot.active {
    background: var(--accent);
}

.carousel-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
}

.carousel-btn {
    background: var(--accent);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.carousel-btn:hover {
    background: var(--accent-dark);
    transform: scale(1.1);
}


.clients-section {
    margin: 2rem 0;
    width: 100vw;
    height: auto;
}


.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    margin-left: 5vw;
}

.client-logo {
    background: white;
    padding: 0.5rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.client-logo:hover {
    transform: translateY(-5px);
}

.client-logo img {
    width: fit-content;
    height: 80%;
}


.mvv {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
}

.mvv-div {
    display: flex;
    width: 90vw;
    height: 75vh;
    flex-direction: row;
    align-content: flex-start;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
}

.mvv-div > h2 {
    padding-left: 2rem;
}

.mvv-div > img {
    width: 5rem;
}

.mvv-para > b {
    font-size: 1.2rem;
    font-weight: bold;
    padding-right: .3em;
    line-height: 3rem;
}

.mvv-para {
    text-align: justify;
    font-family: var(--font-body);
    line-height: 2.5rem;
    padding: 7rem;
    font-size: var(--font-body-size);
}

.about-body {
    margin-top: 20vh;
    display: flex;
    align-items: center;
    flex-direction: column;
    height: max-content;
}

.office-team > h2 {
    padding-left: 5vw;
    font-family: var(--font-heading);
    font-size: var(--font-heading-size);
}

.about-next-bg {
    width: 100vw;
    height: 100vh;
    background-image: url("/imgs/shop_outside.jpg");
    background-attachment: fixed;
    background-repeat: round;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-next {
    width: 80%;
    height: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.4);
}

.about-next > h2 {
    font-size: 2.3rem;
    color: var(--accent-dark);
    margin-bottom: 0.5em;
}

.about-next > a {
    width: 200px;
    height: 50px;
    color: var(--accent);
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    background: var(--glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-md);
}

.about-next > a:hover {
    box-shadow: var(--shadow-md);
    background-color: #ffffff5a;
    
}



/* - Contact */

.contact-page {
  padding: 3rem 1.5rem;
  background: var(--bg);
  font-family: var(--font-body);
  margin-top: 20vh;
}

.contact-hero {
  text-align: center;
  margin-bottom: 2.5rem;
}
.contact-hero h1 {
  font-family: var(--font-heading);
  font-size: var(--font-heading-size);
  color: var(--accent);
}
.contact-hero p {
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
}

.contact-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.contact-card {
    background: var(--card);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s var(--transition-fast);
    flex: 1 1 250px;
    max-width: 300px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: column;
}
.contact-card:hover {
  transform: translateY(-6px);
}
.contact-card i {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 0.8rem;
}
.contact-card h3 {
  margin-bottom: 0.5rem;
  color: var(--fg);
}
.contact-card a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}
.contact-card a:hover {
  text-decoration: underline;
}

.socials {
  text-align: center;
}
.socials h2 {
  font-family: var(--font-heading);
  margin-bottom: 1.5rem;
  color: var(--fg);
}
.social-icons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}
.social {
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-size: 1.4rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
}
.social:hover {
  background: var(--accent-neon);
  transform: scale(1.1) rotate(8deg);
}


/* - Gallery */

.gallery-section {
    width: 100vw;
    height: max-content;
    display: grid;
    grid-template-columns: auto auto auto;
    align-content: space-around;
    justify-content: space-around;
    justify-items: center;
    margin-left: -0.5em;
}

.gallery-product {
    width: 30vw;
    height: 20em;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: var(--card);
    box-shadow: var(--shadow-md);
    border-radius: var(--radius-md);
    height: 50vh;
    margin-bottom: 1.5em;
}

.gallery-product-img {
    width: 90%;
    height: 90%;
}

.gallery-product-img > img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-loc {
    font-family: var(--font-heading);
    font-size: var(--font-body-size);

}

.footer-loc a {
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
}

/* -responsive */

/* Mobile Hamburger Menu Styles */
.hamburger {
  display: none;
  padding: 15px;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
  outline: none;
  z-index: 101;
}

.hamburger-box {
  width: 30px;
  height: 24px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}

.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 30px;
  height: 3px;
  background-color: var(--accent);
  border-radius: 4px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}

.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}

.hamburger-inner::before {
  top: -10px;
}

.hamburger-inner::after {
  bottom: -10px;
}

/* Collapse animation */
.hamburger--collapse .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse .hamburger-inner::after {
  top: -20px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}

.hamburger--collapse .hamburger-inner::before {
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse.active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--collapse.active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
}

.hamburger--collapse.active .hamburger-inner::before {
  top: 0;
  transform: rotate(-90deg);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}


    /* Mobile Navigation */
    .mobile-nav {
      position: fixed;
      top: 0;
      right: -100%;
      width: 85vw;
      height: 100vh;
      background: var(--bg);
      z-index: 99;
      display: flex;
      flex-direction: column;
      padding: 100px 30px 30px;
      transition: right 0.4s ease;
    }

    .mobile-nav.active {
      right: -10%;
    }

    .mobile-nav a:hover {
      color: var(--accent);
    }

.mobile-nav a {
  margin: 15px 0;
  padding: 10px;
  border-bottom: 1px solid #eee;
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
}







/* - Mobile Responsive Styles */
@media (max-width: 1024px) {

  .desktop-nav {
    display: none;
  }
  
  .hamburger {
    display: block;
  }
  
  .site-header {
    left: 0px;
    transform: none;
    width: 100vw;
    padding: 1rem;
    display: flex;
    flex-direction: row;
  }
  
  .hero h1 {
    font-size: 2.3rem;
  }

  .hero-products p {
    font-size: var(--font-body-size);
    width: 100%;
    color: var(--muted);
    margin-bottom: 0rem;
    position: relative;
    z-index: 10;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.8s;
    padding: 0px 0rem;
  }
  
  .hero-inner {
    padding: 20px;
    margin-top: -5em;
    border-radius: 0;
  }
  
  .features {
    flex-direction: column;
    padding: 40px 20px;
  }
  
  .feature {
    max-width: 100%;
    margin-bottom: 15px;
  }
  
  .sample-grid {
    grid-template-columns: 1fr;
  }
  
  .product-card {
    flex-direction: column;
    padding: 20px;
  }
  
  .product-media {
    flex-basis: auto;
    width: 100%;
    margin-bottom: 20px;
  }
  
  .variants {
    height: 300px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .gallery-section {
    grid-template-columns: 1fr;
  }
  
  .gallery-product {
    width: 100%;
    height: auto;
  }

  .parallax_hero {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: var(--radius);
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 80vw;
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    align-content: space-around;
    flex-direction: column;
    margin-top: 0vh;
  }
  .hero-products {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-color: var(--accent-neon);
  }
  .parallax {
    background-image: none;
    min-height: 100vh;
    min-width: 100vw;
    background-attachment: unset;
    background-position: unset;
    background-repeat: unset;
    background-size: unset;
}

.scroll-line {
    display: none;
}

.chip-bar {
    bottom: 20px;
    top: auto;
    left: 0;
    right: 0;
    flex-direction: row;
    justify-content: center;
    transform: none;
    background: rgba(255,255,255,0.8);
    padding: 10px;
    border-radius: 50px;
    width: fit-content;
    margin: 0 auto;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.product-card.portrait {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    height: max-content;
    align-content: center;
}

.product-media img {
  object-fit: scale-down;
}

.carousel-container-about {
    animation: scrollCarousel 25s linear infinite;
  }
  .office-team > h2 {
    padding-left: 20vw;
    font-family: var(--font-heading);
    font-size: var(--font-heading-size);
}
  
}

@media (max-width: 432px) {

  .desktop-nav {
    display: none;
  }
  
  .hamburger {
    display: block;
  }
  
  .site-header {
    width: 100%;
    padding: 1rem;
    display: flex;
    flex-direction: row;
    border-radius: var(--radius-md);
    border-top-right-radius: 0px;
    border-top-left-radius: 0px;
}
  
  .hero h1 {
    font-size: var(--font-heading-size);
  }

  .hero-products p {
    font-size: var(--font-body-size);
    width: 100%;
    color: var(--muted);
    margin-bottom: 0rem;
    position: relative;
    z-index: 10;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.8s;
    padding: 0px 0rem;
  }
  
  .hero-inner {
    padding: 20px;
    margin-top: -5em;
    border-radius: 0;
  }
  
  .features {
    flex-direction: column;
    padding: 40px 20px;
  }
  
  .feature {
    max-width: 100%;
    margin-bottom: 15px;
  }
  
  .sample-grid {
    grid-template-columns: 1fr;
  }
  
  .product-card {
    flex-direction: column;
    padding: 20px;
  }
  
  .product-media {
    flex-basis: auto;
    width: 100%;
    margin-bottom: 20px;
  }
  
  .variants {
    height: 300px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .gallery-section {
    grid-template-columns: 1fr;
  }
  
  .gallery-product {
    width: 100%;
    height: auto;
  }

  .parallax_hero {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: var(--radius);
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 80vw;
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    align-content: space-around;
    flex-direction: column;
    margin-top: 0vh;
  }
  .hero-products {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-color: var(--accent-neon);
  }
  .parallax {
    background-image: none;
    min-height: 105vh;
    min-width: 100vw;
    background-attachment: unset;
    background-position: unset;
    background-repeat: unset;
    background-size: unset;
    margin: 0em 0em;
  }

  .mvv-div > h2 {
    padding-left: 0em;
  }
  
}

/* About Page Mobile Optimizations */

/* MVV Section - Mobile First */
.mvv {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    padding: 2rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.mvv-div {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    width: 100%;
}

.mvv-div img {
    max-width: 120px;
    height: auto;
    transition: transform 0.3s ease;
}

.mvv-div:hover img {
    transform: scale(1.05);
}

.mvv-para {
    text-align: justify;
    line-height: 1.8;
    font-size: 1.1rem;
    max-width: 100%;
    padding: 0 1rem;
}

.mvv-para b {
    font-weight: 600;
    color: var(--accent);
}

/* Team Carousel - CSS Only Auto-scroll */
.team-carousel {
    position: relative;
    margin: 3rem 0;
    overflow: hidden;
    width: 100%;
}

.carousel-container-about {
    display: flex;
    gap: 2rem;
    padding: 1rem;
}

.carousel-container-about:hover {
    animation-play-state: paused;
}

.team-member {
    flex: 0 0 auto;
    width: 280px;
    background: var(--card);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-neon));
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

.member-name {
    color: var(--accent-dark);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.member-role {
    color: var(--muted);
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.member-desc {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.5;
}

/* Clients Section */
.clients-section {
    margin: 4rem 0;
    width: 100%;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem auto;
    max-width: 1200px;
    padding: 0 1rem;
}

.client-logo {
    background: var(--card);
    padding: 2rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.client-logo:hover {
    transform: translateY(-3px);
}

.client-logo img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
}

/* About Next Section */
.about-next-bg {
    width: 100%;
    height: 60vh;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    background-repeat: no-repeat;
}

.about-next {
    width: 90%;
    max-width: 600px;
    padding: 3rem 2rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.9);
    text-align: center;
}

.about-next h2 {
    font-size: 2.2rem;
    color: var(--accent-dark);
    margin-bottom: 1.5rem;
}

.about-next a {
    display: flex;
    padding: 0rem 2rem;
    background: linear-gradient(90deg, var(--accent), var(--accent-neon));
    color: white;
    text-decoration: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: transform 0.3s ease;
    min-height: 4rem;
    justify-content: center;
    align-items: center;
}

.about-next a:hover {
    transform: translateY(-2px);
}

/* Carousel Animation */
@keyframes scrollCarousel {
    0% {
        transform: translateX(100vw);
    }
    95% {
      transform: translateX(calc((-100vw) - 2rem * 4));
    }
    100% {
        transform: translateX(100vw);
    }
}

/* Media Queries */

/* Tablet Landscape - 1024px */
@media (max-width: 1024px) {
    .mvv {
        gap: 2.5rem;
        padding: 2rem;
    }
    
    .mvv-div {
        gap: 1.25rem;
    }
    
    .mvv-para {
        font-size: 1.05rem;
        line-height: 1.7;
    }
    
    .team-member {
        width: 260px;
    }
    
    .about-next h2 {
        font-size: 2rem;
    }
}

/* Tablet - 900px */
@media (max-width: 900px) {
    .mvv-div img {
        display: none;
    }
    
    .mvv-div {
        gap: 1rem;
    }
    
    .mvv-para {
        text-align: center;
        font-size: 1rem;
        line-height: 1.6;
        padding: 0;
    }
    
    .carousel-container-about {
        animation-duration: 25s;
    }
    
    .team-member {
        width: 240px;
        padding: 1.5rem;
    }
    
    .member-image {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }
    
    .clients-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 1rem;
    }
    
    .client-logo {
        height: 100px;
        padding: 1.5rem;
    }
    
    .about-next {
        padding: 2.5rem 1.5rem;
    }
    
    .about-next h2 {
        font-size: 1.8rem;
    }
}

/* Mobile Large - 600px */
@media (max-width: 600px) {
    .mvv {
        gap: 2rem;
        padding: 1.5rem 1rem;
    }
    
    .mvv-div {
        margin-top: 5vh;
        height: max-content;
        width: 100vw;
    }
    
    .mvv-para {
        font-size: 0.95rem;
        line-height: 1.5;
        max-width: 80vw;
    }
    
    .team-carousel {
        margin: 2rem 0;
    }
    
    .carousel-container-about {
        gap: 1rem;
        padding: 0.5rem;
    }

    .carousel-container-about:nth-child(1) {
      display: flex;
    }
    
    .team-member {
        width: 200px;
        padding: 1.25rem;
    }
    
    .member-image {
        width: 80px;
        height: 80px;
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .office-team {
      margin-top: 10em;
    }
    
    .office-team > h2 {
      font-size: 2em;
      padding-left: 0em;
      width: 100vw;
      margin-left: 70vw;
  }
    
    
    .member-name {
        font-size: 1.1rem;
    }
    
    .member-role {
        font-size: 0.9rem;
    }
    
    .member-desc {
        font-size: 0.85rem;
    }
    
    .clients-section {
        margin: 3rem 0;
    }
    
    .clients-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 0.75rem;
        margin: 1.5rem auto;
    }
    
    .client-logo {
        height: 80px;
        padding: 1rem;
    }
    
    .about-next-bg {
        height: 80vh;
    }
    
    .about-next {
        padding: 2rem 1rem;
        width: 95%;
    }
    
    .about-next h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .about-next a {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Mobile Small - 432px */
@media (max-width: 432px) {
    .mvv {
        gap: 1.5rem;
        padding: 1rem 0.5rem;
        margin-top: 0em;
        margin-left: 0em;
    }
    
    .mvv-para {
        font-size: 1em;
        line-height: 2em;
        text-align: justify;
        padding: 1em;
    }

    
    .team-carousel {
        margin: 1.5rem 0;
    }
    
    .carousel-container-about {
        animation-duration: 15s;
        gap: 0.75rem;
    }
    
    .team-member {
        width: 180px;
        padding: 1rem;
    }
    
    .member-image {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }
    
    .member-name {
        font-size: 1rem;
    }
    
    .member-desc {
        font-size: 0.8rem;
    }
    
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .client-logo {
        height: 70px;
        padding: 0.75rem;
    }
    
    .about-next-bg {
        height: 45vh;
    }
    
    .about-next {
        padding: 1.5rem 1rem;
    }
    
    .about-next h2 {
        font-size: 1.3rem;
    }
    
    .about-next a {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
    .office-team > h2 {
        font-size: 2em;
        padding-left: 0em;
        width: 100vw;
        margin-left: 90vw;
    }
}

/* Special adjustments for very small screens */
@media (max-width: 360px) {
    .mvv-para {
        font-size: 0.85rem;
    }
    
    .team-member {
        width: 160px;
    }
    
    .clients-grid {
        grid-template-columns: 1fr;
    }
}

/* Ensure no horizontal overflow */
.about-body {
    overflow-x: hidden;
    width: 100%;
}

/* Focus states for accessibility */
.about-next a:focus,
.team-member:focus {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .carousel-container-about {
        animation: none;
        overflow-x: auto;
        scroll-behavior: smooth;
    }
    
    .team-member:hover,
    .mvv-div img,
    .client-logo:hover,
    .about-next a:hover {
        transform: none;
    }
}


/* - footer responsive */
.site-footer {
  position: relative;
  padding: 3rem 0rem;
  margin-top: 4rem;
  overflow: hidden;
}

.footer-inner {
    position: relative;
    max-width: 100vw;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    z-index: 2;
}

/* Left side styles */
.footer-left {
  flex: 1;
  min-width: 300px;
}

.footer-left .logo {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.footer-left .muted {
  color: #666;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.4;
}

.footer-loc {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #666;
}

.footer-loc i {
  color: var(--primary, #ff6a00);
}

.footer-loc a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-loc a:hover {
  color: var(--primary, #ff6a00);
}

/* Right side styles */
.footer-right {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.5rem;
}

.foot-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: flex-end;
}

.foot-nav a {
  color: #666;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.foot-nav a:hover {
  color: var(--primary, #ff6a00);
}

.foot-nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--primary, #ff6a00);
  transition: width 0.3s ease;
}

.foot-nav a:hover::after {
  width: 100%;
}

/* Social icons */
.footer-socials {
  display: flex;
  gap: 1rem;
}

.footer-socials .social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 106, 0, 0.1);
  color: #666;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-socials .social:hover {
  background: var(--primary, #ff6a00);
  color: white;
  transform: translateY(-2px);
}

.footer-right small {
  color: #999;
  text-align: right;
}

/* Blob background */
.footer-blob {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.blob-group .f1 {
  animation: float 6s ease-in-out infinite;
}

.blob-group .f2 {
  animation: float 8s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Responsive design */
@media (max-width: 1024px) {
  .footer-inner {
    flex-direction: column;
    gap: 3rem;
    width: 100vw;
    height: max-content;
    margin-left: -1em;
  }
  
  .footer-right {
    align-items: flex-start;
    width: 100%;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 2rem;
  }
  
  .foot-nav {
    justify-content: flex-start;
    width: 100%;
  }
  
  .footer-right small {
    text-align: left;
    width: 100%;
  }
  
}

@media (max-width: 768px) {
  .site-footer {
    padding: 2rem 1rem;
  }
  
  .footer-right {
    align-items: center;
    text-align: center;
  }
  
  .foot-nav {
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
  }
  
  .footer-right small {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .footer-left, .footer-right {
    min-width: 100%;
  }
  
  .footer-socials {
    justify-content: center;
    width: 100%;
  }
}