/* ==========================================
   AaprilShop Gift — Cute Pink & White Theme
   ========================================== */

/* CSS Variables */
:root {
    --pink-50: #fdf2f8;
    --pink-100: #fce7f3;
    --pink-200: #fbcfe8;
    --pink-300: #f9a8d4;
    --pink-400: #f472b6;
    --pink-500: #ec4899;
    --pink-600: #db2777;
    --pink-700: #be185d;
    --white: #ffffff;
    --white-90: rgba(255, 255, 255, 0.9);
    --white-70: rgba(255, 255, 255, 0.7);
    --white-50: rgba(255, 255, 255, 0.5);
    --text-dark: #4a2040;
    --text-medium: #7c3a6b;
    --text-light: #a8658e;
    --shadow-pink: 0 4px 30px rgba(236, 72, 153, 0.15);
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 12px 40px rgba(236, 72, 153, 0.25);
    --gradient-pink: linear-gradient(135deg, #fce7f3 0%, #fbcfe8 50%, #f9a8d4 100%);
    --gradient-pink-vivid: linear-gradient(135deg, #f472b6 0%, #ec4899 50%, #db2777 100%);
    --gradient-pink-soft: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 100%);
    --border-radius: 20px;
    --border-radius-sm: 12px;
    --border-radius-lg: 28px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-main: 'Quicksand', sans-serif;
    --font-accent: 'Pacifico', cursive;
}

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* Hilangkan tap highlight biru di mobile */
    -webkit-tap-highlight-color: transparent !important;
    -webkit-touch-callout: none !important;
    outline: none;
}

/* Hilangkan highlight biru untuk semua elemen interactive */
a, button, input[type="button"], input[type="submit"], 
.nav-link, .nav-toggle, .btn-primary, .btn-secondary,
.product-card, .gallery-item, .step-card, .contact-card {
    -webkit-tap-highlight-color: transparent !important;
    -webkit-touch-callout: none !important;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Custom focus style (ganti outline biru dengan pink subtle) */
button:focus, a:focus {
    outline: none !important;
    box-shadow: 0 0 0 2px rgba(236, 72, 153, 0.2);
}

/* Hilangkan kotak focus untuk tombol hamburger */
.nav-toggle:focus,
.nav-toggle:active {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    background: var(--pink-50);
    overflow-x: hidden;
    line-height: 1.7;
    /* Hilangkan text selection biru yang mengganggu */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Aktifkan kembali selection untuk input dan textarea */
input, textarea {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================
   Floating Decorations
   ========================================== */
.floating-decorations {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.float-heart {
    position: absolute;
    top: -30px;
    font-size: 20px;
    opacity: 0.15;
    animation: floatDown 12s linear infinite;
    color: var(--pink-400);
}

@keyframes floatDown {
    0% {
        transform: translateY(-30px) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.15;
    }
    90% {
        opacity: 0.15;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

/* ==========================================
   Navigation
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(249, 168, 212, 0.2);
    transition: var(--transition);
    padding: 0;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 30px rgba(236, 72, 153, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--pink-200);
}

.logo-text {
    font-family: var(--font-accent);
    font-size: 1.4rem;
    color: var(--pink-600);
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 8px;
}

.nav-link {
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--text-medium);
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    background: var(--pink-100);
    color: var(--pink-600);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 24px;
    height: 2.5px;
    background: var(--pink-500);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ==========================================
   Hero Section
   ========================================== */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    max-height: 900px;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(253, 242, 248, 0.88) 0%,
        rgba(252, 231, 243, 0.75) 30%,
        rgba(251, 207, 232, 0.6) 60%,
        rgba(249, 168, 212, 0.5) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
    max-width: 700px;
    animation: fadeUp 0.8s ease-out;
}

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

.hero-badge {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--pink-600);
    margin-bottom: 20px;
    border: 1px solid rgba(249, 168, 212, 0.3);
    letter-spacing: 1px;
}

.hero-title {
    font-family: var(--font-accent);
    font-size: 3.5rem;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.5);
}

.hero-title span {
    color: var(--pink-500);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-medium);
    margin-bottom: 32px;
    font-weight: 500;
    line-height: 1.8;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    background: var(--gradient-pink-vivid);
    color: var(--white);
    border-radius: 50px;
    font-family: var(--font-main);
    font-size: 1rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(236, 72, 153, 0.35);
    text-decoration: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(236, 72, 153, 0.45);
}

.btn-icon {
    font-size: 1.2rem;
}

/* Hero Dots */
.hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--pink-400);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.hero-dot.active {
    background: var(--pink-500);
    transform: scale(1.2);
}

/* Hero Arrows */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(249, 168, 212, 0.3);
    color: var(--pink-600);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-arrow:hover {
    background: var(--pink-500);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.hero-arrow-left {
    left: 20px;
}

.hero-arrow-right {
    right: 20px;
}

/* ==========================================
   Marquee Bar
   ========================================== */
.marquee-bar {
    background: var(--gradient-pink-vivid);
    padding: 12px 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: inline-flex;
    animation: marquee 30s linear infinite;
    gap: 60px;
}

.marquee-content span {
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ==========================================
   Stats Section
   ========================================== */
.stats-section {
    padding: 60px 0;
    background: var(--white);
}

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

.stat-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: var(--border-radius);
    background: var(--gradient-pink-soft);
    border: 1px solid rgba(249, 168, 212, 0.15);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-pink);
}

.stat-icon {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--pink-600);
    line-height: 1.2;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 600;
    margin-top: 6px;
}

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

