/* ============================================
   CSS Variables - Color Scheme
   ============================================ */
:root {
    --primary-maroon: #DC2626; /* brand red */
    --primary-wine: #B91C1C;   /* deep red */
    --deep-wine: #991B1B;      /* darkest red accent */
    --secondary-wine: #EF4444; /* light red highlight */
    --black: #000000;
    --dark-grey: #2C2C2C;
    --medium-grey: #666666;
    --light-grey: #E8E8E8;
    --white: #FFFFFF;
    --bg-light: #F5F5F5;
    
    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
    scroll-padding-top: 80px;
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
    height: 100%;
    -webkit-overflow-scrolling: touch;
}

/* Force scroll snap on all scrollable containers */
html, body {
    scroll-snap-type: y mandatory;
}

/* Disable scroll snap on about page */
body.about-page {
    scroll-snap-type: none;
}

html:has(body.about-page) {
    scroll-snap-type: none;
}

body {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-regular);
    color: var(--dark-grey);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    position: relative;
    min-height: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    transition: transform 0.3s ease-out;
    padding-top: var(--spacing-sm);
    will-change: transform;
}

.navbar .container {
    max-width: 100%;
    padding: 0;
    position: relative;
}

.navbar .container::before {
    content: '';
    position: absolute;
    top: calc(1 * var(--spacing-sm));
    left: 0;
    width: 33.33%;
    height: calc(var(--spacing-sm) + 80px + 20px);
    background: var(--white);
    z-index: 1003;
    pointer-events: none;
    transform: skew(-5deg);
    transform-origin: top left;
    transition: all var(--transition-normal);
}

.navbar.scrolled .container::before {
    top: 0;
    height: calc(45px + 55px);
    width: calc(20% - 2 * var(--spacing-sm));
}

@media (min-width: 1025px) {
    .navbar.scrolled .nav-menu {
        left: calc(20% + var(--spacing-md));
    }
}

/* ============================================
   White Nav Bar Content
   ============================================ */
.white-nav-top {
    position: absolute;
    top: calc(var(--spacing-sm) + 0.5rem);
    left: calc(33.33% + var(--spacing-md));
    right: var(--spacing-xl);
    z-index: 1004;
    display: flex;
    justify-content: space-between;
    align-items: center;
    pointer-events: auto;
}

.nav-email {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--primary-maroon);
    font-family: 'Bahnschrift', sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    transition: color var(--transition-fast);
}

.nav-email:hover {
    color: var(--deep-wine);
}

.nav-email:hover .email-icon {
    color: orange;
}

.nav-email:hover .email-icon svg {
    stroke: orange;
}

.nav-email:hover .email-text {
    color: var(--black);
}

.nav-contact-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.email-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: orange;
}

.email-icon svg {
    width: 16px;
    height: 16px;
    stroke: orange;
}

.email-text {
    font-size: 0.875rem;
    color: var(--black);
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--primary-maroon);
    font-family: 'Bahnschrift', sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    transition: color var(--transition-fast);
}

.nav-phone:hover {
    color: var(--deep-wine);
}

.nav-phone:hover .phone-icon {
    color: orange;
}

.nav-phone:hover .phone-icon svg {
    stroke: orange;
}

.nav-phone:hover .phone-text {
    color: var(--black);
}

.phone-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: orange;
}

.phone-icon svg {
    width: 16px;
    height: 16px;
    stroke: orange;
}

.phone-text {
    font-size: 0.875rem;
    color: var(--black);
}

.nav-social {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    color: var(--primary-maroon);
    transition: all var(--transition-fast);
    border-radius: 50%;
}

.social-link[aria-label="Facebook"] {
    color: #1877F2;
}

.social-link[aria-label="LinkedIn"] {
    color: #0077B5;
}

.social-link:hover {
    transform: translateY(-2px);
}

.social-link[aria-label="Facebook"]:hover {
    color: #1877F2;
}

.social-link[aria-label="LinkedIn"]:hover {
    color: #0077B5;
}

.social-link svg {
    width: 100%;
    height: 100%;
}

.navbar.scrolled .white-nav-top {
    top: 0.5rem;
    left: calc(20% + var(--spacing-md));
}

.navbar.scrolled .social-link {
    width: 22px;
    height: 22px;
}

.navbar.scrolled .social-link svg {
    width: 18px;
    height: 18px;
}

.navbar.scrolled {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding-top: 0;
}

/* Small navbar for about page */
.navbar-small {
    padding-top: 0;
}

.navbar-small .container::before {
    top: 0;
    height: calc(45px + 55px);
    width: calc(20% - 2 * var(--spacing-sm));
}

.navbar-small .logo-img {
    height: 45px;
}

.navbar-small .white-nav-top {
    top: 0.5rem;
    left: calc(20% + var(--spacing-md));
}

.navbar-small .social-link {
    width: 22px;
    height: 22px;
}

.navbar-small .social-link svg {
    width: 18px;
    height: 18px;
}

@media (min-width: 1025px) {
    .navbar-small .nav-menu {
        left: calc(20% + var(--spacing-md));
    }
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem var(--spacing-xl);
    background: var(--white);
    border-radius: 0;
    margin: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    text-decoration: none;
    color: var(--primary-maroon);
    font-weight: var(--font-weight-bold);
    font-size: 1.2rem;
    position: relative;
    z-index: 1004;
    padding: var(--spacing-xs) var(--spacing-sm);
    height: 100%;
}


.logo-img {
    height: 65px;
    width: auto;
    transition: height var(--transition-normal);
}

.navbar.scrolled .logo-img {
    height: 38px;
}

.logo-text {
    display: none;
}

.menu-close-btn {
    display: none;
}

.mobile-logo-item {
    display: none;
}

.mobile-social-item {
    display: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    justify-content: flex-start;
    position: absolute;
    bottom: -15px;
    left: calc(33.33% + var(--spacing-md));
    right: var(--spacing-xl);
    padding: 0 var(--spacing-md);
    height: 55px;
    z-index: 1002;
    /* Prevent layout shifts */
    contain: layout style;
    will-change: transform;
}

.nav-menu li:last-child {
    margin-left: auto;
    margin-right: 0;
}

.nav-menu li.nav-contact-item {
    margin-left: auto;
    margin-right: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--white);
    font-family: 'Calibri', sans-serif;
    font-weight: var(--font-weight-bold);
    font-size: 1.1rem;
    transition: color var(--transition-fast);
    position: relative;
    text-align: center;
    display: inline-block;
    /* Prevent layout shifts from font loading */
    font-display: swap;
    text-rendering: optimizeLegibility;
    /* Reserve space to prevent shifts */
    min-height: 1.5em;
    line-height: 1.5;
}

.nav-link.active {
    color: var(--white);
}

.nav-link.active::after {
    width: 100%;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--white);
    transition: width var(--transition-normal);
}

.nav-link:hover {
    color: var(--white);
}

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

.nav-link-button {
    background: #22C55E;
    color: var(--white) !important;
    padding: 8px 20px;
    border-radius: 5px;
    margin-left: var(--spacing-sm);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.25);
    white-space: nowrap;
}

.nav-link-button::after {
    display: none;
}

.nav-link-button:hover {
    background: #16A34A;
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(34, 197, 94, 0.3);
}

/* ============================================
   Navigation Dropdown Menu
   ============================================ */
.nav-dropdown {
    position: relative;
    /* Prevent layout shifts from dropdown */
    contain: layout style;
}

.nav-link-with-arrow {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    /* Prevent layout shifts */
    min-width: fit-content;
}

.dropdown-arrow {
    transition: transform var(--transition-fast);
    flex-shrink: 0;
    color: currentColor;
    stroke: currentColor;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: var(--white);
    list-style: none;
    padding: 0.5rem 0;
    margin: 0;
    min-width: 280px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-normal);
    z-index: 1006;
    /* Prevent layout shifts */
    will-change: transform, opacity, visibility;
    contain: layout style paint;
    pointer-events: none;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.dropdown-link {
    display: block;
    padding: 0.75rem 1.25rem;
    color: var(--dark-grey);
    text-decoration: none;
    font-family: 'Calibri', sans-serif;
    font-weight: var(--font-weight-semibold);
    font-size: 1rem;
    transition: all var(--transition-fast);
    position: relative;
    /* Prevent layout shifts from font loading */
    font-display: swap;
    text-rendering: optimizeLegibility;
    /* Reserve space to prevent shifts */
    min-height: 1.5em;
    line-height: 1.5;
}

.dropdown-link:hover {
    color: var(--primary-maroon);
    background: var(--bg-light);
    padding-left: 1.5rem;
}

