:root {
    /* Default primary color (green) - will be updated by JavaScript */
    --primary-color: #092A12;
    --primary-color-light: #0d3a1a;
    --primary-color-dark: #061a0a;
    --accent-color: #2d5a3d;
    --text-color: #ffffff;
    /* Primary color with opacity for overlays */
    --primary-color-70: rgba(9, 42, 18, 0.7);
    --primary-color-50: rgba(9, 42, 18, 0.5);
    --primary-color-80: rgba(9, 42, 18, 0.8);

}


html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    box-sizing: border-box;
    margin: 0;
    padding: 90px 0 0 0;
    overflow-x: hidden;
    width: 100%;
    font-family: 'Playfair Display', 'Cormorant Garamond', 'Georgia', serif;
    color: #333;
    line-height: 1.6;
    background-color: var(--primary-color);
}

@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
}

/* MARK: TEXT SECTION ANIMATION */
.text-scroll-animation-section {
    height: 60dvh;
    padding: 0 clamp(4rem, 12vw, 20rem);
    display: grid;
    place-content: center;
    color: var(--text-color);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;

    p {
        font-size: clamp(2rem, 5vw, 8rem);
        font-weight: 300;
        letter-spacing: 0.05em;
        text-transform: uppercase;
    }

    /* Elegant corner accents */
    &::before,
    &::after {
        content: '';
        position: absolute;
        width: 2px;
        height: 60px;
        background: rgba(255, 255, 255, 0.2);
    }

    &::before {
        top: 0;
        left: 2rem;
    }

    &::after {
        bottom: 0;
        right: 2rem;
    }
}

/* MARK: TEXT SECTION ANIMATION */

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(2rem, 5vw, 4rem);
    width: 100%;
    box-sizing: border-box;
    overflow: visible;
}

/* MARK: SECTION */
/* Content Sections - Elegant with edged borders */
.content-section {
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 0;
    position: relative;
    transition: background 1s ease;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.content-section:first-of-type {
    border-top: none;
}

.content-section:last-of-type {
    border-bottom: none;
}

.content-section .container,
.content-section>div {
    position: relative;
    z-index: 1;
}

/* Section badge as large background text */
.section-badge {
    position: absolute;
    font-size: clamp(8rem, 20vw, 15rem);
    font-weight: 300;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.03);
    pointer-events: none;
    z-index: 0;
    white-space: nowrap;
    line-height: 1;
    user-select: none;
    font-family: 'Playfair Display', serif;
    padding: 0;
    margin: 0;
    display: block;
}

/* Position badges relative to their parent container, but allow overflow */
.content-section .container,
.content-section>div {
    overflow: visible;
}

.content-section {
    overflow: visible;
}

/* Updated image animation - targets all images in content sections */
.content-section img,
.content-section .slide-image img {
    transform: scale(0.8);
    opacity: 0;
    transition: transform 1s ease-out, opacity 1s ease-out;
}

/* Animate images when section is in view */
.content-section.in-view img,
.content-section.in-view .slide-image img {
    transform: scale(1);
    opacity: 1;
}

@keyframes fade-in {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
    transition: color 1s ease;
    text-align: center;
    font-weight: 300;
    letter-spacing: 0.05em;
    line-height: 1.2;
}

.section-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.section-content p {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin: 0;
    font-weight: 300;
}

/* Smooth fade in and slide up animation */
@keyframes fadeInUpSmooth {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

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

/* Old animation removed - replaced by fade-in animation above */

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
    }

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


/* MARK: Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    color: rgba(255, 255, 255, 0.9);
    padding: 1.25rem 0 1rem 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: background 1s cubic-bezier(0.22, 1, 0.36, 1), transform 0.3s ease, box-shadow 0.3s ease;
    overflow: visible;
    box-sizing: border-box;
    min-height: 80px;
    height: auto;
}

.site-header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    background: var(--primary-color-80);
    backdrop-filter: blur(10px);
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
    position: relative;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

/* Mobile Drawer Menu */
.mobile-drawer {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: var(--primary-color);
    z-index: 1001;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), background 1s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    overflow-y: auto;
    overflow-x: hidden;
    max-height: 100vh;
    box-sizing: border-box;
}

.mobile-drawer.active {
    transform: translateY(0);
}

.mobile-drawer-content {
    padding: 90px 2rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
    position: relative;
}

