:root {
    --primary: #2C5F5D;
    --primary-light: #4A8B89;
    --secondary: #E8B86D;
    --accent: #D4846A;
    --bg-cream: #F9F7F2;
    --bg-warm: #F5F0E8;
    --text-dark: #2C3E3A;
    --text-light: #5A6B66;
    --text-muted: #8A9B96;
    --white: #FFFFFF;
    --shadow: 0 10px 40px rgba(44, 95, 93, 0.08);
    --shadow-hover: 0 20px 60px rgba(44, 95, 93, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans SC', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-cream);
    line-height: 1.8;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', 'Noto Sans SC', serif;
    font-weight: 600;
    letter-spacing: -0.02em;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(249, 247, 242, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(44, 95, 93, 0.08);
    transition: all 0.4s ease;
}

nav.scrolled {
    box-shadow: var(--shadow);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
}

.logo img {
    height: 42px;
    width: auto;
}

.logo-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(44, 95, 93, 0.2);
}

.logo-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.05em;
}

.logo-sub {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 400;
    letter-spacing: 0.1em;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links li.active a {
    color: var(--primary);
}

.nav-links li.active a::after {
    width: 100%;
}

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 2rem 2rem 4rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-warm) 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(44, 95, 93, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(232, 184, 109, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-20px, -30px); }
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: fadeInUp 1s ease;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(44, 95, 93, 0.1);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(44, 95, 93, 0.15);
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero h1 span {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.hero h1 span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 12px;
    background: rgba(232, 184, 109, 0.3);
    z-index: -1;
    border-radius: 4px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-weight: 300;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(44, 95, 93, 0.1);
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.3rem;
}

.hero-image {
    position: relative;
    animation: fadeIn 1.2s ease;
}

.hero-image-main {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: var(--shadow-hover);
    transition: transform 0.5s ease;
}

.hero-image:hover .hero-image-main {
    transform: scale(1.02);
}

.hero-floating-card {
    position: absolute;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    animation: float 4s ease-in-out infinite;
}

.card-1 {
    top: 10%;
    left: -30px;
    animation-delay: 0s;
}

.card-2 {
    bottom: 15%;
    right: -20px;
    animation-delay: 2s;
}

