/* ================================================
   ACB BOUQUET - Professional UI Stylesheet
   Warna dasar: Pink (#ff6f91, #e97b98, #d66b7e)
   Font: Google Fonts (Inter + Playfair Display)
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,600;0,700;1,600&display=swap');

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', Arial, sans-serif;
}

body {
    background: #fff;
    color: #333;
    overflow-x: hidden;
    line-height: 1.6;
}

/* ================================================
   NAVBAR — Sticky, glassmorphism, shadow on scroll
   ================================================ */
.navbar {
    width: 92%;
    margin: 18px auto;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 20px;
    padding: 14px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 24px rgba(255, 111, 145, 0.1), 0 1px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 182, 193, 0.3);
    position: sticky;
    top: 12px;
    z-index: 1000;
    transition: box-shadow 0.3s ease;
}

.navbar:hover {
    box-shadow: 0 8px 30px rgba(255, 111, 145, 0.18), 0 2px 8px rgba(0, 0, 0, 0.07);
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo-area img {
    width: 52px;
    height: 52px;
    object-fit: contain;
    background: linear-gradient(135deg, #ffd9e3, #ffb3c6);
    padding: 8px;
    border: 2px solid rgba(255, 138, 168, 0.4);
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(255, 111, 145, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-area img:hover {
    transform: scale(1.06) rotate(-3deg);
    box-shadow: 0 8px 20px rgba(255, 111, 145, 0.3);
}

.logo-area h2 {
    color: #d14f74;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.3px;
    line-height: 1.2;
}

.logo-area p {
    font-size: 11px;
    color: #aaa;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-weight: 500;
}

.nav-links {
    display: flex;
    gap: 6px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 10px;
    transition: all 0.25s ease;
    letter-spacing: 0.2px;
}

.nav-links a:hover {
    color: #d14f74;
    background: rgba(255, 111, 145, 0.08);
}

.wa-btn {
    background: linear-gradient(135deg, #ff6f91, #ff4f7c);
    color: white;
    padding: 10px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 14px rgba(255, 79, 124, 0.35);
    transition: all 0.3s ease;
    letter-spacing: 0.2px;
}

.wa-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(255, 79, 124, 0.45);
}

/* ================================================
   HERO SLIDER
   ================================================ */
.hero-slider-container {
    width: 92%;
    margin: 20px auto 40px;
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(255, 111, 145, 0.18), 0 4px 20px rgba(0, 0, 0, 0.08);
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 580px;
    background: #fff8f9;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    display: none;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    background-size: cover !important;
    background-position: center !important;
    display: flex;
    align-items: center;
    padding: 0 90px;
    box-sizing: border-box;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    display: flex;
    z-index: 5;
}

.slide::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 182, 193, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -150px;
    left: -150px;
    z-index: 1;
    pointer-events: none;
}

.hero-text {
    max-width: 560px;
    width: 100%;
    z-index: 2;
    padding-right: 20px;
}

.badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #ff6f91, #ff4f7c);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 4px 14px rgba(255, 79, 124, 0.35);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero-text h1 {
    font-size: 52px;
    line-height: 1.18;
    font-family: 'Playfair Display', Georgia, serif;
    color: #1a1a2e;
    margin-bottom: 18px;
    font-weight: 700;
}

.hero-text p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 32px;
    font-weight: 400;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: linear-gradient(135deg, #ff6f91, #ff4f7c);
    color: white;
    padding: 14px 28px;
    border-radius: 14px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(255, 79, 124, 0.38);
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(255, 79, 124, 0.48);
}

/* TOMBOL NAVIGASI SLIDER */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(255, 111, 145, 0.25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #ff6f91;
    font-size: 20px;
    font-weight: bold;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: #ff6f91;
    color: white;
    box-shadow: 0 6px 18px rgba(255, 111, 145, 0.45);
    transform: translateY(-50%) scale(1.08);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

/* DOTS */
.slider-dots {
    position: absolute;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 111, 145, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background: #ff6f91;
    width: 28px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(255, 111, 145, 0.5);
}

/* ANIMASI SLIDE */
.slide.active .hero-text .badge {
    animation: slideFadeInUp 0.5s ease forwards;
}

.slide.active .hero-text h1 {
    animation: slideFadeInUp 0.7s ease forwards;
}

.slide.active .hero-text p {
    animation: slideFadeInUp 0.9s ease forwards;
}

.slide.active .hero-text .hero-btn,
.slide.active .hero-text .hero-contact {
    animation: slideFadeInUp 1.1s ease forwards;
}

@keyframes slideFadeInUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* CONTACT MINI */
.hero-contact {
    margin-top: 22px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.contact-item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    padding: 10px 18px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 9px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.07);
    font-size: 13px;
    font-weight: 500;
    border: 1px solid rgba(255, 182, 193, 0.3);
    transition: all 0.25s ease;
}

.contact-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(255, 111, 145, 0.2);
}

.contact-item i {
    color: #ff6f91;
    font-size: 15px;
}

/* ================================================
   SECTION LABEL HELPER
   ================================================ */
.section-label {
    display: inline-block;
    background: linear-gradient(135deg, #ffd9e8, #ffb3c6);
    color: #c45a6d;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 16px;
    border-radius: 50px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
    border: 1px solid #f5c9cf;
}

/* ================================================
   VISI & MISI
   ================================================ */
.visi-misi {
    padding: 90px 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #fff 0%, #fff8fb 100%);
}

.visi-misi::before {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 182, 193, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    top: -120px;
    left: -120px;
    pointer-events: none;
}

.visi-misi::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(255, 111, 145, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -100px;
    right: -80px;
    pointer-events: none;
}

.visi-misi h2 {
    color: #d14f74;
    margin-bottom: 55px;
    font-size: 38px;
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.visi-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 35px;
    position: relative;
    z-index: 1;
}

.visi-card {
    width: 290px;
    background: white;
    padding: 38px 32px;
    border-radius: 24px;
    text-align: left;
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(255, 111, 145, 0.1), 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(255, 182, 193, 0.3);
    position: relative;
    overflow: hidden;
}

.visi-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6f91, #ff4f7c);
    border-radius: 24px 24px 0 0;
}

.visi-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 111, 145, 0.2), 0 4px 16px rgba(0, 0, 0, 0.06);
}