.mobile-drawer-nav {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-drawer-nav .nav-link {
    font-size: 1.1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.mobile-drawer-nav .nav-link:hover {
    color: rgba(255, 255, 255, 1);
    padding-left: 0.5rem;
}

.mobile-drawer-logo {
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.mobile-drawer-logo .logo-brand {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.mobile-drawer-logo .logo-dropdown-wrapper {
    display: inline-block;
    margin-top: 0.5rem;
}

.mobile-drawer-logo .logo-dropdown {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

.mobile-drawer-logo .dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: var(--primary-color, #092A12);
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.4),
        0 4px 12px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    min-width: 200px;
    border-radius: 12px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
                visibility 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10001;
    pointer-events: none;
    white-space: nowrap;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.mobile-drawer-logo .logo-dropdown-wrapper.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.mobile-drawer-cta {
    margin-top: 1rem;
}

.mobile-drawer-cta .cta-button {
    width: 100%;
    justify-content: center;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: visible;
    min-height: 50px;
}

/* Left Navigation */
.nav-left {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

/* Right Navigation */
.nav-right {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 400;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

.nav-link:hover {
    color: rgba(255, 255, 255, 1);
}

/* Center Logo Container */
.logo-container {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 1;
    overflow: visible;
}

.logo-brand {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.95);
}

.logo-dropdown-wrapper {
    position: relative;
    display: inline-block;
    z-index: 10002;
}

.logo-dropdown {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.4rem 0.75rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    border-radius: 6px;
    position: relative;
}

.logo-dropdown:hover {
    color: var(--accent-gold, #C9A86A);
    background: rgba(255, 255, 255, 0.08);
}

.logo-dropdown-wrapper.active .logo-dropdown {
    color: var(--accent-gold, #C9A86A);
    background: rgba(255, 255, 255, 0.1);
}

.dropdown-selected {
    font-weight: 600;
    letter-spacing: 0.5px;
}

.dropdown-chevron {
    width: 12px;
    height: 12px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: currentColor;
}

.logo-dropdown-wrapper.active .dropdown-chevron {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: var(--primary-color, #092A12);
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.4),
        0 4px 12px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    min-width: 200px;
    border-radius: 12px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
                visibility 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10000;
    pointer-events: none;
    white-space: nowrap;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.logo-dropdown-wrapper.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.dropdown-item {
    display: block;
    padding: 0.85rem 1.5rem;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.85);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.dropdown-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent-gold, #C9A86A) 0%, #d4b67a 100%);
    transform: scaleY(0);
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent-gold, #C9A86A);
    padding-left: 1.75rem;
}

.dropdown-item:hover::before {
    transform: scaleY(1);
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:first-child {
    border-radius: 12px 12px 0 0;
}

.dropdown-item:last-child {
    border-radius: 0 0 12px 12px;
}

.dropdown-item.active {
    background: rgba(255, 255, 255, 0.12);
    color: var(--accent-gold, #C9A86A);
    font-weight: 600;
}

.dropdown-item.active::before {
    transform: scaleY(1);
}

/* CTA Button */
.cta-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 400;
    transition: all 0.3s ease;
}

.cta-button:hover {
    border-color: rgba(255, 255, 255, 1);
    color: rgba(255, 255, 255, 1);
    background: rgba(255, 255, 255, 0.05);
}

.cta-button svg {
    width: 16px;
    height: 16px;
}

/* Header Divider */
.header-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin-top: 1rem;
}

/* Responsive Header Styles */
@media (min-width: 1025px) {
    .mobile-menu-toggle {
        display: none !important;
    }

    .mobile-drawer {
        display: none !important;
    }
}

@media (max-width: 1024px) {

    .nav-left,
    .nav-right {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
        flex-shrink: 0;
    }

    .logo-container {
        position: static;
        transform: none;
        margin: 0 auto;
        flex: 1;
        min-width: 0;
        overflow: hidden;
        z-index: auto;
    }

    /* Hide dropdown under logo - use drawer dropdown instead */
    .logo-container .logo-dropdown-wrapper {
        display: none;
    }

    .header-content {
        justify-content: space-between;
        gap: 1rem;
    }

    .header-divider {
        display: none;
    }

    .logo-brand {
        font-size: clamp(0.85rem, 2.5vw, 1.1rem);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

}

@media (max-width: 768px) {
    .site-header {
        padding: 1rem 0;
    }

    .container {
        padding: 0 15px;
    }

    .logo-brand {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }

    .mobile-drawer-content {
        padding: 80px 1rem 1.5rem 1rem;
    }

    .mobile-menu-toggle {
        width: 24px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .logo-brand {
        font-size: 0.8rem;
        letter-spacing: 0.5px;
    }

    .mobile-drawer-content {
        padding: 70px 0.75rem 1rem 0.75rem;
    }

    .mobile-drawer-nav .nav-link {
        font-size: 1rem;
    }
}


/* MARK: BANNER */
.banner {
    position: relative;
    top: 0;
    margin-top: 0;
    padding-top: 0;
    background: linear-gradient(180deg, #ffffff 0%, #092A12 100%);
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    transition: background 1s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 1;
}

@media (max-width: 768px) {
    .banner {
        height: 80vh;
        min-height: 500px;
    }
}

@media (max-width: 480px) {
    .banner {
        height: 70vh;
        min-height: 400px;
    }
}

/* Gradient backgrounds for each wall */
.banner.bg-green {
    background: linear-gradient(180deg, #ffffff 0%, #092A12 100%);
}

.banner.bg-orange {
    background: linear-gradient(180deg, #ffffff 0%, #4A2C1A 100%);
}

.banner.bg-red {
    background: linear-gradient(180deg, #ffffff 0%, #2A0A0A 100%);
}

.banner.bg-blue {
    background: linear-gradient(180deg, #ffffff 0%, #0A1A2A 100%);
}

.banner .product {
    width: 500px;
    height: 500px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    transition: 0.7s;
}

.banner .product .gem {
    background-image: url('../images/emerald.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    aspect-ratio: 1;
    width: clamp(150px, 30vw, 300px);
    margin: 0 auto;
    display: block;
    animation: floatUpDown 3s ease-in-out infinite;
    z-index: 2;
    transition: transform 3s cubic-bezier(0.22, 1, 0.36, 1);
    opacity: 1;
    /* Ensure gem is always fully visible, no opacity transitions */
}

.banner .product .gem.animating {
    animation: none;
}

.banner .product .gem.gem-green {
    background-image: url('../images/emerald.png');
}

.banner .product .gem.gem-orange {
    background-image: url('../images/amber.png');
}

.banner .product .gem.gem-red {
    background-image: url('../images/ruby.png');
}

.banner .product .gem.gem-blue {
    background-image: url('../images/lapis_lazuli.png');
}

/* Add a subtle background glow from behind the gem */
.banner .product .gem::before {
    /* White glowing effect */
    box-shadow:
        0 0 25px rgba(255, 255, 255, 0.8),
        0 0 50px rgba(255, 255, 255, 0.6),
        0 0 90px rgba(255, 255, 255, 0.4);
    position: relative;
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 20%);
    filter: blur(40px);
    z-index: -1;
}

/* Floating animation */
@keyframes floatUpDown {
    0% {
        transform: translateY(0);
    }

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

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

.banner .product .gem-shadow {
    width: 60%;
    height: 40px;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.3) 0%, transparent 80%);
    margin: 10px auto 0 auto;
    filter: blur(2px);
    animation: shadowPulse 3s ease-in-out infinite;
    opacity: 1;
    transition: opacity 0.5s ease;
}

/* Banner Content */
.banner-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 clamp(1rem, 5vw, 4rem);
    z-index: 10;
    pointer-events: none;
    box-sizing: border-box;
    transition: transform 3s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.banner-text-left,
.banner-text-right {
    flex: 1;
    display: flex;
    align-items: center;
    min-width: 0;
    max-width: 100%;
}

.banner-text-left {
    justify-content: flex-start;
    padding-right: 1rem;
}

.banner-text-right {
    justify-content: flex-end;
    padding-left: 1rem;
}

@media (max-width: 768px) {

    .banner-text-left,
    .banner-text-right {
        padding: 0;
        margin: 0;
    }
}

.banner-title-left,
.banner-title-right {
    margin: 0;
    font-weight: 700;
    letter-spacing: clamp(1px, 0.3vw, 3px);
    text-transform: uppercase;
    animation: fadeInUpSmooth 1.2s ease-out forwards;
    opacity: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1;
}

@media (max-width: 768px) {

    .banner-content h1,
    .banner-content h2 {
        margin: 0 !important;
        padding: 0 !important;
        line-height: 1 !important;
        display: block;
    }

    .banner-title-left,
    .banner-title-right {
        line-height: 1 !important;
        padding: 0 !important;
        margin: 0 !important;
    }
}

.banner-title-left {
    font-size: clamp(1rem, 3.5vw + 0.5rem, 3rem);
    color: rgba(255, 255, 255, 0.95);
    -webkit-text-stroke: clamp(1px, 0.15vw, 2px) rgba(255, 255, 255, 1);
    -webkit-text-fill-color: transparent;
    position: relative;
    padding-bottom: clamp(0.3rem, 0.5vw, 0.5rem);
    animation-delay: 0.3s;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.banner-title-left::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: clamp(1px, 0.2vw, 2px);
    background: rgba(255, 255, 255, 0.8);
}

.banner-title-right {
    font-size: clamp(1.2rem, 4vw + 0.5rem, 3.5rem);
    color: rgba(255, 255, 255, 1);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation-delay: 0.5s;
}

/* Hide banner content on large screens when wall is not active */
@media (min-width: 769px) {
    .wall:not(.active) .banner-content {
        opacity: 0;
        visibility: hidden;
    }

    .wall.active .banner-content {
        opacity: 1;
        visibility: visible;
    }
}

/* Responsive Banner Content */
@media (max-width: 1400px) {
    .banner-content {
        padding: 0 clamp(1.5rem, 4vw, 3rem);
    }
}

@media (max-width: 1024px) {
    .banner-content {
        padding: 0 clamp(1rem, 3vw, 2rem);
    }

    .banner-text-left {
        padding-right: 0.5rem;
    }

    .banner-text-right {
        padding-left: 0.5rem;
    }

    .banner-title-left {
        font-size: clamp(0.9rem, 3vw + 0.5rem, 2.5rem);
    }

    .banner-title-right {
        font-size: clamp(1rem, 3.5vw + 0.5rem, 3rem);
    }
}

@media (max-width: 768px) {

    /* Show all banner content on mobile, centered above nav buttons */
    .wall .banner-content {
        opacity: 1 !important;
        visibility: visible !important;
        padding: 0 clamp(0.75rem, 2vw, 1.5rem);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0.5rem !important;
        top: auto;
        bottom: clamp(80px, 12vh, 120px);
        left: 0;
        right: 0;
        position: absolute;
        transform: none;
        width: 100%;
        height: auto;
        max-width: 100%;
        transition: opacity 0.3s ease;
        will-change: opacity;
    }

    /* Content moves with wall - inherit wall's transform */
    .wall.bring-up .banner-content,
    .wall:not(.active) .banner-content {
        transform: none;
    }

    .wall.active .banner-content {
        transform: none;
    }

    /* Only show the active wall's content on mobile */
    .wall:not(.active) .banner-content {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    .wall.active .banner-content {
        opacity: 1;
        visibility: visible;
    }

    .banner-text-left,
    .banner-text-right {
        flex: 0 0 auto;
        padding: 0 !important;
        margin: 0 !important;
        width: 100%;
        display: flex;
        justify-content: center;
        text-align: center;
    }

    .banner-title-left,
    .banner-title-right {
        margin: 0 !important;
        padding: 0 !important;
        line-height: 1 !important;
        display: inline-block;
    }

    .banner-title-left {
        font-size: clamp(0.85rem, 3.5vw + 0.5rem, 2rem);
        letter-spacing: clamp(1px, 0.25vw, 2px);
    }

    .banner-title-right {
        font-size: clamp(1rem, 4vw + 0.5rem, 2.5rem);
        letter-spacing: clamp(1px, 0.25vw, 2px);
    }
}

@media (max-width: 480px) {
    .wall .banner-content {
        padding: 0 clamp(0.5rem, 2vw, 1rem);
        bottom: clamp(70px, 10vh, 100px);
        gap: 0.35rem !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: none;
    }

    .wall.bring-up .banner-content,
    .wall:not(.active) .banner-content {
        transform: none;
    }

    .wall.active .banner-content {
        transform: none;
    }

    .banner-title-left,
    .banner-title-right {
        margin: 0 !important;
        padding: 0 !important;
        line-height: 1 !important;
    }

    .banner-title-left {
        font-size: clamp(0.75rem, 3vw + 0.5rem, 1.8rem);
        letter-spacing: clamp(0.5px, 0.2vw, 1.5px);
    }

    .banner-title-right {
        font-size: clamp(0.85rem, 3.5vw + 0.5rem, 2rem);
        letter-spacing: clamp(0.5px, 0.2vw, 1.5px);
    }
}

@media (min-width: 1920px) {
    .banner-content {
        padding: 0 5rem;
    }

    .banner-title-left {
        font-size: 3.5rem;
    }

    .banner-title-right {
        font-size: 4rem;
    }
}

.banner .walls {
    /* position: absolute; */
    /* inset: 0 0 0 0; */
    /* pointer-events: none; */
    /* animation: bringUpAnimation; */
    /* animation-timeline: view(); */
    position: relative;
    width: 100%;
    height: 100%;
}

.banner .walls .wall {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 3s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

@media (max-width: 768px) {
    .banner .walls .wall {
        height: 80vh;
    }
}

@media (max-width: 480px) {
    .banner .walls .wall {
        height: 70vh;
    }
}

/* Start positions: first visible, others hidden at top */
.wall-green {
    z-index: 4;
    transform: translateY(0);
}

.wall-orange {
    z-index: 3;
    transform: translateY(-100%);
}

.wall-red {
    z-index: 2;
    transform: translateY(-100%);
}

.wall-blue {
    z-index: 1;
    transform: translateY(-100%);
}

/* Active wall states */
.wall.active {
    transform: translateY(0) !important;
}

.wall.bring-up {
    transform: translateY(-100%);
}

.wall.bring-down {
    transform: translateY(100%);
}

@keyframes bringUpAnimation {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-100);
    }
}

.banner .walls .wall img {
    position: absolute;
    transition: 0.7s;
}

.banner .walls .wall img:nth-child(1) {
    top: 0;
    position: absolute;
    height: 100dvh;
    left: 0;
    transform: translateX(0);
    transition: transform 0.5s ease;
    z-index: 1;
    object-fit: cover;
    width: auto;
}

.banner .walls img:nth-child(2) {
    bottom: 0;
    position: absolute;
    height: 100dvh;
    right: 0;
    transform: translateX(0);
    transition: transform 0.5s ease;
    z-index: 1;
    object-fit: cover;
    width: auto;
}

@media (max-width: 768px) {

    .banner .walls .wall img:nth-child(1),
    .banner .walls img:nth-child(2) {
        height: 80vh;
    }
}

@media (max-width: 480px) {

    .banner .walls .wall img:nth-child(1),
    .banner .walls img:nth-child(2) {
        height: 70vh;
    }
}

/* Responsive: Walls extend outside on smaller screens */
@media (max-width: 2000px) {
    .banner .walls .wall img:nth-child(1) {
        transform: translateX(calc(-800px + 35vw));
    }

    .banner .walls img:nth-child(2) {
        transform: translateX(calc(800px - 35vw));
    }
}

/* Navigation buttons */
.nav-buttons {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    z-index: 100;
}

.nav-btn {
    width: 60px;
    height: 60px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 0;
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 1);
    transform: scale(1.1);
}

.nav-btn:active {
    transform: scale(0.95);
}

.nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.nav-btn svg {
    width: 24px;
    height: 24px;
}


/* MARK: Why Us Section */
#why-us {
    padding: 0;
    overflow: hidden;
    position: relative;
    transition: background 1s ease;
}

#why-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.05) 1px, transparent 0);
    background-size: 40px 40px;
    opacity: 0.3;
    z-index: 0;
}

.why-us-container {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}

.why-us-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: flex;
    flex-direction: row;
    gap: 4rem;
    align-items: flex-start;
    min-height: auto;
}

/* Left Section: Images Wrapper */
.why-us-images-wrapper {
    flex: 0 0 45%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Top Image */
.why-us-image-top {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.why-us-image-top-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    opacity: 0;
    transform: translateX(-100px);
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

/* Bottom Image */
.why-us-image-bottom {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.why-us-image-bottom-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    opacity: 0;
    transform: translateX(100px);
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

/* Right Section: Text Content */
.why-us-text {
    flex: 1;
    color: white;
    text-align: left;
    animation-name: fadeInUpSmooth;
    animation-duration: 1.2s;
    animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
    animation-fill-mode: both;
    animation-timeline: view();
    animation-range: entry 0% entry 60%;
    opacity: 0;
}

.why-us-heading {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
    line-height: 1.2;
}

.why-us-subheading {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
}

.why-us-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.why-us-feature {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-left: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.why-us-feature:nth-child(1) {
    animation-delay: 0.1s;
}

.why-us-feature:nth-child(2) {
    animation-delay: 0.2s;
}

.why-us-feature:nth-child(3) {
    animation-delay: 0.3s;
}

.why-us-feature:nth-child(4) {
    animation-delay: 0.4s;
}

.why-us-feature:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.25);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
}

.feature-title {
    font-size: clamp(1.1rem, 1.5vw, 1.3rem);
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: white;
}

.feature-description {
    font-size: clamp(0.9rem, 1.2vw, 1rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .why-us-content {
        flex-direction: column;
        gap: 3rem;
        padding: 3rem 2rem;
    }

    .why-us-images-wrapper {
        flex: 1;
        width: 100%;
        max-width: 100%;
    }

    .why-us-text {
        text-align: center;
        flex: 1;
    }

    .why-us-subheading {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .why-us-content {
        padding: 2rem 1.5rem;
        gap: 2rem;
    }

    .why-us-images-wrapper {
        gap: 1.5rem;
    }

    .why-us-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .why-us-content {
        padding: 2rem 1rem;
    }
}

.section-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* MARK: OUR BRIEF STORY */
/* Our Brief Story - Video Background Section */
#our-brief-story {
    padding: 0;
    position: relative;
    overflow: hidden;
    min-height: auto;
    height: auto;
    display: block;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    z-index: 1;
    overflow: hidden;
}

.background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 100vh;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    opacity: 0.5;
    pointer-events: none;
    z-index: 1;
}

/* Video element specific styling */
.background-video[src] {
    object-fit: cover;
}

/* Ensure video covers the entire area for iframe (YouTube) */
@media (min-aspect-ratio: 16/9) {
    .background-video iframe {
        width: 100vw;
        height: 56.25vw;
        /* 16:9 aspect ratio */
    }
}

@media (max-aspect-ratio: 16/9) {
    .background-video iframe {
        width: 177.78vh;
        /* 16:9 aspect ratio */
        height: 100vh;
    }
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            var(--primary-color-70) 0%,
            var(--primary-color-50) 50%,
            var(--primary-color-80) 100%);
    z-index: 2;
    pointer-events: none;
}

.story-content-wrapper {
    position: relative;
    z-index: 3;
    width: 100%;
    min-height: 100vh;
    padding: 0;
    display: block;
}

.story-content-wrapper .container {
    position: relative;
    min-height: 100vh;
    padding: 4rem 2rem 2rem;
    display: block;
    padding-top: 6rem;
}

.story-content {
    max-width: 1200px;
    width: 100%;
    color: white;
    margin: 0 auto;
    padding-top: 0;
    animation-name: fadeInUpSmooth;
    animation-duration: 1.2s;
    animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
    animation-fill-mode: both;
    animation-timeline: view();
    animation-range: entry 0% entry 60%;
    opacity: 0;
}

.story-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    animation-name: fadeInUpSmooth;
    animation-duration: 1s;
    animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
    animation-fill-mode: both;
    animation-timeline: view();
    animation-range: entry 0% entry 50%;
    opacity: 0;
}

.story-title {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.1;
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
    animation-name: fadeInUpSmooth;
    animation-duration: 1.2s;
    animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
    animation-fill-mode: both;
    animation-timeline: view();
    animation-range: entry 5% entry 55%;
    animation-delay: 0.1s;
    opacity: 0;
}

.story-text-content {
    max-width: 800px;
}

.story-lead {
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    animation-name: fadeInUpSmooth;
    animation-duration: 1s;
    animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
    animation-fill-mode: both;
    animation-timeline: view();
    animation-range: entry 10% entry 60%;
    animation-delay: 0.2s;
    opacity: 0;
}

.story-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.85);
    animation-name: fadeInUpSmooth;
    animation-duration: 1s;
    animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
    animation-fill-mode: both;
    animation-timeline: view();
    animation-range: entry 15% entry 65%;
    animation-delay: 0.3s;
    opacity: 0;
}

.story-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, background 0.3s ease;
    animation-name: fadeInScale;
    animation-duration: 1s;
    animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
    animation-fill-mode: both;
    animation-timeline: view();
    animation-range: entry 30% entry 90%;
    opacity: 0;
}

.stat-item:nth-child(1) {
    animation-delay: 0.1s;
    animation-range: entry 30% entry 90%;
}

.stat-item:nth-child(2) {
    animation-delay: 0.2s;
    animation-range: entry 35% entry 95%;
}

.stat-item:nth-child(3) {
    animation-delay: 0.3s;
    animation-range: entry 40% entry 100%;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

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

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

/* Responsive adjustments for story section */
@media (max-width: 768px) {
    .story-title {
        font-size: 2.5rem;
    }

    .story-lead {
        font-size: 1.2rem;
    }

    .story-description {
        font-size: 1rem;
    }

    .story-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

/* Products Pricing Cards */
.products-pricing {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    padding: 3rem;
    padding-top: 4rem;
    position: relative;
    overflow: visible;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-left: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: none;
}

.pricing-card:nth-child(1) {
    animation-delay: 0.1s;
}

.pricing-card:nth-child(2) {
    animation-delay: 0.2s;
}

.pricing-card:nth-child(3) {
    animation-delay: 0.3s;
}

.pricing-card:nth-child(4) {
    animation-delay: 0.4s;
}

.pricing-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.pricing-card-light-blue:hover {
    background: linear-gradient(
        135deg,
        rgba(15, 52, 46, 0.98) 0%,
        rgba(20, 68, 60, 1) 50%,
        rgba(10, 40, 35, 1) 100%
    );
    border-color: rgba(127, 255, 212, 0.4);
}

/* Gem Image */
.pricing-gem-image {
    width: 60%;
    height: 120px;
    margin: -150px auto 1rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    position: relative;
    background: transparent;
    z-index: 10;
}

.pricing-gem-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.3s ease;
    display: block;
}

.pricing-card:hover .pricing-gem-image img {
    transform: scale(1.05);
}

/* Card Background Gradients */
.pricing-card-green {
    background: linear-gradient(135deg, rgba(9, 42, 18, 0.95) 0%, rgba(13, 58, 26, 0.98) 50%, rgba(6, 26, 10, 1) 100%);
}

.pricing-card-orange {
    background: linear-gradient(135deg, rgba(74, 44, 26, 0.95) 0%, rgba(90, 58, 42, 0.98) 50%, rgba(58, 28, 10, 1) 100%);
}

.pricing-card-red {
    background: linear-gradient(135deg, rgba(42, 10, 10, 0.95) 0%, rgba(58, 26, 26, 0.98) 50%, rgba(26, 5, 5, 1) 100%);
}

.pricing-card-blue {
    background: linear-gradient(135deg, rgba(10, 26, 42, 0.95) 0%, rgba(26, 42, 58, 0.98) 50%, rgba(5, 10, 21, 1) 100%);
}

.pricing-card-light-blue {
    background: linear-gradient(
        135deg,
        rgba(10, 42, 38, 0.95) 0%,
        rgba(15, 58, 52, 0.98) 50%,
        rgba(6, 32, 28, 1) 100%
    );
}

/* Title and Subtitle */
.pricing-title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin: 0 0 0.5rem 0;
    line-height: 1.2;
}

.pricing-subtitle {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 2rem 0;
}

.pricing-card-green .pricing-subtitle {
    color: rgba(74, 222, 128, 0.9);
}

.pricing-card-orange .pricing-subtitle {
    color: rgba(251, 146, 60, 0.9);
}

.pricing-card-red .pricing-subtitle {
    color: rgba(248, 113, 113, 0.9);
}

.pricing-card-blue .pricing-subtitle {
    color: rgba(96, 165, 250, 0.9);
}

.pricing-card-light-blue .pricing-subtitle {
    color: rgba(127, 255, 212, 0.85);
}

/* Price */
.pricing-price {
    margin-bottom: 2rem;
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.price-unit {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

/* Description */
.pricing-description {
    margin-bottom: 1.5rem;
}

.pricing-description p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Features List */
.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.pricing-features li svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.pricing-card-green .pricing-features li svg {
    color: #4ade80;
}

.pricing-card-orange .pricing-features li svg {
    color: #fb923c;
}

.pricing-card-red .pricing-features li svg {
    color: #f87171;
}

.pricing-card-blue .pricing-features li svg {
    color: #60a5fa;
}

.pricing-card-light-blue .pricing-features li svg {
    color: rgba(127, 255, 212, 0.8);
}

/* Button */
.pricing-button {
    width: 100%;
    padding: 1rem 2rem;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
    color: white;
}

.pricing-button-green {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.pricing-button-green:hover {
    background: rgba(74, 222, 128, 0.2);
    border-color: #4ade80;
}

.pricing-button-orange {
    background: #fb923c;
}

.pricing-button-orange:hover {
    background: #f97316;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(251, 146, 60, 0.4);
}

.pricing-button-red {
    background: #f87171;
}

.pricing-button-red:hover {
    background: #ef4444;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(248, 113, 113, 0.4);
}

.pricing-button-blue {
    background: #60a5fa;
}

.pricing-button-blue:hover {
    background: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(96, 165, 250, 0.4);
}

/* Learn More Link */
.pricing-learn-more {
    display: block;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    margin-top: 0.5rem;
}

.pricing-card-green .pricing-learn-more {
    color: rgba(74, 222, 128, 0.9);
}

.pricing-card-orange .pricing-learn-more {
    color: rgba(251, 146, 60, 0.9);
}

.pricing-card-red .pricing-learn-more {
    color: rgba(248, 113, 113, 0.9);
}

.pricing-card-blue .pricing-learn-more {
    color: rgba(96, 165, 250, 0.9);
}

.pricing-card-light-blue .pricing-learn-more {
    color: rgba(127, 255, 212, 0.85);
}

.pricing-learn-more:hover {
    color: white;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .products-pricing {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .products-pricing {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 500px;
    }

    .pricing-card {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .pricing-card {
        padding: 1.5rem;
    }

    .pricing-title {
        font-size: 1.75rem;
    }

    .price-amount {
        font-size: 2rem;
    }

    .pricing-gem-image {
        width: 50%;
        height: 150px;
        margin: -60px auto 1rem auto;
    }

    .pricing-description p {
        font-size: 0.9rem;
    }
}

/* MARK: Testimonials Carousel */
.testimonials-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
    padding: 2rem 0;
}

.testimonials-header {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonials-label {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    transition: color 1s ease;
}

.testimonials-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    color: white;
    margin: 0;
}

.testimonials-nav {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.testimonial-nav-btn {
    width: 48px;
    height: 48px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: background 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.testimonial-nav-btn:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.testimonial-nav-btn:active {
    transform: scale(0.95);
}

.testimonial-nav-btn svg {
    width: 24px;
    height: 24px;
}

.testimonial-nav-next {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.testimonials-carousel {
    position: relative;
    min-height: 400px;
    height: auto;
    overflow: visible;
    padding-bottom: 150px;
}

.testimonials-track {
    position: relative;
    width: 100%;
    min-height: 400px;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.testimonial-card {
    position: absolute;
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    box-shadow: none;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-left: 2px solid rgba(255, 255, 255, 0.2);
    opacity: 0.3;
    transform: translateY(120px) scale(0.8);
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
    z-index: 0;
    top: 0;
    left: 0;
    box-sizing: border-box;
}

.testimonial-card.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
    z-index: 3;
}

.testimonial-content {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.testimonial-avatar {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    overflow: hidden;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-text {
    flex: 1;
}

.testimonial-quote {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 1rem 0;
}

.testimonial-author {
    font-size: 1rem;
    font-weight: 600;
    color: white;
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    justify-content: flex-end;
    color: var(--primary-color);
    transition: color 1s ease;
}

.testimonial-rating svg {
    width: 20px;
    height: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .testimonials-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .testimonials-carousel {
        min-height: 380px;
        padding-bottom: 130px;
    }

    .testimonials-track {
        min-height: 380px;
    }
}

@media (max-width: 768px) {
    .testimonials-wrapper {
        gap: 2rem;
    }

    .testimonials-title {
        font-size: 2rem;
    }

    .testimonials-carousel {
        min-height: 350px;
        padding-bottom: 120px;
    }

    .testimonials-track {
        min-height: 350px;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-content {
        gap: 1rem;
    }

    .testimonial-avatar {
        width: 60px;
        height: 60px;
    }

    .testimonial-quote {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .testimonials-carousel {
        min-height: 320px;
        padding-bottom: 100px;
    }

    .testimonials-track {
        min-height: 320px;
    }

    .testimonial-card {
        padding: 1.25rem;
    }

    .testimonial-nav-btn {
        width: 40px;
        height: 40px;
    }

    .testimonial-nav-btn svg {
        width: 20px;
        height: 20px;
    }
}

/* MARK: New Content Sections */
.section-badge {
    position: absolute;
    font-size: clamp(8rem, 20vw, 15rem);
    font-weight: 300;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.03);
    pointer-events: none;
    z-index: 0;
    white-space: nowrap;
    line-height: 1;
    user-select: none;
    font-family: 'Playfair Display', serif;
}

/* Varied positioning for different sections */
#about-company .section-badge {
    top: 10%;
    left: 5%;
}

#products .section-badge {
    top: 5%;
    right: 5%;
}

#gemstone-gallery .section-badge {
    bottom: 15%;
    left: 8%;
}

#expertise-section .section-badge {
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
}

#journey-section .section-badge {
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
}

#education .section-badge {
    bottom: 10%;
    right: 8%;
}

#certification .section-badge {
    top: 15%;
    left: 10%;
}

#custom-order .section-badge {
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
}

#wholesale .section-badge {
    top: 30%;
    right: 15%;
}

#blog .section-badge {
    bottom: 5%;
    left: 12%;
}

#contact .section-badge {
    top: 40%;
    left: 8%;
    transform: translateY(-50%);
}

#our-brief-story .section-badge {
    top: 8%;
    right: 8%;
    z-index: 2;
}

#faq .section-badge {
    bottom: 25%;
    right: 12%;
}

.section-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

/* Gallery Section */
#gemstone-gallery {
    padding: 6rem 0;
    min-height: 80vh;
}

.gallery-layout {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.gallery-header-title {
    font-size: clamp(6rem, 15vw, 12rem);
    font-weight: 300;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.1);
    position: absolute;
    top: 2rem;
    right: 2rem;
    z-index: 0;
    font-family: 'Playfair Display', serif;
    pointer-events: none;
    user-select: none;
    line-height: 1;
}

.gallery-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 1;
    min-height: 600px;
}

/* Left Column - Gallery Image Cards */
.gallery-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 2rem;
    width: fit-content;
    max-width: 200px;
}

.gallery-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    width: fit-content;
}

