/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Scheme - Forest & Mushroom (inspired by your photo) */
    /* Core greens */
    --primary-green: #6a7f2b;          /* mossy green */
    --primary-green-dark: #2e3b0f;     /* deep forest */
    --primary-green-light: #8b9b3c;    /* leaf green */

    /* Earthy browns (repurposing previous purple variables) */
    --primary-purple: #3a2b23;         /* bark brown */
    --primary-purple-dark: #241a14;    /* deeper bark */
    --primary-purple-light: #c98a55;   /* mushroom cap highlight */

    /* Warm mushroom accents */
    --accent-yellow: #c98a55;          /* warm tan */
    --accent-yellow-dark: #b7773f;
    --accent-yellow-light: #e3a56c;
    --accent-orange: #c98a55;          /* single warm accent tone */

    /* Neutrals & backgrounds */
    --white: #ffffff;
    --bg-white: #f6f3ea;               /* soft warm off‑white */
    --bg-purple-light: #f2efe2;        /* light mossy/earth tint */
    --bg-purple-lavender: #e8e1d2;

    /* Text colors */
    --text-dark: #1f1a15;
    --text-dark-purple: #1f1a15;
    --text-gray: #6b6456;
    --text-light: #9c9484;

    /* Product accent greens */
    --product-primary: #455d16;
    --product-primary-dark: #2e3b0f;
    --product-primary-light: #8b9b3c;

    --bg-light: #f3f2ec;
    --bg-pattern: rgba(69, 93, 22, 0.05);

    /* Shadows (unchanged) */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--bg-white);
    position: relative;
}

/* Video Element Reset */
video {
    border: none;
    outline: none;
    display: block;
}

video:focus {
    outline: none;
    border: none;
}

/* Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(246, 243, 234, 0.98) 0%, rgba(243, 242, 236, 0.98) 100%);
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
    visibility: visible;
    overflow: hidden;
}

.page-loader::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(circle at 20% 30%, rgba(106, 127, 43, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(46, 59, 15, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(201, 138, 85, 0.05) 0%, transparent 60%);
    animation: backgroundFloat 20s ease-in-out infinite;
    pointer-events: none;
}

.page-loader::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 10 Q30 50 20 100 Q15 150 30 190' stroke='rgba(106, 127, 43, 0.04)' stroke-width='2' fill='none'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg width='80' height='80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M40 5 Q25 40 15 80 Q10 120 25 150' stroke='rgba(57, 75, 20, 0.03)' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-size: 200px 200px, 150px 150px;
    background-position: 0 0, 100px 100px;
    opacity: 0.4;
    animation: patternMove 30s linear infinite;
    pointer-events: none;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    position: relative;
}

.loader-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(106, 127, 43, 0.08) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    animation: backgroundPulse 4s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}

@keyframes backgroundPulse {

    0%,
    100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

@keyframes backgroundFloat {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(5%, 5%) rotate(2deg);
    }

    66% {
        transform: translate(-3%, 3%) rotate(-1deg);
    }
}

@keyframes patternMove {
    0% {
        background-position: 0 0, 100px 100px;
    }

    100% {
        background-position: 200px 200px, 300px 300px;
    }
}

.plant-image-wrapper {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.plant-image-wrapper::before {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(106, 127, 43, 0.12) 0%, transparent 70%);
    animation: glowPulse 3s ease-in-out infinite;
    z-index: 0;
    box-shadow: 0 0 60px rgba(46, 59, 15, 0.18), inset 0 0 40px rgba(201, 138, 85, 0.09);
}

.plant-image-wrapper::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle at center, rgba(106, 127, 43, 0.12) 0%, transparent 60%);
    transform: translate(-50%, -50%);
    animation: lightSweep 2.5s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}

.plant-image {
    width: 150px;
    height: auto;
    max-height: 200px;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2)) drop-shadow(0 0 20px rgba(46, 59, 15, 0.25));
    animation: plantGrow 2s cubic-bezier(0.4, 0, 0.2, 1) forwards, plantSettle 0.6s ease-out 2s forwards;
    transform-origin: center bottom;
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
    position: relative;
    z-index: 1;
}

@keyframes plantGrow {
    0% {
        opacity: 0;
        transform: scale(0.85) translateY(20px);
        clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
        filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.1)) drop-shadow(0 0 10px rgba(34, 197, 94, 0.05));
    }

    30% {
        opacity: 0.9;
        clip-path: polygon(0 100%, 100% 100%, 100% 85%, 0 85%);
        filter: drop-shadow(0 3px 9px rgba(0, 0, 0, 0.12)) drop-shadow(0 0 15px rgba(34, 197, 94, 0.08));
    }

    60% {
        opacity: 1;
        clip-path: polygon(0 100%, 100% 100%, 100% 60%, 0 60%);
        filter: drop-shadow(0 4px 11px rgba(0, 0, 0, 0.14)) drop-shadow(0 0 18px rgba(34, 197, 94, 0.09));
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
        clip-path: polygon(0 100%, 100% 100%, 100% 0%, 0 0%);
        filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15)) drop-shadow(0 0 20px rgba(34, 197, 94, 0.1));
    }
}

@keyframes plantSettle {
    0% {
        transform: scale(1) translateY(0);
    }

    50% {
        transform: scale(1.02) translateY(-2px);
    }

    100% {
        transform: scale(1) translateY(0);
    }
}

@keyframes glowPulse {

    0%,
    100% {
        opacity: 0.6;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

@keyframes lightSweep {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) rotate(0deg) scale(0.8);
    }

    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) rotate(180deg) scale(1);
    }

    100% {
        opacity: 0;
        transform: translate(-50%, -50%) rotate(360deg) scale(0.8);
    }
}

/* Coir Background Elements */
.coir-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
    background: transparent;
}

.coir-element {
    position: absolute;
    opacity: 1;
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
    pointer-events: none;
    filter: blur(0px);
}

/* Coconut Leaves */
.coir-leaf-1 {
    top: 10%;
    left: 5%;
    width: 250px;
    height: 500px;
    animation: floatLeaf 20s infinite ease-in-out;
    transform: rotate(-15deg);
}

.coir-leaf-2 {
    top: 15%;
    right: 5%;
    width: 220px;
    height: 450px;
    animation: floatLeaf 18s infinite ease-in-out reverse;
    transform: rotate(20deg);
}

/* Coir Fiber Patterns */
.coir-fiber-1 {
    top: 35%;
    left: 8%;
    width: 500px;
    height: 120px;
    animation: floatFiber 25s infinite ease-in-out;
    transform: rotate(15deg);
}

.coir-fiber-2 {
    bottom: 30%;
    right: 8%;
    width: 480px;
    height: 110px;
    animation: floatFiber 22s infinite ease-in-out reverse;
    transform: rotate(-10deg);
}

/* Coir Rope Pattern */
.coir-rope-1 {
    top: 60%;
    left: 5%;
    width: 300px;
    height: 300px;
    animation: rotateRope 30s infinite linear;
}

/* Coir Mat Texture */
.coir-mat-1 {
    bottom: 20%;
    left: 12%;
    width: 350px;
    height: 350px;
    animation: floatMat 24s infinite ease-in-out;
    transform: rotate(5deg);
}

/* Coconut Shell Pattern */
.coir-shell-1 {
    top: 40%;
    right: 10%;
    width: 260px;
    height: 260px;
    animation: floatShell 26s infinite ease-in-out;
    transform: rotate(-8deg);
}

/* Natural Fiber Lines */
.coir-line-1 {
    top: 70%;
    left: 18%;
    width: 600px;
    height: 50px;
    animation: floatLine 28s infinite ease-in-out;
    transform: rotate(12deg);
}

.coir-line-2 {
    bottom: 40%;
    right: 12%;
    width: 550px;
    height: 45px;
    animation: floatLine 23s infinite ease-in-out reverse;
    transform: rotate(-15deg);
}

/* Animations */
@keyframes floatLeaf {

    0%,
    100% {
        transform: translate(0, 0) rotate(-15deg) scale(1);
    }

    25% {
        transform: translate(20px, -20px) rotate(-10deg) scale(1.05);
    }

    50% {
        transform: translate(-15px, 15px) rotate(-20deg) scale(0.95);
    }

    75% {
        transform: translate(15px, 20px) rotate(-12deg) scale(1.02);
    }
}