.visi-card h3 {
    color: #d14f74;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
    margin-top: 18px;
}

.visi-card p {
    color: #666;
    line-height: 1.75;
    font-size: 14px;
}

.icon-circle {
    width: 58px;
    height: 58px;
    background: linear-gradient(135deg, #ff6f91, #ff4f7c);
    color: white;
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    box-shadow: 0 6px 16px rgba(255, 79, 124, 0.35);
    transition: all 0.4s ease;
}

.visi-card:hover .icon-circle {
    transform: rotate(8deg) scale(1.08);
    box-shadow: 0 10px 24px rgba(255, 79, 124, 0.45);
}

.owner-img img {
    width: 320px;
    height: 320px;
    object-fit: cover;
    border-radius: 50%;
    border: 6px solid white;
    box-shadow: 0 12px 40px rgba(255, 111, 145, 0.25), 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.owner-img img:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 55px rgba(255, 111, 145, 0.35);
}

/* ================================================
   INFO SECTION
   ================================================ */
.info-section {
    padding: 70px 5%;
    text-align: center;
    background: white;
}

.info-section h2 {
    color: #d14f74;
    font-size: 36px;
    margin-bottom: 50px;
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.info-container {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.info-box {
    width: 270px;
    background: white;
    padding: 38px 28px;
    border-radius: 22px;
    border: 1px solid rgba(255, 182, 193, 0.3);
    box-shadow: 0 6px 24px rgba(255, 111, 145, 0.08), 0 2px 8px rgba(0, 0, 0, 0.03);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.info-box::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6f91, #ff4f7c);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.info-box:hover::after {
    transform: scaleX(1);
}

.info-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(255, 111, 145, 0.18), 0 4px 14px rgba(0, 0, 0, 0.06);
}

.info-box i {
    font-size: 38px;
    color: #ff6f91;
    margin-bottom: 18px;
    display: block;
    transition: transform 0.3s ease;
}

.info-box:hover i {
    transform: scale(1.12);
}

.info-box h3 {
    font-size: 15px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.5;
}

.info-box p {
    color: #888;
    font-size: 13px;
    line-height: 1.6;
}

.info-box span {
    display: inline-block;
    margin-top: 12px;
    font-size: 11px;
    font-weight: 700;
    color: #ff6f91;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: rgba(255, 111, 145, 0.08);
    padding: 4px 12px;
    border-radius: 50px;
}

/* ================================================
   PRODUCTS
   ================================================ */
.products {
    padding: 90px 5%;
    background: linear-gradient(180deg, #fff8fb 0%, #fff 100%);
}

.products h2 {
    text-align: center;
    color: #d14f74;
    font-size: 38px;
    margin-bottom: 55px;
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.product-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.product-card {
    background: white;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(255, 111, 145, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid rgba(255, 182, 193, 0.25);
}

.product-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6f91, #ff4f7c);
    z-index: 1;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

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

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 111, 145, 0.22), 0 6px 18px rgba(0, 0, 0, 0.07);
}

.product-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.product-content {
    padding: 22px 22px 26px;
}

.product-content h3 {
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
    letter-spacing: -0.2px;
}

.product-content p {
    color: #888;
    line-height: 1.65;
    margin-bottom: 20px;
    font-size: 13px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    /* Pastikan hanya sampai di sini */
    -webkit-box-orient: vertical;
    overflow: hidden;
    /* Tambahkan alternatif standar di bawah ini untuk menghilangkan warning */
    line-clamp: 3;
}

.order-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ff6f91, #ff4f7c);
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 79, 124, 0.3);
    letter-spacing: 0.2px;
}

.order-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 79, 124, 0.42);
}