.gallery-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

.gallery-card.active {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.25);
}

.gallery-card-image {
    width: 100px;
    height: 100px;
    object-fit: contain;
    flex-shrink: 0;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

.gallery-card-arrow {
    margin-left: auto;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.gallery-card.active .gallery-card-arrow {
    color: rgba(255, 255, 255, 1);
    transform: translateX(5px);
}

.gallery-card:hover .gallery-card-arrow {
    color: rgba(255, 255, 255, 0.9);
    transform: translateX(8px);
}

.gallery-card-arrow svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

/* Right Column - Details Panel */
.gallery-details-panel {
    position: relative;
    padding-top: 2rem;
    min-height: 500px;
    overflow: hidden;
}

.gallery-details-content {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem;
    color: white;
    position: relative;
    word-wrap: break-word;
    overflow-wrap: break-word;
    box-sizing: border-box;
}

.gallery-details-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin: 0 0 2rem 0;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.gallery-details-section {
    margin-bottom: 2.5rem;
}

.gallery-details-section:last-child {
    margin-bottom: 0;
}

.gallery-details-subtitle {
    font-size: 1.2rem;
    font-weight: 500;
    margin: 0 0 1rem 0;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.gallery-details-text {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

/* Responsive Design for Gallery Layout */
@media (max-width: 1024px) {
    .gallery-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        min-height: auto;
    }

    .gallery-cards {
        padding-top: 0;
        max-width: 100%;
        width: 100%;
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
        padding-bottom: 1rem;
    }

    .gallery-cards::-webkit-scrollbar {
        height: 6px;
    }

    .gallery-cards::-webkit-scrollbar-track {
        background: transparent;
    }

    .gallery-cards::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.2);
        border-radius: 3px;
    }

    .gallery-cards::-webkit-scrollbar-thumb:hover {
        background: rgba(255, 255, 255, 0.3);
    }

    .gallery-card {
        flex-shrink: 0;
        width: auto;
        scroll-snap-align: start;
    }

    .gallery-details-panel {
        padding-top: 0;
    }

    .gallery-header-title {
        position: relative;
        top: auto;
        right: auto;
        text-align: right;
        margin-bottom: 2rem;
        font-size: clamp(4rem, 12vw, 8rem);
    }

    .gallery-details-content {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .gallery-layout {
        padding: 2rem 1rem;
    }

    .gallery-content {
        gap: 2rem;
    }

    .gallery-cards {
        gap: 1rem;
    }

    .gallery-card {
        padding: 0.75rem;
        gap: 0.75rem;
    }

    .gallery-card-image {
        width: 80px;
        height: 80px;
    }

    .gallery-header-title {
        font-size: clamp(3rem, 10vw, 6rem);
        margin-bottom: 1.5rem;
    }

    .gallery-details-content {
        padding: 1.5rem;
    }

    .gallery-details-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .gallery-cards {
        gap: 0.75rem;
    }

    .gallery-card {
        padding: 0.5rem;
        gap: 0.5rem;
    }

    .gallery-card-image {
        width: 70px;
        height: 70px;
    }

    .gallery-card-arrow svg {
        width: 18px;
        height: 18px;
    }

    .gallery-details-content {
        padding: 1.25rem;
    }

    .gallery-details-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .gallery-details-subtitle {
        font-size: 1rem;
    }

    .gallery-details-text {
        font-size: 0.9rem;
    }
}

/* Expertise Section */
#expertise-section {
    padding: 6rem 0;
}

.expertise-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.expertise-text {
    color: white;
}

.expertise-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
}