.dropdown-link::after {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #DC2626;
    transition: all var(--transition-normal);
}

/* ============================================
   Nav Bar Divider
   ============================================ */
.nav-divider {
    position: absolute;
    bottom: -15px;
    left: 0;
    right: 0;
    z-index: 1001;
    pointer-events: none;
    width: 100%;
    height: 55px;
    background-color: #DC2626;
    display: block;
}

/* ============================================
   Hero Section - Animated Banner
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 100vh;
    max-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    overflow: hidden;
    padding: 80px 0 0 0;
    z-index: 1;
    box-sizing: border-box;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    scroll-margin-top: 0;
}

.hero-background {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    overflow: hidden;
    width: 100%;
    height: 100vh;
    pointer-events: none;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.8) 40%, rgba(255, 255, 255, 0.6) 70%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    padding-left: var(--spacing-sm);
}

.hero-content {
    animation: fadeIn 0.6s ease-out;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 0;
    padding-left: var(--spacing-lg);
    position: fixed;
    top: 50%;
    left: var(--spacing-sm);
    transform: translateY(-50%);
    z-index: 15;
    max-width: 650px;
    width: calc(100% - 2rem);
    height: auto;
    margin: 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: var(--font-weight-bold);
    color: var(--black);
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
    animation: slideInLeft 1s ease-out;
    /* Hide visually but keep for SEO */
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.title-line-1 {
    display: block;
    animation: fadeIn 0.4s ease-out 0s both;
    overflow: visible;
    white-space: normal;
}

.title-line-2 {
    display: block;
    animation: fadeIn 0.4s ease-out 0.2s both;
    overflow: visible;
    white-space: normal;
}

@keyframes typewriter {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

.hero-tagline {
    font-size: 2.6rem;
    color: var(--black);
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--spacing-sm);
    animation: fadeIn 0.4s ease-out 0.3s both;
}

.hero-description {
    font-size: 1.4rem;
    color: var(--black);
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
    animation: fadeIn 0.4s ease-out 0.5s both;
}

.hero-description .company-name {
    font-weight: var(--font-weight-bold);
    color: #DC2626;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    animation: fadeIn 0.4s ease-out 0.7s both;
}

.hero .btn {
    padding: 14px 36px;
    font-size: 1.2rem;
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: var(--font-weight-semibold);
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    display: inline-block;
}

.btn-primary {
    background: #22C55E;
    color: var(--white);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.25);
}

.btn-primary:hover {
    background: #16A34A;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(34, 197, 94, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #DC2626;
    border: 2px solid #DC2626;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.15);
}

.btn-secondary:hover {
    background: #DC2626;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.3);
}

.hero-image {
    position: relative;
    animation: fadeInRight 1s ease-out;
}

.floating-pouch {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-maroon) 0%, var(--primary-wine) 100%);
    border-radius: 20px;
    position: relative;
    box-shadow: 0 20px 40px rgba(156, 105, 48, 0.2);
}

.floating-pouch::before {
    content: '📦';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 5rem;
    opacity: 0.3;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--black);
    font-size: 0.9rem;
    animation: bounce 2s infinite;
    z-index: 20;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--black);
    border-bottom: 2px solid var(--black);
    transform: rotate(45deg);
    margin: 10px auto;
    position: relative;
    z-index: 20;
}

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

@media (max-width: 768px) {
    .scroll-indicator {
        top: 30px;
        bottom: auto;
        animation: bounceUp 2s infinite;
    }
    
    .scroll-indicator span {
        display: none;
    }
    
    .scroll-indicator::before {
        content: "Scroll Up";
        display: block;
        color: var(--black);
        font-size: 0.9rem;
    }
    
    .scroll-arrow {
        transform: rotate(-135deg);
    }
}

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

/* ============================================
   Section Styles
   ============================================ */
section {
    padding: var(--spacing-xl) 0;
    position: relative;
    z-index: 2;
    background: var(--white);
    scroll-snap-align: start;
    scroll-snap-stop: always;
    scroll-margin-top: 80px;
}

.about {
    padding-top: 7rem;
    padding-bottom: calc(var(--spacing-md) + 3rem);
    scroll-margin-top: 10px;
    scroll-margin-bottom: 0;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    min-height: 100vh;
    box-sizing: border-box;
}

.section-header {
    text-align: left;
    margin-bottom: var(--spacing-lg);
}

.section-title {
    font-size: 1.2rem;
    font-weight: var(--font-weight-bold);
    color: var(--primary-maroon);
    margin-bottom: var(--spacing-xs);
    text-transform: uppercase;
}

.section-subtitle {
    font-size: 1.5rem;
    color: var(--black);
    font-weight: var(--font-weight-bold);
}

/* ============================================
   About Section
   ============================================ */
.about {
    background: #FFC94A;
}

/* ============================================
   Breadcrumbs
   ============================================ */
.breadcrumbs {
    background: var(--white);
    padding: var(--spacing-xs) 0;
    margin-top: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 100;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    gap: var(--spacing-xs);
    justify-content: flex-start;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item a {
    color: var(--primary-maroon);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: var(--font-weight-medium);
    transition: color var(--transition-fast);
}

.breadcrumb-item a:hover {
    color: #B91C1C;
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #374151;
    font-size: 0.9rem;
    font-weight: var(--font-weight-medium);
}

.breadcrumb-separator {
    color: #9CA3AF;
    margin: 0 var(--spacing-xs);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .breadcrumbs {
        padding: 0.4rem 0;
        margin-top: 0;
    }
    
    .breadcrumb-item a,
    .breadcrumb-item.active {
        font-size: 0.85rem;
    }
}

/* ============================================
   About Page Hero Section
   ============================================ */
.about-page-hero {
    background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
    padding: 150px 0 80px;
    text-align: center;
    color: var(--white);
    margin-top: 0;
}

.about-page-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-page-title {
    font-size: 3.5rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-sm);
    color: var(--white);
    animation: fadeIn 0.6s ease-out;
}

.about-page-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: var(--font-weight-medium);
    animation: fadeIn 0.6s ease-out 0.2s both;
}

@media (max-width: 768px) {
    .about-page-hero {
        padding: 120px 0 60px;
    }
    
    .about-page-title {
        font-size: 2.5rem;
    }
    
    .about-page-subtitle {
        font-size: 1.2rem;
    }
}

/* ============================================
   Why Choose Us Section
   ============================================ */
.why-choose-us {
    background: var(--white);
    padding: var(--spacing-xl) 0;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.why-choose-item {
    background: var(--bg-light);
    padding: var(--spacing-md);
    border-radius: 10px;
    text-align: center;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.why-choose-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-maroon);
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.15);
    background: var(--white);
}

.why-choose-icon {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-sm);
}

.why-choose-item h3 {
    font-size: 1.3rem;
    color: var(--primary-maroon);
    margin-bottom: var(--spacing-xs);
    font-weight: var(--font-weight-semibold);
}

.why-choose-item p {
    color: var(--medium-grey);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ============================================
   Vision and Mission Section
   ============================================ */
.vision-mission-section {
    background: var(--bg-light);
    padding: var(--spacing-xl) 0;
}

.vision-mission-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.mission-card,
.vision-card {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: 15px;
    text-align: center;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-maroon);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.15);
}

.mission-icon,
.vision-icon {
    font-size: 4rem;
    margin-bottom: var(--spacing-md);
    display: block;
}

.mission-card h3,
.vision-card h3 {
    font-size: 1.5rem;
    color: var(--primary-maroon);
    margin-bottom: var(--spacing-md);
    font-weight: var(--font-weight-semibold);
}

.mission-card p,
.vision-card p {
    color: var(--medium-grey);
    line-height: 1.8;
    font-size: 1rem;
}

/* ============================================
   Our Values Section
   ============================================ */
.values-section {
    background: var(--white);
    padding: var(--spacing-xl) 0;
}

.values-content {
    max-width: 1000px;
    margin: var(--spacing-lg) auto 0;
}

.values-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    background: var(--bg-light);
    padding: var(--spacing-md);
    border-radius: 10px;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.value-item:hover {
    transform: translateX(5px);
    border-color: var(--primary-maroon);
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.1);
    background: var(--white);
}

.value-icon {
    font-size: 2rem;
    flex-shrink: 0;
    line-height: 1;
}

.value-text {
    flex: 1;
    color: var(--dark-grey);
    line-height: 1.8;
    font-size: 1rem;
}

.value-text strong {
    color: var(--primary-maroon);
    font-weight: var(--font-weight-semibold);
}

/* ============================================
   Values List
   ============================================ */
.values-list {
    list-style: none;
    padding-left: 0;
    margin: var(--spacing-md) 0;
}

