/* ============================================================
   SAMOrchid — Premium Orchid Catalog
   Design System & Stylesheet
   Inspired by Bang & Olufsen Luxury Minimalism
   ============================================================ */

/* ----------------------------------------------------------
   1. DESIGN TOKENS (CSS Variables)
   ---------------------------------------------------------- */
   :root {
    --pink-flower: #F274AE;
    --pink-light: #FDE8F0;
    --pink-card: #F274AE;
    --pink-gradient: linear-gradient(135deg, #F987BA 0%, #F06199 45%, #DB4383 100%);
    --yellow-bg-top: #FAF4D4;
    --yellow-bg-bottom: #F5E0B8;
    --gradient-bg: linear-gradient(180deg, #FAF4D4 0%, #F5E5BE 50%, #F0DCA8 100%);
    --green-btn: #7CA832;
    --green-btn-gradient: linear-gradient(135deg, #8EC643 0%, #6E9628 100%);
    --green-natural: #7CA832;
    --green-dark: #587A1E;
    --text-dark: #1A261B;
    --text-muted: #5C6E4A;
    --text-on-pink: #FFFFFF;
    --footer-bg: linear-gradient(135deg, #8EC643 0%, #6E9628 100%);
    --white: #FFFFFF;
    --section-alt: rgba(250, 244, 212, 0.6);
}


/* ----------------------------------------------------------
   2. RESET & BASE
   ---------------------------------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--gradient-bg) !important;
    background-attachment: fixed !important;
    min-height: 100vh;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-base);
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
}


/* ----------------------------------------------------------
   3. TYPOGRAPHY
   ---------------------------------------------------------- */
h1,
h2 {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-weight: 300;
    color: var(--text-dark);
}

h1 {
    font-size: 64px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 52px;
    line-height: 1.15;
    letter-spacing: -0.015em;
}

h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
}

h1 strong {
    font-weight: 800;
}

h2 strong {
    font-weight: 800;
    display: block;
}

p {
    color: var(--text-muted);
    line-height: 1.8;
    font-weight: 400;
}

.section-tag {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--orange-pastel);
    font-weight: 800;
    margin-bottom: 20px;
    display: inline-block;
}


/* ----------------------------------------------------------
   4. LAYOUT
   ---------------------------------------------------------- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.section-padding {
    padding: 120px 0;
}


/* ----------------------------------------------------------
   5. HEADER & NAVIGATION
   ---------------------------------------------------------- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 5%;
    z-index: 2001;
    background: transparent;
    transition: all 0.5s var(--ease-luxury);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 28px;
    letter-spacing: 1px;
}

header.scrolled {
    background: rgba(253, 251, 240, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(26, 38, 27, 0.06);
    padding: 18px 5%;
}

/* Logo */
.logo {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--text-dark);
    text-transform: uppercase;
    z-index: 2002;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 45px;
    width: auto;
    vertical-align: middle;
}

/* Hamburger Menu Button */
.menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 2002;
    padding: 8px;
    position: relative;
}

.menu-btn span {
    display: block;
    width: 30px;
    height: 2px;
    background-color: var(--text-dark);
    transition: all 0.3s var(--ease-luxury);
    transform-origin: center;
}

.menu-btn.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-btn.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.menu-btn.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Header Spacer (for layout balance) */
.header-spacer {
    width: 46px;
}

/* ----------------------------------------------------------
   5.5 TOP NAVIGATION (Desktop)
   ---------------------------------------------------------- */
.nav-links {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 5px;
    transition: color 0.3s var(--ease-luxury);
}

.nav-links a:hover,
.nav-links a.active-link {
    color: var(--green-natural);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--pink-flower);
    transition: width 0.4s var(--ease-luxury);
}

.nav-links a:hover::after,
.nav-links a.active-link::after {
    width: 100%;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.mobile-only {
    display: none;
}

/* ----------------------------------------------------------
   5.6 MOBILE NAVIGATION (Dropdown)
   ---------------------------------------------------------- */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 38, 27, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s var(--ease-luxury),
                visibility 0.5s var(--ease-luxury);
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    background: var(--gradient-bg);
    background-attachment: fixed;
    z-index: 2000;
    box-shadow: var(--shadow-xl);
    display: flex;
    flex-direction: column;
    padding: 100px 5% 40px;
    transition: top 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-nav.active {
    top: 0;
}

.mobile-nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 28px;
    font-weight: 300;
    font-family: 'Cormorant Garamond', serif;
    padding: 15px 0;
    border-bottom: 1px solid rgba(26, 38, 27, 0.05);
    transform: translateY(-20px);
    opacity: 0;
    transition: color 0.3s ease,
                transform 0.4s var(--ease-luxury),
                opacity 0.4s var(--ease-luxury);
}

.mobile-nav.active a {
    transform: translateY(0);
    opacity: 1;
}

/* Staggered mobile nav animation */
.mobile-nav.active a:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav.active a:nth-child(2) { transition-delay: 0.15s; }
.mobile-nav.active a:nth-child(3) { transition-delay: 0.2s; }
.mobile-nav.active a:nth-child(4) { transition-delay: 0.25s; }
.mobile-nav.active a:nth-child(5) { transition-delay: 0.3s; }
.mobile-nav.active a:nth-child(6) { transition-delay: 0.35s; }

.mobile-nav a:hover,
.mobile-nav a.active-link {
    color: var(--pink-flower);
    padding-left: 10px;
}


/* ----------------------------------------------------------
   6. HERO SECTION
   ---------------------------------------------------------- */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5%;
    position: relative;
    overflow: hidden;
}

.hero-slider-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    height: 85%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.slider-wrapper {
    display: flex;
    height: 100%;
    transition: transform 1.2s cubic-bezier(0.77, 0, 0.175, 1);
}