.section-badge {
    display: inline-block;
    padding: 6px 20px;
    background: var(--pink-100);
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--pink-600);
    margin-bottom: 14px;
    letter-spacing: 1px;
}

.section-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 14px;
    line-height: 1.3;
}

.section-title span {
    color: var(--pink-500);
    font-family: var(--font-accent);
    font-weight: 400;
}

.section-title.left-align {
    text-align: left;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 500;
}

/* ==========================================
   Products Section
   ========================================== */
.products-section {
    padding: 80px 0;
    background: var(--gradient-pink-soft);
    position: relative;
}

.products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, var(--white), transparent);
    pointer-events: none;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.product-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(249, 168, 212, 0.15);
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.product-ribbon {
    position: absolute;
    top: 16px;
    right: -8px;
    padding: 6px 20px 6px 14px;
    background: var(--gradient-pink-vivid);
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 700;
    z-index: 3;
    border-radius: 50px 0 0 50px;
    letter-spacing: 0.5px;
}

.product-ribbon.popular {
    background: linear-gradient(135deg, #f472b6, #a855f7);
}

.product-ribbon.premium {
    background: linear-gradient(135deg, #f59e0b, #f472b6);
}

.product-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.product-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(236, 72, 153, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    backdrop-filter: blur(4px);
}

.product-card:hover .product-hover-overlay {
    opacity: 1;
}

.product-hover-btn {
    padding: 14px 28px;
    background: var(--white);
    color: var(--pink-600);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
    transform: translateY(10px);
    text-decoration: none;
}

.product-card:hover .product-hover-btn {
    transform: translateY(0);
}

.product-hover-btn:hover {
    background: var(--pink-600);
    color: var(--white);
}

.product-info {
    padding: 24px;
}

.product-category {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--pink-500);
    margin-bottom: 8px;
}

.product-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.product-desc {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 14px;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}

.feature-tag {
    padding: 4px 12px;
    background: var(--pink-50);
    border: 1px solid var(--pink-100);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-medium);
}

.product-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid var(--pink-100);
}

.product-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--pink-600);
}

.btn-order {
    padding: 10px 22px;
    background: var(--gradient-pink-vivid);
    color: var(--white);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    transition: var(--transition);
    text-decoration: none;
}

.btn-order:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.4);
}

/* ==========================================
   How To Order Section
   ========================================== */
.how-to-section {
    padding: 80px 0;
    background: var(--white);
}

.steps-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 12px;
}

.step-card {
    flex: 1;
    max-width: 240px;
    text-align: center;
    padding: 30px 20px;
    border-radius: var(--border-radius);
    background: var(--gradient-pink-soft);
    border: 1px solid rgba(249, 168, 212, 0.15);
    transition: var(--transition);
    position: relative;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-pink);
}

