* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --primary: #5d4037;
    --secondary: #8d6e63;
    --accent: #d84315;
    --light: #fafafa;
    --dark: #3e2723;
    --gray: #757575;
}
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    overflow-x: hidden;
}
/* Header Styles */
h2 {
    font-family: 'Playball', cursive;
    font-size: clamp(2rem, 5vw, 3.5rem); /* Fluid font size */
}
header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}
header.scrolled {
    padding: 10px 0;
    padding-top: 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.header-top {
    background: rgba(0,0,0,0.2);
    padding: 8px 0; /* Reduced padding for smaller screens */
    font-size: clamp(1rem, 2vw, 0.9rem);
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(10px, 4vw, 20px); /* Fluid padding */
}
.container h1 {
    font-family: 'Playball', cursive;
    font-size: clamp(2.5rem, 8vw, 80px) !important; /* Fluid hero title */
}
.header-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px; /* Reduced gap */
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 6px; /* Smaller gap */
    font-size: inherit;
}
.nav-wrapper {
    padding: 12px 0; /* Slightly reduced */
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-size: clamp(1.4rem, 4vw, 1.8rem); /* Fluid logo */
    font-weight: bold;
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.logo-sub {
    font-size: clamp(0.6rem, 1.5vw, 0.7rem);
    opacity: 0.9;
    font-weight: normal;
}
nav ul {
    display: flex;
    list-style: none;
    gap: clamp(15px, 3vw, 30px); /* Fluid gap */
}
nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
    font-size: clamp(0.9rem, 2vw, 1rem);
}
nav a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s;
}
nav a:hover:after {
    width: 100%;
}
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    cursor: pointer;
}
/* Carousel Styles */
.carousel-section {
    margin-top: clamp(100px, 15vh, 100px); /* Fluid margin based on header */
    position: relative;
    overflow: hidden;
}
.carousel-container {
    position: relative;
    width: 100%;
    height: clamp(50vh, 70vh, 650px); /* Fluid height: 50vh min, 650px max */
    overflow: hidden;
}
/* Background Images Layer */
.carousel-backgrounds {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.carousel-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}
/* Placeholder gradient backgrounds (will be replaced by images) */
.carousel-bg:nth-child(1) {
    background: linear-gradient(135deg, #5d4037 0%, #8d6e63 100%);
}
.carousel-bg:nth-child(2) {
    background: linear-gradient(135deg, #6d4c41 0%, #a1887f 100%);
}
.carousel-bg:nth-child(3) {
    background: linear-gradient(135deg, #4e342e 0%, #795548 100%);
}
.carousel-bg:nth-child(4) {
    background: linear-gradient(135deg, #bf360c 0%, #d84315 100%);
}
.carousel-bg:nth-child(5) {
    background: linear-gradient(135deg, #424242 0%, #757575 100%);
}
.carousel-bg.active {
    opacity: 1;
}
/* Dark Overlay */
.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}
/* Fixed Content Block */
.carousel-content-fixed {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    text-align: center;
    color: white;
    width: 100%;
    max-width: 900px;
    padding: 0 clamp(10px, 5vw, 20px);
}
.carousel-content-fixed h1 {
    font-size: clamp(2rem, 8vw, 3.5rem); /* Fluid hero text */
    margin-bottom: 25px;
    font-weight: bold;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease;
}
.carousel-content-fixed .iso-badge {
    display: inline-block;
    background: var(--accent);
    padding: clamp(8px, 2vw, 12px) clamp(20px, 4vw, 30px);
    border-radius: 30px;
    margin: 20px 0;
    font-weight: bold;
    font-size: clamp(0.9rem, 2vw, 1rem);
    text-shadow: none;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
}
.carousel-content-fixed p {
    font-size: clamp(1rem, 3vw, 1.2rem);
    line-height: 1.8;
    margin: 20px auto;
    max-width: 800px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}
.carousel-content-fixed .cta-button {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: clamp(12px, 3vw, 15px) clamp(35px, 6vw, 45px);
    text-decoration: none;
    border-radius: 30px;
    margin-top: 30px;
    font-weight: bold;
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}
.carousel-content-fixed .cta-button:hover {
    background: #ea580c;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.5);
}
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
    width: clamp(40px, 8vw, 55px);
    height: clamp(40px, 8vw, 55px);
    border-radius: 50%;
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}
.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.1);
}
.prev-btn {
    left: clamp(15px, 4vw, 30px);
}
.next-btn {
    right: clamp(15px, 4vw, 30px);
}
.carousel-indicators {
    position: absolute;
    bottom: clamp(15px, 4vh, 30px);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: clamp(8px, 2vw, 12px);
    z-index: 10;
}
.indicator {
    width: clamp(10px, 2vw, 12px);
    height: clamp(10px, 2vw, 12px);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}
.indicator:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}
.indicator.active {
    background: white;
    width: clamp(20px, 5vw, 40px);
    border-radius: 6px;
    border-color: rgba(255, 255, 255, 0.8);
}
/* Hero Section */
.hero {
    margin-top: 0;
    background: linear-gradient(135deg, rgba(26, 71, 42, 0.9), rgba(45, 95, 63, 0.9)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23e5e7eb" width="1200" height="600"/><path fill="%239ca3af" opacity="0.3" d="M0 300L50 280L100 320L150 290L200 310L250 270L300 300L350 280L400 320L450 290L500 310L550 270L600 300L650 280L700 320L750 290L800 310L850 270L900 300L950 280L1000 320L1050 290L1100 310L1150 270L1200 300V600H0Z"/></svg>');
    background-size: cover;
    background-position: center;
    color: white;
    padding: clamp(50px, 15vh, 100px) 0;
    text-align: center;
}
.hero h1 {
    font-size: clamp(2rem, 8vw, 3rem);
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}
.iso-badge {
    display: inline-block;
    background: var(--accent);
    padding: clamp(8px, 2vw, 10px) clamp(15px, 4vw, 20px);
    border-radius: 25px;
    margin: 20px 0;
    font-weight: bold;
    animation: fadeInUp 1s ease 0.2s backwards;
}
.hero p {
    font-size: clamp(1rem, 3vw, 1.2rem);
    max-width: 800px;
    margin: 20px auto;
    line-height: 1.8;
    animation: fadeInUp 1s ease 0.4s backwards;
}
.cta-button {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: clamp(12px, 3vw, 15px) clamp(30px, 5vw, 40px);
    text-decoration: none;
    border-radius: 30px;
    margin-top: 30px;
    font-weight: bold;
    transition: all 0.3s;
    animation: fadeInUp 1s ease 0.6s backwards;
}
.cta-button:hover {
    background: #ea580c;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.3);
}
/* Features Section */
.features {
    padding: clamp(60px, 10vh, 80px) 0;
    background: var(--light);
}
.section-title {
    text-align: center;
    font-size: clamp(2rem, 5vw, 2.5rem);
    color: var(--primary);
    margin-bottom: 20px;
}
.section-subtitle {
    text-align: center;
    color: var(--gray);
    margin-bottom: clamp(40px, 8vh, 60px);
    font-size: clamp(1rem, 2vw, 1.1rem);
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(clamp(250px, 25vw, 280px), 1fr));
    gap: clamp(20px, 4vw, 30px);
}
.feature-card {
    background: white;
    padding: clamp(30px, 6vw, 40px) clamp(20px, 4vw, 30px);
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}
.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}
.feature-icon {
    font-size: clamp(2.5rem, 6vw, 3rem);
    margin-bottom: 20px;
    color: var(--accent);
}
.feature-card h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: clamp(1.2rem, 3vw, 1.4rem);
}
/* About Section */
.about {
    padding: clamp(60px, 10vh, 80px) 0;
}
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 8vw, 60px);
    align-items: center;
}
.about-text h2 {
    color: var(--primary);
    font-size: clamp(2rem, 5vw, 2.5rem);
    margin-bottom: 20px;
}
.about-text p {
    margin-bottom: 20px;
    color: var(--gray);
    line-height: 1.8;
    font-size: clamp(0.95rem, 2vw, 1rem);
}
.about-image {
    position: relative;
    height: clamp(300px, 50vh, 500px); /* Fluid height */
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: clamp(4rem, 10vw, 6rem);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}
.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures responsive cover */
}
/* Products Section */
.products {
    padding: clamp(60px, 10vh, 80px) 0;
    background: var(--light);
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(clamp(280px, 28vw, 300px), 1fr));
    gap: clamp(20px, 4vw, 30px);
}
.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
}
.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}
.product-image {
    height: clamp(200px, 30vh, 250px); /* Fluid height */
    background: linear-gradient(135deg, #94a3b8, #cbd5e1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(3rem, 8vw, 4rem);
    color: white;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.product-content {
    padding: clamp(20px, 4vw, 30px);
}
.product-content h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: clamp(1.2rem, 3vw, 1.4rem);
}
/* Products Gallery Section - Thumbnail Style */
.products-gallery {
    padding: clamp(60px, 10vh, 80px) 0;
    background: #fafafa;
}
.gallery-thumbnails {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(clamp(250px, 28vw, 300px), 1fr)); /* More fluid grid */
    gap: clamp(15px, 3vw, 25px);
    margin-top: 50px;
}
.gallery-thumb {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    aspect-ratio: 4/3; /* Maintains responsive aspect */
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    background: white;
}
.gallery-thumb:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}
.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Key for responsive images */
    transition: transform 0.4s ease;
    display: block;
}
.gallery-thumb:hover img {
    transform: scale(1.15);
}
.thumb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(93, 64, 55, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}
.gallery-thumb:hover .thumb-overlay {
    background: rgba(93, 64, 55, 0.75);
}
.zoom-icon {
    font-size: clamp(2.5rem, 6vw, 3rem);
    opacity: 0;
    transform: scale(0.3);
    transition: all 0.4s ease;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}