/* ================================================
   WHY US
   ================================================ */
.why-us {
    padding: 90px 5%;
    text-align: center;
    background: white;
}

.why-us h2 {
    color: #d14f74;
    font-size: 38px;
    margin-bottom: 55px;
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.why-container {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.why-box {
    width: 220px;
    padding: 36px 22px;
    border-radius: 22px;
    background: white;
    border: 1px solid rgba(255, 182, 193, 0.3);
    box-shadow: 0 6px 22px rgba(255, 111, 145, 0.08);
    transition: all 0.35s ease;
}

.why-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(255, 111, 145, 0.18);
    border-color: rgba(255, 111, 145, 0.35);
}

.why-box i {
    font-size: 42px;
    color: #ff6f91;
    margin-bottom: 18px;
    display: block;
    transition: transform 0.3s ease;
}

.why-box:hover i {
    transform: scale(1.14) rotate(-5deg);
}

.why-box h3 {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
    letter-spacing: -0.2px;
}

.why-box p {
    color: #888;
    font-size: 13px;
    line-height: 1.65;
}

/* ================================================
   TESTIMONI
   ================================================ */
.testimoni-section {
    padding: 90px 5%;
    background: linear-gradient(180deg, #fff8fb 0%, #fff0f5 100%);
    position: relative;
    overflow: hidden;
}

.testimoni-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 182, 193, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    top: -200px;
    right: -200px;
    pointer-events: none;
}

.testimoni-title {
    text-align: center;
    margin-bottom: 55px;
    position: relative;
    z-index: 1;
}

.testimoni-title h2 {
    font-size: 38px;
    color: #d14f74;
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.testimoni-title p {
    color: #999;
    font-size: 15px;
    font-weight: 400;
}

.testimoni-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 26px;
    position: relative;
    z-index: 1;
}

.testimoni-card {
    background: white;
    border-radius: 22px;
    padding: 30px;
    box-shadow: 0 8px 28px rgba(255, 111, 145, 0.1), 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.35s ease;
    border: 1px solid rgba(255, 182, 193, 0.25);
    position: relative;
    overflow: hidden;
}

.testimoni-card::before {
    content: "\201C";
    position: absolute;
    top: -10px;
    right: 20px;
    font-size: 120px;
    color: rgba(255, 111, 145, 0.07);
    font-family: Georgia, serif;
    line-height: 1;
    pointer-events: none;
}

.testimoni-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(255, 111, 145, 0.18), 0 4px 14px rgba(0, 0, 0, 0.06);
}