.expertise-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.expertise-stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-value {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.expertise-visual {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.expertise-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateX(50px);
    transition: transform 0.3s ease, background 0.3s ease;
}

.expertise-card:hover {
    transform: translateX(0) translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.expertise-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin: 0 0 0.75rem 0;
}

.expertise-card p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin: 0;
}

/* Journey Timeline Section */
#journey-section {
    padding: 6rem 0;
}

.journey-timeline {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.timeline-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    position: relative;
}

.timeline-item {
    position: relative;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateY(50px);
    transition: transform 0.3s ease, background 0.3s ease;
}

.timeline-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
}

.timeline-year {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    display: block;
}

.timeline-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin: 0 0 0.75rem 0;
}

.timeline-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for New Sections */
@media (max-width: 1024px) {
    .about-company-content {
        grid-template-columns: 1fr !important;
        gap: 3rem;
    }

    .about-company-image-wrapper {
        order: -1;
        max-width: 600px;
        margin: 0 auto;
        width: 100%;
    }

    .about-company-text {
        text-align: center;
        width: 100%;
    }

    .about-company-body {
        font-size: 1.1rem;
        margin: 1.5rem 0 2rem;
    }

    .about-company-points {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .expertise-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .expertise-visual {
        order: -1;
    }

    .expertise-card {
        transform: translateX(0);
    }

    .timeline-items {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-company-section {
        padding: 4rem 0;
    }

    .about-company-content {
        gap: 2.5rem;
        padding: 0 1rem;
    }

    .about-company-image-wrapper {
        max-width: 100%;
        aspect-ratio: 4/3;
    }

    .about-company-text {
        text-align: center;
    }

    .about-company-body {
        font-size: 1rem;
        line-height: 1.8;
        margin: 1.5rem 0 2rem;
    }

    .about-company-points {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .company-point {
        padding: 1.25rem;
        gap: 0.75rem;
    }

    .section-title {
        font-size: clamp(2rem, 4vw, 3rem);
    }
}

@media (max-width: 480px) {
    .about-company-section {
        padding: 3rem 0;
    }

    .about-company-content {
        gap: 2rem;
        padding: 0 0.75rem;
    }

    .about-company-image-wrapper {
        aspect-ratio: 1/1;
    }

    .about-company-body {
        font-size: 0.95rem;
        margin: 1rem 0 1.5rem;
    }

    .about-company-points {
        gap: 1rem;
    }

    .company-point {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .company-point svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 768px) {

    .expertise-stats {
        grid-template-columns: 1fr;
    }

    .timeline-items {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {}

/* MARK: Hero Intro Section */
.hero-intro-section {
    padding: 8rem 0;
    text-align: center;
}

.hero-intro-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-intro-headline {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 300;
    line-height: 1.2;
    color: white;
    margin-bottom: 2rem;
    letter-spacing: 0.02em;
}

.hero-intro-subheadline {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 3rem;
    font-weight: 300;
}

.hero-intro-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.cta-button-primary {
    padding: 1rem 2.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.cta-button-primary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.cta-button-secondary {
    padding: 1rem 2.5rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: white;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.cta-button-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
}

.hero-intro-highlights {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.highlight-item svg {
    width: 20px;
    height: 20px;
    color: rgba(255, 255, 255, 0.8);
}

/* MARK: Section Header */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: 1.5rem auto 0;
    line-height: 1.8;
}


/* MARK: About Company Section */
.about-company-section {
    padding: 6rem 0;
}

.about-company-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-company-image-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 3/4;
}

.about-company-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    opacity: 0;
    transform: scale(1.1);
}

.about-company-text {
    text-align: left;
    color: white;
}

.about-company-body {
    font-size: 1.2rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.9);
    margin: 2rem 0 3rem;
}

.about-company-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.company-point {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    opacity: 0;
    transform: translateX(-30px);
}

.company-point svg {
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.8);
}

/* MARK: Education Section */
.education-section {
    padding: 6rem 0;
}

.education-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.education-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    opacity: 0;
    transform: translateY(50px);
}

.education-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.education-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.education-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: white;
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.education-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin: 0;
}

/* MARK: Certification Section */
.certification-section {
    padding: 6rem 0;
}

.certification-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.certification-body {
    font-size: 1.2rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.9);
    margin: 2rem 0 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.certification-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-top: 3rem;
}