.values-list li {
    padding: var(--spacing-sm) 0;
    padding-left: 30px;
    position: relative;
    color: var(--dark-grey);
    line-height: 1.8;
}

.values-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-maroon);
    font-weight: var(--font-weight-bold);
    font-size: 1.2rem;
}

.values-list li strong {
    color: var(--primary-maroon);
}

.about-text h3 {
    font-size: 1.5rem;
    color: #1F2937;
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
}

.about .container {
    max-width: 100%;
    padding: 0 var(--spacing-lg);
    width: 100%;
}

.about .section-header,
.about .about-content {
    width: 100%;
    max-width: 100%;
}

/* ============================================
   Packaging Image Section
   ============================================ */
.packaging-image-section {
    background: #8B4513;
    padding: 0;
    text-align: center;
    position: relative;
    z-index: 10;
    width: 100%;
    overflow: hidden;
    margin-top: -120px;
    scroll-snap-align: none;
}

.packaging-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .packaging-image-section {
        padding: 0;
        margin-top: -150px;
    }
    
    .packaging-image {
        width: 100%;
        max-height: 300px;
        object-fit: cover;
    }
}

.wave-divider-top {
    width: 100%;
    height: 250px;
    line-height: 0;
    overflow: hidden;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 5;
    background: transparent;
    display: block;
    pointer-events: none;
    transition: height var(--transition-normal);
    scroll-snap-align: none;
}

.wave-divider-top.scroll-up {
    height: 350px;
}

.wave-divider-top svg {
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
    z-index: 3;
}

.wave-divider {
    width: 100%;
    height: 120px;
    line-height: 0;
    overflow: hidden;
    margin-top: -20px;
    margin-bottom: -40px;
    position: relative;
    z-index: 20;
    background: transparent;
    display: block;
    scroll-snap-align: none;
}

.wave-divider svg {
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
    z-index: 3;
}

@media (max-width: 1024px) {
    .wave-divider {
        overflow: hidden;
    }
    
    .wave-divider svg {
        width: 300%;
        height: 100%;
        transform: translateX(-33.33%);
    }
}

@media (max-width: 768px) {
    .wave-divider {
        overflow: hidden;
    }
    
    .wave-divider svg {
        width: 300%;
        height: 100%;
        transform: translateX(-33.33%);
    }
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.about .section-header {
    text-align: left;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.about.animated .section-header {
    opacity: 1;
    transform: translateY(0);
}

.about .section-title {
    font-size: 1.2rem;
    color: var(--primary-maroon);
}

.about .section-subtitle {
    color: var(--black);
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
}


.about-text {
    width: 100%;
    max-width: 100%;
    transform: translateX(-50px);
    transition: transform 0.8s ease-out;
}

.about.animated .about-text {
    transform: translateX(0);
}

.about-text h3 {
    font-size: 1.5rem;
    color: #1F2937;
    margin-bottom: var(--spacing-sm);
}

.about-text p {
    font-size: 0.9rem;
    color: #111827;
    margin-bottom: var(--spacing-sm);
    line-height: 1.8;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.about.animated .about-text p:nth-of-type(1) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s;
}

.about.animated .about-text p:nth-of-type(2) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.about.animated .about-text p:nth-of-type(3) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

.about-text strong {
    color: #1F2937;
    font-weight: var(--font-weight-bold);
}

.about-button-wrapper {
    margin: var(--spacing-lg) 0;
    text-align: left;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out 0.4s, transform 0.6s ease-out 0.4s;
}

.about.animated .about-button-wrapper {
    opacity: 1;
    transform: translateY(0);
}

.about-button-wrapper .btn {
    margin-top: var(--spacing-sm);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.about-button-wrapper .btn-arrow {
    transition: transform var(--transition-normal);
    flex-shrink: 0;
}

.about-button-wrapper .btn:hover .btn-arrow {
    transform: translateX(4px);
}

.stats-separator {
    width: 100%;
    height: 2px;
    background: rgba(0, 0, 0, 0.1);
    margin: var(--spacing-lg) 0;
    opacity: 0;
    transform: scaleX(0);
    transition: opacity 0.6s ease-out 0.45s, transform 0.6s ease-out 0.45s;
    transform-origin: left;
}

.about.animated .stats-separator {
    opacity: 1;
    transform: scaleX(1);
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
    align-items: center;
    margin-top: var(--spacing-md);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out 0.5s, transform 0.6s ease-out 0.5s;
}

.about.animated .stats-row {
    opacity: 1;
    transform: translateY(0);
}

.stat-item-inline {
    text-align: center;
    min-width: 120px;
}

.stat-item-inline .stat-number {
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    color: #1F2937;
    margin-bottom: var(--spacing-xs);
    line-height: 1;
}

.stat-item-inline .stat-label {
    font-size: 0.9rem;
    color: #374151;
    font-weight: var(--font-weight-medium);
}

.about-image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 350px;
    max-height: 600px;
    padding: var(--spacing-md) 0;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease-out 0.2s, transform 0.8s ease-out 0.2s;
}

.about.animated .about-image-placeholder {
    opacity: 1;
    transform: translateX(0);
}

.about-image-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    border-radius: 20px;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transform: scale(1) translate(0, 0);
    transition: opacity 1.5s ease-in-out, transform 5s ease-out;
    will-change: opacity, transform;
}

.about-image.active {
    opacity: 1;
}

.about.animated .about-image.active {
    transform: scale(1.25) translate(-5%, -5%);
}

/* Varied pan directions for different images */
.about.animated picture:nth-child(1) .about-image.active {
    transform: scale(1.25) translate(-5%, -5%);
}

.about.animated picture:nth-child(2) .about-image.active {
    transform: scale(1.25) translate(5%, -5%);
}

.about.animated picture:nth-child(3) .about-image.active {
    transform: scale(1.25) translate(-5%, 5%);
}

.about.animated picture:nth-child(4) .about-image.active {
    transform: scale(1.25) translate(5%, 5%);
}

.about.animated picture:nth-child(5) .about-image.active {
    transform: scale(1.25) translate(-6%, 0);
}

.about.animated picture:nth-child(6) .about-image.active {
    transform: scale(1.25) translate(6%, 0);
}

.about.animated picture:nth-child(7) .about-image.active {
    transform: scale(1.25) translate(0, -6%);
}

.about.animated picture:nth-child(8) .about-image.active {
    transform: scale(1.25) translate(0, 6%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

@media (max-width: 640px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-sm);
    }
    
    .stat-item-inline {
        min-width: auto;
    }
}

.stat-item {
    text-align: center;
    padding: var(--spacing-md) var(--spacing-sm);
    background: var(--bg-light);
    border-radius: 10px;
    transition: transform var(--transition-normal);
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: var(--font-weight-bold);
    color: #1F2937;
    margin-bottom: var(--spacing-xs);
}

.stat-label {
    font-size: 1rem;
    color: #374151;
    font-weight: var(--font-weight-medium);
}

/* ============================================
   Products Section
   ============================================ */
.products {
    background: var(--white);
    scroll-margin-top: -50px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.products .container {
    max-width: 100%;
    padding: 0 var(--spacing-sm);
}

.products .section-title {
    color: var(--primary-maroon);
    font-size: 1.2rem;
}

.products .section-header {
    margin-bottom: var(--spacing-md);
}

/* Divider/banner before products section */
.products-pre-banner {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-top: -1px;
    margin-bottom: 0;
    min-height: 300px;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    overflow: hidden;
    padding: 40px 20px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    scroll-margin-top: 80px;
}

.products-banner-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    position: relative;
    z-index: 3;
    width: 100%;
    height: 100%;
    padding: 40px 20px;
}

.pouch-svg {
    position: relative;
    height: 80px;
    width: auto;
    filter: grayscale(100%) brightness(0.5);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.products-pre-banner.animated .pouch-svg {
    opacity: 0.9;
    transform: translateY(0);
}

.products-banner-heading {
    color: var(--black);
    font-family: 'Dancing Script', cursive;
    font-size: 3.5rem;
    font-weight: 600;
    text-align: center;
    margin: 0 0 0.5rem 0;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.products-pre-banner.animated .products-banner-heading {
    opacity: 1;
    transform: translateY(0);
}

.products-banner-text {
    color: var(--primary-maroon);
    font-size: 2.75rem;
    font-weight: 700;
    text-align: center;
    margin: 0;
    letter-spacing: 0.5px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.products-pre-banner.animated .products-banner-text {
    opacity: 1;
    transform: translateY(0);
}

.btn-cta-banner {
    background: var(--primary-maroon);
    color: var(--white);
    padding: 14px 36px;
    font-size: 1.2rem;
    font-weight: var(--font-weight-semibold);
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
    position: relative;
}

.btn-cta-banner:hover {
    background: var(--primary-wine);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(220, 38, 38, 0.4);
}

.products-pre-banner.animated .btn-cta-banner {
    opacity: 1;
    transform: translateY(0);
}

.find-pouch-text {
    color: var(--black);
    font-size: 1.5rem;
    font-weight: var(--font-weight-semibold);
    text-align: center;
    margin: 1.5rem 0 0.25rem 0;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.products-pre-banner.animated .find-pouch-text {
    opacity: 1;
    transform: translateY(0);
}

.scroll-down-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    margin: 0.5rem auto 0;
    color: var(--primary-maroon);
    text-decoration: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.2);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.scroll-down-arrow:hover {
    background: var(--white);
    color: var(--primary-wine);
    transform: translateY(0) scale(1.1);
    box-shadow: 0 6px 18px rgba(220, 38, 38, 0.3);
    animation: none;
}

.products-pre-banner.animated .scroll-down-arrow {
    opacity: 1;
    transform: translateY(0);
    animation: bounceArrow 2s infinite;
}

.scroll-down-arrow svg {
    width: 24px;
    height: 24px;
}

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

@media (max-width: 768px) {
    .products-banner-heading {
        font-size: 2.5rem;
        padding: 0 1rem;
    }
    
    .products-banner-text {
        font-size: 1.5rem;
        padding: 0 1rem;
    }
    
    .btn-cta-banner {
        padding: 12px 28px;
        font-size: 1rem;
    }
    
    .find-pouch-text {
        font-size: 1.2rem;
        margin: 1rem 0 0.25rem 0;
    }
    
    .scroll-down-arrow {
        width: 44px;
        height: 44px;
        margin: 0.5rem auto 0;
    }
    
    .scroll-down-arrow svg {
        width: 20px;
        height: 20px;
    }
    
    .products-pre-banner {
        margin-top: -1px;
    }
    
    .carousel-section {
        margin-bottom: -1px;
    }
    
    .wave-divider {
        height: 50px;
        overflow: hidden;
    }
    
    .wave-divider svg {
        width: 300%;
        height: 100%;
        transform: translateX(-33.33%);
    }
}

@media (max-width: 480px) {
    .products-banner-heading {
        font-size: 2rem;
        padding: 0 1rem;
    }
    
    .products-banner-text {
        font-size: 1.25rem;
        padding: 0 1rem;
    }
    
    .btn-cta-banner {
        padding: 10px 24px;
        font-size: 0.95rem;
    }
    
    .find-pouch-text {
        font-size: 1rem;
        margin: 0.75rem 0 0.25rem 0;
    }
    
    .scroll-down-arrow {
        width: 40px;
        height: 40px;
        margin: 0.4rem auto 0;
    }
    
    .scroll-down-arrow svg {
        width: 18px;
        height: 18px;
    }
    
    .products-banner-content {
        gap: 1rem;
    }
    
    .product-card {
        flex: 0 0 calc(100vw - 40px);
        min-width: calc(100vw - 40px);
        max-width: calc(100vw - 40px);
    }
    
    .wave-divider {
        height: 40px;
        overflow: hidden;
    }
    
    .wave-divider svg {
        width: 300%;
        height: 100%;
        transform: translateX(-33.33%);
    }
    
    .products-wave-top {
        height: 80px;
        bottom: 0px;
    }
    
    .packaging-image-section {
        padding: 40px 0;
        margin-top: -150px;
    }
    
    .packaging-image {
        max-height: 250px;
        min-height: auto;
        object-fit: cover;
    }
}

.products-wave-top {
    width: 100%;
    height: 120px;
    line-height: 0;
    overflow: hidden;
    position: absolute;
    bottom: -45px;
    left: 0;
    right: 0;
    z-index: 20;
    background: transparent;
    pointer-events: none;
}

.products-wave-top svg {
    width: 100%;
    height: 100%;
    display: block;
}

@media (max-width: 1024px) {
    .products-wave-top {
        overflow: hidden;
    }
    
    .products-wave-top svg {
        width: 300%;
        height: 100%;
        transform: translateX(-33.33%);
    }
}

@media (max-width: 768px) {
    .products-wave-top {
        overflow: hidden;
        bottom: 0px;
    }
    
    .products-wave-top svg {
        width: 300%;
        height: 100%;
        transform: translateX(-33.33%);
    }
}


.products-grid {
    display: flex;
    gap: var(--spacing-md);
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-maroon) var(--light-grey);
    padding-bottom: 10px;
}

.products-grid::-webkit-scrollbar {
    height: 8px;
}

.products-grid::-webkit-scrollbar-track {
    background: var(--light-grey);
    border-radius: 10px;
}

.products-grid::-webkit-scrollbar-thumb {
    background: var(--primary-maroon);
    border-radius: 10px;
}

.products-grid::-webkit-scrollbar-thumb:hover {
    background: var(--primary-wine);
}

.product-card {
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-normal);
    opacity: 0;
    transform: translateY(30px);
    flex: 0 0 350px;
    min-width: 350px;
    max-width: 350px;
}

/* Product card as link */
a.product-card {
    text-decoration: none;
    display: block;
    color: inherit;
}

a.product-card:hover {
    text-decoration: none;
    color: inherit;
}

.product-card.visible {
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUpNoSkew 0.6s ease-out;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(156, 105, 48, 0.2);
}

.product-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

.product-image-wrapper {
    width: calc(100% + 2 * var(--spacing-md));
    margin: calc(-1 * var(--spacing-md)) calc(-1 * var(--spacing-md)) var(--spacing-sm) calc(-1 * var(--spacing-md));
    position: relative;
    overflow: visible;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.product-image-full {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.product-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    width: 100%;
    height: 140px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 25%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0.8) 75%, rgba(255, 255, 255, 1) 100%);
    pointer-events: none;
    z-index: 1;
}

/* Reduced text size for product card with image */
.product-card:has(.product-image-full) {
    overflow: hidden;
}

/* Product card hover button */
.product-hover-button {
    position: absolute;
    bottom: 15px;
    right: 15px;
    padding: 10px 16px 10px 20px;
    height: auto;
    border-radius: 25px;
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.3s ease, transform 0.3s ease, background-color 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-maroon);
    line-height: 1.2;
}

