/**
 * Front Page Styles
 */

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    padding: 3rem 0 2.5rem;
    background: transparent;
    margin-bottom: 2rem;
    overflow: visible;
}

.hero-section .container {
    max-width: 100%;
    padding: 0;
    overflow: visible;
}

.hero-articles-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
    height: 600px;
    align-items: stretch;
    overflow: visible;
    background: #ffffff;
    border-radius: 24px;
}

.hero-article-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: #000;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08),
                0 4px 12px rgba(0, 0, 0, 0.04);
    border: none;
    width: 100%;
    height: 100%;
}

.hero-article-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
    pointer-events: none;
}

.hero-article-card:hover {
    transform: translateY(-6px) scale(1.005);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.16),
                0 8px 16px rgba(0, 0, 0, 0.12);
}

.hero-article-card:hover::before {
    opacity: 1;
}

.hero-article-large {
    grid-column: 1;
    height: 100%;
}

/* Nested grid for right side */
.hero-articles-grid-right {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1.25rem;
    height: 100%;
    min-height: 0;
    overflow: visible;
}

.hero-article-small-top {
    grid-row: 1;
    grid-column: 1;
    height: 100%;
    min-height: 0;
    overflow: visible;
}

.hero-articles-bottom-row {
    grid-row: 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    height: 100%;
    min-height: 0;
    overflow: visible;
}

.hero-article-small {
    height: 100%;
    min-height: 0;
    overflow: visible;
}

/* Pastikan gambar selalu terlihat di card kecil */
.hero-article-small .hero-article-image,
.hero-article-small-top .hero-article-image {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 0 !important;
    overflow: hidden !important;
}

.hero-article-small .hero-article-image img,
.hero-article-small-top .hero-article-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    position: relative !important;
    z-index: 1 !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.hero-article-small-bottom-left {
    grid-row: 2;
    grid-column: 1;
}

.hero-article-small-bottom-right {
    grid-row: 2;
    grid-column: 2;
}

.hero-article-link {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
    position: relative;
}

.hero-article-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-article-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    position: relative !important;
    z-index: 1 !important;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    visibility: visible !important;
    opacity: 1 !important;
    will-change: transform;
}

.hero-article-card:hover .hero-article-image img {
    transform: scale(1.1) rotate(0.5deg);
}

.hero-article-placeholder {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    width: 100%;
    height: 100%;
}

.hero-article-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(0,0,0,0) 0%, 
        rgba(0,0,0,0) 35%,
        rgba(0,0,0,0.15) 60%,
        rgba(0,0,0,0.4) 80%,
        rgba(0,0,0,0.65) 100%);
    z-index: 1;
    pointer-events: none;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    opacity: 1;
}

.hero-article-card:hover .hero-article-overlay {
    background: linear-gradient(to bottom, 
        rgba(0,0,0,0) 0%, 
        rgba(0,0,0,0) 30%,
        rgba(0,0,0,0.2) 55%,
        rgba(0,0,0,0.5) 75%,
        rgba(0,0,0,0.75) 100%);
}

.hero-article-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem 2rem 2rem;
    z-index: 2;
    color: white;
    display: flex;
    flex-direction: column;
    background: linear-gradient(to top, 
        rgba(0,0,0,0.8) 0%, 
        rgba(0,0,0,0.6) 25%,
        rgba(0,0,0,0.3) 55%,
        rgba(0,0,0,0.05) 85%,
        rgba(0,0,0,0) 100%);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    transform: translateY(0);
}

.hero-article-card:hover .hero-article-content {
    transform: translateY(-6px);
    padding-bottom: 2.25rem;
}

.hero-article-small .hero-article-content {
    padding: 1.5rem 1.5rem 1.25rem;
    background: linear-gradient(to top, 
        rgba(0,0,0,0.8) 0%, 
        rgba(0,0,0,0.6) 25%,
        rgba(0,0,0,0.3) 55%,
        rgba(0,0,0,0.05) 85%,
        rgba(0,0,0,0) 100%);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.hero-article-card:hover .hero-article-small .hero-article-content {
    transform: translateY(-4px);
    padding-bottom: 1.5rem;
}

.hero-article-category {
    display: inline-block !important;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: none;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #1a1a1a !important;
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    max-width: fit-content;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
    z-index: 100;
    visibility: visible !important;
    opacity: 1 !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    line-height: 1.2;
}

.hero-article-large .hero-article-category {
    font-size: 0.75rem;
    padding: 0.55rem 1.1rem;
    top: 1.5rem;
    right: 1.5rem;
    border-radius: 10px;
    max-width: fit-content;
}

.hero-article-card:hover .hero-article-category,
.hero-article-card:hover .hero-article-category-top,
.hero-article-card:hover .hero-article-category-small {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2), 0 3px 6px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 1) !important;
}

.hero-article-category-top {
    position: absolute !important;
    top: 1rem !important;
    right: 1rem !important;
    margin-bottom: 0;
    z-index: 100 !important;
    max-width: fit-content !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    display: inline-block !important;
    padding: 0.45rem 0.9rem !important;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: none !important;
    border-radius: 8px !important;
    font-size: 0.7rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    color: #1a1a1a !important;
    visibility: visible !important;
    opacity: 1 !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    line-height: 1.2;
}

.hero-article-category-small {
    position: absolute !important;
    top: 0.75rem !important;
    right: 0.75rem !important;
    margin-bottom: 0;
    z-index: 100 !important;
    max-width: fit-content !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    display: inline-block !important;
    padding: 0.4rem 0.75rem !important;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: none !important;
    border-radius: 6px !important;
    font-size: 0.65rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.8px !important;
    color: #1a1a1a !important;
    visibility: visible !important;
    opacity: 1 !important;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15), 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    line-height: 1.2;
}

