/* CSS DESIGN SYSTEM - MINIMALIST MODERN ACCENT RED & WHITE */
:root {
    --primary: #e81c24; /* Honda Red */
    --primary-hover: #c41219;
    --primary-light: #fff5f5;
    --dark: #1f2937; /* Dark charcoal text */
    --text: #374151; /* Neutral dark gray body */
    --text-muted: #6b7280; /* Neutral light gray text */
    --bg-white: #ffffff;
    --bg-light: #fdfdfd;
    --bg-gray: #f4f4f5;
    --border: #e4e4e7;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-full: 9999px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    --shadow-hover: 0 10px 30px rgba(232, 28, 36, 0.06);
    --max-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--text);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button, select {
    font-family: inherit;
}

/* Scrollbar Style */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-gray);
}
::-webkit-scrollbar-thumb {
    background: #d4d4d8;
    border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
    background: #a1a1aa;
}

/* Reusable Components & Utilities */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
    gap: 8px;
}

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

.btn--primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(232, 28, 36, 0.2);
}

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

.btn--outline:hover {
    background-color: var(--bg-gray);
    border-color: var(--dark);
    transform: translateY(-2px);
}

.btn--large {
    padding: 16px 36px;
    font-size: 16px;
    border-radius: var(--radius-md);
}

.btn--icon-left svg {
    width: 20px;
    height: 20px;
}

/* Section Header styling */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-tag {
    display: inline-block;
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 12px;
}

.section-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.02em;
}

.section-divider {
    width: 50px;
    height: 3px;
    background-color: var(--primary);
    margin: 16px auto 0;
    border-radius: var(--radius-full);
}

/* HEADER & NAVBAR */
.header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    z-index: 100;
    transition: var(--transition);
}

.header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 16px 24px;
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 20px;
    color: var(--dark);
    letter-spacing: -0.03em;
}

.header__logo-icon {
    width: 32px;
    height: 32px;
    color: var(--primary);
}

.header__logo-text--highlight {
    color: var(--primary);
    font-weight: 400;
}

.header__nav {
    display: flex;
}

.header__nav-list {
    display: flex;
    align-items: center;
    gap: 32px;
}

.header__nav-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    transition: var(--transition);
    position: relative;
    padding: 8px 0;
}

.header__nav-link:hover,
.header__nav-link.active {
    color: var(--primary);
}

.header__nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.header__nav-link.active::after,
.header__nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header__cta-btn {
    display: inline-block;
    background-color: var(--dark);
    color: var(--bg-white);
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 700;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.header__cta-btn:hover {
    background-color: var(--primary);
    transform: translateY(-1px);
}

.header__toggle {
    display: none;
    background: none;
    border: none;
    color: var(--dark);
    cursor: pointer;
    padding: 4px;
}

.header__toggle-icon {
    width: 24px;
    height: 24px;
}

/* HERO SHOWCASE */
.hero {
    background-image: linear-gradient(rgba(15, 23, 42, 0.75), rgba(15, 23, 42, 0.75)), url('background index atas/WhatsApp Image 2026-07-03 at 18.31.30.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 24px;
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.hero__container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    max-width: var(--max-width);
    margin: 0 auto;
}

.hero__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero__tagline {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.2em;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.hero__title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    color: #ffffff;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.hero__desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 36px;
    max-width: 520px;
}

.hero__ctas {
    display: flex;
    gap: 16px;
}

.hero .btn--outline {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.4);
}

.hero .btn--outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
}

.hero__visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__glow {
    position: absolute;
    width: 130%;
    height: 130%;
    background: radial-gradient(circle, rgba(232, 28, 36, 0.06) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 1;
}

.hero__img {
    position: relative;
    z-index: 2;
    max-height: 380px;
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.06));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero__badge {
    position: absolute;
    bottom: 20px;
    left: 10px;
    background-color: var(--bg-white);
    padding: 12px 20px;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    z-index: 3;
}

.hero__badge-label {
    font-size: 10px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero__badge-name {
    font-size: 14px;
    font-weight: 800;
    color: var(--dark);
    margin-top: 2px;
}

/* COMBINED ABOUT & WHY US SECTION */
.about-why-us {
    padding: 80px 24px;
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border);
}

.about-why-us__container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.about-why-us__layout {
    display: flex;
    gap: 56px;
    align-items: stretch;
}