.step-number {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    background: var(--gradient-pink-vivid);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

.step-icon {
    font-size: 2.4rem;
    margin-bottom: 14px;
    margin-top: 10px;
}

.step-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.step-desc {
    font-size: 0.82rem;
    color: var(--text-light);
    line-height: 1.6;
}

.step-connector {
    color: var(--pink-300);
    font-size: 1.5rem;
    font-weight: 700;
    align-self: center;
    margin-top: 20px;
}

/* ==========================================
   Gallery Section
   ========================================== */
.gallery-section {
    padding: 80px 0;
    background: var(--gradient-pink-soft);
}

.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 36px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-tab {
    padding: 8px 18px;
    border: 2px solid var(--pink-200);
    background: var(--white);
    border-radius: 50px;
    font-family: var(--font-main);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-medium);
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.gallery-tab:hover,
.gallery-tab.active {
    background: var(--gradient-pink-vivid);
    color: var(--white);
    border-color: var(--pink-500);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(244, 114, 182, 0.3);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-item.hidden {
    display: none;
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-hover);
}

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

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 16px 16px;
    background: linear-gradient(to top, rgba(74, 32, 64, 0.85), transparent);
    opacity: 0;
    transition: var(--transition);
    transform: translateY(10px);
}

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

.gallery-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--pink-300);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.gallery-desc {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
}

/* ==========================================
   Testimonials Section
   ========================================== */
.testimonials-section {
    padding: 80px 0;
    background: var(--white);
    overflow: hidden;
}

.testimonials-slider {
    overflow: hidden;
    border-radius: var(--border-radius);
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 24px;
    align-items: flex-start;
}

.testimonial-card {
    min-width: calc(100% - 0px);
    min-height: auto;
    padding: 32px;
    background: var(--gradient-pink-soft);
    border-radius: var(--border-radius);
    border: 1px solid rgba(249, 168, 212, 0.15);
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
}

.testimonial-stars {
    font-size: 1rem;
    margin-bottom: 12px;
    letter-spacing: 2px;
    flex-shrink: 0;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 18px;
    font-style: italic;
    position: relative;
    padding-left: 20px;
    border-left: 3px solid var(--pink-300);
    flex: 1;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
}

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

.testimonial-avatar {
    width: 48px;
    height: 48px;
    background: var(--pink-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.testimonial-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.testimonial-product {
    font-size: 0.8rem;
    color: var(--pink-500);
    font-weight: 600;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.testimonial-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid var(--pink-300);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.testimonial-dots button.active {
    background: var(--pink-500);
    border-color: var(--pink-500);
}

/* ==========================================
   About Section
   ========================================== */
.about-section {
    padding: 80px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-pink);
    width: 100%;
}

.about-image-deco {
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 3rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

.about-content .section-badge {
    display: inline-block;
}

.about-text {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 24px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: var(--white);
    border-radius: var(--border-radius-sm);
    border: 1px solid rgba(249, 168, 212, 0.15);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: var(--transition);
}

.highlight-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-soft);
}

.highlight-icon {
    font-size: 1.3rem;
}

/* ==========================================
   CTA Section
   ========================================== */
.cta-section {
    padding: 80px 0;
    background: var(--white);
}

.cta-card {
    background: var(--gradient-pink);
    border-radius: var(--border-radius-lg);
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-deco-left,
.cta-deco-right {
    position: absolute;
    font-size: 6rem;
    opacity: 0.1;
    color: var(--pink-600);
}

.cta-deco-left {
    top: -20px;
    left: -10px;
    transform: rotate(-15deg);
}

.cta-deco-right {
    bottom: -20px;
    right: -10px;
    transform: rotate(15deg);
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 14px;
}

.cta-desc {
    font-size: 1rem;
    color: var(--text-medium);
    max-width: 500px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    background: var(--gradient-pink-vivid);
    color: var(--white);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(236, 72, 153, 0.35);
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(236, 72, 153, 0.45);
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    background: var(--white);
    color: var(--pink-600);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
    border: 2px solid var(--pink-300);
}

.btn-cta-secondary:hover {
    background: var(--pink-50);
    transform: translateY(-3px);
    box-shadow: var(--shadow-soft);
}

.cta-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.cta-social-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
}

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

.social-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pink-500);
    transition: var(--transition);
    border: 1px solid rgba(249, 168, 212, 0.2);
}

.social-icon:hover {
    background: var(--pink-500);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
}

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