.product-hover-button:hover {
    background-color: rgba(255, 255, 255, 1);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.product-hover-button::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14M12 5l7 7-7 7'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.product-hover-button:hover::after {
    transform: translateX(3px);
}

.product-card:hover .product-hover-button {
    opacity: 1;
    transform: scale(1);
}

.product-title {
    font-size: 1.2rem;
    color: var(--black);
    margin-bottom: var(--spacing-xs);
    font-weight: var(--font-weight-semibold);
}

.product-description {
    font-size: 0.9rem;
    color: var(--medium-grey);
    margin-bottom: var(--spacing-sm);
    line-height: 1.6;
}

.product-features {
    list-style: none;
    padding-left: 0;
}

.product-features li {
    font-size: 0.85rem;
    color: var(--dark-grey);
    margin-bottom: var(--spacing-xs);
    padding-left: 20px;
    position: relative;
}

.product-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-maroon);
    font-weight: var(--font-weight-bold);
}

/* ============================================
   Customers Section
   ============================================ */
.customers {
    background: var(--bg-light);
    scroll-snap-align: start;
    scroll-snap-stop: always;
    scroll-margin-top: -50px;
    overflow: visible;
}

.customers .container {
    max-width: 100%;
    padding: 0 var(--spacing-sm);
    overflow: visible;
}

.customers-header {
    position: relative;
    padding-right: 220px;
    overflow: visible;
}

.customers-heading-wrapper {
    margin-bottom: var(--spacing-xs);
}

.customers-quote-sticker {
    position: absolute;
    top: 80%;
    right: 0;
    transform: translateY(-50%) translateX(0);
    transform-origin: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    z-index: 1;
    width: 550px;
}

.customers-sticker-icon {
    width: 480px;
    height: auto;
    aspect-ratio: 363 / 98;
    display: block;
}

.customers-content {
    max-width: 1000px;
    margin: 0 auto;
}

.customers-content .customers-carousel-wrapper {
    max-width: none;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    width: 100vw;
    padding: 10px 80px;
    overflow: visible;
}