.about-why-us__col-left {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.about-why-us__col-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-why-us__cards-stack {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Redefine benefit-card for stacked horizontal layout */
.benefit-card {
    background-color: var(--bg-light);
    border: 1px solid var(--border);
    padding: 24px;
    border-radius: var(--radius-lg);
    transition: var(--transition);
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(232, 28, 36, 0.04);
    border-color: rgba(232, 28, 36, 0.2);
}

.benefit-card__icon-wrapper {
    background-color: var(--primary-light);
    color: var(--primary);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    min-width: 48px;
}

.benefit-card__icon {
    width: 24px;
    height: 24px;
}

.benefit-card__content-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.benefit-card__title {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
}

.benefit-card__desc {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ABOUT CONTENT & IMAGE FOR RIGHT COLUMN */
.about__image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(232, 28, 36, 0.04);
    border: 4px solid var(--bg-white);
    margin-bottom: 0;
    width: 100%;
    max-width: 450px;
    aspect-ratio: 3 / 4;
    margin: 0 auto;
}

.about__img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: var(--transition);
}

.about__img:hover {
    transform: scale(1.03);
}

.about__content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about__subtitle {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.3;
}

.about__text {
    font-size: 14.5px;
    color: var(--text);
    line-height: 1.6;
}

.about__features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

.about__feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
}

.about__feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 800;
}

/* RESPONSIVE FOR COMBINED SECTION */
@media (max-width: 992px) {
    .about-why-us__layout {
        flex-direction: column;
        gap: 40px;
    }
    .about-why-us__col-left,
    .about-why-us__col-right {
        width: 100%;
    }
    .about__image-wrapper {
        aspect-ratio: 3 / 4;
        max-width: 400px;
        min-height: auto;
        height: auto;
        margin: 0 auto;
    }
}

.benefit-card__desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* CATALOGUE SECTION */
.catalogue {
    padding: 80px 24px;
    background-color: var(--bg-light);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.catalogue__container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.catalogue__controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    gap: 24px;
    flex-wrap: wrap;
}

.catalogue__filters-wrapper {
    flex: 1;
    overflow: hidden;
}

.catalogue__filters {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 6px;
    scrollbar-width: none; /* Firefox */
}

.catalogue__filters::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.filter-btn {
    background: var(--bg-white);
    border: 1px solid var(--border);
    color: var(--text);
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--radius-full);
    cursor: pointer;
    white-space: nowrap;
    transition: var(--transition);
}

.filter-btn:hover {
    border-color: var(--dark);
    background-color: var(--bg-gray);
}

.filter-btn.active {
    background-color: var(--primary);
    color: var(--bg-white);
    border-color: var(--primary);
    box-shadow: 0 4px 10px rgba(232, 28, 36, 0.15);
}

.catalogue__search-box {
    position: relative;
    width: 320px;
}

.catalogue__search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: var(--text-muted);
    pointer-events: none;
}

.catalogue__search-input {
    width: 100%;
    background-color: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    padding: 12px 16px 12px 48px;
    font-size: 14px;
    color: var(--dark);
    outline: none;
    transition: var(--transition);
}

.catalogue__search-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(232, 28, 36, 0.08);
}

.catalogue__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 30px;
}

.loading-state,
.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    font-size: 16px;
    color: var(--text-muted);
}

.empty-state-icon {
    width: 48px;
    height: 48px;
    color: var(--text-light);
    margin: 0 auto 16px;
}

/* PRODUCT CARD */
.product-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(232, 28, 36, 0.2);
}

.product-card__img-container {
    position: relative;
    background-color: var(--bg-gray);
    padding: 24px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-card__img {
    max-height: 160px;
    object-fit: contain;
    transition: transform 0.5s ease;
}

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

.product-card__tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background-color: var(--bg-white);
    color: var(--primary);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 6px 12px;
    border-radius: var(--radius-full);
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    border: 1px solid var(--border);
}

.product-card__content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-card__title {
    font-size: 18px;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.01em;
    margin-bottom: 8px;
}

.product-card__price-row {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 20px;
}

.product-card__price-cash {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
}

.product-card__price-installment {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

.product-card__btn {
    margin-top: auto;
    width: 100%;
    padding: 10px;
    font-size: 14px;
}

/* TESTIMONIALS SECTION */
.testimonials {
    padding: 80px 24px;
    background-color: var(--bg-white);
}

.testimonials__container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background-color: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: rgba(232, 28, 36, 0.2);
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.testimonial-card__image-container {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: var(--radius-md);
    margin-bottom: 8px;
}

.testimonial-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.testimonial-card__content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.testimonial-card__content--empty {
    text-align: center;
    padding: 8px 0 4px;
    justify-content: center;
    align-items: center;
    display: flex;
}

.testimonial-card__caption {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 600;
}

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

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

.testimonial-card__stars {
    display: flex;
    gap: 4px;
    color: #f59e0b; /* Amber star color */
}

.testimonial-card__star-icon {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.testimonial-card__text {
    font-size: 14px;
    color: var(--text);
    line-height: 1.6;
    font-style: italic;
}

.testimonial-card__user {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}

.testimonial-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background-color: var(--primary-light);
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid rgba(232, 28, 36, 0.1);
}

.testimonial-card__user-info {
    display: flex;
    flex-direction: column;
}

.testimonial-card__name {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
}

.testimonial-card__location {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 500;
}

/* CONTACT & MAP SECTION */
.contact {
    padding: 80px 24px;
    background-color: var(--bg-light);
    border-top: 1px solid var(--border);
}

.contact__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: var(--max-width);
    margin: 0 auto;
    align-items: center;
}