@keyframes floatFiber {

    0%,
    100% {
        transform: translate(0, 0) rotate(15deg);
    }

    33% {
        transform: translate(30px, -25px) rotate(18deg);
    }

    66% {
        transform: translate(-25px, 20px) rotate(12deg);
    }
}

@keyframes rotateRope {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes floatMat {

    0%,
    100% {
        transform: translate(0, 0) rotate(5deg);
    }

    25% {
        transform: translate(25px, -20px) rotate(8deg);
    }

    50% {
        transform: translate(-20px, 25px) rotate(2deg);
    }

    75% {
        transform: translate(20px, 30px) rotate(6deg);
    }
}

@keyframes floatShell {

    0%,
    100% {
        transform: translate(0, 0) rotate(-8deg) scale(1);
    }

    33% {
        transform: translate(20px, -25px) rotate(-5deg) scale(1.1);
    }

    66% {
        transform: translate(-25px, 20px) rotate(-12deg) scale(0.9);
    }
}

@keyframes floatLine {

    0%,
    100% {
        transform: translate(0, 0) rotate(12deg);
    }

    50% {
        transform: translate(40px, -30px) rotate(15deg);
    }
}

/* Reactive hover effects */
body:hover .coir-element {
    opacity: 1;
}

body:hover .coir-leaf-1,
body:hover .coir-leaf-2 {
    animation-duration: 15s;
}

body:hover .coir-rope-1 {
    animation-duration: 20s;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
    width: 100%;
}

.hero .container {
    max-width: 100%;
    padding: 0;
}

/* Navigation */
.navbar {
    background: linear-gradient(to right, #e0d8c3 0%, #e8e1d2 20%, #f2efe2 50%, #e8e1d2 80%, #e0d8c3 100%);
    box-shadow: 0 2px 8px rgba(34, 40, 16, 0.18);
    position: sticky;
    top: 0;
    z-index: 1001;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(46, 59, 15, 0.18);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

.nav-brand:hover {
    opacity: 0.8;
}

.nav-brand:visited {
    color: inherit;
}

.nav-logo {
    width: 70px;
    height: 70px;
    object-fit: contain;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.05);
}

.nav-brand-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-green);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}

.nav-brand h1 {
    color: var(--primary-green-dark);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.tagline {
    color: var(--text-gray);
    font-size: 0.75rem;
    font-weight: 400;
    margin-top: -0.2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-green-dark);
}

/* Navigation Dropdown */
.nav-menu li {
    position: relative;
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown>a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.nav-dropdown>a::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    margin-left: 0.3rem;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.7;
}

.nav-dropdown:hover>a::after {
    transform: rotate(180deg);
    opacity: 1;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-5px);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 0.5rem 0;
    overflow: hidden;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
}

.dropdown-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary-green);
    transform: scaleY(0);
    transition: transform 0.2s ease;
}

.dropdown-menu a:hover {
    background: rgba(34, 197, 94, 0.08);
    color: var(--primary-green);
}

.dropdown-menu a:hover::before {
    transform: scaleY(1);
}

.dropdown-menu a::after {
    display: none;
}

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    background: var(--bg-light);
    color: var(--text-dark);
}

.nav-icon:hover {
    background: var(--primary-green);
    color: white;
    transform: scale(1.1);
}

.nav-icon.search-icon {
    background: transparent;
}

.nav-icon.grid-icon {
    background: var(--primary-green-dark);
    color: white;
}

/* Search Modal */
.search-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.search-modal.active {
    display: flex;
    opacity: 1;
}

.search-modal-content {
    background: var(--white);
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-lg);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.search-modal.active .search-modal-content {
    transform: scale(1);
}

.search-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(34, 197, 94, 0.1);
}

.search-header h2 {
    margin: 0;
    color: var(--primary-green);
    font-size: 1.5rem;
}

.close-search {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-gray);
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.close-search:hover {
    background: var(--bg-light);
    color: var(--primary-green);
}

.search-input-container {
    position: relative;
    padding: 1.5rem 2rem;
}

.search-input-container input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid rgba(34, 197, 94, 0.2);
    border-radius: 12px;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s;
}

.search-input-container input:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.search-input-icon {
    position: absolute;
    left: 2.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-gray);
    pointer-events: none;
}

.search-results {
    padding: 0 2rem 2rem;
    max-height: 400px;
    overflow-y: auto;
    flex: 1;
}

.search-placeholder {
    text-align: center;
    color: var(--text-gray);
    padding: 2rem;
    margin: 0;
}

.search-result-item {
    padding: 1rem;
    border: 1px solid rgba(34, 197, 94, 0.1);
    border-radius: 12px;
    margin-bottom: 0.75rem;
    cursor: pointer;
    transition: all 0.3s;
}

.search-result-item:hover {
    border-color: var(--primary-green);
    background: rgba(34, 197, 94, 0.05);
    transform: translateX(5px);
}

.search-result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.search-result-item h4 {
    margin: 0;
    color: var(--primary-green);
    font-size: 1.1rem;
}

.search-result-category {
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
}

.search-result-category.coir {
    background: rgba(34, 197, 94, 0.15);
    color: var(--primary-green-dark);
}

.search-result-category.areca {
    background: rgba(249, 115, 22, 0.15);
    color: var(--accent-orange-dark);
}

.search-result-category.hometextiles {
    background: rgba(147, 51, 234, 0.15);
    color: #7c3aed;
}

.search-result-item p {
    margin: 0;
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.5;
}

.search-more-results {
    text-align: center;
    color: var(--text-gray);
    font-size: 0.85rem;
    padding: 0.5rem;
    margin: 0;
}

.search-no-results {
    text-align: center;
    padding: 2rem;
    color: var(--text-gray);
}

/* Grid Quick Menu */
.grid-menu {
    display: none;
    position: fixed;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    z-index: 1500;
    min-width: 200px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.nav-actions {
    position: relative;
}

.grid-menu.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.grid-menu-content {
    padding: 0.5rem;
}

.grid-menu-item {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s;
    font-weight: 500;
}

.grid-menu-item:hover {
    background: var(--primary-green);
    color: white;
    transform: translateX(5px);
}

.grid-menu-item span {
    display: block;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: calc(100vh - 80px);
    background: linear-gradient(to right, #e0d8c3 0%, #f2efe2 20%, #f6f3ea 50%, #f2efe2 80%, #e0d8c3 100%);
    display: flex;
    align-items: center;
    padding: 2rem 10rem;
    overflow: hidden;
    z-index: 1;
    width: 100%;
}

.hero::before {
    display: none;
}

/* Cursor-reactive background elements */
.hero-bg-element {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    transition: transform 0.1s ease-out;
}

.hero-bg-element-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(106, 127, 43, 0.12) 0%, transparent 70%);
    top: 10%;
    left: 5%;
    animation: float1 8s ease-in-out infinite;
}

.hero-bg-element-2 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(69, 93, 22, 0.1) 0%, transparent 70%);
    bottom: 15%;
    right: 10%;
    animation: float2 10s ease-in-out infinite;
}

.hero-bg-element-3 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(46, 59, 15, 0.12) 0%, transparent 70%);
    top: 50%;
    left: 15%;
    animation: float3 12s ease-in-out infinite;
}

.hero-bg-element-4 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(201, 138, 85, 0.1) 0%, transparent 70%);
    top: 30%;
    right: 20%;
    animation: float4 9s ease-in-out infinite;
}

.hero-bg-element-5 {
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(106, 127, 43, 0.12) 0%, transparent 70%);
    bottom: 25%;
    left: 25%;
    animation: float5 11s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -40px) scale(1.1); }
}

@keyframes float2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-25px, 35px) scale(1.15); }
}

@keyframes float3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(40px, 25px) scale(1.08); }
}

@keyframes float4 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-35px, -30px) scale(1.12); }
}

@keyframes float5 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, 45px) scale(1.05); }
}

/* Small decorative particles */
.hero-particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    transition: transform 0.15s ease-out;
}

.hero-particle-1,
.hero-particle-2,
.hero-particle-3,
.hero-particle-4,
.hero-particle-5,
.hero-particle-6,
.hero-particle-7,
.hero-particle-8,
.hero-particle-9,
.hero-particle-10,
.hero-particle-11,
.hero-particle-12,
.hero-particle-13,
.hero-particle-14,
.hero-particle-15 {
    width: 8px;
    height: 8px;
    background: rgba(106, 127, 43, 0.35);
    box-shadow: 0 0 10px rgba(46, 59, 15, 0.25);
    animation: particleFloat 8s ease-in-out infinite;
}