.cert-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-weight: 500;
    opacity: 0;
    transform: scale(0.8);
}

.badge-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    font-weight: 700;
    font-size: 0.9rem;
}

/* MARK: Custom Order Section */
.custom-order-section {
    padding: 6rem 0;
    text-align: center;
}

.custom-order-content {
    max-width: 800px;
    margin: 0 auto;
}

.custom-order-body {
    font-size: 1.2rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.9);
    margin: 2rem 0 3rem;
}

/* MARK: Quality Control and Certification Section */
#quality-control {
    padding: 6rem 0;
}

.quality-control-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.quality-control-text {
    color: white;
}

.quality-control-description {
    font-size: 1.2rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.9);
    margin: 2rem 0 3rem;
}

.quality-control-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.quality-feature {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-left: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.quality-feature:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.25);
}

.quality-feature-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.quality-feature-icon svg {
    width: 28px;
    height: 28px;
}

.quality-feature-title {
    font-size: clamp(1.1rem, 1.5vw, 1.3rem);
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: white;
}

.quality-feature-description {
    font-size: clamp(0.9rem, 1.2vw, 1rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.quality-control-images {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.quality-image-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quality-image-main {
    min-height: 400px;
}

.quality-image-secondary {
    min-height: 250px;
}

.quality-image-tertiary {
    min-height: 250px;
}

.quality-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.quality-image-wrapper img[src*="quality_"] {
    opacity: 0;
}

/* Responsive Design for Quality Control */
@media (max-width: 1024px) {
    .quality-control-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .quality-control-images {
        order: -1;
    }

    .quality-control-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .quality-control-description {
        font-size: 1.1rem;
    }

    .quality-image-main {
        min-height: 300px;
    }

    .quality-image-secondary,
    .quality-image-tertiary {
        min-height: 200px;
    }
}

/* MARK: Wholesale Section */
.wholesale-section {
    padding: 6rem 0;
}

.wholesale-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.wholesale-body {
    font-size: 1.2rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.9);
    margin: 2rem 0 3rem;
}

.wholesale-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.wholesale-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    opacity: 0;
    transform: translateY(30px);
}

.wholesale-option svg {
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.8);
}