.contact__info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.contact__title {
    font-size: 32px;
    font-weight: 800;
    color: var(--dark);
    margin-top: 8px;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.contact__desc {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.contact__list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-item__icon-wrapper {
    width: 44px;
    height: 44px;
    background-color: var(--bg-white);
    border: 1px solid var(--border);
    color: var(--primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item__icon {
    width: 20px;
    height: 20px;
}

.contact-item__details {
    display: flex;
    flex-direction: column;
}

.contact-item__label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
}

.contact-item__link {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    transition: var(--transition);
}

.contact-item__link:hover {
    color: var(--primary);
}

.contact-item__text {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
}

.contact__map-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1.5px solid var(--border);
    box-shadow: var(--shadow);
    height: 380px;
}

.contact__map {
    width: 100%;
    height: 100%;
    border: none;
}

/* SOCIAL MEDIA SHOWCASE */
.socials {
    padding: 60px 24px;
    background-color: var(--bg-white);
    border-top: 1px solid var(--border);
    text-align: center;
}

.socials__container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.socials__tag {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 8px;
}

.socials__title {
    font-size: 24px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 32px;
}

.socials__grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid var(--border);
    background-color: var(--bg-white);
    padding: 16px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 14px;
    color: var(--dark);
    transition: var(--transition);
    min-width: 180px;
}

.social-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.social-btn__icon {
    width: 20px;
    height: 20px;
}

/* FOOTER styling */
.footer {
    background-color: var(--dark);
    color: #e5e7eb;
    padding: 80px 24px 0;
    border-top: 1px solid #2d3748;
}

.footer__container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
}

.footer__brand-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    font-size: 20px;
    color: var(--bg-white);
    margin-bottom: 20px;
}

.footer__logo-icon {
    width: 28px;
    height: 28px;
    color: var(--primary);
}

.footer__logo-text--highlight {
    color: var(--primary);
    font-weight: 400;
}

.footer__desc {
    font-size: 14px;
    color: #9ca3af;
    line-height: 1.6;
}

.footer__title {
    font-size: 15px;
    font-weight: 700;
    color: var(--bg-white);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__links a {
    font-size: 14px;
    color: #9ca3af;
    transition: var(--transition);
}

.footer__links a:hover {
    color: var(--bg-white);
    padding-left: 4px;
}

.footer__social-icons {
    display: flex;
    gap: 12px;
}

.footer__social-icons a {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    background-color: #2d3748;
    color: #9ca3af;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border: 1px solid transparent;
}

.footer__social-icons a:hover {
    color: var(--bg-white);
    background-color: var(--primary);
    border-color: var(--primary);
}

.footer__social-icons svg {
    width: 18px;
    height: 18px;
}

.footer__bottom {
    border-top: 1px solid #2d3748;
    padding: 30px 24px;
    text-align: center;
}

.footer__bottom-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__copyright {
    font-size: 13px;
    color: #9ca3af;
}

.footer__note {
    font-size: 11px;
    color: #6b7280;
    line-height: 1.5;
}

/* PRODUCT DETAIL MODAL */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    padding: 24px;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-card {
    background-color: var(--bg-white);
    width: 100%;
    max-width: 960px;
    max-height: calc(100vh - 48px);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--border);
    transform: scale(0.95) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
}

.modal-overlay.active .modal-card {
    transform: scale(1) translateY(0);
}

.modal-card__close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    background-color: var(--bg-white);
    border: 1px solid var(--border);
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
}

.modal-card__close-btn:hover {
    color: var(--primary);
    border-color: var(--primary);
    transform: rotate(90deg);
}

.modal-card__close-icon {
    width: 18px;
    height: 18px;
}

.modal-card__body {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    height: 100%;
    overflow: hidden;
}

.modal-card__gallery {
    background-color: var(--bg-gray);
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 16px;
    border-right: 1px solid var(--border);
    overflow-y: auto;
}

