:root {
    --primary-blue: #0A2540;
    --primary-blue-light: #153B61;
    --accent-orange: #FF0000;
    --accent-orange-hover: #CC0000;
    --text-dark: #1E293B;
    --text-muted: #64748B;
    --bg-light: #F8FAFC;
    --white: #FFFFFF;
    --tokopedia-green: #03AC0E;
    --shopee-orange: #EE4D2D;
    --border-color: #E2E8F0;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-light);
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
}

p {
    margin-bottom: 1rem;
}

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

/* Custom Container */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 6rem 0;
}

/* Utilities */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
    border: none;
}

.btn-primary {
    background-color: var(--accent-orange);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--accent-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(255, 102, 0, 0.3);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary-blue);
    border: 2px solid var(--white);
}

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

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.15); /* Liquid glass transparent */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.15); /* Keep liquid glass transparency */
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: padding 0.3s ease;
}

.navbar.scrolled .nav-container {
    padding: 0.25rem 2rem;
}

.logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.navbar-logo {
    height: 100px;
    width: auto;
    object-fit: contain;
    transition: height 0.3s ease;
}

.navbar.scrolled .navbar-logo {
    height: 70px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--primary-blue);
}

.logo-sub {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--text-muted);
}

.logo-text .accent {
    color: var(--accent-orange);
}

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

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

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

/* SECTION 1: HERO */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    padding: 0 1rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(10, 37, 64, 0.9), rgba(10, 37, 64, 0.7));
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* SECTION 2: BRAND AUTHORITY */
.brand-authority {
    background-color: var(--white);
    padding: 4rem 0;
    overflow: hidden;
}

.brand-authority h2 {
    font-size: 1.5rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
}

.carousel-container::before,
.carousel-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
}

.carousel-container::before {
    left: 0;
    background: linear-gradient(to right, var(--white) 0%, transparent 100%);
}

.carousel-container::after {
    right: 0;
    background: linear-gradient(to left, var(--white) 0%, transparent 100%);
}

.carousel-track {
    display: inline-block;
    animation: scroll 15s linear infinite;
}

.brand-item {
    display: inline-block;
    vertical-align: middle;
    margin: 0 2rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-muted);
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all 0.3s ease;
    cursor: default;
}

.brand-item img {
    height: 40px;
    width: auto;
    object-fit: contain;
    display: block;
}

.brand-item:hover {
    filter: grayscale(0%);
    opacity: 1;
    color: var(--primary-blue);
    transform: scale(1.1);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}
/* SECTION 2.5: ABOUT US */
.about-section {
    padding: 6rem 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-blue);
}

.about-text h2 span {
    color: var(--accent-orange);
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.8; /* Improve readability */
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 0.25rem;
}