.hero-particle-1 { top: 20%; left: 10%; animation-delay: 0s; }
.hero-particle-2 { top: 60%; left: 8%; animation-delay: 1s; }
.hero-particle-3 { top: 40%; right: 15%; animation-delay: 0.5s; }
.hero-particle-4 { bottom: 30%; right: 12%; animation-delay: 1.5s; }
.hero-particle-5 { top: 15%; right: 25%; animation-delay: 0.3s; }
.hero-particle-6 { bottom: 20%; left: 20%; animation-delay: 2s; }
.hero-particle-7 { top: 35%; left: 25%; width: 6px; height: 6px; animation-delay: 0.7s; background: rgba(201, 138, 85, 0.4); }
.hero-particle-8 { top: 70%; left: 30%; width: 10px; height: 10px; animation-delay: 1.2s; background: rgba(106, 127, 43, 0.3); }
.hero-particle-9 { top: 25%; right: 30%; width: 7px; height: 7px; animation-delay: 0.4s; background: rgba(139, 90, 43, 0.35); }
.hero-particle-10 { bottom: 40%; left: 15%; width: 9px; height: 9px; animation-delay: 1.8s; background: rgba(201, 138, 85, 0.3); }
.hero-particle-11 { top: 50%; left: 50%; width: 6px; height: 6px; animation-delay: 0.6s; background: rgba(106, 127, 43, 0.4); }
.hero-particle-12 { bottom: 15%; right: 25%; width: 8px; height: 8px; animation-delay: 1.4s; background: rgba(69, 93, 22, 0.35); }
.hero-particle-13 { top: 10%; left: 40%; width: 7px; height: 7px; animation-delay: 0.8s; background: rgba(201, 138, 85, 0.35); }
.hero-particle-14 { bottom: 50%; right: 8%; width: 9px; height: 9px; animation-delay: 1.6s; background: rgba(106, 127, 43, 0.3); }
.hero-particle-15 { top: 80%; left: 45%; width: 6px; height: 6px; animation-delay: 0.9s; background: rgba(139, 90, 43, 0.4); }

@keyframes particleFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.35;
    }
    25% {
        transform: translate(10px, -15px) scale(1.1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-8px, 12px) scale(0.9);
        opacity: 0.4;
    }
    75% {
        transform: translate(12px, 8px) scale(1.05);
        opacity: 0.45;
    }
}

/* Cursor-following leaf elements */
.hero-leaf {
    position: fixed;
    pointer-events: none;
    z-index: 10;
    opacity: 0;
    transform-origin: center center;
    transition: opacity 0.3s ease;
    will-change: transform, opacity;
    left: 0;
    top: 0;
}

.hero-leaf.visible {
    opacity: 1;
}

.hero-leaf svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 2px 6px rgba(46, 59, 15, 0.25));
    transition: filter 0.3s ease;
}

.hero-leaf:hover svg {
    filter: drop-shadow(0 3px 8px rgba(46, 59, 15, 0.35));
}

.hero-leaf.leaf-small {
    width: 24px;
    height: 24px;
}

.hero-leaf.leaf-medium {
    width: 32px;
    height: 32px;
}

.hero-leaf.leaf-large {
    width: 42px;
    height: 42px;
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: stretch;
    min-height: calc(100vh - 160px);
}

.hero-text {
    position: relative;
    z-index: 2;
    padding: 2rem 3rem;
    max-width: 100%;
    margin: 0;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-tagline {
    color: var(--primary-green-dark);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-dark-purple);
    margin-bottom: 2rem;
    letter-spacing: -0.5px;
}

.hero-title .highlight {
    color: var(--accent-yellow);
    font-weight: 800;
    display: inline-block;
}

.hero-title .hero-green-text {
    color: #6a7f2b;
    font-weight: 800;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    line-height: 1.7;
    font-weight: 400;
    max-width: 90%;
}

.hero-image {
    position: relative;
    z-index: 1;
}

.hero-image-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
}

.hero-image-img:hover {
    transform: scale(1.02);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    align-items: center;
}

.hero-illustration-container {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    overflow: hidden;
    padding: 2rem 2rem;
    background: transparent;
}

.hero-illustration-container::before {
    display: none;
}

.hero-illustration {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.export-illustration {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    animation: floatAnimation 6s ease-in-out infinite;
    transform-origin: center center;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

@keyframes floatAnimation {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.hero-illustration-container:hover .export-illustration {
    filter: brightness(1.08) drop-shadow(0 4px 12px rgba(46, 59, 15, 0.15));
    opacity: 0.95;
}

.hero-illustration:focus {
    outline: none;
    border: none;
}

.hero-visual {
    position: relative;
    z-index: 1;
}

.hero-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
}

.showcase-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 1) 100%);
    padding: 3.5rem 2.5rem;
    border-radius: 28px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12), 0 4px 16px rgba(0, 0, 0, 0.08);
    text-align: center !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid rgba(34, 197, 94, 0.1);
    position: relative;
    overflow: hidden;
    animation: floatUp 0.6s ease-out forwards;
    opacity: 0;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.showcase-item h3,
.showcase-item p,
.showcase-item .showcase-badge {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

@keyframes floatUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.showcase-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-orange));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.showcase-item:hover::before {
    transform: scaleX(1);
}

.showcase-item:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18), 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: rgba(34, 197, 94, 0.3);
    border-width: 3px;
}

.showcase-coir:hover {
    background: linear-gradient(135deg, rgba(139, 90, 43, 0.05) 0%, rgba(255, 255, 255, 0.98) 100%);
}

.showcase-areca:hover {
    background: linear-gradient(135deg, rgba(139, 115, 85, 0.05) 0%, rgba(255, 255, 255, 0.98) 100%);
}

.showcase-textile:hover {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.05) 0%, rgba(255, 255, 255, 0.98) 100%);
}

.showcase-icon-wrapper {
    position: relative;
    margin: 0 auto 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 160px;
    padding: 0;
    width: 100%;
    text-align: center;
    flex-shrink: 0;
}

.showcase-icon {
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: radial-gradient(circle, rgba(34, 197, 94, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    margin: 0 auto;
}

.showcase-item:hover .showcase-icon {
    transform: scale(1.15) rotate(5deg);
}

.showcase-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
}

.showcase-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center !important;
    width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.showcase-content>* {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.showcase-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 auto 0.875rem !important;
    letter-spacing: -0.3px;
    text-align: center !important;
    width: 100%;
    line-height: 1.3;
    padding: 0 !important;
    display: block;
    box-sizing: border-box;
}

.showcase-content p {
    font-size: 1.05rem;
    color: var(--text-gray);
    margin: 0 auto 1.5rem !important;
    line-height: 1.6;
    font-weight: 400;
    text-align: center !important;
    width: 100%;
    padding: 0 !important;
    max-width: 100%;
    display: block;
    box-sizing: border-box;
}

.showcase-badge {
    display: block;
    padding: 0.65rem 1.25rem;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(34, 197, 94, 0.08));
    color: var(--primary-green);
    border-radius: 24px;
    font-size: 0.9rem;
    font-weight: 700;
    border: 2px solid rgba(34, 197, 94, 0.25);
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    margin: 0 auto;
    width: fit-content;
    min-width: 140px;
}

.showcase-item:hover .showcase-badge {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(34, 197, 94, 0.12));
    border-color: rgba(34, 197, 94, 0.35);
    transform: scale(1.05);
}

.floating-leaf {
    position: absolute;
    width: 20px;
    height: 20px;
    background: rgba(34, 197, 94, 0.2);
    border-radius: 50% 0;
    animation: float 3s ease-in-out infinite;
    z-index: 1;
}

.leaf-1 {
    top: 10%;
    left: 15%;
    animation-delay: 0s;
}

.leaf-2 {
    top: 20%;
    right: 20%;
    animation-delay: 1s;
}

.leaf-3 {
    bottom: 15%;
    left: 10%;
    animation-delay: 1.5s;
}

.leaf-4 {
    top: 15%;
    right: 15%;
    animation-delay: 2s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.3;
    }

    50% {
        transform: translateY(-15px) rotate(180deg);
        opacity: 0.6;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
    }

    .hero-illustration-container {
        padding: 2rem 1rem;
        height: 40vh;
    }

    .export-illustration {
        width: 100%;
        height: auto;
    }
}