/* ==========================================
   Contact Section
   ========================================== */
.contact-section {
    padding: 80px 0;
    background: var(--gradient-pink-soft);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.contact-card {
    text-align: center;
    padding: 36px 24px;
    background: var(--white);
    border-radius: var(--border-radius);
    border: 1px solid rgba(249, 168, 212, 0.15);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-pink);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 14px;
}

.contact-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.contact-detail {
    font-size: 0.88rem;
    color: var(--text-light);
    margin-bottom: 14px;
    font-weight: 500;
}

.contact-link {
    font-size: 0.85rem;
    color: var(--pink-500);
    font-weight: 700;
    transition: var(--transition);
}

.contact-link:hover {
    color: var(--pink-700);
}

/* ==========================================
   Footer
   ========================================== */
.footer {
    background: var(--text-dark);
    padding: 60px 0 0;
    color: var(--white-70);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-logo {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
}

.footer-brand-name {
    font-family: var(--font-accent);
    font-size: 1.3rem;
    color: var(--pink-300);
}

.footer-tagline {
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--white-50);
}

.footer-heading {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 0.85rem;
    color: var(--white-50);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--pink-300);
    transform: translateX(4px);
    display: inline-block;
}

.footer-bottom {
    text-align: center;
    padding: 24px 0;
    font-size: 0.82rem;
    color: var(--white-50);
}

/* ==========================================
   WhatsApp Float
   ========================================== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: #25D366;
    color: var(--white);
    border-radius: 50px;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    animation: waFloat 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

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

.wa-float-label {
    font-size: 0.88rem;
    font-weight: 700;
}

/* ==========================================
   Back to Top
   ========================================== */
.back-to-top {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 999;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-pink-vivid);
    color: var(--white);
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(236, 72, 153, 0.45);
}

/* ==========================================
   Lightbox
   ========================================== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2.5rem;
    color: var(--white);
    background: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    transform: rotate(90deg);
    color: var(--pink-300);
}

.lightbox-image {
    max-width: 85%;
    max-height: 85vh;
    border-radius: var(--border-radius);
    object-fit: contain;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* ==========================================
   Animations for scroll reveal
   ========================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   Responsive Design
   ========================================== */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 50px;  /* 👈 Posisi awal saat tersembunyi */
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 20px;
        gap: 4px;
        transform: translateY(-120%);
        transition: var(--transition);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        border-bottom: 1px solid var(--pink-100);
        z-index: 1001;
    }
    
    .nav-menu.active {
        top: 69px;  /* 👈 Posisi saat menu turun/muncul (bisa kustom) */
        transform: translateY(0);
    }
    
    .nav-link {
        width: 100%;
        text-align: center;
        padding: 12px;
    }
    
    .hero {
        max-height: 700px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-arrow {
        display: none;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }
    
    .steps-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .step-connector {
        transform: rotate(90deg);
        margin: 0;
    }
    
    .step-card {
        max-width: 300px;
        width: 100%;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .testimonial-card {
        min-width: calc(100% - 0px);
        min-height: auto;
        padding: 24px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-content {
        text-align: center;
    }
    
    .about-content .section-badge {
        display: inline-block;
        margin-bottom: 12px;
    }
    
    .about-content .section-title {
        text-align: center;
    }
    
    .about-content .section-title.left-align {
        text-align: center;
    }
    
    .about-text {
        text-align: justify;
    }
    
    .about-highlights {
        grid-template-columns: 1fr;
        text-align: left;
    }
    
    .cta-card {
        padding: 40px 24px;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand {
        align-items: center;
    }
    
    .footer-links a:hover {
        transform: none;
    }
    
    .whatsapp-float {
        bottom: 16px;
        right: 16px;
        padding: 12px 18px;
    }
    
    .wa-float-label {
        display: none;
    }
    
    .whatsapp-float {
        width: 56px;
        height: 56px;
        border-radius: 50%;
        justify-content: center;
        padding: 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 6px 16px;
    }
    
    .btn-primary {
        padding: 14px 28px;
        font-size: 0.9rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .stat-card {
        padding: 20px 14px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .gallery-tabs {
        gap: 6px;
    }
    
    .gallery-tab {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-social {
        flex-direction: column;
        gap: 10px;
    }
}

/* Smooth scrolling for reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}