.card-icon {
    width: 40px;
    height: 40px;
    background: rgba(44, 95, 93, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.1rem;
}

.card-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

.card-sub {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Buttons */
.btn-group {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    box-shadow: 0 4px 15px rgba(44, 95, 93, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(44, 95, 93, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* Section Styles */
section {
    /* padding: 6rem 2rem; */
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-tag {
    display: inline-block;
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    position: relative;
    padding: 0 1rem;
}

.section-tag::before,
.section-tag::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background: var(--primary);
}

.section-tag::before { left: -35px; }
.section-tag::after { right: -35px; }

.section-title {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.section-desc {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* About Section */
.about {
    background: var(--white);
    padding: 2rem 0;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-container {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 3rem;
    align-items: stretch;
}

.about-images {
    position: relative;
    display: flex;
}

.video-container {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.video-container video {
    width: 100%;
    object-fit: contain;
    display: block;
    border-radius: 20px;
}

.about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-content .section-tag {
    margin-bottom: 0.5rem;
}

.about-content h3 {
    margin-bottom: 1.5rem;
}

.about-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.about-img-main {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.about-img-accent {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 250px;
    height: 200px;
    object-fit: cover;
    border-radius: 16px;
    border: 5px solid white;
    box-shadow: var(--shadow);
}

.about-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 0rem;
}

.about-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.about-feature-icon {
    width: 36px;
    height: 36px;
    background: rgba(44, 95, 93, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.about-feature-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* Products Section */
.products {
    background: linear-gradient(to bottom, var(--bg-warm), var(--bg-cream));
    padding: 2rem 0;
}

.products-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid rgba(44, 95, 93, 0.05);
}

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

.product-image {
    width: 100%;
    /* height: 240px; */
    object-fit: cover;
    transition: transform 0.5s ease;
    position: relative;
}

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

.product-content {
    padding: 1.8rem;
}

.product-tag {
    display: inline-block;
    background: rgba(44, 95, 93, 0.1);
    color: var(--primary);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.product-title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    text-align: center;
}

.product-desc {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

.product-features {
    display: flex;
    gap: 1rem;
    margin-top: 1.2rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.product-feature {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.product-feature i {
    color: var(--secondary);
}

/* Features Section */
.features {
    background: var(--white);
    padding: 2rem 0;
}

.features-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}

.feature-card {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--bg-cream);
    border-radius: 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 8px 20px rgba(44, 95, 93, 0.2);
}

.feature-title {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.feature-desc {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Trust Section */
.trust {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.trust::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.trust-container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 2rem 0;
}
.trust-container .section-tag{
    color: white;
}
.trust-container .section-title{
    color: white;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.trust-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255,255,255,0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

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

.trust-number {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.5rem;
    color: var(--secondary);
}

.trust-label {
    font-size: 0.95rem;
    opacity: 0.9;
}

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

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.15);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    border: 1px solid rgba(255,255,255,0.2);
}

/* Certificates Section */
.certificates {
    background: var(--white);
    padding: 6rem 0;
}

.certificates-carousel {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    overflow: hidden;
}

.certificates-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease;
    flex-wrap: nowrap;
    width: max-content;
}

.certificate-card {
    flex: 0 0 280px;
    /* background: var(--white); */
    border-radius: 16px;
    overflow: hidden;
    /* box-shadow: var(--shadow); */
    transition: all 0.3s ease;
    cursor: pointer;
}

.certificate-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.certificate-image {
    position: relative;
    width: 100%;
    height: 377px;
    overflow: hidden;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.certificate-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 95, 93, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
}

.certificate-card:hover .certificate-overlay {
    opacity: 1;
}

.certificate-overlay i {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.certificate-overlay span {
    font-size: 0.9rem;
}

/* Carousel Arrows */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    box-shadow: var(--shadow);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-arrow:hover {
    background: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-hover);
}

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

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

/* Partners Section */
.partners {
    background: var(--white);
    padding: 6rem 0;
}

.partners-list {
    margin: 0 -0.5rem;
}

.partner-item {
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.partner-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border: 1px solid var(--primary);
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
}

.partner-logo img {
    max-height: 80px;
    max-width: 100%;
    object-fit: contain;
}

/* Responsive */
@media (max-width: 768px) {
    .partners .section-title h2 {
        font-size: 2rem;
    }
    
    .partner-logo {
        height: 60px;
    }
    
    .partner-logo img {
        max-height: 40px;
    }
}

/* Footer Section */
.footer {
    background: var(--bg-cream);
    padding: 3rem 0 0rem;
}

.footer-contact {
    margin-bottom: 2rem;
}

.footer-contact-info h4 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer-contact-info p {
    margin-bottom: 0.8rem;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-contact-info i {
    color: var(--primary);
    margin-right: 0.5rem;
}

.footer-contact-info strong {
    color: var(--text-dark);
    margin-right: 0.5rem;
}

.footer-qrcode {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
}

.footer-qrcode p {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 1rem;
    width: 180px;
    text-align: center;
}

.footer-qrcode img {
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.footer-copyright {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 0.5rem;
    text-align: center;
}

.footer-copyright p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.footer-copyright a {
    color: var(--primary);
    text-decoration: none;
}

.footer-copyright a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .footer {
        padding: 2rem 0;
    }
    
    .footer-contact-info h4 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .footer-contact-info p {
        font-size: 0.85rem;
    }
    
    .footer-qrcode img {
        max-width: 120px;
    }
    
    .footer-copyright {
        padding-top: 1.5rem;
    }
    
    .footer-copyright p {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {

    .footer-qrcode  {
            align-items: center;
    }
}
.pagination-container {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 2rem 0;
}

.pagination-container .page-link {
    display: inline-block;
    padding: 0.5rem 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    background: white;
}

.pagination-container .page-link:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.pagination-container .page-active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    font-weight: 600;
}

/* Banner Full */
.banner-full {
    width: 100%;

    overflow: hidden;
    margin-top: 80px;
}

.banner-full img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Banner Swiper */
.banner {
    margin-top: 80px;
    width: 100%;
    overflow: hidden;
}

.banner .swiper-container {
    width: 100%;
}

.banner .swiper-slide {
    width: 100%;
}

.banner .swiper-slide img {
    width: 100%;
    object-fit: cover;
}



.banner .swiper-button-prev,
.banner .swiper-button-next {
    width: 40px;
    height: 40px;

    transition: all 0.3s ease;
}





.banner .swiper-button-prev:after,
.banner .swiper-button-next:after {
    font-size: 16px;
    color: var(--primary);
}

.banner .swiper-button-prev:hover:after,
.banner .swiper-button-next:hover:after {
    color: white;
}

/* Product Gallery */
.product-gallery {
    width: 100%;
}

.product-gallery .swiper-slide img {
    width: 100%;
    max-height: 500px;
    object-fit: contain;
}

.product-gallery .swiper-button-prev,
.product-gallery .swiper-button-next {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.product-gallery .swiper-button-prev:hover,
.product-gallery .swiper-button-next:hover {
    background: var(--primary);
}

.product-gallery .swiper-button-prev:after,
.product-gallery .swiper-button-next:after {
    font-size: 16px;
    color: var(--primary);
}

.product-gallery .swiper-button-prev:hover:after,
.product-gallery .swiper-button-next:hover:after {
    color: white;
}

.product-gallery.swiper-container-only-one .product-nav-prev,
.product-gallery.swiper-container-only-one .product-nav-next,
.product-gallery.swiper-container-only-one .product-pagination {
    display: none;
}

/* Product Detail Header */
.product-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.product-category-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

/* Sidebar Menu */
.sidebar-menu {
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow);
    padding: 2rem;
}

.sidebar-menu h3 {
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
}

.sidebar-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-menu li {
    margin-bottom: 0.8rem;
}

.sidebar-menu li a {
    display: block;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--text-dark);
}

.sidebar-menu li.active a {
    background: var(--primary);
    color: white;
}

.sidebar-menu li a:hover {
    background: var(--primary);
    color: white;
}

/* Content Box */
.content-box {
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow);
    padding: 3rem;
}
@media (max-width: 768px) {
.container{
    padding: 0 0.5rem;
}
    .content-box  {
         padding: 0.5rem;
    }
    
    .product-content {
    padding: 0rem;
}
}
/* Case List */
.case-list {
    margin: 0 -0.5rem;
}

.case-item {
    background: white;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.case-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.case-image {
    height: 160px;
    overflow: hidden;
}

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

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

.case-title {
    background: white;
}

.case-title p {
    font-weight: 500;
    color: var(--text-dark);
}

/* Case Detail */
.case-detail {
    color: var(--text-light);
    line-height: 2;
}

.case-detail h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
}

.article-meta {
    color: var(--text-muted);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.content-text {
    color: var(--text-light);
    line-height: 2;
    font-size: 1.1rem;
}

/* Contact Section */
.contact {
    background: var(--white);
}

.contact-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.2rem;
    background: var(--bg-cream);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(44, 95, 93, 0.05);
    transform: translateX(5px);
}

.contact-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.contact-text {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.2rem;
}

.contact-sub {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.contact-form {
    background: var(--bg-cream);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.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: 1rem;
    border: 2px solid rgba(44, 95, 93, 0.1);
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(44, 95, 93, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
footer {
    background: var(--text-dark);
    color: white;
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-brand .logo-text {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: block;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--secondary);
}

.footer-bottom {
    max-width: 1280px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 968px) {
    .hero-container,
    .about-container,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }

    .about-img-accent {
        display: none;
    }
}

	.about-container-box{
		padding:3rem;
	}
@media (max-width: 640px) {
	.about-container-box{
		padding:1rem;
	}
}
@media (max-width: 640px) {
    .hero h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

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

    .btn-group {
        flex-direction: column;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .trust-grid {
        grid-template-columns: 1fr 1fr;
    }

    .carousel-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .carousel-prev {
        left: 10px;
    }

    .carousel-next {
        right: 10px;
    }

    .certificate-card {
        flex: 0 0 calc(100% - 2rem);
    }
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-cream);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}