.hero-image-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, var(--primary-green-dark) 0%, var(--primary-green) 50%, var(--accent-yellow-dark) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.hero-image-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: var(--accent-yellow);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(201, 138, 85, 0.45);
    position: relative;
    z-index: 1;
    overflow: visible;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary:hover {
    background: var(--accent-yellow-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(183, 119, 63, 0.55);
}

.btn-secondary {
    background: var(--primary-green-dark);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(31, 41, 16, 0.45);
    position: relative;
    z-index: 1;
    overflow: visible;
    transition: all 0.3s ease;
    font-weight: 600;
    border-radius: 10px;
    border: none;
}

.btn-secondary:hover {
    background: #1f2910;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(31, 41, 16, 0.6);
}

@keyframes breatheButton {

    0%,
    100% {
        transform: scale(1);
        box-shadow: var(--shadow-md);
    }

    50% {
        transform: scale(1.03);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15), 0 0 15px rgba(255, 140, 0, 0.15);
    }
}

@keyframes breatheButtonGreen {

    0%,
    100% {
        transform: scale(1);
        box-shadow: var(--shadow-md);
    }

    50% {
        transform: scale(1.03);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15), 0 0 15px rgba(34, 197, 94, 0.2);
    }
}

@keyframes breatheGlow {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.15;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.15);
        opacity: 0.25;
    }
}

@keyframes breatheGlowGreen {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.15;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.15);
        opacity: 0.25;
    }
}

/* Sections */
section {
    padding: 80px 0;
    position: relative;
    width: 100%;
}

section .container {
    max-width: 1400px;
    width: 100%;
    padding: 0 4rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark-purple);
    margin-bottom: 0.75rem;
}

.section-header h2 .heading-subline {
    font-size: 1.65rem;
    font-weight: 500;
    display: block;
    margin-top: 0.75rem;
    line-height: 1.4;
    color: var(--text-gray);
    letter-spacing: 0.3px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-gray);
    font-weight: 400;
}

/* About Section */
.about-section {
    background: #ffffff;
    position: relative;
    z-index: 1;
    width: 100%;
}

.applications-section {
    background: var(--bg-purple-light);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-text p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: var(--text-gray);
    text-align: center;
    line-height: 1.8;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    list-style: none;
    margin-top: 3rem;
}

.features-list li {
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 12px;
    font-weight: 500;
    color: var(--text-dark);
    border-left: 4px solid var(--primary-green);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: var(--shadow-sm);
    opacity: 0;
    transform: translateY(50px) scale(0.8) rotateX(15deg);
    transform-style: preserve-3d;
    perspective: 1000px;
    position: relative;
    overflow: hidden;
}

.features-list li>* {
    position: relative;
    z-index: 2;
}

.features-list li::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.1), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.features-list li.animate-in {
    opacity: 1;
    transform: translateY(0) scale(1) rotateX(0deg);
    animation: bounceIn 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

.features-list li.animate-in::before {
    left: 100%;
}

.features-list li:hover {
    transform: translateY(-8px) translateX(5px) scale(1.02);
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.2), 0 0 20px rgba(34, 197, 94, 0.1);
    background: white;
    border-left-width: 6px;
}

.features-list li:hover::before {
    left: 100%;
}

/* Different animation styles for variety */
.features-list li:nth-child(1).animate-in {
    animation: slideInLeft 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

.features-list li:nth-child(2).animate-in {
    animation: slideInUp 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

.features-list li:nth-child(3).animate-in {
    animation: slideInRight 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

.features-list li:nth-child(4).animate-in {
    animation: slideInLeft 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

.features-list li:nth-child(5).animate-in {
    animation: slideInUp 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

.features-list li:nth-child(6).animate-in {
    animation: slideInRight 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.3) rotateX(15deg);
    }

    50% {
        opacity: 1;
        transform: translateY(-10px) scale(1.05) rotateX(-5deg);
    }

    70% {
        transform: translateY(5px) scale(0.98) rotateX(2deg);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1) rotateX(0deg);
    }
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-100px) translateY(30px) scale(0.8) rotateY(-20deg);
    }

    60% {
        opacity: 1;
        transform: translateX(10px) translateY(-5px) scale(1.05) rotateY(5deg);
    }

    100% {
        opacity: 1;
        transform: translateX(0) translateY(0) scale(1) rotateY(0deg);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(100px) translateY(30px) scale(0.8) rotateY(20deg);
    }

    60% {
        opacity: 1;
        transform: translateX(-10px) translateY(-5px) scale(1.05) rotateY(-5deg);
    }

    100% {
        opacity: 1;
        transform: translateX(0) translateY(0) scale(1) rotateY(0deg);
    }
}

@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(60px) scale(0.7) rotateZ(-5deg);
    }

    50% {
        opacity: 0.8;
        transform: translateY(-15px) scale(1.1) rotateZ(3deg);
    }

    80% {
        transform: translateY(5px) scale(0.95) rotateZ(-1deg);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1) rotateZ(0deg);
    }
}

/* Products Preview */
.products-preview {
    background: var(--bg-white);
    position: relative;
    z-index: 1;
    width: 100%;
}

.products-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: url('data:image/svg+xml,<svg width="1200" height="200" xmlns="http://www.w3.org/2000/svg"><path d="M0,0 Q300,100 600,50 T1200,100 L1200,0 Z" fill="rgba(106, 127, 43, 0.05)"/></svg>');
    background-size: cover;
    z-index: 0;
}

.products-preview .container {
    position: relative;
    z-index: 1;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.product-card-preview {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    border: 1px solid rgba(46, 59, 15, 0.12);
}

.product-card-preview:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(31, 41, 16, 0.25);
    border-color: var(--primary-green-dark);
}

.product-image-preview-container {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: var(--bg-light);
    position: relative;
    border-radius: 16px 16px 0 0;
}

.product-image-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease, opacity 0.3s ease;
    border-radius: 16px 16px 0 0;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading-shimmer 1.5s infinite;
}

.product-image-preview:not([src=""]) {
    background: transparent;
    animation: none;
}

.product-card-preview:hover .product-image-preview {
    transform: scale(1.05);
}

.product-image-preview-container {
    position: relative;
}

.product-category-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 0.7rem;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 1;
}

.product-category-badge.coir {
    background: rgba(34, 197, 94, 0.9);
    color: white;
}

.product-category-badge.areca {
    background: rgba(249, 115, 22, 0.9);
    color: white;
}

.product-category-badge.hometextiles {
    background: rgba(147, 51, 234, 0.9);
    color: white;
}

.product-image-placeholder {
    height: 250px;
    background: linear-gradient(135deg, var(--primary-green-light) 0%, var(--primary-green) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.product-card-preview h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: var(--text-dark);
    font-size: 1.25rem;
    font-weight: 700;
}

.product-card-preview p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.text-center {
    text-align: center;
}

.product-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.product-buttons .btn {
    min-width: 180px;
}

@media (max-width: 480px) {
    .product-buttons {
        flex-direction: column;
        align-items: center;
    }

    .product-buttons .btn {
        width: 100%;
        max-width: 250px;
    }
}

/* Why Choose Us */
.why-choose-us {
    background: #ffffff;
    position: relative;
    z-index: 1;
    width: 100%;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--bg-light);
    border-radius: 16px;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(31, 41, 16, 0.25);
    border-color: var(--primary-green-dark);
    background: var(--white);
}

.feature-icon {
    margin-bottom: 1.5rem;
    display: inline-block;
}

.feature-icon svg {
    width: 70px;
    height: 70px;
}

.feature-card h3 {
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Products Page */
.products-page {
    padding: 60px 0 80px;
    background: rgba(255, 255, 255, 0.85);
    min-height: calc(100vh - 200px);
    position: relative;
    z-index: 1;
}

.products-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 10% 20%, var(--bg-pattern) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, var(--bg-pattern) 0%, transparent 50%);
    opacity: 0.5;
    z-index: 0;
}

.products-page .container {
    position: relative;
    z-index: 1;
}

/* Category Filter Section */
.category-filter-section {
    margin: 2.5rem 0 2rem;
    position: relative;
    z-index: 1;
}

.category-filter-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.category-filter-btn {
    padding: 0.75rem 1.5rem;
    background: var(--white);
    border: 2px solid rgba(34, 197, 94, 0.2);
    border-radius: 12px;
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.1);
}

.category-filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.1), transparent);
    transition: left 0.5s ease;
}

.category-filter-btn:hover::before {
    left: 100%;
}