.customers-content > p {
    text-align: center;
    font-size: 1.1rem;
    color: var(--medium-grey);
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

.customers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

/* Customers Carousel */
.customers-carousel-wrapper {
    position: relative;
    width: 100%;
    margin-top: var(--spacing-md);
    padding: 0 60px;
    overflow: visible;
}

.customers-carousel-container {
    overflow: visible;
    width: 100%;
    position: relative;
    padding: 10px 0;
}

/* Hide scrollbar but keep functionality */
.customers-carousel-container::-webkit-scrollbar {
    height: 4px;
}

.customers-carousel-container::-webkit-scrollbar-track {
    background: transparent;
}

.customers-carousel-container::-webkit-scrollbar-thumb {
    background: var(--primary-maroon);
    border-radius: 2px;
}

.customers-carousel-container::-webkit-scrollbar-thumb:hover {
    background: var(--primary-maroon-dark);
}

.customers-carousel-track {
    display: flex;
    transition: transform 0.3s ease-in-out;
    gap: var(--spacing-md);
    padding: 5px 0;
}

.customer-item-wrapper {
    position: relative;
    flex: 0 0 calc((100% - (var(--spacing-md) * 2)) / 3);
    min-width: 280px;
}

.customer-item {
    background: var(--white);
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-normal);
    border: 1px solid rgba(156, 105, 48, 0.1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 0.75 / 1;
    clip-path: url(#customer-card-clip);
    border-radius: 12px;
    position: relative;
}

.customer-title {
    position: absolute;
    top: 0;
    left: 0;
    background: transparent;
    color: var(--white);
    padding: 10px 16px;
    font-size: 0.8rem;
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 100;
    width: 34%;
    min-width: 140px;
    max-width: 200px;
    height: 22%;
    clip-path: inset(0 0 0 0 round 33px 33px 33px 33px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.customer-title img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.customer-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(156, 105, 48, 0.2);
}

.customer-logo-wrapper {
    position: relative;
    width: 100%;
    flex: 1 1 72%;
    overflow: hidden;
    background: var(--white);
}

.customer-logo-wrapper::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 25%;
    background: linear-gradient(
        to top,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 1) 10%,
        rgba(255, 255, 255, 0.95) 30%,
        rgba(255, 255, 255, 0.8) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    pointer-events: none;
    z-index: 2;
}

.customer-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-normal);
    transform-origin: center center;
}

.customer-item:hover .customer-logo {
    transform: scale(1.05);
}

.customer-name {
    font-size: 0.85rem;
    color: var(--dark-grey);
    font-weight: var(--font-weight-medium);
    padding: var(--spacing-sm) var(--spacing-md);
    line-height: 1.4;
    flex-shrink: 0;
}

.customers-carousel-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--white);
    border: 2px solid var(--primary-maroon);
    border-radius: 50%;
    color: var(--primary-maroon);
    cursor: pointer;
    z-index: 10;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 12px rgba(156, 105, 48, 0.15);
}

.customers-carousel-btn:hover {
    background: var(--primary-maroon);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(156, 105, 48, 0.3);
}

.customers-carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.customers-carousel-btn-prev {
    left: 0;
}

.customers-carousel-btn-next {
    right: 0;
}

.customers-carousel-btn svg {
    width: 24px;
    height: 24px;
    stroke-width: 2.5;
}

.customers-carousel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

@media (max-width: 1024px) {
    .customers-header {
        padding-right: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .customers-heading-wrapper {
        margin-bottom: 0;
    }

    .customers-quote-sticker {
        position: static;
        transform: none;
        margin-top: 0;
        align-self: center;
    }

    .customers-sticker-icon {
        width: 360px;
        height: auto;
        aspect-ratio: 363 / 98;
    }

    .customer-item-wrapper {
        flex: 0 0 calc((100% - (var(--spacing-md) * 2)) / 3);
        min-width: 250px;
    }
    
    .customers-content .customers-carousel-wrapper {
        padding: 10px 60px;
    }
}

@media (max-width: 768px) {
    .customers-sticker-icon {
        width: 400px;
        height: auto;
        aspect-ratio: 363 / 98;
    }

    .customers-quote-sticker {
        margin-top: 0;
        width: 330px;
    }

    .customers-carousel-container {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scrollbar-width: thin;
    }

    .customers-carousel-track {
        flex-wrap: nowrap;
    }

    .customer-item-wrapper {
        flex: 0 0 280px;
        min-width: 280px;
        scroll-snap-align: start;
    }
    
    .customer-title {
        width: 38%;
        min-width: 130px;
        max-width: 190px;
    }
    
    .customers-content .customers-carousel-wrapper {
        padding: 10px 20px;
    }
    
    .customers-carousel-btn {
        display: none;
    }
}

@media (max-width: 480px) {
    .customers-sticker-icon {
        width: 350px;
        height: auto;
        aspect-ratio: 363 / 98;
    }

    .customers-quote-sticker {
        margin-top: 0;
        width: 280px;
    }

    .customers-carousel-container {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scrollbar-width: thin;
    }

    .customers-carousel-track {
        flex-wrap: nowrap;
    }

    .customer-item-wrapper {
        flex: 0 0 calc(100vw - 40px);
        min-width: calc(100vw - 40px);
        max-width: calc(100vw - 40px);
        scroll-snap-align: start;
    }
    
    .customer-title {
        width: 35%;
        min-width: 110px;
        max-width: 165px;
    }
    
    .customers-content .customers-carousel-wrapper {
        padding: 10px 15px;
    }
    
    .customers-carousel-btn {
        display: none;
    }
}

/* ============================================
   Machinery Section
   ============================================ */
.machinery {
    background: var(--white);
    scroll-snap-align: none;
    scroll-snap-stop: normal;
    scroll-margin-top: -50px;
}

.machinery-header {
    position: relative;
    padding-right: 220px; /* space reserved for sticker on the right */
}

.machinery-heading-wrapper {
    margin-bottom: var(--spacing-xs);
}

.machinery .section-subtitle {
    margin-top: 0;
}

.machinery-quote-sticker {
    position: absolute;
    top:150%;
    right: 1%;
    transform: translateY(-50%) rotate(-6deg);
    transform-origin: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    z-index: 1;
}

.machinery-sticker-icon {
    width: 250px;
    height: 250px;
    display: block;
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.2));
}

.machinery .container {
    max-width: 100%;
    padding: 0 var(--spacing-sm);
}

.machinery-content {
    max-width: 100%;
    margin: 0 auto;
    position: relative;
}

.machinery-content > p {
    text-align: center;
    font-size: 1.1rem;
    color: var(--medium-grey);
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

@media (max-width: 900px) {
    .machinery-header {
        padding-right: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .machinery-quote-sticker {
        position: static;
        transform: rotate(-6deg);
        margin-top: var(--spacing-sm);
        align-self: center;
    }

    .machinery-sticker-icon {
        width: 190px;
        height: 190px;
    }
}

.machinery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.machinery-item {
    background: var(--bg-light);
    border-radius: 10px;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    /* reduced height */
    aspect-ratio: 1 / 0.75;
}

.machinery-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-maroon);
    box-shadow: 0 10px 25px rgba(156, 105, 48, 0.15);
}

.machinery-item:hover .machinery-image {
    transform: scale(1.05);
}

.machinery-image-wrapper {
    position: relative;
    width: 100%;
    flex: 1 1 72%;
    overflow: hidden;
}

.machinery-image-wrapper::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 35%;
    background: linear-gradient(
        to top,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(255, 255, 255, 0.8) 40%,
        rgba(255, 255, 255, 0) 100%
    );
    pointer-events: none;
}

.machinery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-normal);
}

.machinery-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    opacity: 0.3;
}

.machinery-text {
    flex: 1 1 28%;
    padding: var(--spacing-sm) var(--spacing-md);
    text-align: left;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 60%, rgba(255, 255, 255, 0.85) 100%);
}

.machinery-text h3 {
    font-size: 1.1rem;
    color: var(--primary-maroon);
    margin-bottom: var(--spacing-xs);
    font-weight: var(--font-weight-semibold);
}

.machinery-text p {
    color: var(--medium-grey);
    line-height: 1.5;
    font-size: 0.85rem;
}

.machinery-item-wide {
    grid-column: span 2;
    aspect-ratio: 2 / 0.75;
}

.machinery-snap-anchor {
    position: absolute;
    top: 65%;
    left: 0;
    right: 0;
    height: 1px;
    scroll-snap-align: none;
    scroll-snap-stop: normal;
    pointer-events: none;
    visibility: hidden;
}

@media (max-width: 768px) {
    .machinery-item-wide {
        grid-column: span 1;
        aspect-ratio: 1 / 0.75;
    }
}

/* ============================================
   Carousel Section
   ============================================ */