.gallery-thumb:hover .zoom-icon {
    opacity: 1;
    transform: scale(1);
}
.gallery-view-more {
    text-align: center;
    margin-top: 60px;
}
.view-more-btn {
    background: linear-gradient(135deg, var(--accent), #ff6b35);
    color: white;
    padding: clamp(15px, 3vw, 18px) clamp(50px, 8vw, 60px);
    border: none;
    border-radius: 50px;
    font-size: clamp(1rem, 2vw, 1.1rem);
    font-weight: bold;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 6px 25px rgba(216, 67, 21, 0.35);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.view-more-btn:hover {
    background: linear-gradient(135deg, #bf360c, #d84315);
    transform: translateY(-4px);
    box-shadow: 0 10px 35px rgba(216, 67, 21, 0.45);
}
/* Lightbox Popup */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.96);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}
.lightbox.active {
    display: flex;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.lightbox-content {
    position: relative;
    max-width: 95vw; /* Slightly more room on small screens */
    max-height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: zoomIn 0.3s ease;
}
@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
.lightbox-close {
    position: absolute;
    top: -50px; /* Adjusted for smaller screens */
    right: 0;
    color: white;
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    cursor: pointer;
    z-index: 10000;
    transition: all 0.3s ease;
    width: clamp(40px, 8vw, 50px);
    height: clamp(40px, 8vw, 50px);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    font-weight: 300;
}
.lightbox-close:hover {
    color: var(--accent);
    transform: rotate(90deg);
}
#lightboxImage {
    max-width: 100%;
    max-height: clamp(70vh, 85vh, 85vh); /* Fluid max-height */
    width: auto;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 15px 60px rgba(0,0,0,0.7);
    object-fit: contain; /* Better for varying image ratios */
}
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
    width: clamp(50px, 10vw, 65px);
    height: clamp(50px, 10vw, 65px);
    border-radius: 50%;
    font-size: clamp(1.5rem, 4vw, 2rem);
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}
.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
    border-color: rgba(255, 255, 255, 0.7);
}
.lightbox-prev {
    left: clamp(10px, 3vw, 30px);
}
.lightbox-next {
    right: clamp(10px, 3vw, 30px);
}
/* Full Gallery Page */
.full-gallery-page {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f5f5f5;
    z-index: 9998;
    overflow-y: auto;
    animation: slideUp 0.4s ease;
}
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.full-gallery-page.active {
    display: block;
}
.full-gallery-header {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: clamp(25px, 6vh, 35px) 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 6px 25px rgba(0,0,0,0.25);
}
.full-gallery-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: clamp(15px, 4vw, 20px);
}
.full-gallery-title h2 {
    font-size: clamp(1.8rem, 5vw, 2.2rem);
    margin: 0;
    font-weight: 600;
}
.close-gallery-btn {
    background: var(--accent);
    color: white;
    padding: clamp(10px, 2vw, 14px) clamp(25px, 5vw, 35px);
    border: none;
    border-radius: 30px;
    font-size: clamp(0.9rem, 2vw, 1rem);
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(216, 67, 21, 0.3);
    display: flex;
    align-items: center;
    gap: 10px;
}
.close-gallery-btn:hover {
    background: #bf360c;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(216, 67, 21, 0.4);
}
.full-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(clamp(200px, 20vw, 250px), 1fr)); /* Fluid 4-col to 1-col */
    gap: clamp(15px, 3vw, 30px);
    padding: clamp(50px, 10vh, 70px) 0;
}
.full-gallery-grid .gallery-thumb {
    aspect-ratio: 1;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(clamp(300px, 30vw, 350px), 1fr));
    gap: clamp(20px, 4vw, 30px);
    margin-top: 50px;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}