/* MARK: Blog Section */


/* MARK: Contact Section */
.contact-section {
    padding: 6rem 0;
}

.contact-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.contact-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 2rem 0 3rem;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
    opacity: 0;
    transform: translateY(30px);
}

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

.contact-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin: 0 0 0.5rem 0;
}

.contact-item p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.social-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    padding: 0.5rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.social-link:hover {
    color: white;
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.05);
}

/* MARK: FAQ Section */
.faq-section {
    padding: 6rem 0;
}

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

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    margin: 0;
}

.faq-icon {
    width: 24px;
    height: 24px;
    color: rgba(255, 255, 255, 0.8);
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 2rem;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin: 0;
}

/* MARK: Enhanced Footer */
.footer-newsletter {
    margin-top: 2rem;
}

.footer-newsletter h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.footer-newsletter p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* MARK: Contact Form */
.contact-form {
    max-width: 800px;
    margin: 3rem auto 0;
    padding: 0;
    scroll-margin-top: 120px; /* Account for fixed header */
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
    letter-spacing: 0.3px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    color: white;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
}

.form-group .error {
    color: #ff6b6b;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    display: block;
    min-height: 1.2rem;
    opacity: 0;
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

.form-group .error:not(:empty) {
    opacity: 1;
    transform: translateY(0);
}

.form-group input.error-state,
.form-group textarea.error-state {
    border-color: rgba(248, 113, 113, 0.6);
    background: rgba(248, 113, 113, 0.1);
}

.form-group input.error-state:focus,
.form-group textarea.error-state:focus {
    border-color: rgba(248, 113, 113, 0.8);
    box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.2);
}

