/* Hero Section Styles */
header.hero-section .content h1 {
    font-size: clamp(18px, 3vw, 22px);
}

header.hero-section .content p {
    font-size: clamp(14px, 3vw, 16px);
}

header.hero-section .content a {
    border: 1px solid var(--primary-color);
}

header.hero-section img {
    width: 220px;
}

header .hero_waves {
    display: block;
    width: 100%;
    height: 60px;
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: -1;
}

header .hero_waves .wave1 use {
    animation: move-forever1 10s linear infinite;
    animation-delay: -2s;
    fill: var(--primary-color);
    opacity: 0.6;
}

header .hero_waves .wave2 use {
    animation: move-forever2 8s linear infinite;
    animation-delay: -2s;
    fill: var(--secondary-color);
    opacity: 0.4;
}

header .hero_waves .wave3 use {
    animation: move-forever3 6s linear infinite;
    animation-delay: -2s;
    fill: #fff;
}

/* About Us Section */
.about-section {
    padding: 30px 0;
    background-color: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: clamp(16px, 9vw, 40px);
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: bold;
}

.section-subtitle {
    font-size: clamp(16px, 3vw, 18px);
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.about-text h3 {
    font-size: clamp(16px, 6vw, 28px);
    color: var(--text-dark);
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: clamp(14px, 3vw, 16px);
}

.about-features {
    list-style: none;
    margin-top: 30px;
    padding: 0;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-size: clamp(14px, 3vw, 16px);
}

.about-features i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

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

.about-image img {
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

/* Services Section */
.services-section {
    padding: 30px 0;
    background-color: var(--white);
}

.services-section .row {
    row-gap: 30px
}

.services-section .service-card img {
    width: 55px;
    height: 45px;
    object-fit: contain;
}

.services-section .service-card span {
    font-size: 1rem
}

/* Partners Section */
.partners-section {
    padding: 30px 0;
    background-color: var(--bg-light);
}

section.partners-section .partners-slider-container .splide__slide img {
    width: 100px;
    height: 100%;
    object-fit: cover;
}

/* Products Section */
.products-section {
    padding: 30px 0;
    background-color: var(--white);
}

/* Products Slider */
.products-slider-container {
    position: relative;
    margin-top: 50px;
    overflow: hidden;
}

.slider-navigation {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    z-index: 10;
    pointer-events: none;
}

.slider-btn {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    pointer-events: all;
}

.slider-btn:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

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

.prev-btn {
    left: -25px;
}

.next-btn {
    right: -25px;
}

.products-slider {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 30px;
    padding: 20px 0;
}

.product-slide {
    min-width: 100%;
    display: flex;
    justify-content: center;
    transform: scale(0.9);
    transition: all 0.5s ease;
}

.product-slide.active {
    opacity: 1;
    transform: scale(1);
}

.products-slider .product-card {
    background-color: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    max-width: 400px;
    width: 100%;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.products-slider .product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.products-slider .product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

.products-slider .product-card:hover .product-image img {
    transform: scale(1.1);
}

.products-slider .product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, var(--accent-color), #d97706);
    color: var(--white);
    width: fit-content;
}

.products-slider .product-badge.bestseller {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: var(--white);
}

.products-slider .product-badge.energy {
    background: linear-gradient(135deg, #10b981, #059669);
    color: var(--white);
}

.products-slider .product-badge.professional {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: var(--white);
}

.products-slider .product-info {
    padding: 25px;
}

.products-slider .product-category {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.9rem;
}

.products-slider .product-category i {
    font-size: 1rem;
}

.products-slider .product-title {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 600;
    line-height: 1.4;
}

.products-slider .product-description {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.products-slider .product-pricing {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.products-slider .original-price {
    color: var(--text-light);
    text-decoration: line-through;
    font-size: 0.9rem;
}

.products-slider .sale-price {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: bold;
}

.products-slider .discount {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: var(--white);
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 600;
}

.products-slider .product-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.products-slider .stars {
    display: flex;
    gap: 2px;
}

.products-slider .stars span {
    color: var(--accent-color);
    font-size: 0.9rem;
}

.products-slider .rating-count {
    color: var(--text-light);
    font-size: 0.85rem;
}

.products-slider .product-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.products-slider .product-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
    color: var(--white);
    text-decoration: none;
}

/* View All Products Button */
.products-cta {
    text-align: center;
    margin-top: 50px;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(135deg, var(--accent-color), #d97706);
    color: var(--white);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.view-all-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
    color: var(--white);
    text-decoration: none;
}

/* Responsive */
@media (max-width:767px) {
    header.hero-section .content {
        margin-bottom: 20px;
        text-align: center;
    }

    header.hero-section .content .download_btns {
        justify-content: center;
    }

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

}