@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;500;600;700&family=Poppins:wght@600;700;800&display=swap');

:root {
    --primary-color: #0D5C63;
    --primary-dark: #094A51;
    --primary-light: #0A4D54;
    --accent-color: #C5A572;
    --accent-light: #D4B896;
    --background-light: #F8F8F8;
    --background-white: #FFFFFF;
    --text-dark: #333333;
    --text-light: #666666;
    --text-muted: #999999;
    --border-color: #E0E0E0;
    --shadow-light: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-medium: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-heavy: 0 8px 32px rgba(0,0,0,0.16);
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --font-main: 'Nunito', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-rounded: 'Nunito', 'Segoe UI', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    background-color: var(--background-light);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    background: var(--background-white);
    box-shadow: var(--shadow-light);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    background: var(--primary-color);
    color: var(--background-white);
    padding: 8px 0;
    font-size: 14px;
    overflow: hidden;
    white-space: nowrap;
}

.header-top .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-top span {
    color: var(--background-white);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    letter-spacing: 0.5px;
    animation: marquee 30s linear infinite;
}

.header-top span:hover {
    color: var(--accent-light);
}

@keyframes marquee {
    0% {
        transform: translateX(100%);
        -webkit-transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
        -webkit-transform: translateX(-100%);
    }
}

.header-top span {
    -webkit-animation: marquee 30s linear infinite;
    animation: marquee 30s linear infinite;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.header-top-content {
    display: inline-block;
    padding-right: 50px;
}

.header-main {
    padding: 4px 0;
}

.header-main .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 25px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 18px;
}

.logo-text {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
}

.header-logo-img {
    height: 60px;
    width: auto;
}

.header-logo {
    height: 60px;
    width: auto;
}

.contact-info {
    display: flex;
    gap: 40px;
    align-items: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 14px;
}

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

.nav-menu {
    background: var(--primary-dark);
    padding: 0;
}

.nav-menu .container {
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    gap: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 16px 24px;
    color: var(--background-white);
    font-weight: 500;
    transition: var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
    background: var(--primary-color);
    color: var(--accent-light);
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--background-white);
    box-shadow: var(--shadow-medium);
    min-width: 850px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(10px);
    transition: var(--transition-normal);
    z-index: 100;
    padding: 16px 20px;
    display: flex;
    gap: 20px;
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-section {
    flex: 1;
    min-width: 200px;
}

.dropdown-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 2px solid var(--accent-color);
}

.dropdown-icon {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
}

.dropdown-label {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-color);
    white-space: nowrap;
}

.dropdown-items {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.dropdown-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-color);
    white-space: nowrap;
}

.dropdown-item {
    display: block;
    padding: 6px 10px;
    color: var(--text-dark);
    font-family: var(--font-rounded);
    font-size: 13px;
    font-weight: 500;
    border-radius: 6px;
    transition: var(--transition-fast);
    background: transparent;
}

.dropdown-item:hover {
    background: var(--background-light);
    color: var(--primary-color);
    padding-left: 14px;
}

.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #073d44 50%, var(--primary-dark) 100%);
    color: var(--background-white);
    padding: 100px 0 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/hero-bg-clean.png') center center / cover no-repeat;
    opacity: 0.2;
    filter: none;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-family: 'Poppins', 'Arial Black', sans-serif;
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.15;
    letter-spacing: 1px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 36px;
    opacity: 0.9;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.hero-logo {
    max-width: 300px;
    margin: 0 auto 30px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--accent-color);
    color: #1a1a1a;
    box-shadow: 0 4px 15px rgba(197, 165, 114, 0.4);
}

.btn-primary:hover {
    background: #d4b584;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(197, 165, 114, 0.5);
}

.btn-secondary {
    background: transparent;
    border-color: rgba(255,255,255,0.6);
    color: white;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.15);
    border-color: white;
    transform: translateY(-3px);
}
    color: var(--background-white);
    border: 2px solid var(--background-white);
}

.btn-secondary:hover {
    background: var(--background-white);
    color: var(--primary-color);
}

.section {
    padding: 80px 0;
}

.stats-section {
    background: #F7F8FA;
    padding: 48px 0;
    width: 100%;
}