.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}
.gallery-image {
    height: clamp(250px, 35vh, 300px); /* Fluid height */
    background-size: cover;
    background-position: center;
    position: relative;
    background-color: #e0e0e0;
    /* Placeholder gradients - will be replaced with actual images */
}
.gallery-item:nth-child(1) .gallery-image {
    background: linear-gradient(135deg, #6d4c41 0%, #a1887f 100%);
}
.gallery-item:nth-child(2) .gallery-image {
    background: linear-gradient(135deg, #5d4037 0%, #8d6e63 100%);
}
.gallery-item:nth-child(3) .gallery-image {
    background: linear-gradient(135deg, #bf360c 0%, #d84315 100%);
}
.gallery-item:nth-child(4) .gallery-image {
    background: linear-gradient(135deg, #4e342e 0%, #795548 100%);
}
.gallery-item:nth-child(5) .gallery-image {
    background: linear-gradient(135deg, #616161 0%, #9e9e9e 100%);
}
.gallery-item:nth-child(6) .gallery-image {
    background: linear-gradient(135deg, #3e2723 0%, #6d4c41 100%);
}
.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 70%, transparent 100%);
    color: white;
    padding: clamp(20px, 4vw, 30px) clamp(15px, 3vw, 20px) clamp(15px, 3vw, 20px);
    transform: translateY(0);
    transition: all 0.3s ease;
}
.gallery-item:hover .gallery-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.8) 100%);
}
.gallery-overlay h4 {
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    margin-bottom: 5px;
    font-weight: 600;
}
.gallery-overlay p {
    font-size: clamp(0.85rem, 2vw, 0.95rem);
    opacity: 0.9;
}
/* Benefits Section - Completely Redesigned */
.benefits {
    padding: clamp(80px, 12vh, 100px) 0;
    background: linear-gradient(180deg, #ffffff 0%, #f5f5f5 100%);
}
.benefits-header {
    text-align: center;
    margin-bottom: clamp(40px, 8vh, 60px);
}
.benefits-main-content {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Start as 40%-60%, but fluid */
    gap: clamp(30px, 6vw, 50px);
    align-items: start;
}
@media (max-width: 968px) {
    .benefits-main-content {
        grid-template-columns: 1fr;
        gap: clamp(25px, 5vw, 40px);
    }
}
/* Left Side - Feature Box & Stats */
.benefits-left {
    position: sticky;
    top: clamp(100px, 20vh, 150px); /* Fluid sticky top */
}
.benefits-feature-box {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: clamp(30px, 6vw, 40px);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(93, 64, 55, 0.3);
    margin-bottom: clamp(20px, 4vw, 30px);
}
.feature-box-header {
    display: flex;
    align-items: center;
    gap: clamp(15px, 3vw, 20px);
    margin-bottom: 20px;
}
.feature-box-icon {
    font-size: clamp(2.5rem, 6vw, 3rem);
    background: rgba(255, 255, 255, 0.2);
    width: clamp(60px, 12vw, 70px);
    height: clamp(60px, 12vw, 70px);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}
.feature-box-header h3 {
    font-size: clamp(1.5rem, 4vw, 1.8rem);
    margin: 0;
}
.benefits-feature-box p {
    line-height: 1.8;
    margin-bottom: clamp(20px, 4vw, 25px);
    opacity: 0.95;
    font-size: clamp(0.95rem, 2vw, 1rem);
}
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.feature-list li {
    padding: clamp(10px, 2vw, 12px) 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.feature-list li:last-child {
    border-bottom: none;
}
.feature-list li span {
    color: var(--accent);
    font-weight: bold;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    background: rgba(255, 255, 255, 0.2);
    width: clamp(24px, 5vw, 28px);
    height: clamp(24px, 5vw, 28px);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
/* Stats Section */
.benefits-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(clamp(80px, 15vw, 100px), 1fr));
    gap: clamp(10px, 2vw, 15px);
}
.stat-box {
    background: white;
    padding: clamp(20px, 4vw, 25px) clamp(12px, 2vw, 15px);
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}
.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.stat-number {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: bold;
    color: var(--accent);
    margin-bottom: 5px;
}
.stat-label {
    font-size: clamp(0.75rem, 1.8vw, 0.85rem);
    color: var(--gray);
    line-height: 1.3;
}
/* Right Side - Benefit Boxes */
.benefits-right {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(clamp(250px, 45vw, 300px), 1fr));
    gap: clamp(15px, 3vw, 25px);
}
.benefit-box {
    background: white;
    padding: clamp(20px, 4vw, 30px);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}
.benefit-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: var(--accent);
}
.benefit-box-icon {
    margin-bottom: clamp(15px, 3vw, 20px);
}
.icon-circle {
    width: clamp(55px, 10vw, 65px);
    height: clamp(55px, 10vw, 65px);
    background: linear-gradient(135deg, #fff3e0, #ffe0b2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(1.5rem, 4vw, 1.8rem);
    box-shadow: 0 5px 15px rgba(216, 67, 21, 0.2);
    transition: all 0.3s ease;
}
.benefit-box:hover .icon-circle {
    background: linear-gradient(135deg, var(--accent), #ff6b35);
    transform: rotate(10deg) scale(1.1);
}
.benefit-box-content h4 {
    color: var(--primary);
    font-size: clamp(1.1rem, 3vw, 1.25rem);
    margin-bottom: 12px;
    font-weight: 600;
}
.benefit-box-content p {
    color: var(--gray);
    line-height: 1.7;
    margin: 0;
    font-size: clamp(0.85rem, 2vw, 0.95rem);
}
.benefits-wrapper {
    margin-top: clamp(30px, 6vw, 40px);
}
.benefits-intro {
    background: white;
    padding: clamp(25px, 5vw, 40px);
    border-radius: 15px;
    margin-bottom: clamp(40px, 8vh, 50px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border-left: 5px solid var(--accent);
}
.benefits-intro p {
    font-size: clamp(1rem, 2.5vw, 1.15rem);
    line-height: 1.8;
    color: var(--gray);
    margin: 0;
}
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(clamp(280px, 40vw, 320px), 1fr));
    gap: clamp(20px, 4vw, 30px);
}
.benefit-card {
    background: white;
    padding: clamp(25px, 5vw, 35px);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    display: flex;
    gap: clamp(15px, 3vw, 25px);
    align-items: start;
}
.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}
.benefit-icon-wrapper {
    flex-shrink: 0;
    width: clamp(60px, 10vw, 70px);
    height: clamp(60px, 10vw, 70px);
    background: linear-gradient(135deg, var(--accent), #ff6b35);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(216, 67, 21, 0.3);
}
.benefit-card .benefit-icon {
    font-size: clamp(1.8rem, 4vw, 2rem);
    color: white;
}
.benefit-card .benefit-content {
    flex: 1;
}
.benefit-card h4 {
    color: var(--primary);
    margin-bottom: 12px;
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    font-weight: 600;
}
.benefit-card p {
    color: var(--gray);
    line-height: 1.7;
    margin: 0;
    font-size: clamp(0.85rem, 2vw, 0.95rem);
}
.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(clamp(220px, 30vw, 250px), 1fr));
    gap: clamp(30px, 6vw, 40px);
    margin-top: 50px;
}
.benefit-item {
    display: flex;
    gap: clamp(15px, 3vw, 20px);
}
.benefit-icon {
    font-size: clamp(2rem, 5vw, 2.5rem);
    color: var(--accent);
    flex-shrink: 0;
}
.benefit-content h4 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: clamp(1rem, 2.5vw, 1.1rem);
}
/* Contact Section */
.contact {
    padding: clamp(60px, 10vh, 80px) 0;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 8vw, 60px);
    margin-top: 50px;
}
.contact-info {
    display: flex;
    flex-direction: column;
    gap: clamp(25px, 5vw, 30px);
}
.contact-detail {
    display: flex;
    gap: clamp(15px, 3vw, 20px);
    align-items: start;
}
.contact-detail-icon {
    font-size: clamp(1.8rem, 4vw, 2rem);
    color: var(--accent);
    flex-shrink: 0;
}
.contact-detail-a {
    color: white;
}
.contact-form {
    background: rgba(255,255,255,0.1);
    padding: clamp(25px, 5vw, 40px);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}