.carousel-section {
    background: var(--white);
    padding-top: var(--spacing-md);
    /* reduce bottom spacing so the next divider sits closer */
    padding-bottom: 0;
    margin-bottom: -1px;
    margin-top: -40px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    scroll-margin-top: 80px;
}

/* ============================================
   Gallery Section
   ============================================ */
.gallery {
    background: var(--bg-light);
    scroll-snap-align: start;
    scroll-snap-stop: always;
    scroll-margin-top: -50px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: transform var(--transition-normal);
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-maroon) 0%, var(--primary-wine) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: var(--font-weight-semibold);
    transition: all var(--transition-normal);
}

.gallery-item:hover .gallery-placeholder {
    background: linear-gradient(135deg, var(--deep-wine) 0%, var(--primary-maroon) 100%);
}

/* Gallery Carousel - full width like main carousel */
.gallery .carousel-wrapper {
    width: 100vw;
    margin-left: calc(50% - 50vw);
}

/* Add gap between the two carousels in gallery section */
.gallery .carousel-wrapper.gallery-carousel-wrapper {
    margin-top: 10px;
    margin-bottom: 20px;
    position: relative;
}

/* Gallery heading above carousel */
.gallery-overlay {
    position: relative;
    width: 100%;
    display: block;
    padding: 0;
}

.gallery-overlay .container {
    max-width: 100%;
    margin: 0;
    padding: 0;
    width: 100%;
}

.gallery-overlay .section-header {
    text-align: left !important;
    width: 100%;
    margin: 0;
    background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0.967) 30%, rgba(255, 255, 255, 0.485) 40%, rgba(255, 255, 255, 0.096) 70%, transparent 100%);
    padding: 4px 20px;
    border-radius: 0;
}

.gallery-overlay .section-title {
    color: var(--primary-maroon);
    text-align: left !important;
}

.gallery-overlay .section-subtitle {
    color: var(--black);
    text-align: left !important;
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
}

.carousel-container {
    overflow: hidden;
    width: 100%;
    position: relative;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y pinch-zoom;
}

/* Make carousel section full width */
.carousel-section .container {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
}

.carousel-wrapper {
    width: 100vw;
    margin-left: calc(50% - 50vw);
}

.carousel-track {
    display: flex;
    transition: none;
    gap: 20px;
}

/* Endless Scrolling Carousel */
.carousel {
    display: flex;
    width: max-content;
    gap: 0;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    perspective: 1000px;
    -webkit-perspective: 1000px;
}

.group {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    padding-right: 20px;
    flex-shrink: 0;
    width: max-content;
}

/* Gallery carousel animation (left to right) - animate the carousel containing both groups */
.gallery-carousel {
    animation: scroll-left 40s infinite linear;
    -webkit-animation: scroll-left 40s infinite linear;
    will-change: transform;
    animation-play-state: running;
    -webkit-animation-play-state: running;
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
}

/* Main carousel animation (right to left) - animate the carousel containing both groups */
.main-carousel {
    animation: scroll-right 40s infinite linear;
    -webkit-animation: scroll-right 40s infinite linear;
    will-change: transform;
    animation-play-state: running;
    -webkit-animation-play-state: running;
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
}

/* Animation keyframes - move from 0 to -50% (half the width of one group)
   When the carousel moves -50%, the second group seamlessly takes over */
@keyframes scroll-left {
    from {
        transform: translate3d(0, 0, 0);
    }
    to {
        transform: translate3d(-50%, 0, 0);
    }
}

@-webkit-keyframes scroll-left {
    from {
        -webkit-transform: translate3d(0, 0, 0);
    }
    to {
        -webkit-transform: translate3d(-50%, 0, 0);
    }
}

@keyframes scroll-right {
    from {
        transform: translate3d(-50%, 0, 0);
    }
    to {
        transform: translate3d(0, 0, 0);
    }
}

@-webkit-keyframes scroll-right {
    from {
        -webkit-transform: translate3d(-50%, 0, 0);
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
    }
}

.carousel-card {
    flex: 0 0 auto;
    width: calc((100vw - 40px) / 4);
    min-width: 200px;
    max-width: 280px;
    aspect-ratio: 3/4;
    max-height: 320px;
    border-radius: 10px;
    overflow: hidden;
    transition: transform var(--transition-normal);
    background: var(--white);
    padding: 4px;
    flex-shrink: 0;
}

.carousel-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.carousel-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    height: auto;
    background: transparent;
    border: none;
    border-radius: 0;
    color: var(--black);
    cursor: pointer;
    z-index: 10;
    transition: all var(--transition-normal);
    box-shadow: none;
    padding: 10px;
}

.carousel-btn:hover {
    background: transparent;
    color: var(--black);
    transform: translateY(-50%) scale(1.2);
    box-shadow: none;
}

.carousel-btn:active {
    transform: translateY(-50%) scale(1.0);
}

.carousel-btn-prev {
    left: -50px;
}

.carousel-btn-next {
    right: -50px;
}

.carousel-btn svg {
    width: 40px;
    height: 40px;
    stroke-width: 2.5;
}

@media (max-width: 768px) {
    .carousel-btn-prev {
        left: -30px;
    }
    
    .carousel-btn-next {
        right: -30px;
    }
    
    .carousel-btn svg {
        width: 36px;
        height: 36px;
    }
}

.carousel-btn svg {
    width: 40px;
    height: 40px;
}

.carousel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: var(--spacing-md);
    padding: var(--spacing-sm) 0;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--light-grey);
    border: 2px solid var(--primary-maroon);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.carousel-dot.active {
    background: var(--primary-maroon);
    transform: scale(1.2);
}

.carousel-dot:hover {
    background: var(--secondary-wine);
    transform: scale(1.1);
}

/* ============================================
   FAQ Section
   ============================================ */
.faq {
    background: var(--bg-light);
    scroll-snap-align: start;
    scroll-snap-stop: always;
    scroll-margin-top: -50px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: var(--spacing-sm);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    padding: var(--spacing-md);
    background: var(--white);
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: var(--font-weight-semibold);
    color: var(--primary-maroon);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background var(--transition-fast);
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary-maroon);
    transition: transform var(--transition-fast);
}

.faq-question.active::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.faq-answer.active {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 var(--spacing-md) var(--spacing-md);
    color: var(--medium-grey);
    line-height: 1.8;
}

/* ============================================
   Contact Section
   ============================================ */
.contact {
    background: var(--white);
    scroll-snap-align: start;
    scroll-snap-stop: always;
    scroll-margin-top: -40px;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    max-width: 1000px;
    margin: 0 auto;

}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.contact-item {
    display: flex;
    gap: var(--spacing-sm);
    align-items: flex-start;
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-details h3 {
    color: var(--primary-maroon);
    margin-bottom: var(--spacing-xs);
    font-size: 1.2rem;
}

.contact-details p {
    color: var(--medium-grey);
    line-height: 1.6;
    margin-bottom: var(--spacing-sm);
}

.contact-map {
    flex-direction: column;
}

.google-map {
    width: 100%;
    height: 300px;
    margin-top: var(--spacing-sm);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.google-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--dark-grey);
    font-weight: var(--font-weight-medium);
    margin-bottom: var(--spacing-xs);
}

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 2px solid var(--light-grey);
    border-radius: 5px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-maroon);
}

.form-group textarea {
    resize: vertical;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--dark-grey);
    color: var(--white);
    padding: var(--spacing-xl) 0 var(--spacing-md);
    position: relative;
    z-index: 10;
    isolation: isolate;
    scroll-snap-align: end;
    scroll-snap-stop: always;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    position: relative;
}

.footer-section h3,
.footer-section h4 {
    color: var(--white);
    margin-bottom: var(--spacing-sm);
    font-size: 1.2rem;
}

.footer-section p {
    color: var(--light-grey);
    line-height: 1.8;
}

.footer-section:last-child {
    position: relative;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: var(--spacing-xs);
}

.footer-section ul li a {
    color: var(--light-grey);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-section ul li a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--medium-grey);
    color: var(--light-grey);
}

.footer-bottom p {
    margin: 0;
}

.footer-logo {
    width: 100px;
    height: auto;
    filter: brightness(0) invert(1) opacity(0.4);
    position: absolute;
    right: 0;
    bottom: 0;
}

.footer-logo-home {
    position: absolute;
    right: 0;
    bottom: -1px;
    z-index: 1;
    width: 250px;
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-logo {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: var(--spacing-sm);
        display: block;
    }
    
    .footer-logo-home {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: var(--spacing-sm);
        display: block;
    }
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px) skew(-5deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) skew(-5deg);
    }
}