.category-filter-btn:hover {
    border-color: var(--primary-green);
    background: rgba(34, 197, 94, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.2);
}

.category-filter-btn.active {
    background: linear-gradient(135deg, var(--primary-green) 0%, #22c55e 100%);
    color: var(--white);
    border-color: var(--primary-green);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.category-filter-btn.active:hover {
    background: linear-gradient(135deg, #22c55e 0%, var(--primary-green) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(34, 197, 94, 0.4);
}

.category-filter-btn span {
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .category-filter-container {
        gap: 0.75rem;
    }
    
    .category-filter-btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .category-filter-container {
        gap: 0.5rem;
    }
    
    .category-filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
}

.products-container {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 2rem;
}

.product-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(34, 197, 94, 0.1);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-green);
}

.product-image-container {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: var(--bg-light);
    position: relative;
    border-radius: 16px 16px 0 0;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 16px 16px 0 0;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-green-light) 0%, var(--primary-green) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    padding: 1rem;
}

.product-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.product-title {
    font-size: 1.5rem;
    color: var(--product-primary);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.product-description {
    color: var(--text-gray);
    flex-grow: 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.product-card-footer {
    display: flex;
    justify-content: flex-start;
    margin-top: auto;
}

.product-toggle {
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.4);
    color: var(--primary-green);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.65rem 1.4rem;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 18px rgba(34, 197, 94, 0.12);
}

.product-toggle:hover,
.product-card.expanded .product-toggle {
    background: var(--primary-green);
    color: var(--white);
    border-color: var(--primary-green);
    box-shadow: 0 12px 24px rgba(34, 197, 94, 0.2);
}

/* Horizontal Product Card Layout */
.product-card-horizontal {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: row;
    border: 1px solid rgba(34, 197, 94, 0.1);
    gap: 0;
}

.product-card-horizontal:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-green);
}

.product-image-container-horizontal {
    width: 400px;
    min-width: 400px;
    height: 400px;
    overflow: hidden;
    background: var(--bg-light);
    position: relative;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    box-sizing: border-box;
    border-radius: 20px;
}