.form-group {
    margin-bottom: clamp(15px, 3vw, 20px);
}
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: clamp(0.9rem, 2vw, 1rem);
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: clamp(10px, 2.5vw, 12px);
    border: 2px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    color: white;
    font-family: inherit;
    font-size: clamp(0.9rem, 2vw, 1rem);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.6);
}
.form-group textarea {
    min-height: clamp(100px, 20vh, 120px);
    resize: vertical;
}
.submit-btn {
    background: var(--accent);
    color: white;
    padding: clamp(10px, 2.5vw, 12px) clamp(30px, 6vw, 40px);
    border: none;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    font-size: clamp(0.9rem, 2vw, 1rem);
}
.submit-btn:hover {
    background: #ea580c;
    transform: translateY(-2px);
}
/* Footer */
footer {
    background: var(--dark);
    color: white;
    padding: clamp(20px, 5vh, 30px) 0;
    text-align: center;
}
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: clamp(10px, 2vw, 15px);
}
.developed-by {
    font-size: clamp(1.2rem, 1.8vw, 0.9rem);
    opacity: 0.8;
}
.developed-by a {
    color: white;
    text-decoration: none;
}
.developed-by a:hover {
    text-decoration: underline;
}
/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
/* Responsive Breakpoints - Enhanced for all devices */
@media (max-width: 1200px) {
    .container {
        max-width: 95%;
    }
}
@media (max-width: 968px) {
    .about-content,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: clamp(20px, 5vw, 40px);
    }
    .about-image {
        height: clamp(250px, 40vh, 300px);
        order: -1; /* Image above text on mobile */
    }
    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary);
        flex-direction: column;
        padding: clamp(15px, 4vw, 20px);
        gap: clamp(12px, 3vw, 15px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    }
    nav ul.active {
        display: flex;
    }
    .mobile-menu-btn {
        display: block;
    }
    .carousel-container {
        height: clamp(45vh, 60vh, 500px);
    }
    .carousel-content-fixed h1 {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }
    .carousel-content-fixed p {
        font-size: clamp(0.95rem, 2.5vw, 1.1rem);
    }
    .carousel-btn {
        width: clamp(35px, 7vw, 45px);
        height: clamp(35px, 7vw, 45px);
        font-size: clamp(1rem, 3vw, 1.2rem);
    }
    .prev-btn {
        left: clamp(10px, 3vw, 15px);
    }
    .next-btn {
        right: clamp(10px, 3vw, 15px);
    }
    .section-title {
        font-size: clamp(1.8rem, 6vw, 2rem);
    }
    .gallery-thumbnails {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: clamp(12px, 3vw, 15px);
    }
    .full-gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: clamp(15px, 3vw, 20px);
    }
    .lightbox-prev {
        left: clamp(5px, 2vw, 10px);
    }
    .lightbox-next {
        right: clamp(5px, 2vw, 10px);
    }
    .lightbox-nav {
        width: clamp(45px, 9vw, 55px);
        height: clamp(45px, 9vw, 55px);
        font-size: clamp(1.5rem, 4vw, 1.8rem);
    }
    .benefits-main-content {
        grid-template-columns: 1fr;
        gap: clamp(25px, 5vw, 40px);
    }
    .benefits-left {
        position: relative;
        top: 0;
    }
    .benefits-right {
        grid-template-columns: 1fr;
    }
    .benefits-stats {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    }
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    .benefits-intro {
        padding: clamp(20px, 5vw, 30px) clamp(15px, 3vw, 25px);
    }
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}
@media (max-width: 640px) {
    .header-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .nav-container {
        padding: 0 10px;
    }
    .carousel-section {
        /* margin-top: clamp(140px, 20vh, 160px); */
        margin-top: clamp(97px, 20vh, 50px);
    }
    .carousel-container {
        height: clamp(50vh, 65vh, 550px);
    }
    .carousel-content-fixed h1 {
        font-size: clamp(1.6rem, 8vw, 2rem);
    }
    .carousel-content-fixed p {
        font-size: clamp(0.9rem, 3vw, 1rem);
    }
    .carousel-content-fixed .cta-button {
        padding: clamp(10px, 3vw, 12px) clamp(25px, 6vw, 35px);
        font-size: clamp(0.9rem, 2.5vw, 1rem);
    }
    .carousel-indicators {
        bottom: clamp(10px, 3vh, 20px);
    }
    .indicator {
        width: clamp(8px, 2vw, 10px);
        height: clamp(8px, 2vw, 10px);
    }
    .indicator.active {
        width: clamp(25px, 6vw, 30px);
    }
    .carousel-btn {
        width: clamp(30px, 6vw, 40px);
        height: clamp(30px, 6vw, 40px);
        font-size: clamp(0.9rem, 3vw, 1.1rem);
    }
    .prev-btn {
        left: clamp(5px, 2vw, 10px);
    }
    .next-btn {
        right: clamp(5px, 2vw, 10px);
    }
    .features,
    .about,
    .products,
    .products-gallery,
    .benefits,
    .contact {
        padding: clamp(40px, 8vh, 60px) 0;
    }
    .contact-form {
        padding: clamp(20px, 5vw, 25px);
    }
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: clamp(15px, 4vw, 20px);
    }
    .gallery-image {
        height: clamp(200px, 30vh, 250px);
    }
    .gallery-thumbnails {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: clamp(10px, 2.5vw, 12px);
    }
    .full-gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: clamp(12px, 3vw, 15px);
        padding: clamp(30px, 8vh, 40px) 0;
    }
    .lightbox-nav {
        width: clamp(40px, 8vw, 50px);
        height: clamp(40px, 8vw, 50px);
        font-size: clamp(1.3rem, 4vw, 1.6rem);
    }
    .lightbox-close {
        top: clamp(5px, 2vh, 10px);
        right: clamp(5px, 2vw, 10px);
        font-size: clamp(2.2rem, 7vw, 2.8rem);
    }
    .lightbox-prev {
        left: clamp(2px, 1.5vw, 5px);
    }
    .lightbox-next {
        right: clamp(2px, 1.5vw, 5px);
    }
    #lightboxImage {
        max-height: clamp(60vh, 75vh, 70vh);
    }
    .full-gallery-title {
        flex-direction: column;
        gap: clamp(10px, 3vw, 15px);
        text-align: center;
    }
    .full-gallery-title h2 {
        font-size: clamp(1.4rem, 5vw, 1.6rem);
    }
    .view-more-btn {
        padding: clamp(12px, 3vw, 15px) clamp(30px, 6vw, 40px);
        font-size: clamp(0.9rem, 2.5vw, 1rem);
    }
    .benefits-feature-box {
        padding: clamp(25px, 5vw, 30px) clamp(20px, 4vw, 25px);
    }
    .feature-box-header {
        flex-direction: column;
        text-align: center;
        gap: clamp(10px, 2vw, 15px);
    }
    .feature-box-header h3 {
        font-size: clamp(1.3rem, 4vw, 1.5rem);
    }
    .benefits-stats {
        grid-template-columns: 1fr;
        gap: clamp(10px, 2vw, 15px);
    }
    .stat-number {
        font-size: clamp(1.5rem, 5vw, 1.8rem);
    }
    .benefit-box {
        padding: clamp(20px, 4vw, 25px);
    }
    .benefit-card {
        padding: clamp(20px, 4vw, 25px);
        flex-direction: column;
        text-align: center;
        gap: clamp(15px, 3vw, 20px);
    }
    .benefit-icon-wrapper {
        width: clamp(50px, 10vw, 60px);
        height: clamp(50px, 10vw, 60px);
        margin: 0 auto;
    }
    .benefits-intro {
        padding: clamp(20px, 4vw, 25px) clamp(15px, 3vw, 20px);
    }
    .benefits-intro p {
        font-size: clamp(0.9rem, 2.5vw, 1rem);
    }
    .lightbox-content {
        max-width: 98vw;
        max-height: 98vh;
    }
    .lightbox-close {
        top: 0; /* Full screen close on tiny devices */
        right: 0;
    }
}

/* Additional ultra-small screen breakpoint (e.g., <480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 clamp(5px, 3vw, 10px);
    }
    .nav-wrapper {
        padding: 10px 0;
    }
    .logo {
        font-size: clamp(1.2rem, 5vw, 1.4rem);
    }
    .features-grid,
    .products-grid,
    .gallery-thumbnails,
    .benefits-right,
    .benefits-grid {
        gap: clamp(10px, 4vw, 15px);
    }
    .gallery-thumb,
    .full-gallery-grid .gallery-thumb {
        aspect-ratio: 1; /* Square on tiny screens for better fit */
    }
    .product-image,
    .gallery-image {
        font-size: clamp(2.5rem, 10vw, 3rem); /* Smaller icons */
    }
    .section-subtitle {
        font-size: clamp(0.9rem, 2.5vw, 1rem);
    }
    .contact-detail {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .contact-detail-icon {
        align-self: flex-start;
    }
}