.hero-article-small .hero-article-category-small {
    position: absolute !important;
    top: 0.75rem !important;
    right: 0.75rem !important;
    z-index: 100 !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.hero-article-small,
.hero-article-small-top {
    border-radius: 24px;
}

/* Staggered animation untuk card */
.hero-article-large {
    animation: fadeInUp 0.6s cubic-bezier(0.23, 1, 0.32, 1) 0.1s both;
}

.hero-article-small-top {
    animation: fadeInUp 0.6s cubic-bezier(0.23, 1, 0.32, 1) 0.2s both;
}

.hero-article-small:first-of-type {
    animation: fadeInUp 0.6s cubic-bezier(0.23, 1, 0.32, 1) 0.3s both;
}

.hero-article-small:last-of-type {
    animation: fadeInUp 0.6s cubic-bezier(0.23, 1, 0.32, 1) 0.4s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-article-category-bottom {
    position: absolute;
    top: 1rem;
    right: 1rem;
    margin-bottom: 0;
    z-index: 3;
    width: auto;
    max-width: fit-content;
    white-space: nowrap;
}

.hero-article-small .hero-article-category-top,
.hero-article-small .hero-article-category-bottom {
    top: 0.75rem;
    right: 0.75rem;
    padding: 0.35rem 0.8rem;
    font-size: 0.65rem;
    width: auto;
    max-width: fit-content;
    white-space: nowrap;
}

.hero-article-title {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.35;
    margin: 0 0 0.5rem 0;
    color: white;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.4),
                 0 1px 6px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.015em;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.hero-article-card:hover .hero-article-title {
    transform: translateY(-3px);
    text-shadow: 0 3px 20px rgba(0, 0, 0, 0.5),
                 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-article-large .hero-article-title {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 0.75rem;
    letter-spacing: -0.025em;
}

.hero-article-small .hero-article-title {
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -0.01em;
    margin-bottom: 0.4rem;
}

.hero-article-small-top .hero-article-title {
    margin-bottom: 0.4rem;
}

.hero-article-small .hero-article-meta,
.hero-article-small-top .hero-article-meta {
    font-size: 0.7rem;
    margin-top: 0.25rem;
    gap: 0.5rem;
}

.hero-article-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.35);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.hero-article-large .hero-article-meta {
    font-size: 0.9rem;
}

.hero-article-card:hover .hero-article-meta {
    transform: translateY(-2px);
    color: rgba(255, 255, 255, 0.95);
}

.hero-article-author {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
}

.hero-article-date {
    opacity: 0.85;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
}

/* Statistics Section */
.hero-section .stats-section {
    background: #ffffff;
    padding: 4rem 0;
    color: #000000;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

/* Stats section yang standalone (dipanggil terpisah) */
.stats-section {
    background: #ffffff;
    padding: 4rem 0;
    color: #000000;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.stats-section::before {
    display: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-item {
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06), 0 1px 4px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--inviro-primary-light, #75C6F1) 0%, var(--inviro-primary-medium, #4FB3E8) 50%, var(--inviro-primary, #2F80ED) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(47, 128, 237, 0.15), 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: var(--inviro-primary-light, #75C6F1);
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
}

.stat-item:hover::before {
    transform: scaleX(1);
}

.stat-number {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--inviro-primary, #2F80ED) 0%, var(--inviro-primary-light, #75C6F1) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    letter-spacing: -1px;
    position: relative;
}

.stat-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #64748b;
    letter-spacing: 0.2px;
    line-height: 1.5;
    text-transform: none;
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--inviro-primary-light, #75C6F1) 0%, var(--inviro-primary, #2F80ED) 100%);
    position: relative;
    overflow: hidden;
    margin-bottom: 1rem;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(117, 198, 241, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(47, 128, 237, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.about-main-title {
    text-align: center;
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-main-title h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff !important;
    text-transform: uppercase;
    margin: 0;
}

/* Ensure logo container is visible */
.about-main-title > *:first-child {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Logo styling - same as profil page */
.about-main-title .custom-logo-link {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    margin: 0;
    line-height: 1;
    transition: opacity var(--transition-fast);
    text-decoration: none;
}

.about-main-title .custom-logo-link:hover {
    opacity: 0.9;
}

/* Custom logo image - ensure it's visible */
.about-main-title .custom-logo-link img,
.about-main-title img.custom-logo,
.about-main-title .custom-logo {
    display: block !important;
    max-width: 300px !important;
    max-height: 120px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    visibility: visible !important;
    opacity: 1 !important;
    margin: 0 auto !important;
    padding: 0 !important;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

/* Urutan di mobile: Judul - branches - paragraf */
@media (max-width: 768px) {
    .about-section .container {
        display: flex !important;
        flex-direction: column !important;
    }
    
    .about-main-title {
        order: 1 !important;
        margin-bottom: 2rem;
    }
    
    .about-content {
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem;
        order: 2 !important;
    }
    
    .about-branches {
        order: 1 !important;
    }
    
    .about-text {
        order: 2 !important;
    }
}

.about-branches {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 100%;
    width: 100%;
    margin-top: 2rem;
}

/* Jika hanya 1 cabang, full width */
.about-branches.branch-count-1 {
    grid-template-columns: 1fr;
}

.branch-card {
    background-color: #E91C2E;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    border: 2px solid white;
    max-width: 100%;
}

.branch-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2), 0 4px 12px rgba(0, 0, 0, 0.15);
}

.branch-image {
    width: 100%;
    height: 120px;
    overflow: hidden;
    position: relative;
    background: #f0f0f0; /* Background fallback jika gambar tidak ada */
}

.branch-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: block !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.branch-card:hover .branch-image img {
    transform: scale(1.08);
}

.branch-name {
    padding: 0.75rem;
    font-size: 0.875rem;
    text-align: center;
    margin: 0;
    color: white;
    line-height: 1.3;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.about-text {
    padding: 1rem 0;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: black;
    text-align: center;
}

.about-description {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #ffffff;
    text-align: justify;
}

.about-text .section-title {
    display: none;
}

/* Products Section */
.products-section {
    padding: 5rem 0;
    background: #ffffff;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.products-section .section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: -0.5px;
    color: #1a1a1a;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

/* Override components/cards.css untuk front page */
.products-section .products-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 1.5rem !important;
    margin-bottom: 3rem !important;
    max-width: 1400px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

/* Override components/cards.css untuk front page */
.products-section .product-card {
    background: white !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    border: none !important;
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18), 0 4px 12px rgba(0, 0, 0, 0.12);
}

/* Override components/cards.css untuk front page */
.products-section .product-image {
    position: relative !important;
    width: 100% !important;
    height: 200px !important;
    overflow: hidden !important;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8f0f5 100%) !important;
    display: block !important;
    padding-top: 0 !important;
    min-height: 200px !important;
}

.product-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8f0f5 100%);
    display: block;
}

.product-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.product-placeholder svg {
    opacity: 0.3;
}

/* Override components/cards.css untuk front page */
.products-section .product-image img {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: var(--transition) !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 1 !important;
    max-width: 100% !important;
    max-height: 100% !important;
    min-width: 0 !important;
    min-height: 0 !important;
}

/* Ensure all img tags inside product-image are visible */
.products-section .product-image > img {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 1 !important;
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

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

.product-like {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    color: var(--text-light);
    z-index: 10;
}

.product-like:hover {
    color: #e74c3c;
    transform: scale(1.1);
}

.product-like.liked {
    background-color: #e74c3c;
    color: white;
}

.product-like.liked svg {
    fill: white;
}

.product-like:active {
    transform: scale(0.9);
}

/* Override components/cards.css untuk front page */
.products-section .product-info {
    padding: 20px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0.75rem !important;
    flex: 1 !important;
    justify-content: space-between !important;
}

.products-section .product-top-content {
    flex: 0 !important;
}

.products-section .product-bottom-content {
    margin-top: auto !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 1rem !important;
}

.product-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
    justify-content: space-between;
}

.product-top-content {
    flex: 0;
}

.product-bottom-content {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Override components/cards.css untuk front page */
.products-section .product-title {
    font-size: 1.1rem !important;
    margin-bottom: 10px !important;
    color: #333 !important;
    font-weight: 600 !important;
    line-height: 1.4 !important;
}

.products-section .product-description {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.product-title {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #333;
    font-weight: 600;
    line-height: 1.4;
}

.product-description {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.product-title a {
    color: var(--text-color);
}

.product-title a:hover {
    color: var(--primary-color);
}

/* Override components/cards.css untuk front page */
.products-section .product-price {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.25rem !important;
    margin-bottom: 10px !important;
    padding-top: 10px !important;
    border-top: 1px solid #e0e0e0 !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
}

.products-section .product-price-wrapper {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.25rem !important;
    align-items: flex-start !important;
}

.products-section .product-price-original {
    text-decoration: line-through !important;
    color: #dc3545 !important;
    font-size: 0.9rem !important;
    font-weight: 400 !important;
}

.products-section .product-price-promo {
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    color: black !important;
}

.products-section .product-current-price,
.products-section .product-card .product-current-price,
.products-section .product-info .product-current-price,
.products-section .product-bottom-content .product-current-price {
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    color: #000000 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    min-height: auto !important;
    overflow: visible !important;
    /* Override semua warna sebelumnya */
    -webkit-text-fill-color: #000000 !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
}

/* Fallback untuk selector tanpa products-section */
.product-price {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 10px;
    padding-top: 10px;
    border-top: 1px solid #e0e0e0;
}

.product-price-original {
    text-decoration: line-through;
    color: #dc3545;
    font-size: 0.9rem;
    font-weight: 400;
}

.product-price-promo {
    font-size: 1.3rem;
    font-weight: 700;
    color: black;
}

.product-current-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2F80ED;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    min-height: auto !important;
    overflow: visible !important;
}

.product-actions {
    margin-top: 0;
}

/* Override components/cards.css untuk front page */
.products-section .btn.btn-product,
.products-section .btn-product {
    display: block !important;
    text-align: center !important;
    background: #25D366 !important;
    color: white !important;
    padding: 12px 20px !important;
    border-radius: 8px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    transition: background 0.3s !important;
    border: none !important;
    cursor: pointer !important;
    width: 100% !important;
}

.products-section .btn.btn-product:hover,
.products-section .btn-product:hover {
    background: #22c55e !important;
    color: white !important;
}

.btn.btn-product,
.btn-product {
    display: block;
    text-align: center;
    background: #25D366;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
    width: 100%;
}

.btn.btn-product:hover,
.btn-product:hover {
    background: #22c55e;
    color: white;
}

.btn-view-all-products {
    display: none !important;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    border: 2px solid var(--inviro-primary, #2F80ED);
    background: linear-gradient(135deg, var(--inviro-primary, #2F80ED) 0%, var(--inviro-primary-medium, #4FB3E8) 100%);
    color: white;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(47, 128, 237, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-view-all-products::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-view-all-products:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(47, 128, 237, 0.4);
    border-color: var(--inviro-primary-medium, #4FB3E8);
    background: linear-gradient(135deg, var(--inviro-primary-medium, #4FB3E8) 0%, var(--inviro-primary-light, #75C6F1) 100%);
}

.btn-view-all-products:hover::before {
    left: 100%;
}

.btn-view-all-products::after {
    content: '→';
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.btn-view-all-products:hover::after {
    transform: translateX(5px);
}

.section-footer {
    text-align: center;
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--inviro-primary-light, #75C6F1) 0%, var(--inviro-primary, #2F80ED) 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(117, 198, 241, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(47, 128, 237, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.testimonials-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    padding: 0 1rem;
}

.testimonials-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 1.33rem);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(47, 128, 237, 0.15),
                0 0 0 1px rgba(255, 255, 255, 0.5) inset;
    color: #1a1a1a;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--inviro-primary, #2F80ED) 0%, var(--inviro-primary-light, #75C6F1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(47, 128, 237, 0.25),
                0 0 0 1px rgba(255, 255, 255, 0.8) inset,
                0 0 40px rgba(117, 198, 241, 0.3);
    border-color: rgba(117, 198, 241, 0.5);
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid var(--inviro-primary-light, #75C6F1);
    box-shadow: 0 4px 16px rgba(47, 128, 237, 0.2),
                0 0 0 2px rgba(255, 255, 255, 0.8) inset;
    transition: all 0.3s ease;
    position: relative;
    background: linear-gradient(135deg, var(--inviro-primary-light, #75C6F1) 0%, var(--inviro-primary, #2F80ED) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-card:hover .testimonial-avatar {
    border-color: var(--inviro-primary, #2F80ED);
    box-shadow: 0 6px 20px rgba(47, 128, 237, 0.3),
                0 0 0 2px rgba(255, 255, 255, 0.9) inset;
    transform: scale(1.05);
}

.testimonial-avatar img {
    display: none !important;
}

.testimonial-avatar::before {
    content: '';
    position: absolute;
    width: 32px;
    height: 32px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.testimonial-meta {
    flex: 1;
}

.testimonial-name {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 0.35rem 0;
    color: #1a1a1a;
    letter-spacing: -0.3px;
}

.testimonial-date {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 500;
}

.testimonial-rating {
    margin-bottom: 1.25rem;
    display: flex;
    gap: 0.3rem;
}

.star {
    color: #e2e8f0;
    font-size: 1.4rem;
    transition: all 0.3s ease;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.star.filled {
    color: #FFD700;
    filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.4));
    transform: scale(1.1);
}

.star.half {
    background: linear-gradient(90deg, #FFD700 50%, rgba(255, 255, 255, 0.3) 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.testimonial-content {
    color: #475569;
    line-height: 1.7;
    flex: 1;
    font-size: 0.95rem;
}

.testimonial-content p {
    margin: 0;
}

/* Desktop: Show carousel controls */
.testimonials-controls {
    display: flex !important;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.testimonials-indicators {
    display: flex !important;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

@media (max-width: 768px) {
    .testimonials-controls {
        display: none !important;
    }
    
    .testimonial-prev,
    .testimonial-next {
        display: none !important;
    }
    
    .testimonials-indicators {
        display: none !important;
    }
}

.testimonial-prev,
.testimonial-next {
    background: linear-gradient(135deg, var(--inviro-primary, #2F80ED) 0%, var(--inviro-primary-medium, #4FB3E8) 100%);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex !important;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(47, 128, 237, 0.3),
                0 0 0 0 rgba(47, 128, 237, 0.4);
    position: relative;
    overflow: hidden;
}

.testimonial-prev::before,
.testimonial-next::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: linear-gradient(135deg, var(--inviro-primary-medium, #4FB3E8) 0%, var(--inviro-primary-light, #75C6F1) 100%);
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 8px 30px rgba(47, 128, 237, 0.4),
                0 0 0 8px rgba(47, 128, 237, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.testimonial-prev:hover::before,
.testimonial-next:hover::before {
    width: 300px;
    height: 300px;
}

.testimonial-prev:active,
.testimonial-next:active {
    transform: scale(0.92);
}


.testimonial-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.testimonial-indicator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
}

.testimonial-indicator:hover {
    background-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
    border-color: rgba(255, 255, 255, 0.8);
}

.testimonial-indicator.active {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
    width: 36px;
    height: 12px;
    border-radius: 6px;
    border-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 10px rgba(255, 255, 255, 0.4);
}

.testimonial-indicator.active::before {
    width: 100%;
    height: 100%;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f8fafc 100%);
    position: relative;
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: stretch;
}

.contact-map {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(47, 128, 237, 0.15),
                0 0 0 1px rgba(47, 128, 237, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
}

.contact-map:hover {
    box-shadow: 0 12px 48px rgba(47, 128, 237, 0.2),
                0 0 0 1px rgba(47, 128, 237, 0.2);
    transform: translateY(-4px);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
    background-color: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    position: absolute;
    top: 0;
    left: 0;
}

.map-placeholder-content {
    text-align: center;
    color: var(--text-light);
}

.map-placeholder-content svg {
    margin: 0 auto 1rem;
    color: var(--primary-color);
}

.contact-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    height: 100%;
    justify-content: space-between;
}

.feature-item {
    display: flex;
    align-items: start;
    gap: 1.25rem;
    padding: 1.75rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(47, 128, 237, 0.1);
    box-shadow: 0 4px 20px rgba(47, 128, 237, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--inviro-primary, #2F80ED) 0%, var(--inviro-primary-light, #75C6F1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-item:hover {
    transform: translateX(8px) translateY(-4px);
    box-shadow: 0 8px 32px rgba(47, 128, 237, 0.15);
    border-color: rgba(47, 128, 237, 0.2);
}

.feature-item:hover::before {
    opacity: 1;
}

.feature-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    background: linear-gradient(135deg, var(--inviro-primary, #2F80ED) 0%, var(--inviro-primary-medium, #4FB3E8) 100%);
    box-shadow: 0 4px 16px rgba(47, 128, 237, 0.3);
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 24px rgba(47, 128, 237, 0.4);
}

.feature-support .feature-icon {
    background-color: #28a745;
}

.feature-price .feature-icon {
    background-color: var(--secondary-color);
}

.feature-location .feature-icon {
    background-color: #dc3545;
}

.feature-content h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.3px;
}

.feature-content p {
    font-size: 0.95rem;
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

.contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: 24px;
    border: 1px solid rgba(47, 128, 237, 0.1);
    box-shadow: 0 8px 32px rgba(47, 128, 237, 0.1),
                0 0 0 1px rgba(255, 255, 255, 0.5) inset;
}

.form-title {
    text-align: center;
    margin-bottom: 1.25rem;
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.35rem;
    font-weight: 600;
    color: #1a1a1a;
    font-size: 0.95rem;
    line-height: 1.3;
}

.required {
    color: #dc3545;
}

.form-group input,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #ffffff;
    line-height: 1.4;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--inviro-primary, #2F80ED);
    box-shadow: 0 0 0 4px rgba(47, 128, 237, 0.1);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

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

.form-submit {
    text-align: center;
    margin-top: 0.25rem;
}

.contact-form .btn-primary,
.contact-form .btn.btn-primary,
.contact-form button[type="submit"] {
    background: linear-gradient(135deg, var(--inviro-primary, #2F80ED) 0%, var(--inviro-primary-medium, #4FB3E8) 100%);
    color: #ffffff;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(47, 128, 237, 0.3);
    position: relative;
    overflow: hidden;
}

.contact-form .btn-primary::before,
.contact-form .btn.btn-primary::before,
.contact-form button[type="submit"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.contact-form .btn-primary:hover,
.contact-form .btn.btn-primary:hover,
.contact-form button[type="submit"]:hover {
    background: linear-gradient(135deg, var(--inviro-primary-medium, #4FB3E8) 0%, var(--inviro-primary-light, #75C6F1) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(47, 128, 237, 0.4);
}

.contact-form .btn-primary:hover::before,
.contact-form .btn.btn-primary:hover::before,
.contact-form button[type="submit"]:hover::before {
    left: 100%;
}

.contact-form .btn-primary:active,
.contact-form .btn.btn-primary:active,
.contact-form button[type="submit"]:active {
    transform: translateY(-1px);
}

.form-message {
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    display: none;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* Responsive */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }
    
    .hero-articles-grid {
        gap: 1rem;
        height: 550px;
    }
    
    .hero-article-small {
        height: calc((550px - 2rem) / 3);
    }
    
    .hero-article-title {
        font-size: 1.3rem;
    }
    
    .hero-article-large .hero-article-title {
        font-size: 1.6rem;
    }
    
    .hero-article-small .hero-article-title {
        font-size: 0.95rem;
    }
    
    .about-branches {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .about-branches.branch-count-1 {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-articles-grid {
        grid-template-columns: 1fr 1fr !important;
        height: 400px;
        gap: 0.5rem;
        padding: 0 0.5rem;
        background: #ffffff;
        border-radius: 20px;
    }
    
    .hero-article-large {
        height: 100%;
    }
    
    .hero-articles-grid-right {
        height: 100%;
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr;
        gap: 0.5rem;
    }
    
    .hero-article-small-top {
        height: 100%;
    }
    
    .hero-articles-bottom-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        height: 100%;
    }
    
    .hero-article-small {
        height: 100%;
    }
    
    .hero-article-content {
        padding: 1rem;
    }
    
    .hero-article-title {
        font-size: 0.9rem;
    }
    
    .hero-article-large .hero-article-title {
        font-size: 1.1rem;
    }
    
    .hero-article-small .hero-article-title {
        font-size: 0.75rem;
    }
    
    .hero-article-meta {
        font-size: 0.65rem;
    }
    
    .hero-article-large .hero-article-meta {
        font-size: 0.7rem;
    }
    
    .hero-article-small .hero-article-meta,
    .hero-article-small-top .hero-article-meta {
        font-size: 0.6rem;
    }
    
    .hero-article-category {
        font-size: 0.65rem;
        padding: 0.4rem 0.75rem;
        top: 0.75rem;
        right: 0.75rem;
        border-radius: 8px;
        line-height: 1.2;
        max-width: fit-content;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .hero-article-large .hero-article-category {
        font-size: 0.7rem;
        padding: 0.45rem 0.85rem;
        top: 0.85rem;
        right: 0.85rem;
        border-radius: 10px;
            max-width: calc(100% - 1.7rem);
    }
    
    .hero-article-category-top {
        font-size: 0.65rem;
        padding: 0.4rem 0.75rem;
        top: 0.75rem;
        right: 0.75rem;
        border-radius: 8px;
        line-height: 1.2;
        max-width: fit-content;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .hero-article-category-small {
        font-size: 0.6rem;
        padding: 0.35rem 0.65rem;
        top: 0.65rem;
        right: 0.65rem;
        border-radius: 6px;
        line-height: 1.2;
        max-width: fit-content;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .hero-section {
        margin-bottom: 1rem; /* Jarak 1rem di tablet */
        padding: 2rem 0 0;
    }
    
    .hero-section .stats-section {
        padding: 2.5rem 0;
        background: #ffffff;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-item {
        padding: 2rem 1.5rem;
        background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
        border: 1px solid #e2e8f0;
    }
    
    .stat-number {
        font-size: 2.5rem;
        background: linear-gradient(135deg, var(--inviro-primary, #2F80ED) 0%, var(--inviro-primary-light, #75C6F1) 100%);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    
    .stat-label {
        color: #64748b;
        font-weight: 600;
    }
    
    .about-section {
        padding: 2.5rem 0;
        background: linear-gradient(135deg, var(--inviro-primary-light, #75C6F1) 0%, var(--inviro-primary, #2F80ED) 100%);
        overflow-x: hidden;
        position: relative;
    }
    
    .about-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 20% 50%, rgba(117, 198, 241, 0.3) 0%, transparent 50%),
                    radial-gradient(circle at 80% 80%, rgba(47, 128, 237, 0.2) 0%, transparent 50%);
        pointer-events: none;
    }
    
    .about-section .container {
        padding: 0 1rem;
        max-width: 100%;
        overflow: hidden;
    }
    
    .about-content {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: 1fr;
        gap: 2rem;
        width: 100%;
        max-width: 100%;
    }
    
    /* Urutan di mobile: Judul - branches - paragraf */
    .about-main-title {
        order: 1 !important;
    }
    
    .about-branches {
        order: 2 !important;
    }
    
    .about-text {
        order: 3 !important;
    }
    
    /* About Branches - 2x2 Grid Layout for Mobile */
    .about-branches {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-top: 1rem;
        margin-bottom: 2rem;
        width: 100%;
    }
    
    .products-section {
        padding: 3rem 0;
        background: #ffffff;
    }
    
    .products-section .section-title {
        font-size: 2rem;
        font-weight: 600;
        letter-spacing: -0.5px;
    }
    
    .about-branches.branch-count-1 {
        grid-template-columns: 1fr;
    }
    
    .branch-card {
        border-radius: 16px;
        width: 100%;
        max-width: 100%;
    }
    
    .branch-image {
        height: 120px;
    }
    
    .branch-name {
        padding: 0.75rem;
        font-size: 0.875rem;
        line-height: 1.3;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .testimonial-card {
        flex: 0 0 calc(100% - 1rem);
    }
    
    .form-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    /* Hero Section - Mobile: Tetap grid layout seperti desktop tapi dikecilkan */
    .hero-section {
        padding: 1rem 0 0;
        margin-bottom: 1rem;
    }
    
    .hero-articles-grid {
        grid-template-columns: 1fr 1fr !important;
        height: 300px;
        gap: 0.4rem;
        padding: 0 0.5rem;
        background: #ffffff;
        border-radius: 16px;
    }
    
    .hero-article-large {
        height: 100%;
    }
    
    .hero-articles-grid-right {
        height: 100%;
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr;
        gap: 0.4rem;
    }
    
    .hero-article-small-top {
        height: 100%;
    }
    
    .hero-articles-bottom-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.4rem;
        height: 100%;
    }
    
    .hero-article-small {
        height: 100%;
    }
    
    .hero-article-content {
        padding: 0.75rem;
    }
    
    .hero-article-category {
        font-size: 0.6rem;
        padding: 0.35rem 0.7rem;
        top: 0.65rem;
        right: 0.65rem;
        border-radius: 6px;
        line-height: 1.2;
        letter-spacing: 0.5px;
        max-width: fit-content;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .hero-article-large .hero-article-category {
        font-size: 0.65rem;
        padding: 0.4rem 0.75rem;
        top: 0.75rem;
        right: 0.75rem;
        border-radius: 8px;
        max-width: fit-content;
    }
    
    .hero-article-category-top {
        font-size: 0.6rem;
        padding: 0.35rem 0.7rem;
        top: 0.65rem;
        right: 0.65rem;
        border-radius: 6px;
        line-height: 1.2;
        letter-spacing: 0.5px;
        max-width: calc(100% - 1.3rem);
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .hero-article-category-small {
        font-size: 0.55rem;
        padding: 0.3rem 0.6rem;
        top: 0.55rem;
        right: 0.55rem;
        border-radius: 5px;
        line-height: 1.2;
        letter-spacing: 0.5px;
        max-width: calc(100% - 1.1rem);
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .hero-article-title {
        font-size: 0.7rem;
        line-height: 1.2;
        font-weight: 600;
    }
    
    .hero-article-large .hero-article-title {
        font-size: 0.8rem;
        line-height: 1.3;
        font-weight: 700;
    }
    
    .hero-article-small .hero-article-title {
        font-size: 0.6rem;
        line-height: 1.25;
        font-weight: 600;
        margin-bottom: 0.25rem;
    }
    
    .hero-article-small .hero-article-content {
        padding: 0.6rem;
    }
    
    .hero-article-small-bottom-left .hero-article-title,
    .hero-article-small-bottom-right .hero-article-title {
        font-size: 0.58rem;
        line-height: 1.2;
        margin-bottom: 0.2rem;
    }
    
    .hero-article-small-bottom-left .hero-article-content,
    .hero-article-small-bottom-right .hero-article-content {
        padding: 0.5rem;
    }
    
    .hero-article-meta {
        font-size: 0.5rem;
        line-height: 1.3;
    }
    
    .hero-article-large .hero-article-meta {
        font-size: 0.55rem;
    }
    
    .hero-article-small .hero-article-meta,
    .hero-article-small-top .hero-article-meta,
    .hero-article-small-bottom-left .hero-article-meta,
    .hero-article-small-bottom-right .hero-article-meta {
        font-size: 0.45rem;
    }
    
    /* Stats Section - Mobile: Modern Card Layout */
    .stats-section {
        padding: 1.5rem 1rem;
        background: #ffffff;
        overflow-x: hidden;
    }
    
    .stats-section .container {
        max-width: 100%;
        padding: 0;
    }
    
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.6rem;
        max-width: 100%;
        width: 100%;
    }
    
    .stat-item {
        padding: 1.25rem 0.6rem;
        text-align: center;
        background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
        border-radius: 12px;
        border: 1px solid #e2e8f0;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
        transition: all 0.3s ease;
        width: 100%;
        position: relative;
        overflow: hidden;
    }
    
    .stat-item::before {
        height: 3px;
    }
    
    .stat-item:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 20px rgba(47, 128, 237, 0.12);
        border-color: var(--inviro-primary-light, #75C6F1);
        background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
    }
    
    .stat-number {
        font-size: 1.25rem;
        line-height: 1.5rem;
        font-weight: 900;
        margin-bottom: 0.35rem;
        background: linear-gradient(135deg, var(--inviro-primary, #2F80ED) 0%, var(--inviro-primary-light, #75C6F1) 100%);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        letter-spacing: -0.5px;
    }
    
    .stat-label {
        font-size: 0.6rem;
        line-height: 1.25rem;
        font-weight: 600;
        color: #64748b;
        letter-spacing: 0.15px;
    }
    
    .about-logo-inline-img {
        max-width: 150px;
        max-height: 45px;
    }
    
    .about-title-inline {
        font-size: 1.1em;
    }
    
    /* About Section - Mobile: Modern Layout */
    .about-section {
        padding: 1.75rem 0;
        background: linear-gradient(135deg, var(--inviro-primary-light, #75C6F1) 0%, var(--inviro-primary, #2F80ED) 100%);
        overflow-x: hidden;
        position: relative;
    }
    
    .about-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 20% 50%, rgba(117, 198, 241, 0.3) 0%, transparent 50%),
                    radial-gradient(circle at 80% 80%, rgba(47, 128, 237, 0.2) 0%, transparent 50%);
        pointer-events: none;
    }
    
    .about-section .container {
        padding: 0 1rem;
        max-width: 100%;
        overflow: hidden;
    }
    
    .section-title {
        font-size: 1.15rem;
        line-height: 1.6rem;
        margin-bottom: 0.65rem;
        font-weight: 800;
    }
    
    .section-description {
        font-size: 0.7rem;
        line-height: 1.4rem;
        opacity: 0.9;
    }
    
    .about-content {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: 1fr;
        gap: 2rem;
        width: 100%;
        max-width: 100%;
    }
    
    /* Urutan di mobile: Judul - branches - paragraf */
    .about-main-title {
        order: 1 !important;
    }
    
    .about-branches {
        order: 2 !important;
    }
    
    .about-text {
        order: 3 !important;
    }
    
    /* About Branches - 2x2 Grid Layout for Mobile */
    .about-branches {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-top: 1rem;
        margin-bottom: 2rem;
        width: 100%;
    }
    
    .about-branches.branch-count-1 {
        grid-template-columns: 1fr;
    }
    
    .branch-card {
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border: 2px solid rgba(255, 255, 255, 0.9);
        background-color: #E91C2E;
        width: 100%;
        max-width: 100%;
    }
    
    .branch-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18), 0 4px 10px rgba(0, 0, 0, 0.12);
    }
    
    .branch-image {
        height: 120px;
        overflow: hidden;
        position: relative;
        width: 100%;
    }
    
    .branch-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        display: block;
    }
    
    .branch-card:hover .branch-image img {
        transform: scale(1.08);
    }
    
    .branch-name {
        padding: 0.55rem 0.5rem;
        font-size: 0.7rem;
        line-height: 1.3;
        text-align: center;
        color: white;
        margin: 0;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.15px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .about-text h2 {
        font-size: 1rem;
        line-height: 1.4rem;
        font-weight: 700;
        text-align: center;
        color: #ffffff !important;
    }
    
    
    .about-description {
        font-size: 0.8rem;
        line-height: 1.4;
        text-align: justify;
        color: #ffffff;
    }
    
    .about-main-title {
        margin-bottom: 1.5rem;
    }
    
    .about-main-title h2 {
        font-size: 1.25rem;
        color: #ffffff !important;
    }
    
    .about-main-title .custom-logo-link img,
    .about-main-title img.custom-logo,
    .about-main-title .custom-logo {
        max-width: 150px !important;
        max-height: 60px !important;
    }
    
    /* Products Section - Mobile: Modern Card Grid */
    .products-section {
        padding: 1.75rem 1rem;
        background: #ffffff;
    }
    
    .about-section {
        margin-bottom: 1rem;
    }
    
    .products-section .section-title {
        text-align: center;
        color: #1a1a1a;
        font-size: 0.95rem;
        font-weight: 600;
        line-height: 1.35rem;
        margin-bottom: 0.65rem;
        letter-spacing: -0.5px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.75rem;
        padding: 0 0.5rem;
    }
    
    /* ============================================
       PRODUCT SECTION - MOBILE REDESIGN
       Desain ulang untuk mobile: sederhana dan jelas
       ============================================ */
    
    .products-section .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.75rem !important;
    }
    
    /* Product Card - Mobile: Desain ulang */
    .products-section .product-card,
    .product-card {
        border-radius: 12px !important;
        overflow: hidden !important;
        background: #ffffff !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        height: auto !important;
        min-height: 280px !important;
        max-height: none !important;
        position: relative !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .product-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    }
    
    /* Product Image - Mobile: Fixed height persegi */
    .products-section .product-image,
    .product-image {
        width: 100% !important;
        height: 140px !important;
        min-height: 140px !important;
        max-height: 140px !important;
        flex-shrink: 0 !important;
        position: relative !important;
        overflow: hidden !important;
        background: #f5f5f5 !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .products-section .product-image img,
    .product-image img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
    }
    
    /* Product Info - Mobile: Container untuk konten */
    .products-section .product-card .product-info,
    .products-section .product-info,
    .product-card .product-info,
    .product-info {
        padding: 0.75rem 0.6rem !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 0.5rem !important;
        flex: 1 !important;
        min-height: 0 !important;
        visibility: visible !important;
        opacity: 1 !important;
        background: #ffffff !important;
    }
    
    /* Product Top Content - Mobile */
    .products-section .product-top-content,
    .product-top-content {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.25rem !important;
        flex: 0 0 auto !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    /* Product Title - Mobile: Judul produk */
    .products-section .product-title,
    .products-section .product-card .product-info .product-top-content .product-title,
    .product-title {
        font-size: 0.75rem !important;
        font-weight: 600 !important;
        color: #1a1a1a !important;
        line-height: 1.4 !important;
        margin: 0 !important;
        padding: 0 !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        visibility: visible !important;
        opacity: 1 !important;
        min-height: 2.1em !important;
    }
    
    /* Product Description - Mobile: Sembunyikan */
    .products-section .product-description,
    .product-description {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    /* Product Bottom Content - Mobile */
    .products-section .product-bottom-content,
    .product-bottom-content {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.5rem !important;
        margin-top: auto !important;
        padding-top: 0.5rem !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    /* Product Price - Mobile: Harga */
    .products-section .product-price,
    .products-section .product-card .product-info .product-bottom-content .product-price,
    .product-price {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.2rem !important;
        margin: 0 !important;
        padding: 0 !important;
        border: none !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    /* Product Price Wrapper - Mobile */
    .products-section .product-price-wrapper,
    .product-price-wrapper {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.2rem !important;
        align-items: flex-start !important;
        margin: 0 !important;
        padding: 0 !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    /* Price Original - Mobile */
    .products-section .product-price-original,
    .product-price-original {
        display: block !important;
        font-size: 0.65rem !important;
        color: #dc3545 !important;
        text-decoration: line-through !important;
        font-weight: 400 !important;
        line-height: 1.2 !important;
        margin: 0 !important;
        padding: 0 !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    /* Price Promo - Mobile */
    .products-section .product-price-promo,
    .product-price-promo {
        display: block !important;
        font-size: 0.85rem !important;
        font-weight: 700 !important;
        color: #000000 !important;
        line-height: 1.3 !important;
        margin: 0 !important;
        padding: 0 !important;
        visibility: visible !important;
        opacity: 1 !important;
        /* Override gradient untuk mobile - pastikan warna hitam */
        -webkit-text-fill-color: #000000 !important;
        background: none !important;
        -webkit-background-clip: unset !important;
        background-clip: unset !important;
    }
    
    /* Price Current - Mobile */
    .products-section .product-current-price,
    .product-current-price {
        display: block !important;
        font-size: 0.85rem !important;
        font-weight: 700 !important;
        color: #000000 !important;
        line-height: 1.3 !important;
        margin: 0 !important;
        padding: 0 !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    /* Button Beli - Mobile */
    .products-section .btn.btn-product,
    .products-section .btn-product,
    .products-section .product-card .product-info .product-bottom-content .btn.btn-product,
    .btn.btn-product,
    .btn-product {
        display: block !important;
        width: 100% !important;
        padding: 0.5rem 0.75rem !important;
        font-size: 0.7rem !important;
        font-weight: 600 !important;
        line-height: 1.4 !important;
        text-align: center !important;
        color: #ffffff !important;
        background: #25D366 !important;
        border: none !important;
        border-radius: 8px !important;
        cursor: pointer !important;
        transition: all 0.3s ease !important;
        margin: 0 !important;
        min-height: 32px !important;
        visibility: visible !important;
        opacity: 1 !important;
        text-decoration: none !important;
    }
    
    .btn.btn-product:hover,
    .btn-product:hover {
        transform: translateY(-1px);
        box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
    }
    
    .product-actions {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 0.5rem;
    }
    
    .product-wishlist {
        width: 20px;
        height: 20px;
        cursor: pointer;
        transition: transform 0.2s ease;
    }
    
    .product-wishlist:hover {
        transform: scale(1.15);
    }
    
    .product-btn {
        padding: 0.5rem 1.5rem;
        font-size: 0.75rem;
        font-weight: 800;
        border-radius: 8px;
        background: linear-gradient(135deg, var(--inviro-primary-light, #75C6F1) 0%, var(--inviro-primary-medium, #4FB3E8) 100%);
        border: none;
        color: white;
        box-shadow: 0 4px 12px rgba(117, 198, 241, 0.3);
        transition: all 0.3s ease;
    }
    
    .product-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(117, 198, 241, 0.4);
    }
    
    .view-all-products,
    .section-footer {
        display: none !important;
    }
    
    /* Testimonials Section - Mobile: Modern Card Design */
    .testimonials-section {
        padding: 2rem 1rem;
        background: linear-gradient(135deg, var(--inviro-primary-light, #75C6F1) 0%, var(--inviro-primary, #2F80ED) 100%);
        position: relative;
        overflow: hidden;
    }
    
    .testimonials-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 20% 50%, rgba(117, 198, 241, 0.3) 0%, transparent 50%),
                    radial-gradient(circle at 80% 80%, rgba(47, 128, 237, 0.2) 0%, transparent 50%);
        pointer-events: none;
    }
    
    .testimonials-section .section-title {
        font-size: 1rem;
        line-height: 1.4rem;
        font-weight: 700;
        color: #ffffff;
        text-align: center;
        margin-bottom: 0.45rem;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    .testimonials-section .section-subtitle {
        font-size: 0.7rem;
        line-height: 1.4rem;
        text-align: center;
        color: rgba(255, 255, 255, 0.95);
        margin-bottom: 1.25rem;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .testimonials-carousel {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding: 0 0.65rem;
    }
    
    .testimonials-carousel::-webkit-scrollbar {
        display: none;
    }
    
    .testimonials-track {
        display: flex;
        flex-direction: row;
        gap: 0.75rem;
        align-items: stretch;
        padding-bottom: 0.5rem;
    }
    
    .testimonial-card {
        flex: 0 0 calc(50% - 0.5rem);
        width: calc(50% - 0.5rem);
        max-width: none;
        min-height: 160px;
        padding: 0.85rem;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-radius: 12px;
        box-shadow: 0 4px 16px rgba(47, 128, 237, 0.1),
                    0 0 0 1px rgba(255, 255, 255, 0.5) inset;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border: 1px solid rgba(255, 255, 255, 0.8);
        display: flex;
        flex-direction: column;
    }
    
    .testimonial-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 16px 48px rgba(47, 128, 237, 0.25),
                    0 0 0 1px rgba(255, 255, 255, 0.8) inset,
                    0 0 40px rgba(117, 198, 241, 0.3);
    }
    
    .testimonial-header {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        margin-bottom: 0.5rem;
    }
    
    .testimonial-avatar {
        width: 36px;
        height: 36px;
        min-width: 36px;
        min-height: 36px;
        border-radius: 50%;
        border: 2px solid var(--inviro-primary-light, #75C6F1);
        box-shadow: 0 2px 8px rgba(47, 128, 237, 0.12),
                    0 0 0 1px rgba(255, 255, 255, 0.8) inset;
        flex-shrink: 0;
        background: linear-gradient(135deg, var(--inviro-primary-light, #75C6F1) 0%, var(--inviro-primary, #2F80ED) 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
        aspect-ratio: 1 / 1;
    }
    
    .testimonial-avatar img {
        display: none !important;
    }
    
    .testimonial-avatar::before {
        content: '';
        position: absolute;
        width: 20px;
        height: 20px;
        min-width: 20px;
        min-height: 20px;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z'/%3E%3C/svg%3E");
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        aspect-ratio: 1 / 1;
    }
    
    .testimonial-meta {
        flex: 1;
        min-width: 0;
    }
    
    .testimonial-name {
        font-size: 0.7rem;
        font-weight: 700;
        color: #1a1a1a;
        line-height: 1.2;
        margin: 0 0 0.15rem 0;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .testimonial-date {
        font-size: 0.6rem;
        color: #64748b;
        font-weight: 500;
        line-height: 1.2;
    }
    
    .testimonial-rating {
        margin-bottom: 0.5rem;
        display: flex;
        gap: 0.15rem;
    }
    
    .star {
        font-size: 0.75rem;
    }
    
    .testimonial-content {
        font-size: 0.65rem;
        line-height: 1.4;
        color: #475569;
        flex: 1;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
    }
    
    .testimonial-content p {
        margin: 0;
        font-size: 0.65rem;
        line-height: 1.4;
    }
    
    /* Mobile: Hide carousel controls, use horizontal scroll */
    .testimonials-controls {
        display: none !important;
    }
    
    .testimonial-prev,
    .testimonial-next {
        display: none !important;
    }
    
    .testimonials-indicators {
        display: none !important;
    }
    
    .testimonials-carousel {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding: 0 0.65rem;
    }
    
    .testimonials-carousel::-webkit-scrollbar {
        display: none;
    }
    
    .testimonials-track {
        display: flex;
        flex-direction: row;
        gap: 0.75rem;
        align-items: stretch;
        padding-bottom: 0.5rem;
        transform: none !important;
        transition: none !important;
    }
    
    .testimonial-card {
        scroll-snap-align: start;
    }
    
    /* Contact/Map Section - Mobile: Modern Design */
    .contact-section {
        padding: 1.5rem 1rem;
        background: white;
    }
    
    .contact-section .section-header {
        margin-bottom: 1.5rem;
    }
    
    .contact-section .section-title {
        font-size: 1.15rem;
        margin-bottom: 0.5rem;
    }
    
    .contact-section .section-subtitle {
        font-size: 0.75rem;
        margin-top: 0.25rem;
    }
    
    .contact-content {
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-map {
        width: 100%;
        height: 180px;
        min-height: 180px;
        border-radius: 12px;
        overflow: hidden;
        margin-bottom: 1.5rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
        border: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .contact-map iframe {
        height: 180px;
    }
    
    .map-placeholder {
        min-height: 180px;
        border-radius: 12px;
    }
    
    .contact-features {
        gap: 1rem;
    }
    
    .feature-item {
        padding: 1rem;
        border-radius: 12px;
        gap: 0.75rem;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }
    
    .feature-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .feature-content h3 {
        font-size: 0.85rem;
        margin-bottom: 0.25rem;
    }
    
    .feature-content p {
        font-size: 0.7rem;
        line-height: 1.5;
    }
    
    /* Contact Form - Mobile: Modern Clean Design */
    .contact-form-wrapper {
        padding: 1rem 0.875rem;
        background: white;
        border-radius: 14px;
        border: none;
        box-shadow: 0 3px 12px rgba(24, 32, 60, 0.06);
    }
    
    .contact-form-wrapper h3 {
        font-size: 0.8rem;
        font-weight: 700;
        color: #005BD2;
        line-height: 1.2;
        margin-bottom: 0.75rem;
        text-align: center;
    }
    
    .contact-form {
        gap: 0.5rem;
    }
    
    .form-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .form-group label {
        font-size: 0.7rem;
        font-weight: 600;
        color: #2D3748;
        margin-bottom: 0.3rem;
        display: block;
        line-height: 1.2;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.55rem 0.65rem;
        font-size: 0.7rem;
        border: 2px solid #E2E8F0;
        border-radius: 8px;
        box-shadow: none;
        transition: all 0.3s ease;
        width: 100%;
        font-family: var(--font-primary);
        line-height: 1.4;
    }
    
    .form-group input:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: var(--inviro-primary-light, #75C6F1);
        box-shadow: 0 0 0 3px rgba(117, 198, 241, 0.1);
    }
    
    .form-group input::placeholder,
    .form-group textarea::placeholder {
        color: #A0AEC0;
        font-size: 0.7rem;
    }
    
    .form-group textarea {
        min-height: 70px;
        resize: vertical;
    }
    
    .form-submit {
        margin-top: 0.25rem;
        text-align: center;
    }
    
    .btn-submit {
        padding: 0.55rem 1.15rem;
        font-size: 0.7rem;
        font-weight: 700;
        line-height: 1.3;
        background: linear-gradient(135deg, var(--inviro-primary-medium, #4FB3E8) 0%, var(--inviro-primary-medium, #4FB3E8) 100%);
        color: white;
        border: none;
        border-radius: 8px;
        box-shadow: 0 3px 10px rgba(39, 175, 233, 0.25);
        cursor: pointer;
        transition: all 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .btn-submit:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(39, 175, 233, 0.35);
    }
    
    .btn-submit:active {
        transform: translateY(0);
    }
}