@keyframes fadeInUpNoSkew {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ============================================
   Responsive Design
   ============================================ */
/* Progressive logo scaling from desktop to tablet */
@media (max-width: 1400px) {
    .logo-img {
        height: 60px;
    }
    
    .navbar.scrolled .logo-img {
        height: 36px;
    }
}

@media (max-width: 1200px) {
    .logo-img {
        height: 58px;
    }
    
    .navbar.scrolled .logo-img {
        height: 34px;
    }
}

@media (max-width: 1024px) {
    .navbar {
        padding-top: 0;
    }
    
    .navbar .container::before {
        display: none;
    }
    
    .white-nav-top {
        display: none;
    }
    
    .hero .container {
        text-align: left;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .wave-divider {
        height: 180px;
    }
    
    .products-pre-banner {
        margin-top: -1px;
    }
    
    .carousel-section {
        margin-bottom: -1px;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .logo {
        margin-left: 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .logo-img {
        height: 32px;
    }
    
    .navbar.scrolled .logo-img {
        height: 32px;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -75%;
        width: 75%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        padding: var(--spacing-lg);
        padding-top: 60px;
        padding-bottom: var(--spacing-lg);
        transition: right var(--transition-normal);
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        border-top-left-radius: 20px;
        border-bottom-left-radius: 20px;
        z-index: 1005;
        bottom: auto;
        left: auto;
        overflow-y: auto;
        justify-content: flex-start;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        list-style: none;
        width: 100%;
    }
    
    .nav-menu .nav-link {
        color: var(--dark-grey);
    }
    
    .nav-menu .nav-link.active {
        color: #DC2626;
    }
    
    .nav-menu .nav-link:hover {
        color: #DC2626;
    }
    
    .nav-menu .nav-link::after {
        background: #DC2626;
    }
    
    /* Mobile dropdown styles */
    .nav-dropdown {
        width: 100%;
    }
    
    .nav-dropdown .nav-link-with-arrow {
        width: 100%;
        justify-content: space-between;
    }
    
    .nav-dropdown .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: transparent;
        padding: 0;
        margin: 0.5rem 0 0 1.5rem;
        display: none;
    }
    
    .nav-dropdown.active .dropdown-menu {
        display: block;
    }
    
    .nav-dropdown .dropdown-link {
        color: var(--dark-grey);
        padding: 0.5rem 0;
        font-size: 0.95rem;
    }
    
    .nav-dropdown .dropdown-link:hover {
        color: #DC2626;
        background: transparent;
        padding-left: 0;
    }
    
    .nav-dropdown .dropdown-arrow {
        margin-left: auto;
        pointer-events: auto;
    }
    
    .nav-dropdown .nav-link-with-arrow {
        pointer-events: auto;
    }
    
    .nav-menu .nav-link-button {
        background: #22C55E;
        color: var(--white) !important;
        display: block;
        text-align: center;
        margin: 0 auto;
        width: fit-content;
    }
    
    .nav-menu li:last-child:not(.mobile-social-item) {
        margin-left: 0;
        text-align: center;
        width: 100%;
    }
    
    /* Center the Contact button on mobile */
    .nav-menu li.nav-contact-item {
        margin-left: 0;
        margin-right: 0;
        width: 100%;
        text-align: center;
    }
    
    .nav-menu .nav-link-button:hover {
        background: #16A34A;
        color: var(--white) !important;
    }
    
    .nav-menu li.mobile-social-item {
        display: block !important;
        margin-top: auto;
        margin-bottom: 0;
        padding-top: var(--spacing-md);
        padding-bottom: var(--spacing-sm);
        border-top: 1px solid var(--light-grey);
        text-align: center;
        list-style: none;
    }
    
    .mobile-social-links {
        display: flex !important;
        justify-content: center;
        align-items: center;
        gap: var(--spacing-md);
    }
    
    .mobile-social-link {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        color: #DC2626;
        transition: all var(--transition-fast);
        border-radius: 50%;
        background: var(--bg-light);
    }
    
    .mobile-social-link[aria-label="Facebook"] {
        color: #1877F2;
    }
    
    .mobile-social-link[aria-label="LinkedIn"] {
        color: #0077B5;
    }
    
    .mobile-social-link:hover {
        transform: translateY(-2px);
    }
    
    .mobile-social-link[aria-label="Facebook"]:hover {
        color: #1877F2;
        background: var(--bg-light);
    }
    
    .mobile-social-link[aria-label="LinkedIn"]:hover {
        color: #0077B5;
        background: var(--bg-light);
    }
    
    .mobile-social-link svg {
        width: 100%;
        height: 100%;
        padding: 8px;
    }
    
    .nav-divider {
        z-index: 999;
        height: 15px;
    }
}

@media (max-width: 900px) {
    .logo-img {
        height: 55px;
    }
    
    .navbar.scrolled .logo-img {
        height: 36px;
    }
    
    .products-pre-banner {
        margin-top: -1px;
    }
    
    .carousel-section {
        margin-bottom: -1px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding-top: 0;
    }
    
    .logo-img {
        height: 35px;
    }
    
    .navbar.scrolled .logo-img {
        height: 35px;
    }
    
    .hero .container {
        justify-content: center;
    }
    
    .about .section-title {
        font-size: 1rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        overflow: visible;
    }
    
    .stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-sm);
    }
    
    .stat-item-inline {
        min-width: auto;
    }
    
    .about-image-placeholder {
        min-height: 350px;
        max-height: 500px;
        order: 2;
        width: calc(100% + 40px);
        max-width: calc(100vw - 20px);
        margin-left: -20px;
        margin-right: -20px;
    }
    
    .wave-divider-top {
        height: 150px;
    }
    
    .wave-divider-top.scroll-up {
        height: 220px;
    }
    
    .wave-divider {
        height: 150px;
    }
    
    .about-text h3 {
        font-size: 1.2rem;
    }
    
    .about-text p {
        font-size: 0.85rem;
    }
    
    .vision-mission-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .mission-card,
    .vision-card {
        padding: var(--spacing-md);
    }
    
    .mission-icon,
    .vision-icon {
        font-size: 3rem;
    }
    
    .mission-card h3,
    .vision-card h3 {
        font-size: 1.3rem;
    }
    
    .mission-card p,
    .vision-card p {
        font-size: 0.95rem;
    }
    
    .value-item {
        padding: var(--spacing-sm);
    }
    
    .value-icon {
        font-size: 1.8rem;
    }
    
    .value-text {
        font-size: 0.9rem;
    }
    
    .hero-content {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: calc(100% - 2rem);
        padding-left: 0;
        padding-right: 0;
        min-height: auto;
        height: auto;
        margin-left: 0;
        text-align: center;
    }
    
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .mobile-logo-item {
        display: block;
        text-align: center;
        margin-bottom: var(--spacing-md);
        padding-bottom: var(--spacing-md);
        border-bottom: 1px solid var(--light-grey);
    }
    
    .mobile-logo {
        display: inline-block;
    }
    
    .mobile-logo-img {
        height: 50px;
        width: auto;
    }
    
    .menu-close-btn {
        display: flex;
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        font-size: 2rem;
        color: #DC2626;
        cursor: pointer;
        width: 40px;
        height: 40px;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: all var(--transition-fast);
    }
    
    .menu-close-btn:hover {
        background: var(--bg-light);
        transform: rotate(90deg);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-tagline {
        font-size: 2.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .section-title {
        font-size: 1.1rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-grid {
        gap: var(--spacing-sm);
    }
    
    .product-card {
        flex: 0 0 calc(100vw - 40px);
        min-width: calc(100vw - 40px);
        max-width: calc(100vw - 40px);
    }
    
    .carousel-card {
        flex: 0 0 calc((100% - var(--spacing-md) * 2) / 3);
    }
    
    .customers-grid {
        grid-template-columns: 1fr;
    }
    
    .customers-header {
        padding-right: 0;
    }
    
    .machinery-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .carousel-card {
        width: calc((100vw - 40px) / 2);
        min-width: 180px;
        max-width: 240px;
        max-height: 280px;
    }
    
    .group {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    
    .logo-img {
        height: 42px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .about .section-title {
        font-size: 0.9rem;
    }
    
    .about-text h3 {
        font-size: 1.1rem;
    }
    
    .about-text p {
        font-size: 0.8rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .vision-mission-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .mission-card,
    .vision-card {
        padding: var(--spacing-md);
    }
    
    .mission-icon,
    .vision-icon {
        font-size: 3rem;
    }
    
    .mission-card h3,
    .vision-card h3 {
        font-size: 1.3rem;
    }
    
    .mission-card p,
    .vision-card p {
        font-size: 0.9rem;
    }
    
    .value-item {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-sm);
    }
    
    .value-icon {
        font-size: 1.5rem;
    }
    
    .value-text {
        font-size: 0.9rem;
    }
    
    .logo-text {
        display: none;
    }
    
    .carousel-card {
        width: calc(100vw - 100px);
        min-width: 180px;
        max-width: calc(100vw - 100px);
        max-height: 250px;
    }
    
    .group {
        gap: 20px;
    }
    
    /* Ensure gallery carousel animation works on mobile */
    .gallery-carousel {
        animation: scroll-left 40s infinite linear;
        -webkit-animation: scroll-left 40s infinite linear;
        animation-play-state: running !important;
        -webkit-animation-play-state: running !important;
    }
    
    .main-carousel {
        animation: scroll-right 40s infinite linear;
        -webkit-animation: scroll-right 40s infinite linear;
        animation-play-state: running !important;
        -webkit-animation-play-state: running !important;
    }
    
    .customers-header {
        padding-bottom: 0;
    }
}

/* ============================================
   WhatsApp Hover Icon
   ============================================ */
.whatsapp-hover-icon {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 52px;
    height: 52px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8);
    transition: all var(--transition-normal);
}

.whatsapp-hover-icon:hover {
    opacity: 1;
    visibility: visible;
    transform: scale(1.1);
    background: #20BA5A;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-hover-icon svg {
    width: 28px;
    height: 28px;
}

/* Show WhatsApp icon on hover anywhere on the page */
body:hover .whatsapp-hover-icon {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

@media (max-width: 768px) {
    .whatsapp-hover-icon {
        width: 48px;
        height: 48px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-hover-icon svg {
        width: 24px;
        height: 24px;
    }
}

/* ============================================
   Show Scrollbars on Mobile and Tablet
   ============================================ */
/* Ensure scrollbars are visible on mobile devices */
@media (max-width: 768px) {
    html {
        scrollbar-width: auto; /* Firefox - show scrollbar */
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: y mandatory;
    }
    
    html::-webkit-scrollbar {
        width: 8px; /* Show scrollbar on webkit browsers */
        display: block;
    }
    
    html::-webkit-scrollbar-track {
        background: var(--light-grey);
    }
    
    html::-webkit-scrollbar-thumb {
        background: var(--primary-maroon);
        border-radius: 10px;
    }
    
    html::-webkit-scrollbar-thumb:hover {
        background: var(--primary-wine);
    }
    
    body {
        scrollbar-width: auto; /* Firefox - show scrollbar */
        overflow-y: auto; /* Ensure vertical scrolling is enabled */
    }
    
    body::-webkit-scrollbar {
        width: 8px; /* Show scrollbar on webkit browsers */
        display: block;
    }
    
    body::-webkit-scrollbar-track {
        background: var(--light-grey);
    }
    
    body::-webkit-scrollbar-thumb {
        background: var(--primary-maroon);
        border-radius: 10px;
    }
    
    body::-webkit-scrollbar-thumb:hover {
        background: var(--primary-wine);
    }
}

/* Ensure scrollbars are visible on tablet devices */
@media (min-width: 769px) and (max-width: 1024px) {
    html {
        scrollbar-width: auto; /* Firefox - show scrollbar */
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: y mandatory;
    }
    
    html::-webkit-scrollbar {
        width: 10px; /* Show scrollbar on webkit browsers */
        display: block;
    }
    
    html::-webkit-scrollbar-track {
        background: var(--light-grey);
    }
    
    html::-webkit-scrollbar-thumb {
        background: var(--primary-maroon);
        border-radius: 10px;
    }
    
    html::-webkit-scrollbar-thumb:hover {
        background: var(--primary-wine);
    }
    
    body {
        scrollbar-width: auto; /* Firefox - show scrollbar */
        overflow-y: auto; /* Ensure vertical scrolling is enabled */
    }
    
    body::-webkit-scrollbar {
        width: 10px; /* Show scrollbar on webkit browsers */
        display: block;
    }
    
    body::-webkit-scrollbar-track {
        background: var(--light-grey);
    }
    
    body::-webkit-scrollbar-thumb {
        background: var(--primary-maroon);
        border-radius: 10px;
    }
    
    body::-webkit-scrollbar-thumb:hover {
        background: var(--primary-wine);
    }
}

/* ============================================
   Product Landing Pages
   ============================================ */
.product-page {
    padding-top: 80px;
}

.product-hero {
    position: relative;
    height: 60vh;
    min-height: 60vh;
    max-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    overflow: hidden;
    padding: 80px 0 0 0;
    z-index: 1;
    box-sizing: border-box;
    color: var(--white);
    margin-top: 0;
    margin-bottom: 0;
}

.product-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.product-hero-image {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%) scale(1);
    object-fit: cover;
    z-index: 0;
    border-radius: 0;
    box-shadow: none;
}

.product-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.8) 40%, rgba(0, 0, 0, 0.6) 70%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}

.product-hero .container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: var(--spacing-sm);
}

.product-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.product-hero-text {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.product-hero-title {
    font-size: 1.8rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 0.5rem;
    color: var(--white);
}

.product-hero-subtitle {
    font-size: 1.2rem;
    font-weight: var(--font-weight-semibold);
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
}

.product-hero-description {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.85);
}

.breadcrumbs {
    background: var(--bg-light);
    padding: var(--spacing-md) 0;
    border-bottom: 1px solid var(--light-grey);
    margin-top: 0;
}

.breadcrumb-list {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    align-items: center;
    flex-wrap: wrap;
}

.breadcrumb-item {
    font-size: 0.9rem;
}

.breadcrumb-item a {
    color: var(--primary-maroon);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.breadcrumb-item a:hover {
    color: var(--primary-wine);
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: var(--dark-grey);
}

.breadcrumb-separator {
    margin: 0 var(--spacing-xs);
    color: var(--medium-grey);
}

.product-details {
    padding: var(--spacing-xl) 0;
}

.product-content {
    max-width: 1200px;
    margin: 0 auto;
}

.product-main-content h2 {
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    color: var(--black);
    margin-bottom: var(--spacing-md);
}

.product-main-content h3 {
    font-size: 1.5rem;
    font-weight: var(--font-weight-semibold);
    color: var(--primary-maroon);
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
}

.product-main-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--dark-grey);
    margin-bottom: var(--spacing-md);
}

.product-features-list {
    list-style: none;
    padding: 0;
    margin: var(--spacing-md) 0;
}

.product-features-list li {
    padding: var(--spacing-sm) 0 var(--spacing-sm) 30px;
    position: relative;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--dark-grey);
    margin-bottom: var(--spacing-xs);
}

.product-features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-maroon);
    font-weight: var(--font-weight-bold);
    font-size: 1.2rem;
}

