/* ===== ROOT VARIABLES & RESET ===== */
:root {
    /* Skema Warna Kardoos */
    --primary-color: #1a7f37; /* Hijau utama */
    --primary-dark: #14652b; /* Hijau lebih gelap */
    --primary-light: #2ecc71; /* Hijau lebih terang */
    --secondary-color: #f8f9fa; /* Warna latar */
    --text-color: #333333; /* Warna teks utama */
    --text-light: #666666; /* Warna teks sekunder */
    --white: #ffffff;
    --footer-bg: #1a1a1a;
    --footer-text: #b3b3b3;
    --footer-border: #333333;
    --card-bg: #252525;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
    --transition: all 0.3s ease;
  
  /* Font Family */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--secondary-color);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HEADER & NAVIGATION ===== */
.header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 10px 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 12px;
    transition: var(--transition);
}

.logo:hover {
    transform: translateY(-2px);
}

.logo-image {
    height: 70px;
    width: auto;
    border-radius: var(--border-radius);
    object-fit: contain;
}

.logo-text {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    font-size: 16px;
    padding: 8px 0;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--primary-color);
}

.nav-link.active::after {
    width: 100%;
}

/* Hamburger Menu (Mobile) */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 5px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
    transition: var(--transition);
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Button */
.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 127, 55, 0.2);
}

/* ===== HERO SLIDER ===== */
.hero-slider {
    position: relative;
    width: 100%;
    height: 800px;
    overflow: hidden;
    border-radius: 20px;
    max-width: 1400px; /* Tambahkan max-width */
    margin: 20px auto;
    margin-top: 70px; /* Untuk memberi jarak dari header fixed */
}

.slides-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
                visibility 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    border-radius: 20px;
    overflow: hidden;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}


.slide-image {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 20px;
    transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}


/* Slider Navigation */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    border: none;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 0;
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-50%) scale(1.1);
    border-color: rgba(255, 255, 255, 0.4);
}

.slider-arrow.prev {
    left: 30px;
}

.slider-arrow.next {
    right: 30px;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.slider-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
    margin: 0;
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

.slider-dot.active {
    background: white;
    transform: scale(1.2);
    border-color: white;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.7);
}

/* ===== SECTION STYLES ===== */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* Brand Trust Section - Redesigned */
.brand-trust-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
    position: relative;
    overflow: hidden;
}

.brand-trust-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(26, 127, 55, 0.1) 50%, 
        transparent 100%);
}

.brand-trust-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(26, 127, 55, 0.1) 50%, 
        transparent 100%);
}

.brand-trust-section .section-header {
    margin-bottom: 50px;
    text-align: center;
}

.brand-trust-section .section-title {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
    line-height: 1.2;
}

.brand-trust-section .section-title .highlight {
    color: var(--primary-color);
    background: linear-gradient(120deg, var(--primary-light) 0%, var(--primary-color) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    position: relative;
    display: inline-block;
}

.brand-trust-section .section-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-light), var(--primary-color));
    border-radius: 2px;
}

.brand-trust-section .section-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Brand Slider Container */
.brand-slider-container {
    position: relative;
    margin: 60px 0;
    padding: 20px 0;
}

.brand-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin: 20px 0;
}

.brand-slider::before,
.brand-slider::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
}

.brand-slider::before {
    left: 0;
    background: linear-gradient(90deg, #f8faff 0%, transparent 100%);
}

.brand-slider::after {
    right: 0;
    background: linear-gradient(90deg, transparent 0%, #f8faff 100%);
}

.brand-slider-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: slide 40s linear infinite;
}

/* Brand Logo Styles - Tanpa Box Shadow dan Border */
.brand-logo {
    flex: 0 0 auto;
    padding: 25px 30px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    min-width: 220px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.brand-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 127, 55, 0.03) 0%, rgba(26, 127, 55, 0) 100%);
    border-radius: 20px;
    z-index: 1;
    transition: all 0.4s ease;
}

.brand-logo:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 1);
}

.brand-logo:hover::before {
    background: linear-gradient(135deg, rgba(26, 127, 55, 0.08) 0%, rgba(26, 127, 55, 0.02) 100%);
}

.logo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 2;
}