.stats-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.stats-grid {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.stat-item {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    text-align: center;
    padding: 32px 16px;
    background: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    box-sizing: border-box;
    vertical-align: top;
}

.stat-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.stat-icon {
    font-size: 28px;
    color: #0D5C63;
    margin-bottom: 20px;
    display: inline-block;
    width: 64px;
    height: 64px;
    line-height: 64px;
    background: rgba(13, 92, 99, 0.1);
    border-radius: 50%;
    text-align: center;
}

.stat-headline {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #0D5C63;
    letter-spacing: 0.3px;
    line-height: 1.4;
    margin-bottom: 12px;
}

.stat-desc {
    font-size: 14px;
    color: #666666;
    font-weight: 400;
    line-height: 1.6;
    text-align: left;
}

@media (max-width: 992px) {
    .stat-item {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
    }
}

@media (max-width: 576px) {
    .stat-item {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        margin-bottom: 20px;
    }
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.section-title p {
    font-size: 16px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.featured-products {
    background: var(--background-white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.product-card {
    background: var(--background-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition-normal);
}

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

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: var(--background-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    aspect-ratio: 1 / 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.16);
}

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

.product-info {
    padding: 20px;
}

.product-sku {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.product-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.product-desc {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.5;
}

.product-description {
    font-family: 'Nunito', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
    color: #000000;
    margin-bottom: 30px;
}

.product-description p {
    font-family: 'Nunito', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
    color: #000000;
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
}

.product-link:hover {
    color: var(--accent-color);
    gap: 10px;
}

.categories-section {
    background: var(--background-light);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.category-card {
    background: var(--background-white);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition-normal);
    border: 2px solid transparent;
}

.category-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.category-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.category-icon i {
    font-size: 48px;
    color: var(--background-white);
}

.category-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.category-desc {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.category-count {
    display: inline-block;
    background: var(--background-light);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    color: var(--text-muted);
}

.features-section {
    background: var(--background-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--background-light);
    border-radius: 12px;
    transition: var(--transition-normal);
}

.feature-card:hover {
    background: var(--background-white);
    box-shadow: var(--shadow-medium);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 32px;
    color: var(--background-white);
}

.feature-card h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-light);
}

.testimonials-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--background-white);
}

.testimonials-section .section-title h2 {
    color: var(--background-white);
}

.testimonials-section .section-title p {
    color: rgba(255,255,255,0.8);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 12px;
    transition: var(--transition-normal);
}

.testimonial-card:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-4px);
}

.testimonial-stars {
    margin-bottom: 16px;
}

.testimonial-stars i {
    color: var(--accent-color);
    font-size: 18px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--text-dark);
}

.testimonial-info h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.testimonial-info span {
    font-size: 13px;
    opacity: 0.8;
}

.video-section {
    background: var(--background-white);
    padding: 60px 0;
}

.video-section-content {
    text-align: center;
}

.video-section-content h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.video-section-content p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.video-subtitle {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 35px;
}

.video-card {
    max-width: 480px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .video-card {
        max-width: 100%;
    }
}

.video-card-thumb {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 16 / 9;
    background: #ffffff;
}

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

.video-card-play {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.12);
    transition: background 0.3s ease;
}

.video-card-thumb:hover .video-card-play {
    background: rgba(0,0,0,0.28);
}

.play-circle {
    width: 52px;
    height: 52px;
    background: rgba(13,92,99,0.92);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease, background 0.25s ease;
}

.video-card-thumb:hover .play-circle {
    transform: scale(1.1);
    background: rgba(13,92,99,1);
}

.play-circle i {
    color: #fff;
    font-size: 20px;
    margin-left: 3px;
}