.form-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.form-submit-btn:disabled:hover {
    transform: none;
    box-shadow: none;
}

.form-submit-btn:disabled svg {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.form-submit-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.form-submit-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    color: white;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    font-family: inherit;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.form-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.form-submit-btn:hover::before {
    left: 100%;
}

.form-submit-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.form-submit-btn:active {
    transform: translateY(0);
}

.form-submit-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.form-submit-btn:hover svg {
    transform: translateX(3px);
}

.form-response {
    margin-top: 1.5rem;
    padding: 1rem 1.25rem;
    border-radius: 4px;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 500;
    min-height: 1.5rem;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(-10px);
}

.form-response:not(:empty) {
    opacity: 1;
    transform: translateY(0);
}

.form-response.success {
    background: rgba(74, 222, 128, 0.15);
    border: 1px solid rgba(74, 222, 128, 0.3);
    color: #4ade80;
}

.form-response.error {
    background: rgba(248, 113, 113, 0.15);
    border: 1px solid rgba(248, 113, 113, 0.3);
    color: #f87171;
}

/* Responsive Design for Contact Form */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-group {
        margin-bottom: 1.25rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.875rem 1rem;
        font-size: 0.95rem;
    }

    .form-submit-btn {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
    }
}

@media (max-width: 480px) {
    .contact-form {
        margin-top: 2rem;
    }

    .form-group label {
        font-size: 0.9rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.75rem 0.875rem;
        font-size: 0.9rem;
    }

    .form-submit-btn {
        font-size: 0.95rem;
        padding: 0.875rem 1.5rem;
    }
}