.slide {
    min-width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.slide-1 {
    background-image:
        linear-gradient(
            180deg,
            rgba(26, 38, 27, 0.25) 0%,
            rgba(26, 38, 27, 0.55) 100%
        ),
        url("../images/hero beranda 1.png");
    background-size: cover;
    background-position: center;
}

.slide-2 {
    background-image:
        linear-gradient(
            180deg,
            rgba(26, 38, 27, 0.25) 0%,
            rgba(26, 38, 27, 0.55) 100%
        ),
        url("../images/hero beranda 2.png");
    background-size: cover;
    background-position: center;
}

.slide-3 {
    background-image:
        linear-gradient(
            180deg,
            rgba(26, 38, 27, 0.25) 0%,
            rgba(26, 38, 27, 0.55) 100%
        ),
        url("../images/hero beranda 3.png");
    background-size: cover;
    background-position: center;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    z-index: 2;
    position: relative;
}

.hero-content h1 {
    color: var(--cream-palette);
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
    margin-bottom: 20px;
}

.hero-content p {
    color: var(--cream-palette);
    font-size: 18px;
    font-weight: 600;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
    margin-bottom: 35px;
    opacity: 0.9;
}

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

.hero-slider-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(253, 251, 240, 0.4);
    border: none;
    cursor: pointer;
    transition: all 0.4s var(--ease-luxury);
}

.hero-slider-dots .dot.active {
    background: var(--cream-palette);
    transform: scale(1.3);
}


/* ----------------------------------------------------------
   7. FULL-BLEED SECTIONS
   ---------------------------------------------------------- */
.featured-section {
    height: 100vh;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    padding: 0 8%;
    position: relative;
}

.featured-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(26, 38, 27, 0.85) 0%,
        rgba(26, 38, 27, 0.3) 60%,
        transparent 100%
    );
}

.care-section {
    min-height: 100vh;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 8%;
    position: relative;
}

.care-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        270deg,
        rgba(26, 38, 27, 0.85) 0%,
        rgba(26, 38, 27, 0.3) 60%,
        transparent 100%
    );
}

.story-section {
    min-height: 100vh; /* Ubah dari height menjadi min-height agar bisa melar ke bawah */
    width: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    padding: 0 8%;
    position: relative;
}

.story-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(26, 38, 27, 0.85) 0%,
        rgba(26, 38, 27, 0.3) 60%,
        transparent 100%
    );
}

.featured-content,
.care-content,
.story-content {
    max-width: 580px;
    color: var(--cream-palette);
    position: relative;
    z-index: 2;
}

.featured-content h2,
.care-content h2,
.story-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 52px;
    font-weight: 300;
    color: var(--cream-palette);
    margin-bottom: 24px;
}

.featured-content p,
.care-content p,
.story-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #C3D0C4;
    margin-bottom: 35px;
}

.featured-content .section-tag,
.care-content .section-tag,
.story-content .section-tag {
    color: var(--orange-pastel);
}

/* CTA Section */
.cta-section {
    padding: 120px 5%;
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-natural) 100%);
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle at 30% 40%,
        rgba(245, 241, 228, 0.05) 0%,
        transparent 60%
    );
}

.cta-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
}

.cta-section h2 strong {
    font-weight: 700;
}

.cta-section p {
    font-size: 18px;
    color: rgba(245, 241, 228, 0.8);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}


/* ----------------------------------------------------------
   8. BUTTONS
   ---------------------------------------------------------- */

/* Discover Button — Hero / Full-bleed overlay */
.btn-discover {
    display: inline-block;
    padding: 16px 45px;
    border: 1px solid var(--cream-palette);
    color: var(--cream-palette);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    font-weight: 800;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    text-decoration: none;
    transition: all var(--transition-base);
    cursor: pointer;
}

.btn-discover:hover {
    background: var(--green-natural);
    border-color: var(--green-natural);
    color: var(--text-dark);
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(154, 179, 78, 0.35);
}

/* Editorial Button — Inline link-style */
.btn-editorial {
    color: var(--white);
    text-decoration: none;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 800;
    padding-bottom: 6px;
    border-bottom: 2px solid rgba(245, 241, 228, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: all var(--transition-base);
}

.btn-editorial:hover {
    border-bottom-color: var(--pink-flower);
    color: var(--pink-flower);
}

.btn-editorial .arrow {
    display: inline-block;
    transition: transform 0.4s var(--ease-luxury);
}

.btn-editorial:hover .arrow {
    transform: translateX(8px);
}

/* Primary Button */
.btn-primary {
    display: inline-block;
    padding: 14px 40px;
    background: var(--green-natural);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: all var(--transition-base);
}

.btn-primary:hover {
    background: var(--green-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(154, 179, 78, 0.3);
}

/* Outline Button */
.btn-outline {
    display: inline-block;
    padding: 14px 40px;
    background: transparent;
    color: var(--green-natural);
    border: 2px solid var(--green-natural);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: all var(--transition-base);
}

.btn-outline:hover {
    background: var(--green-natural);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(154, 179, 78, 0.3);
}

/* WhatsApp Button */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 40px;
    background: #25D366;
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: all var(--transition-base);
}

.btn-whatsapp::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.btn-whatsapp:hover {
    background: #1da851;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

/* Filter Button */
.btn-filter {
    padding: 10px 28px;
    border: 2px solid #ddd;
    background: transparent;
    color: var(--text-muted);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
    font-family: inherit;
}

.btn-filter:hover {
    border-color: var(--green-natural);
    color: var(--green-natural);
}

.btn-filter.active {
    background: var(--green-natural);
    color: var(--white);
    border-color: var(--green-natural);
}


/* ----------------------------------------------------------
   9. PRODUCT CARDS
   ---------------------------------------------------------- */
.product-card {
    background-color: var(--white);
    padding: 20px;
    text-align: center;
    border: 1px solid rgba(26, 38, 27, 0.05);
    transition: transform 0.4s var(--ease-luxury), 
                box-shadow 0.4s var(--ease-luxury),
                border-color 0.4s var(--ease-luxury);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(200, 114, 154, 0.2); /* var(--pink-flower) at 20% */
}

.product-card .card-image {
    overflow: hidden;
    height: 280px;
    position: relative;
}

.product-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-luxury);
}

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

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