.logo-img-container {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.brand-logo:hover .logo-img {
    transform: scale(1.1);
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85px;
    height: 85px;
    border-radius: 50%;
    filter: blur(5px);
    transition: all 0.3s ease;
}

.brand-logo:hover .logo-glow {
    width: 95px;
    height: 95px;
}

.logo-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-dark);
    text-align: center;
    line-height: 1.4;
    transition: all 0.3s ease;
}

.brand-logo:hover .logo-name {
    color: var(--primary-color);
    transform: translateY(2px);
}

.logo-badge {
    margin-top: 12px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: 600;
    transition: all 0.3s ease;
}

.brand-logo:hover .logo-badge {
    transform: translateY(2px);
}


/* Animations */
@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause animation on hover */
.brand-slider-container:hover .brand-slider-track {
    animation-play-state: paused;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .brand-trust-section .section-title {
        font-size: 2.2rem;
    }
    
    .brand-slider-track {
        gap: 25px;
    }
    
    .brand-logo {
        min-width: 200px;
        padding: 22px 25px;
    }
    
    .logo-img-container {
        width: 70px;
        height: 70px;
    }
    
    .logo-img {
        width: 65px;
        height: 65px;
    }
    
    .logo-glow {
        width: 75px;
        height: 75px;
    }
}

@media (max-width: 992px) {
    .brand-trust-section {
        padding: 60px 0;
    }
    
    .brand-trust-section .section-title {
        font-size: 2rem;
    }
    
    .brand-slider-container {
        margin: 40px 0;
    }
    
    .brand-slider-track {
        gap: 20px;
        animation: slide 50s linear infinite;
    }
    
    .brand-logo {
        min-width: 180px;
        padding: 20px 22px;
    }
    
    .logo-img-container {
        width: 65px;
        height: 65px;
    }
    
    .logo-img {
        width: 60px;
        height: 60px;
    }
    
    .logo-glow {
        width: 70px;
        height: 70px;
    }
    
    .logo-name {
        font-size: 1.1rem;
    }
    
    .brand-stats {
        gap: 30px;
        margin-top: 50px;
    }
    
    .stat-number {
        font-size: 1.9rem;
    }
}

@media (max-width: 768px) {
    .brand-trust-section .section-title {
        font-size: 1.8rem;
    }
    
    .brand-trust-section .section-subtitle {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .brand-slider-track {
        gap: 15px;
        animation: slide 60s linear infinite;
    }
    
    .brand-logo {
        min-width: 160px;
        padding: 18px 20px;
    }
    
    .logo-img-container {
        width: 60px;
        height: 60px;
    }
    
    .logo-img {
        width: 55px;
        height: 55px;
    }
    
    .logo-glow {
        width: 65px;
        height: 65px;
    }
    
    .logo-name {
        font-size: 1rem;
    }
    
    .logo-badge {
        font-size: 0.75rem;
        padding: 4px 10px;
    }
    
    .brand-stats {
        gap: 20px;
        margin-top: 40px;
    }
    
    .stat-number {
        font-size: 1.7rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .stat-divider {
        height: 30px;
    }
}

@media (max-width: 576px) {
    .brand-trust-section .section-title {
        font-size: 1.6rem;
    }
    
    .brand-slider-track {
        gap: 12px;
    }
    
    .brand-logo {
        min-width: 140px;
        padding: 15px 18px;
    }
    
    .logo-img-container {
        width: 55px;
        height: 55px;
    }
    
    .logo-img {
        width: 50px;
        height: 50px;
    }
    
    .logo-glow {
        width: 60px;
        height: 60px;
    }
    
    .logo-name {
        font-size: 0.95rem;
    }
    
    .brand-stats {
        flex-direction: column;
        gap: 25px;
    }
    
    .stat-divider {
        width: 100px;
        height: 1px;
        background: linear-gradient(90deg, transparent 0%, rgba(26, 127, 55, 0.2) 50%, transparent 100%);
    }
}

/* Touch Device Optimization */
@media (hover: none) and (pointer: coarse) {
    .brand-slider-track {
        animation: slide 70s linear infinite;
    }
    
    .brand-slider-container:hover .brand-slider-track {
        animation-play-state: running;
    }
    
    .brand-logo:hover {
        transform: none;
    }
    
    .brand-logo:active {
        transform: translateY(-5px);
        background: rgba(255, 255, 255, 1);
    }
}

/* ===== PRODUCTS SECTION ===== */
.products-section {
    padding: 80px 0;
    background-color: var(--secondary-color);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.products-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.product-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(26, 127, 55, 0.15);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.product-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-img img {
    transform: scale(1.05);
}

.product-info {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-category {
    display: inline-block;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.product-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 15px;
    line-height: 1.3;
}

.product-description {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.5;
    flex-grow: 1;
}

.product-features {
    margin-bottom: 25px;
    list-style: none;
    padding: 0;
}

.product-features li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
    color: var(--text-color);
    font-size: 0.9rem;
    line-height: 1.4;
}

.product-features li i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 0.8rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #eee;
    margin-top: auto;
}

.product-specs {
    display: flex;
    align-items: center;
    color: var(--primary-dark);
    font-size: 0.9rem;
    font-weight: 600;
}

.product-specs i {
    margin-right: 8px;
    color: var(--primary-color);
}

.btn-product {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 0.9rem;
}

.btn-product:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-product i {
    margin-right: 8px;
}

.section-cta {
    text-align: center;
    margin-top: 50px;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 15px 30px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1rem;
}

.btn-cta:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(26, 127, 55, 0.2);
}

.btn-cta i {
    margin-left: 10px;
    transition: var(--transition);
}

.btn-cta:hover i {
    transform: translateX(5px);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    overflow-y: auto;
}

.modal-content {
    background-color: var(--white);
    margin: 5% auto;
    width: 90%;
    max-width: 800px;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: modalFadeIn 0.3s;
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: translateY(-50px); }
    to { opacity: 1; transform: translateY(0); }
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 28px;
    color: var(--text-light);
    cursor: pointer;
    z-index: 10;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--primary-color);
    background-color: rgba(0, 0, 0, 0.05);
}