/* Legacy support for newsletter-form class */
.newsletter-form {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 5rem;
}

.newsletter-form textarea {
    height: 100px;
}

.newsletter-form input,
.newsletter-form textarea {
    flex: 1;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 0.9rem;
    margin: 10px;
    margin-left: 25%;
    width: 30rem;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form button {
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    margin: 10px;
    margin-left: 35%;
    width: 20rem;
}

.newsletter-form button:hover {
    background: rgba(255, 255, 255, 0.25);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.footer-social .social-link {
    padding: 0.4rem 1rem;
    font-size: 0.9rem;
}

/* Responsive Design for New Sections */
@media (max-width: 1024px) {
    .categories-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }

    .education-grid,
    .blog-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .hero-intro-cta {
        flex-direction: column;
        align-items: center;
    }

    .hero-intro-highlights {
        flex-direction: column;
        gap: 1.5rem;
    }

    .categories-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 1.5rem;
    }

    .category-card {
        padding: 2rem 1rem;
    }

    .category-icon {
        font-size: 2.5rem;
    }

    .about-company-points,
    .wholesale-options {
        grid-template-columns: 1fr;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }
}

/* MARKl: Footer */
.site-footer {
    color: white;
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 0;
    transition: background 1s ease;
}

.site-footer .container {
    width: 100%;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0.5rem 0;
}

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

.footer-section ul li {
    margin: 0.5rem 0;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.6);
}

/* MARK: Partnership Logo Carousel */
/* MARK: Activities Section */
#activities {
    padding: 6rem 0;
    color: var(--text-color);
}

.activities-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    color: white;
    margin-bottom: 4rem;
    text-align: left;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(4, minmax(200px, 300px));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.activities-item {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.activities-ring-overlay {
    z-index: 10;
    position: relative;
}

/* Make ring images smaller */
.activities-ring-overlay {
    display: flex;
    align-items: center;
    justify-content: center;
}

.activities-ring-overlay .activities-image {
    max-width: 50%;
    max-height: 50%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.activities-text-block {
    /* color: rgba(255, 255, 255, 0.95); */
    color: white;
    font-size: 1.1rem;
    line-height: 1.9;
    text-align: left;
    display: flex;
    align-items: center;
}

.activities-text-block p {
    margin: 0;
}

.activities-image-block {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.activities-image-block[style*="grid-row: 1"] {
    min-height: 500px;
}

.activities-image-block[style*="grid-row: 2"] {
    min-height: 300px;
}

.activities-image-block[style*="grid-row: 3"] {
    min-height: 400px;
}

.activities-image-block[style*="grid-row: 4"] {
    min-height: 350px;
}

.activities-image-block[style*="grid-row: 5"] {
    min-height: 400px;
}

.activities-image {
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    display: block;
}

/* Responsive Design for Activities */
@media (max-width: 1024px) {
    .activities-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        gap: 1.5rem;
    }

    /* Reset all grid positioning for tablet - let items flow naturally */
    .activities-item {
        grid-column: auto !important;
        grid-row: auto !important;
        grid-area: auto !important;
    }

    /* Ensure text blocks take full width on tablet */
    .activities-text-block {
        grid-column: 1 / 3 !important;
    }

    /* Images can be half or full width */
    .activities-image-block {
        grid-column: span 1 !important;
    }
}

@media (max-width: 768px) {
    .activities-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Reset all grid positioning for mobile - single column */
    .activities-item {
        grid-column: 1 !important;
        grid-row: auto !important;
        grid-area: auto !important;
    }

    .activities-title {
        font-size: clamp(2rem, 5vw, 3rem);
        margin-bottom: 2.5rem;
    }

    .activities-text-block {
        font-size: 1rem;
        line-height: 1.8;
    }

    .activities-image-block {
        min-height: 250px;
    }

    .activities-ring-overlay .activities-image {
        max-width: 60%;
        max-height: 60%;
    }
}

@media (max-width: 480px) {
    .activities-grid {
        gap: 1rem;
    }

    .activities-title {
        font-size: clamp(1.75rem, 4vw, 2.5rem);
        margin-bottom: 2rem;
    }

    .activities-text-block {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .activities-image-block {
        min-height: 200px;
    }

    .activities-ring-overlay .activities-image {
        max-width: 70%;
        max-height: 70%;
    }
}

@media (max-width: 768px) {
    .activities-title {
        font-size: clamp(2rem, 5vw, 3rem);
        margin-bottom: 2.5rem;
    }

    .activities-grid {
        gap: 2rem;
    }

    .activities-text-block {
        font-size: 1rem;
    }

    .activities-images-group {
        gap: 1.5rem;
    }
}

#partnership {
    padding: 6rem 0;
}

.logo-carousel-wrapper {
    margin-top: 4rem;
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 2rem 0;
}

.logo-carousel-wrapper::before,
.logo-carousel-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 10;
    pointer-events: none;
}

.logo-carousel-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--primary-color), transparent);
}

.logo-carousel-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--primary-color), transparent);
}

.logo-carousel-track {
    display: flex;
    align-items: center;
    gap: 4rem;
    animation: scroll-logos 30s linear infinite;
    will-change: transform;
}

.logo-carousel-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 120px;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.logo-carousel-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.logo-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(0) invert(1) opacity(0.7);
    transition: filter 0.3s ease;
}

.logo-carousel-item:hover .logo-image {
    filter: brightness(0) invert(1) opacity(1);
}

@keyframes scroll-logos {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-180px * 4 - 4rem * 4));
    }
}

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

/* Responsive Design for Logo Carousel */
@media (max-width: 1024px) {

    .logo-carousel-wrapper::before,
    .logo-carousel-wrapper::after {
        width: 100px;
    }

    .logo-carousel-item {
        width: 150px;
        height: 100px;
        padding: 1.25rem;
    }

    .logo-carousel-track {
        gap: 3rem;
    }

    @keyframes scroll-logos {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-150px * 4 - 3rem * 4));
        }
    }
}

@media (max-width: 768px) {
    .logo-carousel-wrapper {
        margin-top: 3rem;
        padding: 1.5rem 0;
    }

    .logo-carousel-wrapper::before,
    .logo-carousel-wrapper::after {
        width: 80px;
    }

    .logo-carousel-item {
        width: 120px;
        height: 80px;
        padding: 1rem;
    }

    .logo-carousel-track {
        gap: 2.5rem;
    }

    @keyframes scroll-logos {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-120px * 4 - 2.5rem * 4));
        }
    }
}

@media (max-width: 480px) {

    .logo-carousel-wrapper::before,
    .logo-carousel-wrapper::after {
        width: 60px;
    }

    .logo-carousel-item {
        width: 100px;
        height: 70px;
        padding: 0.75rem;
    }

    .logo-carousel-track {
        gap: 2rem;
    }

    @keyframes scroll-logos {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-100px * 4 - 2rem * 4));
        }
    }
}