.card-category {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--green-natural);
    font-weight: 700;
    margin-bottom: 8px;
    display: inline-block;
}

.product-card .card-body h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.product-card .card-body p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.card-price {
    font-size: 20px;
    font-weight: 800;
    color: var(--pink-flower);
    margin-bottom: 16px;
}

.card-actions {
    display: flex;
    gap: 10px;
    margin-top: auto; /* dorong tombol ke paling bawah kartu */
    justify-content: center; /* tombol rata tengah di dalam kartu */
}


/* ----------------------------------------------------------
   10. NEWS CARDS
   ---------------------------------------------------------- */
.news-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.5s var(--ease-luxury),
                box-shadow 0.5s var(--ease-luxury);
}

.news-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.news-card .card-image {
    height: 220px;
    overflow: hidden;
}

.news-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-luxury);
}

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

.news-card .card-body {
    padding: 24px;
}

.news-card .card-date {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 10px;
}

.news-card .card-body h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.news-card .card-body p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.read-more {
    color: var(--green-natural);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    margin-top: 15px;
    display: inline-block;
    transition: transform 0.3s var(--ease-luxury),
                color 0.3s ease;
}

.read-more:hover {
    transform: translateX(5px);
    color: var(--green-dark);
}


/* ----------------------------------------------------------
   11. CATEGORY CARDS
   ---------------------------------------------------------- */
.category-card {
    background: var(--white);
    border-radius: 20px;
    padding: 50px 30px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform 0.5s var(--ease-luxury),
                box-shadow 0.5s var(--ease-luxury);
}

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

.category-card .card-icon {
    font-size: 60px;
    margin-bottom: 20px;
    display: block;
}

.category-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.category-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

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


/* ----------------------------------------------------------
   12. VALUE CARDS
   ---------------------------------------------------------- */
.value-card {
    text-align: center;
    padding: 40px 30px;
}

.value-card .value-icon {
    width: 80px;
    height: 80px;
    background: var(--pink-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    transition: transform 0.4s var(--ease-luxury);
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
}

.value-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}


/* ----------------------------------------------------------
   13. JOURNAL CARDS
   ---------------------------------------------------------- */
.journal-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: flex;
    transition: transform 0.5s var(--ease-luxury),
                box-shadow 0.5s var(--ease-luxury);
}

.journal-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.journal-card .card-image {
    width: 40%;
    min-height: 250px;
    overflow: hidden;
}

.journal-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-luxury);
}

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

.journal-card .card-body {
    width: 60%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.journal-card .card-body h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.journal-card .card-body p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}


/* ----------------------------------------------------------
   14. PAGE HEADERS
   ---------------------------------------------------------- */
.page-hero {
    height: 50vh;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(26, 38, 27, 0.4) 0%,
        rgba(26, 38, 27, 0.7) 100%
    );
}

.page-hero-content {
    position: relative;
    z-index: 2;
    color: var(--cream-palette);
}

.page-hero-content h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 56px;
    font-weight: 300;
    color: var(--cream-palette);
    margin-bottom: 15px;
}

.page-hero-content h1 strong {
    font-weight: 700;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    margin-top: 15px;
    align-items: center;
}

.breadcrumb a {
    color: rgba(245, 241, 228, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--white);
}

.breadcrumb span {
    color: rgba(245, 241, 228, 0.4);
}

.breadcrumb .current {
    color: rgba(245, 241, 228, 0.9);
}


/* ----------------------------------------------------------
   15. CATALOG SECTION
   ---------------------------------------------------------- */
.catalog-section {
    padding: 120px 0;
}

.filter-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 60px;
}

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

.product-card.hidden {
    display: none;
}

.product-card.show {
    animation: fadeInUp 0.5s var(--ease-luxury) forwards;
}

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


/* ----------------------------------------------------------
   16. ABOUT SECTIONS
   ---------------------------------------------------------- */
.about-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-story-image {
    border-radius: 20px;
    overflow: hidden;
    height: 500px;
    box-shadow: var(--shadow-md);
}

.about-story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-story-content h2 {
    margin-bottom: 20px;
}

.about-story-content p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-story-content .section-tag {
    margin-bottom: 15px;
}

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

/* Greenhouse Section */
.greenhouse-section {
    padding: 120px 0;
    position: relative;
    height: 70vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
}

.greenhouse-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(26, 38, 27, 0.85) 0%,
        rgba(26, 38, 27, 0.3) 60%,
        transparent 100%
    );
}

.greenhouse-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    color: var(--cream-palette);
    padding: 0 8%;
}

.greenhouse-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 300;
    color: var(--cream-palette);
    margin-bottom: 20px;
}

.greenhouse-content p {
    font-size: 16px;
    color: #C3D0C4;
    line-height: 1.7;
    margin-bottom: 30px;
}


/* ----------------------------------------------------------
   17. JOURNAL & ACCORDION
   ---------------------------------------------------------- */
.journal-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 0;
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-header {
    width: 100%;
    padding: 24px 0;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
    font-family: 'Plus Jakarta Sans', sans-serif;
    transition: color 0.3s ease;
}

.accordion-header:hover {
    color: var(--green-natural);
}

.accordion-header .icon {
    transition: transform 0.3s var(--ease-luxury);
    font-size: 20px;
    font-weight: 300;
    flex-shrink: 0;
    margin-left: 20px;
}

.accordion-header.active .icon {
    transform: rotate(45deg);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.accordion-body.open {
    max-height: 500px;
}

.accordion-body-inner {
    padding: 0 0 24px 0;
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 15px;
}


/* ----------------------------------------------------------
   18. NEWS SECTION
   ---------------------------------------------------------- */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.featured-news {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-bottom: 80px;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.featured-news .news-image {
    height: 100%;
    min-height: 400px;
    overflow: hidden;
}

.featured-news .news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-luxury);
}

.featured-news:hover .news-image img {
    transform: scale(1.04);
}