.testimoni-user {
    margin-bottom: 16px;
}

.testimoni-user h3 {
    font-size: 17px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 6px;
    letter-spacing: -0.2px;
}

.testimoni-kategori {
    display: inline-block;
    background: linear-gradient(135deg, #ffd9e8, #ffb3c6);
    color: #c45a6d;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 6px;
    border: 1px solid #f5c9cf;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.testimoni-date {
    margin-top: 6px;
    font-size: 12px;
    color: #bbb;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.testimoni-rating {
    font-size: 18px;
    margin-bottom: 14px;
    letter-spacing: 2px;
}

.testimoni-text {
    color: #666;
    line-height: 1.75;
    font-style: italic;
    font-size: 14px;
    position: relative;
    padding-left: 14px;
    border-left: 3px solid rgba(255, 111, 145, 0.25);
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
    background: linear-gradient(135deg, #ff8aa8 0%, #ff6f91 60%, #ff4f7c 100%);
    color: white;
    padding: 65px 5% 45px;
    border-radius: 36px 36px 0 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    top: -200px;
    right: -150px;
    pointer-events: none;
}

.footer::after {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
    bottom: -100px;
    left: -80px;
    pointer-events: none;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.footer-box {
    width: 240px;
}

.footer-box h3 {
    margin-bottom: 18px;
    font-size: 16px;
    font-weight: 700;
    position: relative;
    width: fit-content;
    letter-spacing: 0.3px;
}

.footer-box h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    transition: 0.4s ease;
}

.footer-box:hover h3::after {
    width: 100%;
}

.footer-box p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    line-height: 1.75;
}

.footer-box a {
    display: block;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 14px;
    transition: all 0.3s ease;
    width: fit-content;
    letter-spacing: 0.2px;
}

.footer-box a:hover {
    transform: translateX(6px);
    color: white;
}

/* ================================================
   MOBILE RESPONSIVE
   ================================================ */
@media screen and (max-width: 1024px) {
    .hero-text h1 {
        font-size: 42px;
    }
}

@media screen and (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 16px;
        padding: 18px 20px;
        position: relative;
        top: 0;
        margin-bottom: 0;
    }

    .logo-area {
        flex-direction: row;
        justify-content: center;
    }

    .logo-area img {
        width: 46px;
        height: 46px;
    }

    .hero-slider-container {
        border-radius: 20px;
    }

    .hero-slider {
        height: auto;
        min-height: 520px;
    }

    .slide {
        padding: 50px 22px;
        text-align: center;
        justify-content: center;
    }

    .hero-text {
        width: 100% !important;
        max-width: 100% !important;
        padding-right: 0 !important;
    }

    .hero-text h1 {
        font-size: 34px;
        line-height: 1.25;
    }

    .hero-text p {
        font-size: 15px;
    }

    .hero-btn {
        width: 100%;
        justify-content: center;
    }

    .hero-contact {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .contact-item {
        width: 100%;
        justify-content: center;
    }

    .slider-btn {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }

    .prev-btn {
        left: 10px;
    }

    .next-btn {
        right: 10px;
    }

    .visi-container,
    .info-container,
    .why-container,
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .visi-card {
        width: 100%;
        max-width: 340px;
    }

    .info-box {
        width: 100%;
        max-width: 340px;
    }

    .why-box {
        width: 100%;
        max-width: 340px;
    }

    .footer-box {
        width: 100%;
        text-align: center;
    }

    .owner-img img {
        width: 220px;
        height: 220px;
    }

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

    .products h2,
    .why-us h2,
    .visi-misi h2,
    .info-section h2,
    .testimoni-title h2 {
        font-size: 28px;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 4px;
        width: 100%;
    }

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

    .nav-links a {
        display: block;
        width: 100%;
        text-align: center;
        padding: 10px;
    }

    .wa-btn {
        width: 100%;
        justify-content: center;
    }

    .logo-area h2 {
        font-size: 18px;
    }

    .logo-area p {
        font-size: 11px;
    }

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