.stat-item span {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

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

/* SECTION 3: SHOP ONLINE */
.shop-online {
    background-color: var(--bg-light);
}

.marketplace-cards {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.market-card {
    flex: 1;
    background: var(--white);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.market-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    z-index: 2;
}

.market-card.tokopedia::before {
    background-color: var(--tokopedia-green);
}

.market-card.shopee::before {
    background-color: var(--shopee-orange);
}

.market-card.blibli::before {
    background-color: #0095DC;
}

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

.market-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.market-card.tokopedia .market-icon {
    color: var(--tokopedia-green);
}

.market-card.shopee .market-icon {
    color: var(--shopee-orange);
}

.market-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.market-card p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.btn-tokopedia {
    background-color: var(--tokopedia-green);
    color: var(--white);
    width: 100%;
}

.btn-tokopedia:hover {
    background-color: #028C0B;
}

.btn-shopee {
    background-color: var(--shopee-orange);
    color: var(--white);
    width: 100%;
}

.btn-shopee:hover {
    background-color: #D74324;
}

.btn-blibli {
    background-color: #0095DC;
    color: var(--white);
    width: 100%;
}

.btn-blibli:hover {
    background-color: #007BB5;
}

/* SECTION 4: INTEGRATED SERVICE CENTER */
.service-center {
    background-color: var(--white);
}

.service-layout {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.service-image {
    flex: 1;
    position: relative;
}

.service-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    object-fit: cover;
}

.service-image::before {
    content: '';
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--accent-orange);
    border-radius: 20px;
    z-index: -1;
}

.service-content {
    flex: 1;
}

.service-content h2 {
    margin-bottom: 1.5rem;
}

.service-desc {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.feature-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 102, 0, 0.1);
    color: var(--accent-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.feature-item h4 {
    margin-bottom: 0.25rem;
}

.feature-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

/* SECTION 5: GALLERY */
.gallery {
    background-color: var(--bg-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem 1.5rem 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--white);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-overlay span {
    font-weight: 600;
    font-size: 1.125rem;
}

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

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.item-large {
    grid-column: span 2;
    grid-row: span 2;
}

.item-wide {
    grid-column: span 2;
}

/* SECTION 6: PRODUCT HIGHLIGHTS */
.product-highlights {
    background-color: var(--white);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.product-card {
    background: var(--bg-light);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.product-card:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-10px);
}

.product-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: var(--shadow-sm);
    z-index: 2;
}

.product-badge.promo {
    background-color: var(--accent-orange);
}

.product-card:hover .product-badge {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.product-icon-wrap {
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--accent-orange);
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.product-card:hover .product-icon-wrap {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    box-shadow: none;
}

.product-card p {
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.product-card:hover p {
    color: rgba(255, 255, 255, 0.8);
}

/* SECTION 6.5: AGRES CARE */
.agres-care {
    padding: 5rem 0;
    background-color: var(--white);
}

.care-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.care-content h2 {
    font-size: 2.2rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.care-content h2 span {
    color: var(--accent-orange);
}

.care-content p {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.care-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.benefit-tag {
    padding: 0.5rem 1rem;
    background: rgba(220, 53, 69, 0.1);
    color: var(--accent-orange);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
}

.care-image {
    position: relative;
    z-index: 1;
}

.care-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    display: block;
}

.care-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--accent-orange);
    border-radius: 20px;
    z-index: -1;
}

/* SECTION 6.6: CICILAN / LEASING */
.leasing-section {
    padding: 4rem 0;
    background-color: var(--bg-light);
    text-align: center;
}

.leasing-section h3 {
    margin-bottom: 2rem;
    color: var(--text-muted);
    font-weight: 600;
}

.leasing-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.leasing-logos img {
    height: 70px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    filter: grayscale(0%);
    opacity: 1;
    transition: all 0.3s ease;
}

.leasing-logos img:hover {
    filter: grayscale(100%);
    opacity: 0.7;
}

@media (max-width: 992px) {
    .care-layout {
        grid-template-columns: 1fr;
    }
}

/* SECTION 7: REVIEWS */
.reviews-section {
    padding: 6rem 0;
    background-color: var(--bg-light);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.review-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
    border: 1px solid var(--border-color);
}

.review-card:hover {
    transform: translateY(-5px);
}

.review-card img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 992px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

/* SECTION 8: FOOTER */
.footer {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 5rem 0 2rem;
}

.footer-layout {
    display: flex;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-info {
    flex: 1;
}

.footer-info .logo-text {
    color: var(--white);
    margin-bottom: 1.5rem;
    display: inline-block;
}

.footer-addr {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

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

.social-icon:hover {
    background-color: var(--accent-orange);
    transform: translateY(-3px);
}

.btn-footer {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.footer-map {
    flex: 1.5;
    height: 300px;
    border-radius: 16px;
    overflow: hidden;
}

.footer-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 992px) {

    .about-layout {
        grid-template-columns: 1fr;
    }

    .service-layout,
    .footer-layout {
        flex-direction: column;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .item-large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .navbar-logo {
        height: 70px;
    }
    
    .navbar.scrolled .navbar-logo {
        height: 55px;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .nav-links {
        display: none;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .marketplace-cards {
        flex-direction: column;
    }

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

    .item-large,
    .item-wide {
        grid-column: span 1;
    }

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