.featured-news .news-body {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-news .news-body .card-date {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 15px;
}

.featured-news .news-body h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.featured-news .news-body p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 25px;
}


/* ----------------------------------------------------------
   19. CONTACT SECTION
   ---------------------------------------------------------- */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
}

.contact-form {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.contact-form h3 {
    font-size: 28px;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    color: var(--text-dark);
    background: var(--white);
    transition: border-color 0.3s ease,
                box-shadow 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--green-natural);
    box-shadow: 0 0 0 4px rgba(154, 179, 78, 0.1);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Contact Info */
.contact-info {
    padding: 0;
}

.contact-info h3 {
    font-size: 28px;
    margin-bottom: 30px;
}

.info-card {
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 20px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: transform 0.3s var(--ease-luxury),
                box-shadow 0.3s var(--ease-luxury);
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.info-card .info-icon {
    width: 50px;
    height: 50px;
    background: var(--pink-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.info-card h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.info-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}


/* ----------------------------------------------------------
   20. FOOTER
   ---------------------------------------------------------- */
footer {
    background: var(--footer-bg);
    color: var(--cream-palette);
    padding: 80px 5% 40px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--orange-pastel);
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #A4B5A5;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 15px;
}

.footer-col ul li a:hover {
    color: var(--pink-flower);
}

.footer-col p {
    color: #A4B5A5;
    line-height: 1.6;
    font-size: 15px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(245, 241, 228, 0.1);
    color: #A4B5A5;
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(245, 241, 228, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cream-palette);
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s var(--ease-luxury);
}

.social-links a:hover {
    background: var(--pink-flower);
    transform: translateY(-3px);
}


/* ----------------------------------------------------------
   21. SCROLL REVEAL ANIMATIONS
   ---------------------------------------------------------- */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
                transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Staggered Animation Delays */
.delay-tag {
    transition-delay: 0.1s;
}

.delay-title {
    transition-delay: 0.25s;
}

.delay-desc {
    transition-delay: 0.4s;
}

.delay-btn {
    transition-delay: 0.55s;
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }


/* ----------------------------------------------------------
   22. UTILITY CLASSES
   ---------------------------------------------------------- */
.text-center {
    text-align: center;
}

.mb-60 {
    margin-bottom: 60px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-20 {
    margin-bottom: 20px;
}


/* ----------------------------------------------------------
   23. RESPONSIVE — 1024px
   ---------------------------------------------------------- */
@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .about-story {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-story-image {
        height: 350px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 48px;
    }

    .featured-content h2,
    .care-content h2,
    .story-content h2 {
        font-size: 40px;
    }

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

    .featured-news {
        grid-template-columns: 1fr;
    }

    .featured-news .news-image {
        min-height: 300px;
    }

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

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

    h1 {
        font-size: 48px;
    }

    h2 {
        font-size: 42px;
    }
}


/* ----------------------------------------------------------
   24. RESPONSIVE — 768px
   ---------------------------------------------------------- */
@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

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

    .hero-slider-container {
        width: 95%;
        height: 90%;
        border-radius: 12px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

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

    .side-menu {
        width: 100%;
        padding: 80px 40px;
    }

    .section-padding {
        padding: 80px 0;
    }

    .page-hero {
        height: 40vh;
        min-height: 300px;
    }

    .page-hero-content h1 {
        font-size: 40px;
    }

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

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

    /* Full-bleed sections */
    .featured-section,
    .care-section,
    .story-section {
        height: auto;
        min-height: 80vh;
        padding: 80px 5%;
        background-attachment: scroll;
    }

    .featured-content h2,
    .care-content h2,
    .story-content h2 {
        font-size: 36px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 30px;
    }

    .greenhouse-section {
        height: auto;
        min-height: 60vh;
        background-attachment: scroll;
    }

    .cta-section h2 {
        font-size: 36px;
    }

    .cta-section p {
        font-size: 16px;
    }

    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 34px;
    }

    .journal-card {
        flex-direction: column;
    }

    .journal-card .card-image {
        width: 100%;
        min-height: 200px;
    }

    .journal-card .card-body {
        width: 100%;
    }

    .footer-container {
        flex-direction: column;
    }

    .footer-col {
        min-width: 100%;
    }

    .filter-tabs {
        gap: 8px;
    }

    .btn-filter {
        padding: 8px 20px;
        font-size: 12px;
    }

    .btn-discover {
        padding: 14px 35px;
        font-size: 12px;
    }

    .btn-primary,
    .btn-outline,
    .btn-whatsapp {
        padding: 12px 30px;
        font-size: 13px;
    }
}


/* ----------------------------------------------------------
   25. RESPONSIVE — 480px
   ---------------------------------------------------------- */
@media (max-width: 480px) {
    header {
        padding: 20px 5%;
    }

    header.scrolled {
        padding: 14px 5%;
    }

    .logo {
        font-size: 18px;
    }

    .header-content {
        height: 70px;
    }
    
    .logo-text {
        font-size: 20px;
    }

    .nav-links {
        display: none; /* Hide desktop nav */
    }

    .mobile-only {
        display: block; /* Show hamburger */
    }
    
    .menu-btn {
        display: block;
    }

    .logo-img {
        height: 35px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .page-hero-content h1 {
        font-size: 32px;
    }

    .side-menu {
        padding: 70px 30px;
    }

    .side-menu ul li a {
        font-size: 28px;
    }

    .featured-content h2,
    .care-content h2,
    .story-content h2 {
        font-size: 30px;
    }

    .cta-section h2 {
        font-size: 30px;
    }

    .contact-form {
        padding: 25px;
    }

    .featured-news .news-body {
        padding: 30px;
    }

    .featured-news .news-body h2 {
        font-size: 28px;
    }

   /* REVISI: Menurunkan Gambar Hero agar tidak menabrak header */
.hero-slider-container {
    top: 58% !important;       /* Awalnya 50%, kita turunkan menjadi 58% */
    height: 75% !important;    /* Menyesuaikan tinggi agar tetap proporsional */
}

/* Memastikan Header sejajar dan tulisan persis di tengah */
#mainHeader {
    padding: 25px 4% !important; 
    background: transparent !important;
    box-shadow: none !important;
}

.logo-text {
    /* removed absolute positioning to let flexbox center it naturally */
    position: relative !important;
    left: auto !important;
    transform: none !important;
}

}

/* Pengaturan Khusus Tampilan Layar HP */
@media (max-width: 768px) {
    .story-section {
        background-attachment: scroll !important; /* Mematikan efek fixed agar background tidak error di HP */
        padding: 80px 5%; /* Menambah jarak atas-bawah agar konten tidak mentok */
        background-position: right center !important; /* Menggeser gambar sedikit agar fokusnya pas */
    }

    .story-content {
        width: 100%; /* Memastikan teks menyesuaikan layar */
    }

    .story-content h2 {
        font-size: 28px; /* Sedikit mengecilkan judul */
    }

    .story-content p {
        font-size: 15px; /* Sedikit mengecilkan paragraf */
        line-height: 1.6;
    }
}

/* Pengaturan Khusus Tampilan Layar HP */
@media (max-width: 768px) {
    .care-section {
        background-attachment: scroll !important; /* Mematikan efek parallax yang bikin error di HP */
        padding: 80px 5%; /* Menambah ruang atas-bawah agar lega */
        justify-content: center; /* Menarik blok teks ke tengah di layar HP */
    }
    
    .care-content {
        width: 100%;
        text-align: center; /* Membuat teksnya rata tengah agar lebih cantik di HP */
    }

    .care-content h2 {
        font-size: 28px; /* Mengecilkan judul */
    }

    .care-content p {
        font-size: 15px; /* Mengecilkan paragraf */
        line-height: 1.6;
    }
}

/* Pengaturan Khusus Tampilan Layar HP */
@media (max-width: 768px) {
    
    /* 1. Mengubah Wadah Grid menjadi Horizontal Scroll */
    .categories-grid {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important; /* Memaksa kartu berjejer ke samping, bukan ke bawah */
        overflow-x: auto !important; /* Mengaktifkan fitur geser (swipe) */
        scroll-snap-type: x mandatory; /* Menambahkan efek magnet/terkunci saat digeser */
        gap: 15px; /* Jarak antar kartu */
        padding-bottom: 20px;
        
        /* Menyembunyikan garis scrollbar agar bersih seperti aplikasi */
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    /* Menyembunyikan garis scrollbar khusus untuk Chrome/Safari */
    .categories-grid::-webkit-scrollbar {
        display: none;
    }

    /* 2. Mengatur Ukuran Masing-masing Kartu */
    .category-card {
        flex: 0 0 85% !important; /* Lebar kartu 85% agar kartu sebelahnya sedikit terlihat */
        scroll-snap-align: center; /* Memastikan kartu berhenti tepat di tengah layar */
    }


.category-section, .news-section { background-color: var(--section-alt); }


/* ----------------------------------------------------------
   UPDATES FOR MOBILE MENU TEXT AND NEWS SLIDER
   ---------------------------------------------------------- */

@media (max-width: 1024px) {
    .menu-btn {
        background: none;
        border: none;
        cursor: pointer;
        z-index: 2002;
        padding: 8px;
        position: relative;
        font-family: 'Plus Jakarta Sans', sans-serif;
    }
    .menu-btn span {
        display: none !important; /* Hide hamburger lines */
    }
    .menu-btn::after {
        content: 'MENU';
        font-weight: 800;
        color: var(--text-dark);
        letter-spacing: 1px;
        font-size: 14px;
    }
    .menu-btn.active::after {
        content: 'CLOSE';
    }
}

@media (max-width: 768px) {
    /* Make News section a horizontal slider like Categories */
    .news-grid {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory;
        gap: 15px;
        padding-bottom: 20px;
        -ms-overflow-style: none;
        scrollbar-width: none; /* Firefox */
    }
    .news-grid::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
    }
    .news-card {
        flex: 0 0 85% !important;
        scroll-snap-align: center;
        min-width: 85%;
    }
}
}
/* FOOTER OVERRIDES — Dark green bg with light text */
footer {
    color: #F5EFCC !important;
    background-color: var(--footer-bg) !important;
}
footer h3 {
    color: #FDFBE7 !important;
}
footer p, footer li a, footer .contact-info p {
    color: rgba(253, 251, 231, 0.85) !important;
}
footer li a:hover {
    color: var(--pink-flower) !important;
}
footer .social-icons a {
    color: #FDFBE7 !important;
    border-color: rgba(253, 251, 231, 0.3) !important;
}
footer .social-icons a:hover {
    background-color: var(--pink-flower) !important;
    color: #fff !important;
    border-color: var(--pink-flower) !important;
}
.footer-bottom {
    border-top: 1px solid rgba(253, 251, 231, 0.15) !important;
    color: rgba(253, 251, 231, 0.6) !important;
}

/* =============================================================
   MOBILE: Koleksi & Berita di Beranda — tampilkan sebagai grid
   biasa (bukan slider tersembunyi) agar pengunjung tidak bingung
   ============================================================= */
@media (max-width: 768px) {
    /* Hilangkan horizontal scroll pada grid koleksi di beranda */
    .categories-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        overflow-x: visible !important;
        scroll-snap-type: none !important;
        flex-wrap: unset !important;
        flex-direction: unset !important;
        gap: 20px !important;
    }

    /* Hilangkan horizontal scroll pada grid berita di beranda */
    .news-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        overflow-x: visible !important;
        scroll-snap-type: none !important;
        flex-wrap: unset !important;
        flex-direction: unset !important;
        gap: 24px !important;
    }

    /* Reset snap anak-anak elemen */
    .categories-grid > *, .news-grid > * {
        scroll-snap-align: none !important;
        flex: unset !important;
        min-width: unset !important;
        width: 100% !important;
    }

    .news-card {
        flex: unset !important;
        min-width: unset !important;
        width: 100% !important;
    }
}