.product-image-wrapper-horizontal {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 16px;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image-horizontal {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 16px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading-shimmer 1.5s infinite;
    transition: background 0.3s ease;
}

.product-image-horizontal:not([src=""]) {
    background: transparent;
    animation: none;
}

@keyframes loading-shimmer {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.product-info-horizontal {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.product-header-horizontal {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    flex-wrap: wrap;
}

.product-title-horizontal {
    font-size: 1.75rem;
    color: var(--product-primary);
    margin: 0;
    font-weight: 700;
    line-height: 1.3;
    flex: 1;
}

.product-badges-horizontal {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.product-badge-small {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.8rem;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(34, 197, 94, 0.05) 100%);
    color: var(--primary-green);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.product-description-horizontal {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

.product-specs-horizontal {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 12px;
    border: 1px solid rgba(34, 197, 94, 0.08);
}

.spec-item-horizontal {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.spec-item-horizontal.spec-full-width {
    grid-column: 1 / -1;
}

.spec-label-horizontal {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-gray);
    width: 160px;
    flex-shrink: 0;
    text-align: right;
    padding-right: 0.5rem;
}

.spec-value-horizontal {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--product-primary);
    flex: 1;
    word-break: break-word;
}

.product-features-horizontal {
    margin-top: 0.5rem;
}

.features-title-horizontal {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.features-list-horizontal {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.feature-item-horizontal {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.875rem;
    background: rgba(34, 197, 94, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(34, 197, 94, 0.1);
    font-size: 0.875rem;
    color: var(--text-dark);
}

.feature-item-horizontal svg {
    color: var(--primary-green);
    flex-shrink: 0;
}

.product-actions-horizontal {
    display: flex;
    gap: 0.5rem;
    margin-top: 0;
    padding-top: 0;
}

.btn-enquiry-horizontal {
    flex: 1;
    padding: 0.875rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-green) 0%, #22c55e 100%);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.btn-enquiry-horizontal:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
}

.btn-call-horizontal {
    flex: 1;
    padding: 0.875rem 1.5rem;
    background: var(--white);
    color: var(--accent-orange);
    border: 2px solid var(--accent-orange);
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.btn-call-horizontal:hover {
    background: var(--accent-orange);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 140, 0, 0.3);
}

/* Mobile Responsive Styles */
@media (max-width: 968px) {
    .product-card-horizontal {
        flex-direction: column;
    }

    .product-image-container-horizontal {
        width: 100%;
        min-width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
        padding: 1rem;
        border-radius: 16px;
    }

    .product-image-wrapper-horizontal {
        border-radius: 12px;
    }

    .product-info-horizontal {
        padding: 1.5rem;
    }

    .product-title-horizontal {
        font-size: 1.5rem;
    }

    .product-badge-small {
        padding: 0.3rem 0.6rem;
        font-size: 0.65rem;
    }

    .product-specs-horizontal {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .spec-label-horizontal {
        min-width: 70px;
    }

    .product-actions-horizontal {
        flex-direction: column;
    }

    .btn-enquiry-horizontal,
    .btn-call-horizontal {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .products-container {
        gap: 1.5rem;
    }

    .product-card-horizontal {
        border-radius: 16px;
    }

    .product-image-container-horizontal {
        height: auto;
        aspect-ratio: 1 / 1;
        padding: 0;
    }

    .product-image-wrapper-horizontal {
        border-radius: 10px;
    }

    .product-info-horizontal {
        padding: 1.25rem;
        gap: 1rem;
    }

    .product-title-horizontal {
        font-size: 1.25rem;
    }

    .product-header-horizontal {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .product-badges-horizontal {
        width: 100%;
    }

    .product-badge-small {
        padding: 0.25rem 0.5rem;
        font-size: 0.6rem;
        letter-spacing: 0.2px;
    }

    .product-description-horizontal {
        font-size: 0.9rem;
    }

    .product-specs-horizontal {
        padding: 0.75rem;
    }

    .spec-item-horizontal {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }

    .spec-label-horizontal {
        width: auto;
        text-align: left;
        font-size: 0.8rem;
        padding-right: 0;
    }

    .spec-value-horizontal {
        font-size: 0.875rem;
    }

    .features-list-horizontal {
        gap: 0.5rem;
    }

    .feature-item-horizontal {
        font-size: 0.8rem;
        padding: 0.4rem 0.75rem;
    }

    .btn-enquiry-horizontal,
    .btn-call-horizontal {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
}

/* Tablet styles for hero showcase */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-showcase {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .showcase-item {
        padding: 3rem 2rem;
        min-height: 360px;
        align-items: center;
    }

    .showcase-icon {
        width: 130px;
        height: 130px;
        margin: 0 auto;
    }

    .showcase-icon-wrapper {
        min-height: 150px;
        margin: 0 auto 1.75rem;
        width: 100%;
    }

    .showcase-content {
        align-items: center;
        text-align: center;
        width: 100%;
    }

    .showcase-content h3 {
        font-size: 1.3rem;
        text-align: center;
        margin: 0 auto 0.875rem;
        width: 100%;
    }

    .showcase-content p {
        text-align: center;
        margin: 0 auto 1.5rem;
        width: 100%;
    }

    .showcase-badge {
        margin: 0 auto;
        display: block;
        width: fit-content;
    }
}

/* Mobile expand/collapse for product cards - applies to tablets and below */
@media (max-width: 768px) {
    .product-details-collapsible {
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.4s ease, opacity 0.3s ease;
    }

    .product-card-horizontal.expanded .product-details-collapsible {
        max-height: 2000px;
        opacity: 1;
    }

    .view-more-btn {
        display: flex !important;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        width: 100%;
        padding: 0.75rem;
        margin-top: 0.5rem;
        margin-bottom: -0.5rem;
        background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
        color: white;
        border: none;
        border-radius: 8px;
        font-size: 0.9rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .view-more-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
    }

    .view-more-btn svg {
        transition: transform 0.3s ease;
    }

    .product-card-horizontal.expanded .view-more-btn svg {
        transform: rotate(180deg);
    }

    .product-card-horizontal.expanded .view-more-btn .btn-text {
        display: none;
    }

    .product-card-horizontal.expanded .view-more-btn .btn-text-collapse {
        display: inline;
    }

    .view-more-btn .btn-text-collapse {
        display: none;
    }
}

/* Hide view more button on desktop */
.view-more-btn {
    display: none;
}

.product-collapsible {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: max-height 0.35s ease, opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.product-card.expanded .product-collapsible {
    max-height: 1200px;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    margin-top: 0.5rem;
}

/* Product Details Card - Large Card on Same Page */
.product-details-card {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 3rem auto;
    background: var(--white);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    animation: cardSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 3rem;
    box-sizing: border-box;
    border: 1px solid rgba(34, 197, 94, 0.1);
    overflow: hidden;
}

.product-details-card-content {
    max-width: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

@keyframes cardSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Keep modal styles for backward compatibility */
.product-details-modal {
    z-index: 3000;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(10px);
    width: 100vw;
    height: 100vh;
}

.product-details-modal.active {
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    padding: 0;
    margin: 0;
}

.product-details-content {
    max-width: 100vw;
    width: 100vw;
    height: 100vh;
    max-height: 100vh;
    background: var(--white);
    border-radius: 0;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    animation: modalSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: relative;
    margin: 0;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.product-details-close-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
}

.product-details-close-btn:hover {
    background: var(--white);
    transform: rotate(90deg);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    border-color: rgba(0, 0, 0, 0.15);
}

.product-details-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 3001;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: var(--text-dark);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.product-details-close:hover {
    background: var(--white);
    transform: rotate(90deg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-color: rgba(0, 0, 0, 0.12);
}

.product-details-wrapper {
    flex: 1;
    overflow-y: auto;
    padding: 0;
}

/* Product details card wrapper - ensure proper spacing */
.product-details-card .product-details-card-content {
    max-width: 100%;
    padding: 0;
}

/* Ensure content inside card uses full available width */
.product-details-card .product-details-hero,
.product-details-card .product-details-body {
    width: 100%;
    max-width: 100%;
}

/* Adjust padding for card context */
.product-details-card .product-details-hero {
    padding: 2rem 0;
}

.product-details-card .product-details-body {
    padding: 2rem 0;
}

/* Responsive adjustments for product details card */
@media (max-width: 1200px) {
    .product-details-card {
        padding: 2.5rem;
        margin: 2rem auto;
    }

    .product-details-hero {
        grid-template-columns: 500px 1fr;
        gap: 3rem;
    }

    .product-details-body {
        grid-template-columns: 1fr 380px;
        gap: 2rem;
    }
}

@media (max-width: 968px) {
    .product-details-card {
        padding: 1.5rem;
        margin: 1.5rem auto;
        border-radius: 16px;
    }

    .product-details-close-btn {
        top: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
    }

    .product-details-hero {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1.5rem 0;
    }

    .product-details-image-wrapper {
        height: 300px;
    }

    .product-details-body {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1.5rem 0;
    }

    .product-details-sidebar {
        position: static;
    }

    .product-details-title {
        font-size: 2rem;
    }

    .product-details-description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .product-details-card {
        padding: 1rem;
        margin: 1rem auto;
        border-radius: 12px;
    }

    .product-details-close-btn {
        top: 0.75rem;
        right: 0.75rem;
        width: 36px;
        height: 36px;
    }

    .product-details-hero {
        padding: 1rem 0;
        gap: 1.5rem;
    }

    .product-details-image-wrapper {
        height: 250px;
        border-radius: 12px;
    }

    .product-details-body {
        padding: 1rem 0;
        gap: 1.5rem;
    }

    .product-details-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .section-title {
        font-size: 1.25rem;
    }
}

/* Hero Section */
.product-details-hero {
    display: grid;
    grid-template-columns: 600px 1fr;
    gap: 4rem;
    padding: 4rem 5rem;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.03) 0%, rgba(255, 255, 255, 1) 100%);
    border-bottom: 1px solid rgba(34, 197, 94, 0.1);
}

.product-details-image-wrapper {
    width: 100%;
    height: 600px;
    border-radius: 20px;
    overflow: hidden;
    background: var(--bg-light);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    position: relative;
}

.product-details-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-details-image-wrapper:hover .product-details-image {
    transform: scale(1.05);
}

.product-details-hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1rem 0;
}

.product-details-title {
    font-size: 2.75rem;
    color: var(--product-primary);
    margin-bottom: 1.25rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.product-details-description {
    font-size: 1.15rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.product-details-badges {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.product-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(34, 197, 94, 0.05) 100%);
    color: var(--primary-green);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* Body Section */
.product-details-body {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 3rem;
    padding: 4rem 5rem;
}

.product-details-main {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    color: var(--product-primary);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.section-title svg {
    color: var(--product-primary);
}

/* Specifications */
.product-specs-section {
    background: var(--white);
}

.specs-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.spec-row-modern {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.25rem;
    background: var(--bg-light);
    border-radius: 12px;
    border: 1px solid rgba(34, 197, 94, 0.08);
    transition: all 0.3s ease;
}

.spec-row-modern:hover {
    background: rgba(34, 197, 94, 0.03);
    border-color: rgba(34, 197, 94, 0.2);
    transform: translateX(4px);
}

.spec-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(34, 197, 94, 0.05) 100%);
    border-radius: 10px;
    color: var(--primary-green);
    flex-shrink: 0;
}

.spec-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.spec-label-modern {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.spec-value-modern {
    font-size: 1rem;
    font-weight: 500;
    color: var(--product-primary);
    line-height: 1.5;
}

/* Features Section */
.product-features-section {
    background: var(--white);
}

.features-list-modern {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    background: var(--bg-light);
    border-radius: 10px;
    border: 1px solid rgba(34, 197, 94, 0.08);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(34, 197, 94, 0.05);
    border-color: rgba(34, 197, 94, 0.2);
    transform: translateX(4px);
}

.feature-item svg {
    color: var(--primary-green);
    flex-shrink: 0;
}

.feature-item span {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
}

/* Sidebar CTA */
.product-details-sidebar {
    position: sticky;
    top: 2rem;
    height: fit-content;
}

.product-cta-card {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.05) 0%, rgba(255, 255, 255, 1) 100%);
    border: 2px solid rgba(34, 197, 94, 0.15);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 24px rgba(34, 197, 94, 0.1);
}

.cta-title {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.cta-subtitle {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-primary-cta {
    width: 100%;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-green) 0%, #22c55e 100%);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.btn-primary-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
}

.btn-secondary-cta {
    width: 100%;
    padding: 1rem 1.5rem;
    background: var(--white);
    color: var(--accent-orange);
    border: 2px solid var(--accent-orange);
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.btn-secondary-cta:hover {
    background: var(--accent-orange);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 140, 0, 0.3);
}

.product-specs {
    margin-bottom: 1.25rem;
    padding: 1.25rem;
    background: var(--bg-light);
    border-radius: 12px;
    border: 1px solid rgba(34, 197, 94, 0.1);
}

.spec-row {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 0.75rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(34, 197, 94, 0.1);
    align-items: start;
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-row-features {
    grid-template-columns: 1fr;
    gap: 0.5rem;
}

.spec-label {
    font-weight: 600;
    color: var(--product-primary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.spec-value {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.5;
    word-break: break-word;
}

/* Go to Top Button */
.go-to-top-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-green) 0%, #22c55e 100%);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.4);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    transform: translateY(20px);
}

.go-to-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.go-to-top-btn:hover {
    background: linear-gradient(135deg, #22c55e 0%, var(--primary-green) 100%);
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.5);
}

.go-to-top-btn:active {
    transform: translateY(-2px);
}

.go-to-top-btn svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 2.5;
    fill: none;
}

@media (max-width: 768px) {
    .go-to-top-btn {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 45px;
        height: 45px;
    }
    
    .go-to-top-btn svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .go-to-top-btn {
        bottom: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
    }
    
    .go-to-top-btn svg {
        width: 18px;
        height: 18px;
    }
}

.product-details {
    margin-bottom: 1rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.product-detail-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(34, 197, 94, 0.1);
}

.product-detail-item:last-child {
    border-bottom: none;
}

.detail-label {
    font-weight: 600;
    color: var(--product-primary);
    font-size: 0.9rem;
}

.detail-value {
    color: var(--primary-green);
    font-weight: 700;
    font-size: 0.95rem;
}

.moq-selector {
    margin: 1rem 0;
}

.moq-selector label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.moq-selector select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--bg-light);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
    background: var(--white);
    color: var(--text-dark);
    font-family: inherit;
}

.moq-selector select:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.product-actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    margin-top: 1.25rem;
}

.btn-enquiry {
    flex: 1;
    background: var(--primary-green);
    color: var(--white);
    padding: 14px;
    box-shadow: var(--shadow-md);
    border: none;
    font-weight: 600;
}

.btn-enquiry:hover {
    background: var(--primary-green-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-phone-card {
    padding: 0.75rem 1rem;
    background: var(--accent-orange);
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
    height: 44px;
    box-shadow: var(--shadow-md);
}

.btn-phone-card:hover {
    background: #e67e22;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-phone-card svg {
    width: 18px;
    height: 18px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-content {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideUp 0.3s;
    position: relative;
    z-index: 2001;
    box-shadow: var(--shadow-lg);
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--bg-light);
}

.modal-header h2 {
    color: var(--text-dark);
    font-size: 1.75rem;
    font-weight: 700;
}

.close-modal {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-gray);
    cursor: pointer;
    transition: color 0.3s;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close-modal:hover {
    color: var(--accent-orange);
    background: var(--bg-light);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--bg-light);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s;
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* intl-tel-input styling */
.iti {
    width: 100%;
    position: relative;
    z-index: 1;
}

.iti__flag-container {
    position: relative;
    z-index: 1;
    display: flex !important;
    visibility: visible !important;
}

.iti__selected-flag {
    padding: 0 8px 0 12px;
    border-radius: 8px 0 0 8px;
    background: var(--bg-light);
    border: 2px solid var(--bg-light);
    border-right: none;
    transition: all 0.3s;
    display: flex !important;
    visibility: visible !important;
    cursor: pointer;
}

.iti__selected-flag:hover {
    background: rgba(34, 197, 94, 0.05);
}

/* Ensure flag and dial code are visible */
.iti__flag {
    display: inline-block !important;
    visibility: visible !important;
}

.iti__dial-code {
    display: inline-block !important;
    visibility: visible !important;
}

.iti input[type=tel],
.iti input[type=text] {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--bg-light);
    border-radius: 0 8px 8px 0;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s;
    background: var(--white);
}

.iti input[type=tel]:focus,
.iti input[type=text]:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

/* Hide placeholder text in intl-tel-input */
.iti input[type=tel]::placeholder,
.iti input[type=text]::placeholder {
    color: transparent;
    opacity: 0;
}

/* Ensure country dropdown appears above modal - use very high z-index */
.iti__country-list {
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--bg-light);
    max-height: 250px !important;
    height: auto !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    z-index: 9999 !important;
    position: fixed !important;
    background: #ffffff !important;
    background-color: #ffffff !important;
}

/* Ensure the ul inside country list is visible and has proper height - only when dropdown is open */
.iti__country-list:not(.iti__hide) > ul,
.iti__country-list:not(.iti__hide) ul {
    max-height: 200px !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    display: block !important;
    visibility: visible !important;
    height: auto !important;
    opacity: 1 !important;
}

/* Ensure country items are displayed - only when dropdown is open */
.iti__country-list:not(.iti__hide) .iti__country {
    display: list-item !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Additional rules to ensure country list is visible on contact page */
.contact-page .iti__country-list:not(.iti__hide) > ul,
.contact-page .iti__country-list:not(.iti__hide) ul {
    max-height: 200px !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    display: block !important;
    visibility: visible !important;
    height: auto !important;
    opacity: 1 !important;
}

.contact-page .iti__country-list:not(.iti__hide) .iti__country {
    display: list-item !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Force country list to be visible when dropdown is open - more aggressive rules */
.iti__country-list:not(.iti__hide) {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    max-height: 250px !important;
    height: auto !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
}

.iti__country-list:not(.iti__hide) ul {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    max-height: 200px !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    height: auto !important;
    min-height: 50px !important;
}

.iti__country-list:not(.iti__hide) .iti__country {
    display: list-item !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    min-height: 30px !important;
    overflow: visible !important;
}

/* Ensure country name and dial code are visible */
.iti__country-list:not(.iti__hide) .iti__country-name,
.iti__country-list:not(.iti__hide) .iti__dial-code {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Override any intl-tel-input default hiding */
.iti__country-list.iti__hide {
    display: none !important;
}

.iti__country-list:not(.iti__hide) {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Ensure search box doesn't hide the list */
.iti__country-list:not(.iti__hide) .iti__search-box {
    display: block !important;
    visibility: visible !important;
}

/* Make sure the list container is visible */
.iti__country-list:not(.iti__hide) > * {
    visibility: visible !important;
}

/* Force country list items to be visible - override any library defaults */
.iti__country-list ul {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    max-height: 200px !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
}

.iti__country-list:not(.iti__hide) ul li,
.iti__country-list:not(.iti__hide) .iti__country {
    display: list-item !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    min-height: 30px !important;
    line-height: normal !important;
}

/* Ensure country name and dial code text is visible */
.iti__country-list:not(.iti__hide) .iti__country-name,
.iti__country-list:not(.iti__hide) .iti__dial-code,
.iti__country-list:not(.iti__hide) .iti__flag-box {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
}


/* Target dropdown regardless of DOM position */
body > .iti__country-list,
.modal ~ .iti__country-list,
.modal.active ~ .iti__country-list,
.modal.active .iti__country-list,
.modal .iti__country-list {
    z-index: 9999 !important;
    background: #ffffff !important;
    background-color: #ffffff !important;
}

/* Ensure dropdown wrapper also has high z-index */
.iti__dropdown {
    z-index: 9999 !important;
}

.iti__country {
    padding: 8px 12px;
    transition: background 0.2s;
    background: #ffffff !important;
    background-color: #ffffff !important;
}

.iti__country:hover,
.iti__country.iti__highlight {
    background: rgba(34, 197, 94, 0.1) !important;
    background-color: rgba(34, 197, 94, 0.1) !important;
}

.iti__country-name,
.iti__dial-code {
    color: var(--text-dark);
}

.form-group .readonly {
    background: var(--bg-light);
    color: var(--text-dark);
    cursor: not-allowed;
}

/* Cloudflare Turnstile Widget Styling */
.form-group .cf-turnstile {
    display: flex;
    justify-content: flex-start;
    margin: 0.5rem 0;
}

.form-group .cf-turnstile iframe {
    border-radius: 8px;
}

.form-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-submit {
    flex: 1;
    background: var(--primary-green);
    color: var(--white);
    padding: 14px;
    font-size: 1rem;
    box-shadow: var(--shadow-md);
    border: none;
    font-weight: 600;
}

.btn-submit:hover {
    background: var(--primary-green-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-phone {
    padding: 14px 1.5rem;
    background: var(--accent-orange);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    box-shadow: var(--shadow-md);
}

.btn-phone:hover {
    background: #e67e22;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-phone svg {
    flex-shrink: 0;
}

.btn-phone-card {
    padding: 0.75rem 1rem;
    background: var(--accent-orange);
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
    height: 44px;
    box-shadow: var(--shadow-md);
}

.btn-phone-card:hover {
    background: #e67e22;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-phone-card svg {
    width: 18px;
    height: 18px;
}

/* Phone Notification */
.phone-notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    padding: 1.5rem;
    z-index: 3000;
    min-width: 280px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    border: 2px solid var(--primary-green);
}

.phone-notification.show {
    opacity: 1;
    transform: translateY(0);
}

.phone-notification-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.phone-notification-content svg {
    color: var(--primary-green);
    flex-shrink: 0;
}

.phone-notification-content strong {
    display: block;
    color: var(--primary-green);
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.phone-notification-content p {
    margin: 0;
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Success notification styling */
#enquirySuccessNotification .phone-notification-content svg {
    color: var(--primary-green);
}

#enquirySuccessNotification .phone-notification-content strong {
    color: var(--primary-green);
}

.success-message {
    display: none;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(34, 197, 94, 0.05) 100%);
    color: var(--primary-green-dark);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    text-align: center;
    border: 2px solid rgba(34, 197, 94, 0.2);
    font-weight: 500;
}

.success-message.show {
    display: block;
}

/* Contact Page */
.contact-page {
    padding: 60px 0 80px;
    background: rgba(255, 255, 255, 0.85);
    min-height: calc(100vh - 200px);
    position: relative;
    z-index: 1;
}

.contact-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 30%, var(--bg-pattern) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, var(--bg-pattern) 0%, transparent 50%);
    opacity: 0.4;
    z-index: 0;
}

.contact-page .container {
    position: relative;
    z-index: 1;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(34, 197, 94, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-orange));
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--bg-light);
    border-radius: 12px;
    border: 2px solid transparent;
    transition: all 0.3s;
    box-shadow: var(--shadow-sm);
}

.contact-item.clickable {
    cursor: pointer;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--primary-green);
    background: var(--white);
}

.contact-item.clickable:hover {
    background: rgba(34, 197, 94, 0.05);
}

.contact-item h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.contact-item p {
    color: var(--text-gray);
    line-height: 1.6;
}

.contact-item svg {
    transition: transform 0.3s;
    margin-bottom: 1rem;
}

.contact-item:hover svg {
    transform: scale(1.1);
}

/* Footer */
.footer {
    background: #1b2310;
    color: var(--white);
    padding: 3rem 0 1.5rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.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: var(--white);
    font-weight: 700;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--accent-yellow-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 968px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-list {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero {
        padding: 1.5rem 4rem;
        min-height: calc(100vh - 70px);
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    /* Product Details Modal Tablet */
    .product-details-modal.active {
        padding: 1rem;
    }

    .product-details-content {
        max-height: 98vh;
        border-radius: 20px;
    }

    .product-details-hero {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }

    .product-details-image-wrapper {
        height: 350px;
    }

    .product-details-title {
        font-size: 2.25rem;
    }

    .product-details-body {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }

    .product-details-sidebar {
        position: static;
    }

    .features-list-modern {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .features-list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .navbar {
        padding: 0.75rem 0;
    }

    .navbar .container {
        padding: 0 1rem;
    }

    .nav-brand {
        gap: 0.6rem;
    }

    .nav-logo {
        width: 56px;
        height: 56px;
    }

    .nav-brand h1 {
        font-size: 1.25rem;
    }

    .tagline {
        font-size: 0.7rem;
    }

    .hamburger {
        display: flex;
        z-index: 1002;
        padding: 0.5rem;
        margin-right: -0.5rem;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    /* Mobile menu backdrop overlay */
    .nav-menu::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.3);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 1000;
        pointer-events: none;
    }

    .nav-menu.active::before {
        opacity: 1;
        visibility: visible;
        pointer-events: none;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background: var(--white);
        width: 85%;
        max-width: 320px;
        height: 100vh;
        text-align: left;
        transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 4px 0 24px rgba(0, 0, 0, 0.15);
        padding: 5rem 0 2rem;
        gap: 0;
        z-index: 1001;
        overflow-y: auto;
        pointer-events: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        position: relative;
        z-index: 1;
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu a {
        display: block;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        font-weight: 500;
        color: var(--text-dark);
        transition: all 0.2s ease;
        position: relative;
        z-index: 2;
    }

    .nav-menu a:hover,
    .nav-menu a.active {
        color: var(--accent-orange);
        background: rgba(255, 140, 0, 0.05);
    }

    .nav-menu a.active::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 3px;
        background: var(--accent-orange);
    }

    .nav-actions {
        display: none;
    }

    .search-modal-content {
        width: 95%;
        max-height: 90vh;
    }

    .search-header {
        padding: 1rem 1.5rem;
    }

    .search-header h2 {
        font-size: 1.2rem;
    }

    .search-input-container {
        padding: 1rem 1.5rem;
    }

    .search-results {
        padding: 0 1.5rem 1.5rem;
        max-height: 300px;
    }

    .grid-menu {
        top: 70px;
        right: 10px;
        min-width: 180px;
    }

    .hero {
        min-height: auto;
    }

    .hero {
        padding: 1.5rem 1.5rem;
        min-height: calc(100vh - 70px);
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        min-height: calc(100vh - 140px);
    }

    .hero-text {
        padding: 1.5rem 1.5rem;
        max-width: 100%;
        margin: 0;
        order: 1;
        background: transparent;
    }

    .hero-illustration-container {
        height: 40vh;
        padding: 1rem 1rem;
        order: 2;
        background: transparent;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        max-width: 100%;
    }

    .hero-tagline {
        font-size: 0.875rem;
        margin-bottom: 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1.25rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }

    section .container {
        padding: 0 1.5rem;
    }

    .container {
        padding: 0 1.5rem;
    }

    .hero-showcase {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .showcase-item {
        padding: 2.5rem 1.75rem;
        min-height: 340px;
        align-items: center;
    }

    .showcase-icon {
        width: 120px;
        height: 120px;
        margin: 0 auto;
    }

    .showcase-icon-wrapper {
        min-height: 140px;
        margin: 0 auto 1.5rem;
        width: 100%;
    }

    .showcase-content {
        align-items: center;
        text-align: center;
        width: 100%;
    }

    .showcase-content h3 {
        font-size: 1.25rem;
        text-align: center;
        margin: 0 auto 0.75rem;
        width: 100%;
    }

    .showcase-content p {
        font-size: 0.95rem;
        text-align: center;
        margin: 0 auto 1.25rem;
        width: 100%;
    }

    .showcase-badge {
        margin: 0 auto;
        display: block;
        width: fit-content;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .products-container {
        grid-template-columns: 1fr;
    }

    .spec-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .spec-label {
        font-size: 0.8rem;
    }

    .nav-dropdown>a {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .nav-dropdown>a::after {
        border-top: 5px solid currentColor;
        border-bottom: none;
        transform: rotate(0deg);
        transition: transform 0.3s ease;
    }

    .nav-dropdown.active>a::after {
        transform: rotate(180deg);
    }

    .dropdown-menu {
        position: static;
        opacity: 0;
        visibility: hidden;
        transform: none;
        box-shadow: none;
        border: none;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
        background: rgba(0, 0, 0, 0.02);
        padding: 0;
        margin: 0;
        min-width: auto;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, visibility 0.3s ease;
    }

    .nav-dropdown.active .dropdown-menu {
        max-height: 200px;
        opacity: 1;
        visibility: visible;
    }

    .dropdown-menu li {
        border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    }

    .dropdown-menu a {
        padding: 0.875rem 1.5rem 0.875rem 2.5rem;
        font-size: 0.95rem;
        color: var(--text-gray);
        position: relative;
    }

    .dropdown-menu a::before {
        content: '→';
        position: absolute;
        left: 1.75rem;
        opacity: 0.4;
        transition: all 0.2s ease;
    }

    .dropdown-menu a:hover {
        color: var(--accent-orange);
        background: rgba(255, 140, 0, 0.05);
        padding-left: 3rem;
    }

    .dropdown-menu a:hover::before {
        opacity: 1;
        left: 2.25rem;
    }

    .nav-dropdown:hover .dropdown-menu {
        transform: none;
    }

    .contact-container {
        padding: 2rem 1.5rem;
    }

    .modal-content {
        padding: 1.5rem;
    }

    .hero-image-placeholder {
        height: 300px;
    }

    .hero-image-img {
        height: 300px;
    }

    /* Product Details Modal Mobile */
    .product-details-modal.active {
        padding: 0.5rem;
    }

    .product-details-content {
        max-height: 100vh;
        border-radius: 16px;
    }

    .product-details-close {
        top: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }

    .product-details-hero {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .product-details-image-wrapper {
        height: 280px;
        border-radius: 16px;
    }

    .product-details-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .product-details-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .product-details-badges {
        gap: 0.5rem;
    }

    .product-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.75rem;
    }

    .product-details-body {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1.5rem;
    }

    .product-details-main {
        gap: 2rem;
    }

    .section-title {
        font-size: 1.25rem;
        margin-bottom: 1.25rem;
    }

    .spec-row-modern {
        padding: 1rem;
        gap: 1rem;
    }

    .spec-icon {
        width: 36px;
        height: 36px;
    }

    .spec-label-modern {
        font-size: 0.75rem;
    }

    .spec-value-modern {
        font-size: 0.95rem;
    }

    .features-list-modern {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .feature-item {
        padding: 0.75rem;
    }

    .product-cta-card {
        padding: 1.5rem;
        border-radius: 16px;
    }

    .cta-title {
        font-size: 1.25rem;
    }

    .cta-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

}

.spec-row-modern {
    padding: 1rem;
    gap: 1rem;
}

.spec-icon {
    width: 36px;
    height: 36px;
}

.spec-label-modern {
    font-size: 0.75rem;
}

.spec-value-modern {
    font-size: 0.95rem;
}

.features-list-modern {
    grid-template-columns: 1fr;
    gap: 0.5rem;
}

.feature-item {
    padding: 0.75rem;
}

.product-cta-card {
    padding: 1.5rem;
    border-radius: 16px;
}

.cta-title {
    font-size: 1.25rem;
}

.cta-subtitle {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}