.applications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin: var(--spacing-lg) 0;
}

.application-item {
    background: var(--bg-light);
    padding: var(--spacing-md);
    border-radius: 8px;
    border-left: 4px solid var(--primary-maroon);
}

.application-item h4 {
    font-size: 1.2rem;
    font-weight: var(--font-weight-semibold);
    color: var(--black);
    margin-bottom: var(--spacing-xs);
}

.application-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--dark-grey);
    margin: 0;
}

.product-cta {
    background: linear-gradient(135deg, var(--primary-maroon) 0%, var(--primary-wine) 100%);
    padding: var(--spacing-xl) 0;
    text-align: center;
    color: var(--white);
}

.cta-content h2 {
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-sm);
    color: var(--white);
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-lg);
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
    .product-hero {
        height: 60vh;
        min-height: 60vh;
        padding: 80px 0 0 0;
    }
    
    .product-hero-background {
        height: 60vh;
    }
    
    .product-hero-text {
        max-width: 100%;
    }
    
    .product-hero-title {
        font-size: 1.5rem;
    }
    
    .product-hero-subtitle {
        font-size: 1rem;
    }
    
    .product-hero-description {
        font-size: 0.85rem;
        line-height: 1.5;
        margin-bottom: 0.75rem;
    }
    
    .product-main-content h2 {
        font-size: 1.5rem;
    }
    
    .product-main-content h3 {
        font-size: 1.2rem;
    }
    
    .applications-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 1.5rem;
    }
}

/* ============================================
   Loading Spinner
   ============================================ */
.loading-spinner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-spinner.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.spinner-wheel {
    width: 60px;
    height: 60px;
    border: 5px solid var(--light-grey);
    border-top-color: var(--primary-maroon);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Responsive adjustments for loading spinner */
@media (max-width: 768px) {
    .spinner-wheel {
        width: 50px;
        height: 50px;
        border-width: 4px;
    }
}