/* BTN OVERRIDES — Pink gradient buttons */
.btn-whatsapp {
    background: var(--pink-gradient) !important;
    color: #fff !important;
    border: none !important;
}
.btn-whatsapp:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}
.btn-outline {
    border-color: var(--pink-flower) !important;
    color: var(--pink-flower) !important;
}
.btn-outline:hover {
    background: var(--pink-gradient) !important;
    color: #fff !important;
    border-color: transparent !important;
}
.btn-editorial {
    color: var(--pink-flower) !important;
    border-bottom-color: var(--pink-flower) !important;
}
.btn-editorial:hover {
    color: #D65F8A !important;
}

/* Section tag pink */
.section-tag {
    color: var(--pink-flower) !important;
}

/* Active nav link pink */
.nav-links a.active-link {
    color: var(--pink-flower) !important;
}

/* Logo text replaced with image */
.logo-text-img {
    height: 28px;
    display: block;
}
@media (max-width: 768px) {
    .logo-text-img {
        height: 22px;
    }
}

/* Jurnal & Visi — Clean layout without full-bleed photos */
.care-section-new {
    padding: 80px 0;
    background: var(--section-alt);
}
.care-section-new .section-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 60px;
}
.care-section-new .section-text {
    flex: 1;
}
.care-section-new .section-image {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.care-section-new .section-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-section-new {
    padding: 80px 0;
    background: var(--pink-light);
}
.story-section-new .section-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 60px;
}
.story-section-new .section-text {
    flex: 1;
}
.story-section-new .section-logo {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.story-section-new .section-logo img {
    max-width: 300px;
    height: auto;
}

@media (max-width: 768px) {
    .care-section-new .section-inner,
    .story-section-new .section-inner {
        flex-direction: column;
        gap: 30px;
    }
    .story-section-new .section-logo img {
        max-width: 200px;
    }
}


/* =============================================================
   LINKTREE THEME REVAMP (PINK HEADER, PINK FOOTER, PINK CARDS)
   ============================================================= */

/* 1. HEADER (PINK) */
header {
    background: var(--pink-gradient) !important;
    box-shadow: 0 4px 20px rgba(242, 116, 174, 0.25) !important;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2) !important;
}
header.scrolled {
    background: rgba(242, 116, 174, 0.96) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 6px 25px rgba(224, 86, 148, 0.3) !important;
}
.nav-links a {
    color: #FFFFFF !important;
    font-weight: 700 !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
.nav-links a:hover,
.nav-links a.active-link {
    color: #FAF4D4 !important;
}
.nav-links a::after {
    background-color: #FAF4D4 !important;
}
.logo-link {
    background: #FFFFFF;
    padding: 6px 14px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.logo-img-link {
    background: #FFFFFF;
    padding: 5px 8px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.logo-img {
    height: 38px !important;
}
.logo-text-img {
    height: 22px !important;
}

/* Mobile Menu Button */
.menu-btn::after {
    color: #FFFFFF !important;
    font-weight: 800;
}
.mobile-nav {
    background: var(--pink-gradient) !important;
}
.mobile-nav a {
    color: #FFFFFF !important;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}
.mobile-nav a.active-link {
    color: #FAF4D4 !important;
    font-weight: 800;
}

/* 3. CARDS (PINK BACKGROUND WITH WHITE TEXT) */
.category-card,
.product-card,
.news-card,
.journal-card,
.team-card,
.value-card,
.tech-feature-card {
    background: var(--pink-gradient) !important;
    color: #FFFFFF !important;
    border-radius: 20px !important;
    box-shadow: 0 12px 30px rgba(242, 116, 174, 0.28) !important;
    border: 2px solid rgba(255, 255, 255, 0.4) !important;
    transition: transform 0.4s var(--ease-luxury), box-shadow 0.4s var(--ease-luxury) !important;
}
.category-card:hover,
.product-card:hover,
.news-card:hover,
.journal-card:hover,
.value-card:hover,
.tech-feature-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 18px 40px rgba(242, 116, 174, 0.4) !important;
}

/* Card typography (white) */
.category-card h3,
.product-card .card-body h3,
.news-card .card-body h3,
.journal-card .card-body h3,
.team-card h4,
.value-card h3,
.tech-feature-card h3 {
    color: #FFFFFF !important;
    font-weight: 700 !important;
}
.category-card p,
.product-card .card-body p,
.news-card .card-body p,
.journal-card .card-body p,
.team-card p,
.value-card p,
.tech-feature-card p {
    color: #FFFFFF !important;
    opacity: 0.95 !important;
}
.card-category,
.news-date,
.news-card .card-date,
.journal-date,
.team-card span {
    color: #FAF4D4 !important;
    font-weight: 700 !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}
.card-price {
    color: #FFFFFF !important;
    font-weight: 800 !important;
    font-size: 22px !important;
    text-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

/* 4. BUTTONS (GREEN BUTTONS WITH WHITE TEXT) */
.btn-whatsapp,
.btn-primary,
.btn-outline,
.btn-editorial,
.card-actions a,
.read-more {
    background: var(--green-btn-gradient) !important;
    color: #FFFFFF !important;
    border: none !important;
    font-weight: 700 !important;
    border-radius: 50px !important;
    padding: 12px 32px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    box-shadow: 0 6px 20px rgba(110, 150, 40, 0.35) !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
}
.btn-whatsapp:hover,
.btn-primary:hover,
.btn-outline:hover,
.btn-editorial:hover,
.card-actions a:hover,
.read-more:hover {
    transform: translateY(-2px) !important;
    filter: brightness(1.08) !important;
    box-shadow: 0 10px 25px rgba(110, 150, 40, 0.45) !important;
    color: #FFFFFF !important;
}

/* Section Tag and Titles */
.section-tag {
    color: #D65F8A !important;
    font-weight: 800 !important;
    letter-spacing: 2px !important;
}
.section-title, h1, h2 {
    color: var(--text-dark) !important;
}
.section-title strong, h1 strong, h2 strong {
    color: #E05694 !important;
}

/* Sections - Unified Yellow-Cream Background (No Pink Blocks) */
.section-padding,
.care-section-new,
.story-section-new,
.category-section,
.news-section {
    background: transparent !important;
}
.care-section-new .section-inner,
.story-section-new .section-inner {
    background: var(--pink-gradient);
    color: #FFFFFF !important;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(242, 116, 174, 0.28);
    border: 2px solid rgba(255, 255, 255, 0.3);
}
.care-section-new h2,
.story-section-new h2,
.care-section-new p,
.story-section-new p,
.care-section-new .section-tag,
.story-section-new .section-tag {
    color: #FFFFFF !important;
}
.care-section-new strong,
.story-section-new strong {
    color: #FAF4D4 !important;
}
.care-section-new .section-tag,
.story-section-new .section-tag {
    color: #FAF4D4 !important;
}
.story-section-new .section-logo img {
    background: #FFFFFF;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}



/* =============================================================
   REFINED LUXURY SYSTEM: DARK OLIVE GRADIENT FOOTER, HERO SPLIT,
   STYLIZED COLORFUL TYPOGRAPHY, CLEAN SINGLE MEDIA ON VISI
   ============================================================= */

/* 1. GREEN GRADIENT FOOTER (MATCHES BUTTONS) */
footer {
    background: linear-gradient(135deg, #8EC643 0%, #6E9628 100%) !important;
    color: #FFFFFF !important;
    padding: 70px 0 35px !important;
    margin-top: 60px !important;
    border-top: 3px solid rgba(255, 255, 255, 0.35) !important;
    box-shadow: 0 -10px 30px rgba(110, 150, 40, 0.2) !important;
}
.footer-container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 45px !important; /* Proper spacing so text is not glued to edge */
    display: flex !important;
    justify-content: space-between !important;
    flex-wrap: wrap !important;
    gap: 45px !important;
}
.footer-col {
    flex: 1;
    min-width: 200px;
}
.footer-col:first-child {
    flex: 1.4 !important;
    max-width: 400px !important;
    padding-right: 15px !important;
}
footer h3 {
    color: #FAF4D4 !important;
    font-weight: 800 !important;
    font-size: 1.25rem !important;
    margin-bottom: 18px !important;
    letter-spacing: 0.5px !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.15) !important;
}
footer p, footer li a, footer .contact-info p {
    color: rgba(255, 255, 255, 0.94) !important;
    font-size: 0.95rem !important;
    line-height: 1.75 !important;
}
footer li a:hover {
    color: #FAF4D4 !important;
    text-decoration: underline !important;
    padding-left: 5px;
}
footer .social-icons a {
    color: #FFFFFF !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
    background: rgba(255, 255, 255, 0.18) !important;
}
footer .social-icons a:hover {
    background-color: var(--pink-flower) !important;
    color: #FFFFFF !important;
    border-color: var(--pink-flower) !important;
    transform: translateY(-3px) scale(1.05);
}
.footer-bottom {
    max-width: 1200px !important;
    margin: 50px auto 0 !important;
    padding: 25px 45px 0 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.22) !important;
    text-align: center !important;
    color: rgba(255, 255, 255, 0.8) !important;
}

/* 2. STYLIZED MULTI-TONAL TYPOGRAPHY SYSTEM */
.text-gold-accent {
    color: #FFF2A8 !important;
    font-style: italic !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15) !important;
}
.text-gold-light {
    color: #FFF8D1 !important;
    font-weight: 600 !important;
}
.hero-split-badge,
.care-split-badge,
.vision-split-badge {
    background: rgba(255, 255, 255, 0.22) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #FFF2A8 !important;
    padding: 6px 18px !important;
    border-radius: 50px !important;
    font-size: 11.5px !important;
    font-weight: 800 !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    margin-bottom: 16px !important;
    display: inline-block !important;
    border: 1px solid rgba(255, 242, 168, 0.45) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
}

.title-main {
    font-family: 'Cormorant Garamond', 'Georgia', serif !important;
    display: block !important;
    color: #FFFFFF !important;
    line-height: 1.15 !important;
    text-shadow: 0 2px 10px rgba(180, 40, 90, 0.3) !important;
}
.title-accent {
    font-family: 'Cormorant Garamond', 'Georgia', serif !important;
    display: block !important;
    color: rgba(255, 255, 255, 0.95) !important;
    font-size: clamp(22px, 2.8vw, 36px) !important;
    font-weight: 400 !important;
    margin-top: 6px !important;
    line-height: 1.25 !important;
}

/* 3. SPLIT HERO CARD */
.hero-split-section {
    margin-top: 110px;
    padding: 20px 5% 40px;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}
.hero-split-card {
    display: flex;
    background: linear-gradient(135deg, #F987BA 0%, #F06199 50%, #DB4383 100%);
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 20px 55px rgba(219, 67, 131, 0.32);
    border: 2px solid rgba(255, 255, 255, 0.5);
    min-height: 520px;
}
.hero-split-text {
    flex: 1;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color: #FFFFFF;
    z-index: 2;
}
.hero-split-text h1 {
    font-size: clamp(34px, 4.2vw, 56px);
    margin-bottom: 20px;
}
.hero-split-text p {
    font-size: clamp(15px, 1.6vw, 17px);
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 35px;
    max-width: 500px;
}
.hero-split-gallery {
    flex: 1.1;
    position: relative;
    overflow: hidden;
    min-height: 400px;
}
.hero-split-gallery .slider-wrapper {
    display: flex;
    height: 100%;
    width: 100%;
    transition: transform 1s cubic-bezier(0.77, 0, 0.175, 1);
}
.hero-split-gallery .slide {
    min-width: 100%;
    height: 100%;
    background-size: cover !important;
    background-position: center !important;
}
.hero-split-gallery .slide-1 { background-image: url("../images/hero beranda 1.png") !important; }
.hero-split-gallery .slide-2 { background-image: url("../images/hero beranda 2.png") !important; }
.hero-split-gallery .slide-3 { background-image: url("../images/hero beranda 3.png") !important; }

/* 4. SPLIT JURNAL & PANDUAN (SENI MERAWAT) */
.care-split-section {
    padding: 35px 5%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}
.care-split-card {
    display: flex;
    background: linear-gradient(135deg, #F987BA 0%, #F06199 50%, #DB4383 100%);
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 20px 55px rgba(219, 67, 131, 0.32);
    border: 2px solid rgba(255, 255, 255, 0.5);
    min-height: 500px;
}
.care-split-text {
    flex: 1;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color: #FFFFFF;
    z-index: 2;
}
.care-split-text h2 {
    font-size: clamp(30px, 3.8vw, 48px);
}
.care-split-text p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin: 18px 0 28px;
    max-width: 480px;
}
.care-split-media {
    flex: 1.1;
    background: url("../images/merawat kelopak.jpeg") center/cover no-repeat;
    min-height: 400px;
    position: relative;
}
.care-pill-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}
.care-pill {
    background: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    color: #FFF2A8;
    border: 1px solid rgba(255, 242, 168, 0.4);
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

/* 5. SPLIT VISI & INOVASI (DI BALIK TIRAI) - SINGLE CLEAN PHOTO */
.vision-split-section {
    padding: 35px 5%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}
.vision-split-card {
    display: flex;
    background: linear-gradient(135deg, #F987BA 0%, #F06199 50%, #DB4383 100%);
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 20px 55px rgba(219, 67, 131, 0.32);
    border: 2px solid rgba(255, 255, 255, 0.5);
    min-height: 500px;
}
.vision-split-text {
    flex: 1;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color: #FFFFFF;
    z-index: 2;
}
.vision-split-text h2 {
    font-size: clamp(30px, 3.8vw, 48px);
}
.vision-split-text p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin: 18px 0 28px;
    max-width: 480px;
}
.vision-split-media {
    flex: 1.1;
    /* Single clean high-res photo with no overlapping logos */
    background: url("../images/samorchid background.png") center/cover no-repeat;
    min-height: 400px;
    position: relative;
}
.vision-pill-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}
.vision-pill {
    background: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    color: #FFF2A8;
    border: 1px solid rgba(255, 242, 168, 0.4);
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .hero-split-section,
    .care-split-section,
    .vision-split-section {
        margin-top: 85px;
        padding: 15px 4% 25px;
    }
    .care-split-section,
    .vision-split-section {
        margin-top: 0;
    }
    .hero-split-card,
    .care-split-card,
    .vision-split-card {
        flex-direction: column-reverse;
        min-height: unset;
        border-radius: 24px;
    }
    .hero-split-gallery,
    .care-split-media,
    .vision-split-media {
        min-height: 260px;
        height: 280px;
        width: 100%;
    }
    .hero-split-text,
    .care-split-text,
    .vision-split-text {
        padding: 35px 25px;
        align-items: center;
        text-align: center;
    }
    .care-pill-group,
    .vision-pill-group {
        justify-content: center;
    }
    .footer-container {
        padding: 0 25px !important;
        gap: 30px !important;
    }
    .footer-col:first-child {
        padding-right: 0 !important;
        max-width: 100% !important;
    }
    .footer-bottom {
        padding: 20px 25px 0 !important;
    }
}

/* =============================================================
   PAGE HERO MODERN (FOR ALL INNER PAGES)
   ============================================================= */
.page-hero-modern {
    position: relative !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    border-radius: 28px !important;
    margin: 110px auto 30px auto !important;
    max-width: 90% !important;
    min-height: 380px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    overflow: hidden !important;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18) !important;
    border: 2px solid rgba(255, 255, 255, 0.5) !important;
}
.hero-overlay-modern {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: linear-gradient(180deg, rgba(20, 30, 15, 0.45) 0%, rgba(20, 30, 15, 0.72) 100%) !important;
    z-index: 1 !important;
}
.hero-content-modern {
    position: relative !important;
    z-index: 2 !important;
    color: #FFFFFF !important;
    padding: 30px 20px !important;
    max-width: 800px !important;
}
.hero-content-modern h1 {
    font-family: 'Cormorant Garamond', 'Georgia', serif !important;
    font-size: clamp(34px, 4.5vw, 54px) !important;
    margin-bottom: 12px !important;
    font-weight: 300 !important;
    color: #FFFFFF !important;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.6) !important;
}
.hero-content-modern h1 strong {
    color: #FFF2A8 !important;
    font-weight: 700 !important;
    font-style: italic !important;
    text-shadow: 0 3px 15px rgba(255, 242, 168, 0.4) !important;
}
.hero-content-modern .hero-subtitle {
    font-size: clamp(15px, 1.8vw, 18px) !important;
    margin-bottom: 24px !important;
    color: rgba(255, 255, 255, 0.95) !important;
    font-weight: 400 !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5) !important;
    line-height: 1.6 !important;
}
.breadcrumb-modern {
    display: inline-flex !important;
    align-items: center !important;
    background: rgba(255, 255, 255, 0.22) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    padding: 8px 24px !important;
    border-radius: 50px !important;
    border: 1px solid rgba(255, 242, 168, 0.4) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15) !important;
}
.breadcrumb-modern a {
    color: #FFFFFF !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 13px !important;
    transition: color 0.3s ease !important;
}
.breadcrumb-modern a:hover {
    color: #FFF2A8 !important;
}
.breadcrumb-separator {
    margin: 0 10px !important;
    color: #FFF2A8 !important;
    font-weight: 700 !important;
}
.breadcrumb-current {
    color: #FFF2A8 !important;
    font-weight: 700 !important;
    font-size: 13px !important;
}

@media (max-width: 768px) {
    .page-hero-modern {
        margin: 85px auto 25px auto !important;
        max-width: 92% !important;
        min-height: 300px !important;
        border-radius: 20px !important;
    }
}