.modal-body {
    padding: 40px;
}

.modal-product-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.modal-product-img {
    border-radius: 10px;
    overflow: hidden;
    height: 400px;
}

.modal-product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-product-info h2 {
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.modal-product-category {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 20px;
    display: block;
}

.modal-product-description {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 1rem;
}

.modal-product-details {
    background-color: var(--secondary-color);
    padding: 25px;
    border-radius: 10px;
    margin-top: 30px;
}

.modal-product-details h3 {
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.modal-product-details p {
    color: var(--text-light);
    line-height: 1.6;
}

.modal-product-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.modal-product-features li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    color: var(--text-color);
    line-height: 1.5;
}

.modal-product-features li i {
    color: var(--primary-color);
    margin-right: 10px;
    margin-top: 3px;
    flex-shrink: 0;
}

.modal-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.modal-specs {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.modal-specs span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.modal-specs strong {
    color: var(--primary-dark);
}

.modal-action-btn {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 12px 25px;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.modal-action-btn:hover {
    background-color: var(--primary-dark);
}

.modal-action-btn i {
    margin-right: 8px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .modal-product-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .modal-product-img {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .products-container {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
    }
    
    .product-card {
        margin-bottom: 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .modal-body {
        padding: 30px 20px;
    }
    
    .modal-product-info h2 {
        font-size: 1.7rem;
    }
}

@media (max-width: 480px) {
    .products-container {
        grid-template-columns: 1fr;
    }
    
    .product-info {
        padding: 20px;
    }
    
    .product-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .btn-product {
        width: 100%;
    }
    
    .modal-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .modal-action-btn {
        width: 100%;
    }
}

/* ===== TESTIMONIAL SECTION ===== */
.testimonial-section {
    padding: 80px 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.testimonial-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%231a7f37" opacity="0.02"/><path d="M20,20 Q40,10 60,20 T100,20" stroke="%2314652b" stroke-width="0.5" fill="none" opacity="0.05"/><path d="M0,80 Q20,70 40,80 T80,80" stroke="%2314652b" stroke-width="0.5" fill="none" opacity="0.05"/></svg>');
    z-index: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Testimonial Container */
.testimonial-container {
    position: relative;
    z-index: 1;
    margin-bottom: 60px;
}

.testimonial-slider-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-slider {
    display: flex;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    background-color: var(--white);
    min-height: 320px;
}

.testimonial-slide {
    flex: 0 0 100%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
    transform: translateX(20px);
}

.testimonial-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.testimonial-content {
    flex: 1;
    position: relative;
    padding: 0 0 30px 0;
}

.testimonial-quote {
    position: absolute;
    top: -15px;
    left: 0;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.2;
    line-height: 1;
    font-family: Georgia, serif;
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    padding-left: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    padding-top: 25px;
    border-top: 1px solid #eee;
}

.author-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
    border: 3px solid var(--primary-light);
    flex-shrink: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.author-info p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 8px;
}

.rating {
    display: flex;
    align-items: center;
}

.rating i {
    color: #ffc107;
    margin-right: 3px;
    font-size: 0.9rem;
}

/* ===== SLIDER CONTROLS ===== */
.slider-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    gap: 20px;
}

.slider-btn {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(26, 127, 55, 0.2);
}

.slider-btn:hover {
    background-color: var(--primary-dark);
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(26, 127, 55, 0.3);
}

.slider-btn:active {
    transform: scale(0.95);
}

.slider-dots {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

.slider-dot:hover {
    background-color: var(--primary-color);
    opacity: 0.7;
}


/* ========== RESPONSIVE DESIGN ========== */

/* Tablet */
@media (max-width: 992px) {
    .testimonial-slide {
        padding: 30px;
    }
}

/* Tablet Kecil / Mobile Landscape */
@media (max-width: 768px) {
    .testimonial-section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .testimonial-slide {
        padding: 25px;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }
    
    .author-avatar {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .slider-controls {
        margin-top: 25px;
    }
    
    .slider-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

/* Mobile (576px dan lebih kecil) */
@media (max-width: 576px) {
    .testimonial-slider-wrapper {
        padding: 0 15px;
    }
    
    .testimonial-slider {
        border-radius: 15px;
        min-height: 380px;
    }
    
    .testimonial-slide {
        padding: 20px;
        padding-bottom: 70px; /* Ruang untuk controls */
    }
    
    .testimonial-quote {
        font-size: 3rem;
        top: -10px;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
        line-height: 1.6;
        padding-left: 15px;
        max-height: 150px;
        overflow-y: auto;
    }
    
    /* Scrollbar styling untuk testimonial text */
    .testimonial-text::-webkit-scrollbar {
        width: 4px;
    }
    
    .testimonial-text::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }
    
    .testimonial-text::-webkit-scrollbar-thumb {
        background: var(--primary-color);
        border-radius: 10px;
    }
    
    .author-info h4 {
        font-size: 1.1rem;
    }
    
    .author-info p {
        font-size: 0.9rem;
    }
    
    /* SLIDER CONTROLS FIX untuk mobile */
    .slider-controls {
        position: absolute;
        bottom: 10px;
        left: 0;
        right: 0;
        justify-content: space-between;
        padding: 0 20px;
        margin-top: 0;
        gap: 0;
    }
    
    .slider-btn {
        width: 44px;
        height: 44px;
        font-size: 1rem;
        background-color: rgba(26, 127, 55, 0.9);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
        position: relative;
        z-index: 10;
    }
    
    .slider-dots {
        position: absolute;
        bottom: -25px;
        left: 0;
        right: 0;
        justify-content: center;
        gap: 8px;
    }
    
    .slider-dot {
        width: 10px;
        height: 10px;
    }
}

/* Mobile Sangat Kecil */
@media (max-width: 375px) {
    .testimonial-slide {
        padding: 18px;
        padding-bottom: 65px;
    }
    
    .testimonial-quote {
        font-size: 2.5rem;
    }
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .slider-controls {
        padding: 0 15px;
    }
    
    .slider-dot {
        width: 8px;
        height: 8px;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .slider-btn {
        min-width: 44px;
        min-height: 44px;
    }
    
    /* Hilangkan hover effects untuk touch devices */
    .slider-btn:hover {
        transform: none;
    }
    
    .slider-btn:active {
        background-color: var(--primary-dark);
        transform: scale(0.95);
    }
}

/* Contact Section */
.contact-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(26, 127, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-right: 15px;
    flex-shrink: 0;
}

.info-text h3 {
    font-size: 1.2rem;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.contact-form {
    flex: 1;
    min-width: 300px;
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.contact-form h3 {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    font-family: var(--font-family);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(26, 127, 55, 0.1);
}

/* ===== FOOTER SECTION ===== */
.footer-section {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    padding: 60px 0 20px;
    margin-top: 80px;
}

/* Footer Main */
.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--footer-border);
}

/* Brand Section */
.footer-brand {
    max-width: 350px;
}

.footer-logo {
    margin-bottom: 20px;
}

.logo-text {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: 1px;
    margin-bottom: 5px;
    line-height: 1;
}

.logo-tagline {
    font-size: 0.9rem;
    color: var(--primary-light);
    font-weight: 500;
}

.company-description {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 25px;
    color: var(--footer-text);
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #333;
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

/* Footer Links Grid */
.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.footer-links-col {
    display: flex;
    flex-direction: column;
}

.footer-col-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links-list {
    list-style: none;
}

.footer-links-list li {
    margin-bottom: 12px;
}

.footer-link {
    color: var(--footer-text);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
    display: inline-block;
}

.footer-link:hover {
    color: var(--primary-light);
    transform: translateX(5px);
}

/* Delivery & Payment Section */
.delivery-payment-section {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--footer-border);
}

.delivery-payment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.section-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

/* Delivery Methods */
.delivery-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.delivery-method {
    display: flex;
    align-items: center;
    background-color: var(--card-bg);
    padding: 15px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: 1px solid var(--footer-border);
}

.delivery-method:hover {
    transform: translateY(-3px);
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(26, 127, 55, 0.1);
}

.delivery-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--white);
    font-size: 1.2rem;
}

.delivery-info h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.delivery-info p {
    color: var(--footer-text);
    font-size: 0.85rem;
}

/* Payment Methods Grid - 2 Baris × 4 Icon */
.payment-icons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 15px;
    justify-items: center;
    align-items: center;
}

.payment-icon-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 80px;
    height: 50px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: 1px solid #e0e0e0;
    padding: 10px;
}

.payment-icon-item:hover {
    transform: translateY(-3px);
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(26, 127, 55, 0.1);
    background-color: #f8fff9;
}

.payment-icon-item img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}


/* ===== SIMPLE FOOTER ===== */
.simple-footer {
    width: 100%;
    background: var(--footer-bg);
    border-top: 1px solid var(--footer-border);
    padding: 25px 0;
    margin-top: 50px;
    color: var(--footer-text);
}

.footer-bottom {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
}

.footer-copyright {
    color: var(--footer-text);
    font-size: 14px;
    opacity: 0.8;
}

.footer-nav {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-nav a {
    color: var(--footer-text);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
    padding: 5px 0;
}

.footer-nav a:hover {
    color: var(--white);
    text-decoration: underline;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 4px 15px rgba(26, 127, 55, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-5px);
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet Landscape (1024px dan bawah) */
@media (max-width: 1024px) {
    /* Footer */
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-brand {
        max-width: 100%;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .logo-img {
        margin: 0 auto 10px;
    }
    
    /* Delivery & Payment */
    .delivery-payment-grid {
        gap: 30px;
    }
    
    .delivery-methods {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .payment-icons-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
    }
    
    /* Hero Slider */
    .hero-slider {
        height: 500px;
        border-radius: 15px;
    }
    
    .slide,
    .slide-image-container,
    .slide-image,
    .slide-overlay {
        border-radius: 15px;
    }
    
    .slider-arrow {
        width: 48px;
        height: 48px;
        font-size: 1.3rem;
    }
}

/* Tablet Portrait (768px dan bawah) */
@media (max-width: 768px) {
    /* Footer Section */
    .footer-section {
        padding: 40px 0 20px;
    }
    
    .footer-main {
        margin-bottom: 30px;
        padding-bottom: 30px;
    }
    
    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-links-col {
        text-align: center;
    }
    
    .footer-col-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    /* Delivery & Payment */
    .delivery-payment-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .delivery-methods {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .supported-logos {
        gap: 20px;
    }
    
    .supported-logo {
        height: 35px;
    }
    
    /* Navigation */
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 30px 0;
        gap: 20px;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        margin: 10px 0;
    }
    
    .nav-link {
        font-size: 18px;
        padding: 15px 0;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
    
    /* Hero Slider */
    .hero-slider {
        height: 400px;
        border-radius: 12px;
        margin: 10px auto;
    }
    
    .slide,
    .slide-image-container,
    .slide-image,
    .slide-overlay {
        border-radius: 12px;
    }
    
    .slider-arrow {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }
    
    .slider-arrow.prev {
        left: 15px;
    }
    
    .slider-arrow.next {
        right: 15px;
    }
    
    .slider-dots {
        bottom: 20px;
        gap: 10px;
    }
    
    .slider-dot {
        width: 14px;
        height: 14px;
    }
    
    /* Section Titles */
    .section-title {
        font-size: 2.2rem;
    }
    
    /* About Stats */
    .about-stats {
        flex-direction: column;
        align-items: center;
    }
    
    /* Footer Newsletter */
    .footer-newsletter form {
        flex-direction: column;
    }
    
    .footer-newsletter input,
    .footer-newsletter button {
        width: 100%;
    }
}

/* Mobile Devices (576px dan bawah) */
@media (max-width: 576px) {
    /* Logo */
    .logo-img {
        height: 40px;
    }
    
    .logo-text {
        font-size: 2rem;
    }
    
    /* Footer */
    .footer-col-title {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.1rem;
    }
    
    /* Delivery & Payment */
    .delivery-methods {
        grid-template-columns: 1fr;
    }
       
    .supported-logos {
        gap: 15px;
    }
    
    .supported-logo {
        height: 30px;
    }
    
    /* Back to Top Button */
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    /* Hero Slider */
    .hero-slider {
        height: 300px;
        border-radius: 10px;
    }
    
    .slide,
    .slide-image-container,
    .slide-image,
    .slide-overlay {
        border-radius: 10px;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .slider-dots {
        bottom: 15px;
    }
    
    .slider-dot {
        width: 12px;
        height: 12px;
    }
    
    /* Section Titles */
    .section-title {
        font-size: 1.8rem;
    }
    
    /* Navigation Logo */
    .logo-text {
        font-size: 24px;
    }
    
    /* Footer Brand Logo */
    .footer-brand .logo-text {
        font-size: 28px;
    }
}

/* Small Mobile Devices (480px dan bawah) */
@media (max-width: 480px) {
    /* Logo */
    .logo-img {
        height: 35px;
    }
    
    .logo-text {
        font-size: 1.8rem;
    }
    
    /* Footer */
    .company-description {
        font-size: 0.85rem;
    }
    
    .footer-link {
        font-size: 0.9rem;
    }
    
    .delivery-method {
        padding: 12px;
    }
    
    .delivery-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        margin-right: 10px;
    }
    
    .delivery-info h4 {
        font-size: 0.9rem;
    }
    
    .delivery-info p {
        font-size: 0.8rem;
    }
    

    .supported-logo {
        height: 28px;
    }
    
    /* Copyright */
    .copyright {
        font-size: 0.8rem;
    }
    
    .bottom-link {
        font-size: 0.8rem;
    }
    
    /* Hero Slider */
    .hero-slider {
        height: 280px;
    }
    
    .slider-arrow {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    
    .slider-arrow.prev {
        left: 10px;
    }
    
    .slider-arrow.next {
        right: 10px;
    }
    
    .slider-dots {
        bottom: 12px;
        gap: 8px;
    }
    
    .slider-dot {
        width: 10px;
        height: 10px;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
}

/* Responsive untuk Payment Icons Grid */
@media (max-width: 992px) {
    .payment-icons-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
    }
    
    .payment-icon-item {
        max-width: 75px;
        height: 45px;
        padding: 8px;
    }
}

@media (max-width: 768px) {
    .payment-icons-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }
    
    .payment-icon-item {
        max-width: 70px;
        height: 42px;
        padding: 7px;
    }
}

@media (max-width: 576px) {
    .payment-icons-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, auto);
        gap: 10px;
    }
    
    .payment-icon-item {
        max-width: 65px;
        height: 40px;
        padding: 6px;
    }
}

@media (max-width: 480px) {
    .payment-icons-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .payment-icon-item {
        max-width: 60px;
        height: 38px;
        padding: 5px;
    }
}

@media (max-width: 360px) {
    .payment-icons-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }
    
    .payment-icon-item {
        max-width: 55px;
        height: 35px;
        padding: 4px;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .simple-footer {
        padding: 20px 0;
        margin-top: 40px;
    }
    
    .footer-bottom {
        padding: 0 15px;
        gap: 12px;
    }
    
    .footer-nav {
        gap: 20px;
    }
    
    .footer-copyright,
    .footer-nav a {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .simple-footer {
        padding: 15px 0;
        margin-top: 30px;
    }
    
    .footer-bottom {
        gap: 10px;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-copyright,
    .footer-nav a {
        font-size: 12px;
    }
}