/* Gallery/Insurance Tabs */
.modal-gallery-tabs {
    display: flex;
    width: 100%;
    background-color: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 8px;
}

.gallery-tab-btn {
    flex: 1;
    padding: 10px 16px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text-muted);
    background-color: var(--bg-gray);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    outline: none;
}

.gallery-tab-btn:hover {
    color: var(--primary);
    background-color: var(--primary-light);
}

.gallery-tab-btn.active {
    color: var(--primary);
    background-color: var(--bg-white);
    font-weight: 700;
}

.gallery-tab-btn.active svg {
    stroke: var(--primary);
    fill: none;
}

.modal-card__main-img-container {
    width: 100%;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-card__main-img {
    max-height: 340px;
    object-fit: contain;
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.05));
    transition: transform 0.3s ease;
}

.modal-card__thumbnails {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.thumbnail-btn {
    width: 60px;
    height: 60px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    background-color: var(--bg-white);
    padding: 4px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.thumbnail-btn img {
    max-height: 100%;
    object-fit: contain;
}

.thumbnail-btn:hover {
    border-color: var(--text-muted);
}

.thumbnail-btn.active {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(232, 28, 36, 0.08);
}

.modal-card__details {
    padding: 40px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.modal-card__category {
    font-size: 11px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 6px;
}

.modal-card__title {
    font-size: 26px;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.modal-card__divider {
    width: 100%;
    height: 1px;
    background-color: var(--border);
    margin-bottom: 16px;
}

.modal-card__desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
}

.modal-card__section {
    width: 100%;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.modal-card__section-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.variant-swatches {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 6px;
}

.swatch-btn {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-full);
    border: 2px solid var(--bg-white);
    outline: 1.5px solid var(--border);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.swatch-btn:hover {
    outline-color: var(--dark);
}

.swatch-btn.active {
    outline-color: var(--primary);
    outline-width: 2px;
    transform: scale(1.05);
}

.variant-active-name {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 600;
}

/* Payment Switcher Slider styling */
.payment-toggle {
    display: flex;
    background: var(--bg-gray);
    border-radius: var(--radius-full);
    padding: 4px;
    position: relative;
    width: 100%;
    border: 1px solid var(--border);
}

.payment-toggle button {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px;
    font-weight: 700;
    font-size: 13px;
    color: var(--text-muted);
    cursor: pointer;
    z-index: 2;
    transition: var(--transition);
}

.payment-toggle button.active {
    color: var(--bg-white);
}

.payment-toggle .slider {
    position: absolute;
    width: calc(50% - 4px);
    height: calc(100% - 8px);
    top: 4px;
    left: 4px;
    background-color: var(--primary);
    border-radius: var(--radius-full);
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 1;
}

.payment-toggle.cicilan-active .slider {
    transform: translateX(100%);
}

.payment-panel {
    display: none;
    width: 100%;
    margin-bottom: 24px;
}

.payment-panel.active {
    display: block;
}

.price-box {
    width: 100%;
    background-color: var(--primary-light);
    border: 1px dashed rgba(232, 28, 36, 0.3);
    padding: 18px 24px;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 8px;
}

.price-box__label {
    font-size: 11px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.price-box__val {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
    margin-top: 4px;
}

.price-box__subtext {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 600;
    margin-top: 6px;
}

.payment-panel__note {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 10px;
}

.form-group {
    width: 100%;
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.form-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.select-wrapper {
    position: relative;
    width: 100%;
}

.select-wrapper::after {
    content: '';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid var(--text);
    pointer-events: none;
}

.select-input {
    width: 100%;
    background-color: var(--bg-white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    outline: none;
    appearance: none;
    cursor: pointer;
    transition: var(--transition);
}

.select-input:focus {
    border-color: var(--primary);
}

.tenor-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    width: 100%;
}

.tenor-btn {
    background-color: var(--bg-white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    padding: 10px 4px;
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.tenor-btn:hover {
    border-color: var(--dark);
}

.tenor-btn.active {
    background-color: var(--dark);
    border-color: var(--dark);
    color: var(--bg-white);
}

.modal-card__order-btn {
    width: 100%;
    margin-top: auto;
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 992px) {
    .hero__title {
        font-size: 38px;
    }
    .hero__desc {
        margin-bottom: 24px;
    }
    .benefits__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .testimonials__grid {
        grid-template-columns: 1fr;
    }
    .contact__container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .contact__map-wrapper {
        height: 320px;
    }
    .socials__grid {
        gap: 16px;
    }
    .footer__container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .footer__brand-col {
        grid-column: 1 / -1;
    }
    .modal-card__body {
        grid-template-columns: 1.2fr 1fr;
    }
    .modal-card__gallery {
        padding: 24px;
    }
    .modal-card__details {
        padding: 24px;
    }
}

@media (max-width: 768px) {
    .header__nav {
        position: fixed;
        top: 72px;
        left: 0;
        width: 100%;
        height: calc(100vh - 72px);
        background-color: var(--bg-white);
        padding: 40px 24px;
        transform: translateX(-100%);
        transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    }
    .header__nav.active {
        transform: translateX(0);
    }
    .header__nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }
    .header__nav-link {
        font-size: 18px;
    }
    .header__toggle {
        display: block;
    }
    .header__cta-btn {
        display: none;
    }
    .hero__container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .hero__content {
        align-items: center;
    }
    .hero__ctas {
        justify-content: center;
        width: 100%;
    }
    .hero__img {
        max-height: 280px;
    }
    .benefits__grid {
        grid-template-columns: 1fr;
    }
    .catalogue__controls {
        flex-direction: column;
        align-items: stretch;
    }
    .catalogue__search-box {
        width: 100%;
    }
    .tenor-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 32px;
    }
    .hero__desc {
        font-size: 14px;
    }
    .hero__ctas {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
    .hero__ctas .btn {
        width: 100%;
    }
    .socials__grid {
        gap: 12px;
    }
    .footer__container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .tenor-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .modal-overlay {
        padding: 8px;
    }
    .modal-card {
        max-height: calc(100vh - 16px);
    }
    .modal-card__gallery {
        padding: 16px;
    }
    .modal-card__details {
        padding: 16px;
    }
    .modal-card__main-img-container {
        height: 240px;
    }
    .modal-card__main-img {
        max-height: 220px;
    }
    .modal-card__title {
        font-size: 18px;
    }
    .price-box__val {
        font-size: 18px;
    }
    .payment-toggle button {
        padding: 8px;
        font-size: 12px;
    }
}

/* MODAL GALLERY TOGGLE BETWEEN IMAGES & INSURANCE */
.modal-gallery-images,
.modal-insurance-list {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-gallery-images.active,
.modal-insurance-list.active {
    display: block;
    opacity: 1;
}

/* INSURANCE LIST CARD IN GALLERY */
.modal-insurance-list {
    padding: 10px;
}

.back-to-gallery-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px 16px;
    background-color: var(--bg-white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 13.5px;
    font-weight: 700;
    color: var(--primary);
    cursor: pointer;
    margin-bottom: 16px;
    transition: var(--transition);
    gap: 8px;
    outline: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.back-to-gallery-btn:hover {
    background-color: var(--primary-light);
    border-color: rgba(232, 28, 36, 0.2);
    color: var(--primary);
}

.back-to-gallery-icon {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    transition: transform 0.2s ease;
}

.back-to-gallery-btn:hover .back-to-gallery-icon {
    transform: translateX(-4px);
}

.insurance-card {
    background-color: #ffffff;
    border: 2px solid #0d6efd;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(13, 110, 253, 0.05);
    overflow: hidden;
}

.insurance-card__header {
    background-color: #0d6efd;
    color: #ffffff;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.insurance-card__icon-badge {
    font-size: 32px;
    background-color: rgba(255, 255, 255, 0.2);
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
}

.insurance-card__title {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 4px;
    letter-spacing: 0.02em;
}

.insurance-card__subtitle {
    font-size: 12px;
    opacity: 0.9;
}

.insurance-card__body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.insurance-card__intro {
    font-size: 13.5px;
    color: var(--text);
    line-height: 1.6;
}

.insurance-card__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.insurance-card__item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.insurance-card__item-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    background-color: #e2f0fe;
    color: #0d6efd;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 800;
    margin-top: 2px;
}

.insurance-card__item-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.insurance-card__item-text strong {
    font-size: 14px;
    color: var(--dark);
    font-weight: 700;
}

.insurance-card__item-text span {
    font-size: 12.5px;
    color: var(--text-muted);
    line-height: 1.5;
}

.insurance-card__footer {
    border-top: 1px solid var(--border);
    padding-top: 16px;
    margin-top: 8px;
}

.insurance-card__note {
    font-size: 11px;
    color: var(--text-muted);
    font-style: italic;
}

/* TESTIMONIAL GALLERY STYLING - MERGED INTO MAIN TESTIMONIALS */

.badge-asuransi-card {
    display: inline-flex;
    align-items: center;
    background-color: #e2f0fe;
    color: #0d6efd;
    font-size: 9px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: var(--radius-sm);
    margin-left: 6px;
    vertical-align: middle;
    letter-spacing: 0.02em;
    border: 1.5px solid #0d6efd;
}