.video-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.video-wrapper video {
    width: 100%;
    max-height: 500px;
    object-fit: contain;
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-wrapper video:hover {
    transform: scale(1.01);
    box-shadow: 0 12px 50px rgba(0,0,0,0.15);
}

.cta-section {
    background: var(--background-white);
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 24px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.footer {
    background: var(--text-dark);
    color: var(--background-white);
}

.footer-main {
    padding: 60px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-col h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--accent-light);
}

.footer-col p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

.footer-col ul li a:hover {
    color: var(--accent-light);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-contact li i {
    color: var(--accent-color);
    margin-top: 4px;
}

.footer-bottom {
    background: rgba(0,0,0,0.2);
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.footer-social a:hover {
    background: var(--accent-color);
    color: var(--text-dark);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 24px;
    cursor: pointer;
}

@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 50px 0;
    }
    
    .hero h1 {
        font-size: 28px;
        margin-bottom: 25px;
    }
    
    .hero p {
        font-size: 15px;
        padding: 0 10px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 14px;
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .categories-grid,
    .features-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .category-card {
        padding: 30px 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary-dark);
        z-index: 999;
    }
    
    .nav-menu.active {
        display: block;
    }
    
    .nav-list {
        flex-direction: column;
    }
    
    .nav-link {
        padding: 14px 20px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .dropdown {
        position: static;
        transform: none;
        flex-direction: column;
        min-width: 100%;
        box-shadow: none;
        background: rgba(0,0,0,0.2);
        padding: 10px 0;
        display: none;
        max-height: 70vh;
        overflow-y: auto;
    }
    
    .nav-item:hover .dropdown,
    .nav-item.active .dropdown {
        display: flex;
    }
    
    .dropdown-section {
        min-width: 100%;
    }
    
    .dropdown-item {
        color: #FFFFFF !important;
        font-size: 14px !important;
        padding: 8px 15px !important;
    }
    
    .dropdown-item:hover {
        background: rgba(255,255,255,0.25) !important;
        color: #FFFFFF !important;
    }
    
    .dropdown-label,
    .dropdown-title {
        color: #FFFFFF !important;
        font-weight: 700 !important;
        font-size: 16px !important;
        text-shadow: 0 1px 3px rgba(0,0,0,0.5) !important;
    }
    
    .dropdown-header {
        border-bottom: 2px solid rgba(255,255,255,0.4) !important;
        padding-bottom: 10px !important;
        margin-bottom: 10px !important;
    }
    
    .header-top {
        padding: 6px 0;
    }
    
    .header-top .container {
        flex-direction: column;
        gap: 4px;
        font-size: 12px;
    }
    
    .contact-info {
        display: none;
    }
    
    .header-main {
        padding: 8px 0;
    }
    
    .logo-text {
        font-size: 16px;
    }
    
    .header-logo-img {
        height: 45px;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .section-title p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 24px;
    }
    
    .logo-text {
        font-size: 14px;
    }
    
    .category-title {
        font-size: 22px;
    }
    
    .cta-content h2 {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    /* Hydration Bottle Product Grid - Mobile */
    .products-grid[style*="grid-template-columns: repeat(4, 1fr)"] {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }
    
    /* Product image containers - reduce height on mobile */
    .gallery-zoom-container[style*="height: 300px"] {
        height: 200px !important;
    }
    
    .gallery-zoom-container[style*="height: 250px"] {
        height: 180px !important;
    }
}

@media (max-width: 576px) {
    /* Hydration Bottle Series - 4 products to 2 columns */
    section .container > div[style*="grid-template-columns: repeat(4, 1fr)"] {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }
    
    /* Key Features - Keep left-right layout on mobile */
    section .container > div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr 1fr !important;
        gap: 15px !important;
    }
    
    /* Key Features inner grid - Keep 2 columns for bullet points (3 rows × 2 cols) */
    div[style*="grid-template-columns: 1fr 1fr"] div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important;
    }
    
    /* Package images - 2 rows × 1 column (vertical stack) */
    section .container > div[style*="grid-template-columns: 1fr 1fr"] > div:last-child {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
    
    /* Package images container - reduce height on mobile */
    div[style*="height: 250px"] {
        height: 180px !important;
    }
    
    /* Spray Tube / Portable Faucet / Muslim Friendly - 4 columns to 2 columns */
    div[style*="grid-template-columns: repeat(4, 1fr)"] {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }
    
    /* Reduce padding on product cards */
    div[style*="padding: 20px 20px 15px 20px"] {
        padding: 15px 15px 10px 15px !important;
    }
    
    /* Adjust font sizes for mobile */
    h2[style*="font-size: 28px"] {
        font-size: 24px !important;
    }
    
    h2[style*="font-size: 24px"] {
        font-size: 20px !important;
    }
}

.wudu-text {
    color: #ffffff;
}

.wudu-text .w-green {
    color: #0ABAB5;
}

.h-blue {
    color: #0ABAB5;
}

.video-modal {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.92);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
}

.video-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-modal video {
    max-width: 92vw;
    max-height: 88vh;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.video-modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 44px;
    color: #fff;
    cursor: pointer;
    line-height: 1;
    opacity: 0.7;
    transition: opacity 0.2s;
    z-index: 10;
}

.video-modal-close:hover {
    opacity: 1;
}

.video-thumb {
    display: inline-block;
    position: relative;
    cursor: pointer;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.video-thumb:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 24px rgba(0,0,0,0.15);
}

.video-thumb img {
    height: 200px;
    width: auto;
    display: block;
}

.video-thumb .play-btn {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    width: 56px; height: 56px;
    background: rgba(13,92,99,0.92);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s, background 0.2s;
}

.video-thumb:hover .play-btn {
    transform: translate(-50%,-50%) scale(1.1);
    background: rgba(13,92,99,1);
}

.video-thumb .play-btn i {
    color: #fff;
    font-size: 22px;
    margin-left: 3px;
}
