/* ============================================================== 
    # Modern Homepage Styles - Complete
=================================================================== */

/* ============================================================== 
    # CSS Variables
=================================================================== */
:root {
    /* Typography */
    --font-default: 'Inter', system-ui, sans-serif;
    --font-heading: 'Instrument Sans', sans-serif;
    --bs-font-sans-serif: var(--font-default);
    --bs-body-font-family: var(--font-default);

    /* Rose palette — same family as the logo, less neon */
    --color-primary: #C94F68;
    --color-primary-hover: #A63F55;
    --color-primary-deep: #7A3143;
    --color-primary-rgb: 201, 79, 104;
    --color-white: #ffffff;
    --color-cream: #FDF8F9;
    --color-blush: #F7F1F3;
    --color-blush-strong: #F1E4E8;
    --color-dark: #2C2426;
    --color-text: #5C5457;
    --color-muted: #8A8083;
    --color-border: rgba(44, 36, 38, 0.08);

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(44, 36, 38, 0.04);
    --shadow-md: 0 10px 30px rgba(44, 36, 38, 0.06);
    --shadow-lg: 0 22px 50px rgba(44, 36, 38, 0.08);
    --shadow-primary: 0 14px 32px rgba(var(--color-primary-rgb), 0.16);
    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 24px;
    --radius-pill: 999px;

    /* Transitions — short, specific properties so the UI stays calm */
    --transition: color 0.18s ease, background-color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

/* ============================================================== 
    # Base Reset
=================================================================== */
* {
    box-sizing: border-box;
}

html {
    background: var(--color-cream);
}

body {
    font-family: var(--font-default);
    font-size: 16px;
    line-height: 1.75;
    color: var(--color-text);
    background: var(--color-cream);
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6,
.display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--color-dark);
    line-height: 1.25;
    letter-spacing: -0.03em;
    margin: 0;
    margin-bottom: 1rem;
}

a {
    transition: var(--transition);
    text-decoration: none !important;
    color: var(--color-primary);
}

a:not([class*="btn"]) {
    border-bottom: none !important;
}

a:hover {
    color: var(--color-primary-hover);
    text-decoration: none !important;
}

a:focus,
a:active,
a:visited {
    text-decoration: none !important;
}

a:not([class*="btn"]):hover,
a:not([class*="btn"]):focus,
a:not([class*="btn"]):active,
a:not([class*="btn"]):visited {
    border-bottom: none !important;
}

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

/* ============================================================== 
    # Bootstrap Grid System
=================================================================== */
.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

/* Note: Bootstrap 5's native .row and .col-* classes are used */
/* Only adding custom utilities, NOT overriding Bootstrap grid */

/* ============================================================== 
    # Bootstrap Utilities
=================================================================== */

/* Margin Bottom */
.mb-0 {
    margin-bottom: 0 !important;
}

.mb-1 {
    margin-bottom: 0.25rem !important;
}

.mb-2 {
    margin-bottom: 0.5rem !important;
}

.mb-3 {
    margin-bottom: 1rem !important;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

.mb-5 {
    margin-bottom: 3rem !important;
}

/* Margin Right & Left */
.me-1 {
    margin-right: 0.25rem !important;
}

.me-2 {
    margin-right: 0.5rem !important;
}

.me-3 {
    margin-right: 1rem !important;
}

.ms-3 {
    margin-left: 1rem !important;
}

/* Padding */
.p-3 {
    padding: 1rem !important;
}

.p-4 {
    padding: 1.5rem !important;
}

.py-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
}

.py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

.pe-lg-4 {
    padding-right: 1.5rem !important;
}

/* Display */
.d-none {
    display: none !important;
}

.d-block {
    display: block !important;
}

.d-flex {
    display: flex !important;
}

.d-inline-flex {
    display: inline-flex !important;
}

/* Flex */
.align-items-center {
    align-items: center;
}

.align-items-start {
    align-items: flex-start;
}

.justify-content-center {
    justify-content: center;
}

.justify-content-between {
    justify-content: space-between;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-grow-1 {
    flex-grow: 1;
}

.flex-shrink-0 {
    flex-shrink: 0;
}

.gap-3 {
    gap: 1rem !important;
}

/* Position */
.position-relative {
    position: relative;
}

.position-absolute {
    position: absolute;
}

.top-0 {
    top: 0;
}

.start-0 {
    left: 0;
}

.end-0 {
    right: 0;
}

.w-100 {
    width: 100% !important;
}

.h-100 {
    height: 100% !important;
}

.min-vh-75 {
    min-height: 75vh;
}

/* Text */
.text-center {
    text-align: center !important;
}

.text-dark {
    color: #212529 !important;
}

.text-muted {
    color: var(--color-muted) !important;
}

.text-white {
    color: #fff !important;
}

.text-primary-brand {
    color: var(--color-primary) !important;
}

.section-eyebrow {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-primary);
    background: var(--color-blush-strong);
    padding: 0.5rem 1.05rem;
    border-radius: var(--radius-pill);
    margin-bottom: 1rem;
}

.section-eyebrow.is-light {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    backdrop-filter: blur(8px);
}

.icon-soft {
    background: var(--color-blush-strong) !important;
    color: var(--color-primary) !important;
}

.card-accent {
    border: 1px solid var(--color-border) !important;
    border-left: 3px solid var(--color-primary) !important;
    box-shadow: var(--shadow-sm);
    border-radius: var(--radius-md) !important;
}

.text-decoration-none {
    text-decoration: none !important;
}

.fw-bold {
    font-weight: 600 !important;
}

.fw-normal {
    font-weight: 400 !important;
}

.lead {
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--color-text);
}

.small {
    font-size: 0.875em;
}

.f12 {
    font-size: 12px;
}

/* ============================================================== 
    # Button Styles
=================================================================== */

.btn {
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    border: 1px solid transparent;
    border-radius: 0.25rem;
    transition: var(--transition);
}

.btn-sm {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    border-radius: 0.2rem;
}

.btn-lg {
    padding: 0.5rem 1rem;
    font-size: 1.25rem;
    border-radius: 0.3rem;
}

.btn-danger {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: white;
    padding: 0.65rem 1.6rem;
    border-radius: var(--radius-pill);
    font-weight: 600;
    letter-spacing: 0.02em;
}

.btn-danger:hover {
    background-color: var(--color-primary-hover);
    border-color: var(--color-primary-hover);
    box-shadow: none;
}

.btn-outline-danger {
    color: var(--color-primary);
    border-color: rgba(var(--color-primary-rgb), 0.35);
    background: transparent;
    padding: 0.65rem 1.6rem;
    border-radius: var(--radius-pill);
    font-weight: 600;
}

.btn-outline-danger:hover {
    color: #fff;
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-outline-light {
    color: #fff;
    border-color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
}

.btn-outline-light:hover {
    background: rgba(0, 0, 0, 0.2);
    color: #fff;
    border-color: #fff;
}

/* Badge */
.badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1;
    border-radius: 50px;
}

.badge-danger {
    color: var(--color-primary);
    background-color: var(--color-blush-strong);
}

.badge-danger:hover {
    background-color: var(--color-blush-strong);
}

.bg-danger {
    background-color: var(--color-primary) !important;
}

.text-danger {
    color: var(--color-primary) !important;
}

/* Card */
.card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    background-color: #fff;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    transition: all 0.35s ease;
}

.card-body {
    flex: 1 1 auto;
    padding: 1rem;
}

.card-title {
    margin-bottom: 0.5rem;
}

.border-0 {
    border: 0 !important;
}

/* ============================================================== 
    # Modern Hero Section
=================================================================== */

.modern-hero {
    min-height: 90vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    will-change: transform;
}

.modern-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(44, 28, 32, 0.18) 0%, rgba(122, 49, 67, 0.28) 100%);
    z-index: 2;
    pointer-events: none;
}

.modern-hero-content {
    position: relative;
    z-index: 3;
}

/* Ensure image is behind overlay */
.modern-hero img {
    z-index: 1 !important;
    will-change: opacity;
    transition: opacity 0.3s ease-in-out;
}

.modern-hero img.lazyloaded {
    opacity: 1;
}

.modern-hero img.lazyload {
    opacity: 0;
}

/* Remove underline from links in hero, without clipping outlined buttons */
.modern-hero a:not(.btn-modern-primary):not(.btn-modern-outline):not(.product-btn):not(.join-band-btn) {
    text-decoration: none !important;
    border-bottom: none !important;
}

.modern-hero a:not(.btn-modern-primary):not(.btn-modern-outline):not(.product-btn):not(.join-band-btn):hover {
    text-decoration: none !important;
    border-bottom: none !important;
}

.modern-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
}

.modern-hero p {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Modern Button Styles */
.btn-modern-primary {
    background: white;
    color: var(--color-primary);
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    transition: background-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-modern-primary:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    background: #f8f8f8;
    color: var(--color-primary);
}

.btn-modern-outline {
    background: transparent;
    color: #fff;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid #fff !important;
    box-sizing: border-box;
    transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.btn-modern-outline:hover,
.btn-modern-outline:focus-visible {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    border-color: #fff !important;
}

.breadcrumb-area-modern .breadcrumb-actions {
    position: relative;
    z-index: 2;
}

.breadcrumb-area-modern .btn-modern-outline {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.08);
}

/* ============================================================== 
    # Carousel
=================================================================== */

.carousel-control-prev,
.carousel-control-next {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.2s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.carousel:hover .carousel-control-prev,
.carousel:hover .carousel-control-next {
    opacity: 1;
}

.carousel-control-prev {
    left: 30px;
}

.carousel-control-next {
    right: 30px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-50%);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.2);
}

.carousel-control-prev:active,
.carousel-control-next:active {
    transform: translateY(-50%);
}

.carousel-indicators {
    margin-bottom: 2rem;
}

.carousel-indicators [data-bs-target] {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.7);
    margin: 0 6px;
}

.carousel-indicators [data-bs-target].active {
    background: white;
    width: 16px;
    height: 16px;
}

/* ============================================================== 
    # Modern Cards
=================================================================== */

.modern-card-new {
    background: white;
    border-radius: var(--radius-md);
    transition: box-shadow 0.2s ease;
    overflow: hidden;
    height: 100%;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
}

/* Fix: Jangan pakai height:100% dan overflow:hidden untuk modern-card-new di wa-chatbot */
.wa-chatbot .modern-card-new {
    height: auto !important;
    overflow: visible !important;
    border-radius: 2rem;
}

.modern-card-new:hover {
    box-shadow: var(--shadow-md);
}

/* Product Cards */
.product-card-modern,
.product-card-modern.modern-card-new {
    border-radius: var(--radius-md);
    overflow: visible;
    transition: box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
}

.product-card-modern .product-image {
    height: 250px;
    overflow: hidden;
    position: relative;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    flex-shrink: 0;
}

.product-card-modern .product-info {
    padding: 1.15rem 1.2rem 1.7rem;
    background: white;
    overflow: visible;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-card-modern .product-btn {
    margin-top: auto;
}

.product-card-modern .product-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
    min-height: 3rem;
}

.product-card-modern .product-code {
    font-size: 0.85rem;
    color: #767676;
    margin-bottom: 1rem;
}

.product-card-modern .product-price {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 1.15rem;
    letter-spacing: -0.02em;
}

.product-btn,
.product-card-modern .product-btn,
.news-card-modern .product-btn,
.card-product-btn {
    width: 100%;
    padding: 0.8rem 1rem;
    background: transparent;
    color: var(--color-dark);
    border: 1px solid rgba(44, 36, 38, 0.18) !important;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
    text-decoration: none;
    display: block;
    line-height: 1.3;
    box-sizing: border-box;
    text-align: center;
}

.product-btn:hover,
.product-card-modern .product-btn:hover,
.news-card-modern .product-btn:hover,
.card-product-btn:hover {
    background: var(--color-dark);
    border-color: var(--color-dark) !important;
    color: #fff !important;
    transform: none;
    box-shadow: none;
}

/* Product Button Mobile Responsive */
@media (max-width: 768px) {

    .product-btn,
    .product-card-modern .product-btn,
    .news-card-modern .product-btn {
        padding: 0.7rem 0.75rem;
        font-size: 0.62rem;
        letter-spacing: 0.12em;
        font-weight: 600;
    }

    .product-card-modern .product-btn i,
    .news-card-modern .product-btn i {
        display: none;
    }
}

/* News Cards - Reworked */
.news-card-modern {
    border-radius: 20px;
    overflow: hidden;
    transition: box-shadow 0.2s ease;
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    display: block;
    height: 100%;
    position: relative;
}

.news-card-modern:hover {
    box-shadow: var(--shadow-md);
}

.news-card-modern .news-image {
    position: relative;
    overflow: hidden;
}

.news-card-modern .news-image img {
    transform: none;
}

.news-card-modern:hover .news-image img {
    transform: none;
}

/* News Overlay */
.news-overlay {
    display: none;
}

.news-overlay i {
    transform: scale(0.5);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-card-modern:hover .news-overlay i {
    transform: scale(1);
}

.news-card-modern .news-body {
    padding: 1.5rem;
    background: white;
    border-radius: 0 0 20px 20px;
}

.news-card-modern .news-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1.4;
    transition: color 0.3s;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 2.8rem;
    /* 1.4em * 2 lines */
}

.news-card-modern:hover .news-title {
    color: var(--color-primary);
}

/* ============================================================== 
    # Backgrounds
=================================================================== */

.bg-light {
    background-color: var(--color-cream) !important;
}

.bg-white {
    background-color: #fff !important;
}

.section-light-pink {
    background: var(--color-blush);
    position: relative;
}

/* Request CTA Section */
.request-call-back-area {
    position: relative;
    background-size: cover !important;
    background-position: center !important;
    background-attachment: fixed;
}

.overflow-hidden {
    overflow: hidden;
}

/* ============================================================== 
    # Animations
=================================================================== */

@keyframes fadeInUpModern {
    from {
        opacity: 0.55;
        transform: translateY(8px);
    }

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

.animate-fade-up {
    animation: fadeInUpModern 0.35s ease-out forwards;
}

.animate-delay-1 {
    animation-delay: 0.08s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.animate-delay-2 {
    animation-delay: 0.14s;
    opacity: 0;
    animation-fill-mode: forwards;
}


/* ============================================================== 
    # Responsive
=================================================================== */

@media (max-width: 991px) {
    .modern-hero {
        min-height: 70vh;
    }

    .product-card-modern .product-image {
        height: 200px;
    }

    .carousel-control-prev {
        left: 15px;
        width: 50px;
        height: 50px;
        opacity: 0.9;
    }

    .carousel-control-next {
        right: 15px;
        width: 50px;
        height: 50px;
        opacity: 0.9;
    }

    /* News cards on mobile */
    .col-lg-4 {
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .modern-hero {
        height: 54vh;
    }

    .modern-hero h1 {
        font-size: 2rem;
    }

    .modern-hero p {
        font-size: 1rem;
    }

    .btn-modern-primary,
    .btn-modern-outline {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }

    .news-card-modern .news-body {
        padding: 1.25rem;
    }

    .news-card-modern .news-title {
        font-size: 1rem;
    }
}

/* Fix z-index */
section,
div.section {
    position: relative;
    z-index: 1;
}

/* Ensure sections don't overlap */
section,
.py-5 {
    position: relative;
    overflow-x: hidden;
}

/* Note: .btn-danger, .text-primary-brand, and .section-light-pink already defined above */

/* Carousel Item */
.carousel-item {
    min-height: 90vh;
    display: none;
    position: relative;
    will-change: opacity;
}

#carouselFoto .carousel-item {
    min-height: auto !important;
}

.carousel-item.active {
    display: block;
}

.carousel-item .container {
    position: relative;
    z-index: 3;
}

/* Carousel Fade Animation - Smooth Transition */
.carousel-fade .carousel-item {
    opacity: 0;
    transition-property: opacity;
    transition-duration: 0.8s;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.carousel-fade .carousel-item.active {
    opacity: 1;
    z-index: 1;
}

.carousel-fade .carousel-item:not(.active) {
    opacity: 0;
    z-index: 0;
}

/* Ensure smooth transition between slides */
.carousel-fade .carousel-item.active.carousel-item-start,
.carousel-fade .carousel-item-next.carousel-item-start {
    opacity: 0;
}

.carousel-fade .carousel-item.active.carousel-item-end,
.carousel-fade .carousel-item-prev.carousel-item-end {
    opacity: 0;
}

/* Reset animations on slide change */
.carousel-item:not(.active) .animate-fade-up {
    animation: none !important;
    opacity: 0 !important;
    transform: translateY(8px) !important;
}

/* Hover effects */
.card:hover {
    box-shadow: var(--shadow-md) !important;
}

/* Remove text link decoration from all cards and sections */
.news-card-modern a,
.product-card-modern a:not(.product-btn),
.card a,
.news-body a,
.product-info a:not(.product-btn) {
    text-decoration: none !important;
    border-bottom: none !important;
    color: inherit;
}

.news-card-modern a:hover,
.product-card-modern a:not(.product-btn):hover,
.card a:hover {
    text-decoration: none !important;
    border-bottom: none !important;
}

/* ============================================================== 
    # Additional Bootstrap Classes
=================================================================== */

/* Display hide class */
.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* Font Sizes */
.fs-4 {
    font-size: 1.5rem !important;
}

.fs-6 {
    font-size: 1rem !important;
}

.display-4 {
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1.2;
}

.display-5 {
    font-size: 2rem;
    font-weight: 300;
    line-height: 1.2;
}

/* Padding */
.px-3 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
}

.px-4 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
}

.py-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
}

/* Background Opacity */
.bg-opacity-10 {
    background-color: rgba(var(--color-primary-rgb), 0.1) !important;
}

/* Icon */
i[class^="fas"] {
    font-size: 1.5rem;
}

i[class^="fas"].fs-4 {
    font-size: 1.5rem !important;
}

i[class^="fas"].me-2 {
    margin-right: 0.5rem !important;
}

/* More Utilities */
.m-0 {
    margin: 0 !important;
}

.p-0 {
    padding: 0 !important;
}

/* ============================================================== 
    # Special Sections
=================================================================== */

/* Request Call Back Section - Additional styles */
.process-wrapp-section {
    position: relative;
}

.process-wrapp {
    overflow: hidden;
    display: table;
    table-layout: fixed;
    margin: 0 15px;
}

.process-wrapp,
.process-wrapp li,
.process-wrapp li>.pro-step {
    z-index: 1;
}

.process-wrapp li,
.process-wrapp li>.pro-step {
    text-align: center;
}

.process-wrapp li {
    padding: 0 15px 0 15px;
    display: table-cell;
}

.process-wrapp li:hover {
    cursor: pointer;
}

.process-wrapp li>.pro-step {
    height: 90px;
    width: 90px;
    line-height: 90px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    font-size: 28px;
    font-weight: 600;
    color: #fff;
    display: inline-block;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
}

.process-wrapp li>.pro-step:hover {
    background: rgba(255, 255, 255, 0.22);
}

.process-wrapp li>.pro-step,
.process-wrapp li>.pro-step::before {
    -webkit-border-radius: 50%;
    border-radius: 50%;
}

.process-wrapp.no-rounded li>.pro-step,
.process-wrapp.no-rounded li>.pro-step::before {
    -webkit-border-radius: 0 !important;
    border-radius: 0 !important;
}

.process-wrapp li p:first-child {
    font-size: 18px;
}

.process-wrapp li p:last-child {
    font-size: 16px;
    margin-bottom: 4px;
    color: #f0f0f0;
}

.process-wrapp li:hover>.pro-step {
    border-color: transparent;
    color: #fff;
}

.process-wrapp li.active>.pro-step {
    border-color: transparent;
    color: #fff;
}

.process-wrapp li.active:hover>.pro-step {
    border-color: transparent !important;
}

.fontbold {
    font-weight: 700;
    font-size: 1.1rem;
}

.whitecolor {
    color: white;
}

/* Bottom spacing */
.bottom20 {
    margin-bottom: 1.25rem;
}

.bottom25 {
    margin-bottom: 1.5rem;
}

/* Hero Content Layout - Remove duplicate */

/* LazyLoad fix */
img.lazyload {
    opacity: 0;
    transition: opacity 0.3s;
}

img.lazyloaded {
    opacity: 1;
}

/* Process Wrapp Responsive */
@media screen and (max-width: 992px) {
    .process-wrapp {
        text-align: center;
    }

    .process-wrapp li {
        display: inline-block;
        max-width: 300px;
    }

    .process-wrapp li:first-child::before,
    .process-wrapp li:last-child::after {
        opacity: 1;
        visibility: visible;
    }
}

@media (max-width: 992px) {
    .process-wrapp li {
        padding: 60px 15px 0 15px;
    }
}

@media (max-width: 767px) {
    .process-wrapp li {
        padding: 50px 15px 0 15px;
    }
}

@media (max-width: 576px) {
    .process-wrapp li {
        padding: 35px 15px 0 15px;
    }
}

/* Additional responsive */
@media (max-width: 768px) {
    .display-4 {
        font-size: 2rem;
    }

    .display-5 {
        font-size: 1.75rem;
    }
}

/* ============================================================== 
    # Button and Icon Styles
=================================================================== */

.btn-light {
    background-color: #fff;
    border-color: #fff;
    color: #000;
}

.btn-light:hover {
    background-color: #f8f9fa;
    border-color: #e9ecef;
    color: #000;
}

/* Opacity */
.opacity-75 {
    opacity: 0.75 !important;
}

/* Display Counter */
.counter h3 {
    margin-bottom: 0;
}

/* Font Awesome Icons */
.fa-3x {
    font-size: 3em;
}

/* Animation Classes */
.animate-fade-in-up {
    animation: fadeInUpModern 0.35s ease-out forwards;
}

.animate-scale-in {
    animation: fadeInUpModern 0.35s ease-out forwards;
}

@keyframes scaleIn {
    from {
        opacity: 0.55;
        transform: none;
    }

    to {
        opacity: 1;
        transform: none;
    }
}

/* Default Padding */
.default-padding {
    padding: 5rem 0;
}

@media (max-width: 768px) {
    .default-padding {
        padding: 3rem 0;
    }
}

/* Modern Card */
.modern-card {
    border-radius: 20px;
    border: none;
}

/* Icon fonts from FontAwesome - REMOVED to let original font-awesome.min.css handle it */
/* Don't override Font Awesome fonts */

/* ============================================================== 
    # Blog Item Box
=================================================================== */

.blog-item-box {
    margin-bottom: 0;
}

/* ============================================================== 
    # Text Light
=================================================================== */

.text-light {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* ============================================================== 
    # Badge bg-white
=================================================================== */

.bg-white {
    background-color: #fff !important;
}

/* Carousel Additional Styles */
.carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
    will-change: transform;
}

.carousel-inner img {
    transition: opacity 0.3s ease-in-out;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* Carousel icons - Modern Design */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    display: inline-block;
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 100% 100%;
}

.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z' fill='%23111'/%3e%3c/svg%3e");
    width: 18px;
    height: 18px;
    transition: transform 0.3s;
}

.carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z' fill='%23111'/%3e%3c/svg%3e");
    width: 18px;
    height: 18px;
    transition: none;
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
    transform: none;
}

/* Display utilities for responsive */
@media (min-width: 992px) {
    .d-lg-none {
        display: none !important;
    }

    .d-lg-flex {
        display: flex !important;
    }

    .text-lg-end {
        text-align: right !important;
    }
}

/* Text alignment */
.text-start {
    text-align: left !important;
}

.text-end {
    text-align: right !important;
}

/* Card title additional styling */
.card-title.mb-0 {
    margin-bottom: 0 !important;
}

/* Section padding */
section .py-5 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

/* g-0 */
.g-0>* {
    padding: 0;
}

/* ============================================================== 
    # Fixed Column Layouts
=================================================================== */

/* Column base width */
.cols-base {
    width: 100%;
}

/* Note: All Bootstrap 5 grid classes (.row, .col-*) are handled by Bootstrap */
/* We only provide custom styling, not grid overrides */

/* ============================================================== 
    # Modern Footer Styles
=================================================================== */

.modern-footer {
    background: var(--color-blush);
    border-top: 1px solid var(--color-border);
    color: var(--color-text);
}

.footer-main {
    background: transparent;
    padding: 4.25rem 0 2.75rem;
}

.footer-brand {
    display: inline-block;
    margin-bottom: 0.85rem;
}

.footer-logo {
    display: block;
    width: auto;
    max-width: 92px;
    height: auto;
    max-height: 54px;
    object-fit: contain;
    object-position: left center;
}

.footer-brand-name {
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--color-dark);
    margin: 0 0 0.55rem;
}

.footer-description {
    color: var(--color-muted);
    line-height: 1.7;
    margin-bottom: 1.35rem;
    font-size: 0.88rem;
    max-width: 28rem;
}

.footer-social-buttons {
    display: flex;
    gap: 0.55rem;
}

.modern-footer .social-btn,
.social-btn {
    width: 36px;
    height: 36px;
    background: transparent;
    border: 1px solid var(--color-border) !important;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-dark);
    font-size: 0.92rem;
    transition: var(--transition);
    box-shadow: none;
}

.modern-footer .social-btn:hover,
.social-btn:hover {
    background: var(--color-dark);
    border-color: var(--color-dark) !important;
    color: #fff;
}

.footer-title {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--color-muted);
    margin-bottom: 1.15rem;
    padding-bottom: 0;
}

.footer-title::after {
    display: none;
}

.footer-menu,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 0.55rem;
    color: var(--color-text);
    font-size: 0.92rem;
}

.footer-menu li a {
    color: var(--color-text);
    display: inline-block;
    font-size: 0.92rem;
}

.footer-menu li a:hover {
    color: var(--color-dark);
}

.footer-contact li {
    margin-bottom: 1rem;
    color: var(--color-text);
    font-size: 0.9rem;
    line-height: 1.55;
}

.footer-contact li span {
    display: block;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-muted);
    margin-bottom: 0.2rem;
}

.footer-contact li a {
    color: var(--color-text);
}

.footer-contact li a:hover {
    color: var(--color-dark);
}

.certificate-badges {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    align-items: flex-start;
    flex-wrap: wrap;
}

.cert-badge {
    max-width: 96px;
    width: auto;
    height: 40px;
    object-fit: contain;
}

.footer-join {
    display: inline-flex;
    align-items: center;
    margin-top: 1.35rem;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--color-dark);
    border-bottom: 1px solid rgba(44, 36, 38, 0.22) !important;
    padding-bottom: 0.15rem;
}

.footer-join:hover {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary) !important;
}

/* Overseas Card Hover Effect */
.section-light-pink .card {
    transition: box-shadow 0.2s ease;
}

.section-light-pink .card:hover {
    box-shadow: var(--shadow-md) !important;
}

.section-light-pink .card img {
    transform: none;
}

.section-light-pink .card:hover img {
    transform: none;
}

/* ============================================================== 
    # Universal Modern Card Components (Reusable)
=================================================================== */

/* Modern Card Base - Universal */
.card-modern {
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.2s ease;
    overflow: hidden;
    height: 100%;
    border: none;
}

.card-modern:hover {
    box-shadow: var(--shadow-md);
}

/* Card Image Container - Universal */
.card-modern-image {
    overflow: hidden;
    position: relative;
}

.card-modern-image img {
    width: 100%;
    height: 100%;
    /* object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1); */
}

.card-modern:hover .card-modern-image img {
    transform: none;
}

/* Card Body - Universal */
.card-modern-body {
    padding: 1.5rem;
}

.card-modern-body h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.card-modern-body p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Product Card Complete Reusable */
.card-product-modern {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.2s ease;
    height: 100%;
}

.card-product-modern:hover {
    box-shadow: var(--shadow-md);
}

.card-product-image {
    height: 250px;
    overflow: hidden;
}

.card-product-image img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
    /* transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1); */
}

.card-product-modern:hover .card-product-image img {
    transform: none;
}

.card-product-body {
    padding: 1.5rem;
}

.card-product-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
    min-height: 3rem;
}

.card-product-code {
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 1rem;
}

.card-product-price {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.card-product-btn {
    width: 100%;
    padding: 0.8rem 1rem;
    background: transparent;
    color: var(--color-dark);
    border: 1px solid rgba(44, 36, 38, 0.18);
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    transition: all 0.28s ease;
    display: block;
    text-align: center;
}

.card-product-btn:hover {
    background: var(--color-dark);
    border-color: var(--color-dark);
    color: #fff !important;
    transform: none;
    box-shadow: none;
}

/* News Card Complete Reusable */
.card-news-modern {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.2s ease;
    height: 100%;
}

.card-news-modern:hover {
    box-shadow: var(--shadow-md);
}

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

.card-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-news-modern:hover .card-news-image img {
    transform: none;
}

.card-news-body {
    padding: 1.5rem;
}

.card-news-date {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.card-news-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1rem;
    min-height: 3rem;
    line-height: 1.4;
}

/* Travel/Overseas Card Complete Reusable */
.card-travel-modern {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.2s ease;
    height: 100%;
}

.card-travel-modern:hover {
    box-shadow: var(--shadow-md);
}

.card-travel-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.card-travel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-travel-modern:hover .card-travel-image img {
    transform: none;
}

.card-travel-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 1rem;
    box-shadow: var(--shadow-sm);
}

.card-travel-body {
    padding: 1.5rem;
    text-align: center;
}

.card-travel-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0;
}

.footer-bottom {
    background: transparent;
    border-top: 1px solid var(--color-border);
    padding: 1.1rem 0;
}

.footer-bottom p {
    font-size: 0.78rem;
    letter-spacing: 0.02em;
    color: var(--color-muted);
}

/* WhatsApp Float Button - Modern Style */
.contact-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: box-shadow 0.2s ease;
    z-index: 9999;
    cursor: pointer;
}

.contact-wa:hover {
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.45);
}

.contact-wa a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

/* Footer Responsive */
@media (max-width: 991px) {
    .footer-main {
        padding: 3.25rem 0 2.25rem;
    }
}

@media (max-width: 576px) {
    .footer-main {
        padding: 2.5rem 0 1.75rem;
    }

    .footer-logo {
        max-width: 80px;
        max-height: 48px;
        height: auto;
    }

    .modern-footer .social-btn,
    .social-btn {
        width: 34px;
        height: 34px;
        font-size: 0.88rem;
    }

    .contact-wa {
        width: 55px;
        height: 55px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }

    .cert-badge {
        max-width: 84px;
        height: 36px;
    }
}

/* ============================================================== 
    # Navbar Styles - Modern Theme
=================================================================== */

/* Navbar Transparent dengan Scroll Effect (navbar.php) */
.navbar.fixed-top {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: transparent;
    padding: 0.85rem 0;
    z-index: 1030;
    transition: background-color 0.2s ease, box-shadow 0.2s ease, padding 0.2s ease;
}

.navbar.fixed-top.bg-body-tertiary {
    background: transparent !important;
    background-color: transparent !important;
}

.navbar.fixed-top.navbar-inner,
.navbar.fixed-top.scrolled,
.navbar.fixed-top.bg-body-tertiary.scrolled {
    background: var(--color-white) !important;
    background-color: var(--color-white) !important;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: 0 1px 0 var(--color-border);
    padding: 0.65rem 0;
}

.navbar.fixed-top .navbar-brand img {
    max-height: 48px;
    width: auto;
}

.navbar.fixed-top.scrolled .navbar-brand img,
.navbar.fixed-top.navbar-inner .navbar-brand img {
    max-height: 42px;
}

.navbar.fixed-top .navbar-nav .nav-link {
    color: #ffffff;
    font-weight: 500;
    font-size: 0.92rem;
    letter-spacing: 0.04em;
    padding: 0.5rem 1rem;
}

.navbar.fixed-top.scrolled .navbar-nav .nav-link,
.navbar.fixed-top.navbar-inner .navbar-nav .nav-link {
    color: var(--color-dark);
}

.navbar.fixed-top .navbar-nav .nav-link:hover,
.navbar.fixed-top .navbar-nav .nav-link.active {
    color: var(--color-primary);
}

.navbar.fixed-top .navbar-nav.mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
}

.navbar.fixed-top .navbar-toggler {
    width: 44px;
    height: 44px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-border) !important;
    border-radius: 50%;
    background: #fff;
    color: var(--color-dark);
    font-size: 1.45rem;
    line-height: 1;
    box-shadow: 0 1px 2px rgba(44, 36, 38, 0.06);
}

.navbar.fixed-top .navbar-toggler:focus {
    box-shadow: 0 1px 2px rgba(44, 36, 38, 0.06);
}

.navbar.fixed-top .navbar-toggler .bi {
    display: block;
    line-height: 1;
    color: inherit;
}

.navbar.fixed-top .navbar-toggler-icon {
    display: none;
}

.navbar.fixed-top.scrolled .navbar-toggler,
.navbar.fixed-top.navbar-inner .navbar-toggler {
    border-color: var(--color-border) !important;
    background: #fff;
    color: var(--color-dark);
}

.navbar.fixed-top .call {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.navbar.fixed-top .call .icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: #ffffff;
}

.navbar.fixed-top.scrolled .call .icon,
.navbar.fixed-top.navbar-inner .call .icon {
    background: var(--color-blush-strong);
    color: var(--color-primary);
}

.navbar.fixed-top .call .info p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1;
}

.navbar.fixed-top.scrolled .call .info p,
.navbar.fixed-top.navbar-inner .call .info p {
    color: var(--color-muted);
}

.navbar.fixed-top .call .info h5 {
    margin: 0;
    font-size: 0.9rem;
}

.navbar.fixed-top .call .info h5 a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
}

.navbar.fixed-top.scrolled .call .info h5 a,
.navbar.fixed-top.navbar-inner .call .info h5 a {
    color: var(--color-dark);
}

.navbar.fixed-top .call .info h5 a:hover {
    color: var(--color-primary);
}

/* ============================================================== 
    # Offcanvas Mobile Menu
=================================================================== */

.offcanvas-backdrop {
    z-index: 1040;
    background: rgba(44, 36, 38, 0.42);
}

.offcanvas {
    --bs-offcanvas-width: min(22rem, 88vw);
    z-index: 1055;
    background: var(--color-cream);
    border-left: 1px solid var(--color-border);
    box-shadow: -24px 0 48px rgba(44, 36, 38, 0.08);
    border-radius: 0;
    width: min(22rem, 88vw);
    max-width: 88vw;
}

.offcanvas-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border-bottom: 1px solid var(--color-border);
    padding: 1.15rem 1.35rem;
    padding-top: max(1.15rem, env(safe-area-inset-top));
}

.offcanvas-brand img {
    display: block;
    height: 32px;
    width: auto;
    max-width: 92px;
    object-fit: contain;
}

.offcanvas-close {
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-border) !important;
    border-radius: 50%;
    background: #fff;
    color: var(--color-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}

.offcanvas-body {
    display: flex;
    flex-direction: column;
    padding: 1.35rem 1.35rem calc(1.5rem + env(safe-area-inset-bottom));
}

.offcanvas-kicker {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--color-muted);
    margin: 0 0 0.85rem;
}

.offcanvas-body .navbar-nav {
    width: 100%;
    flex-grow: 1;
}

.offcanvas-body .navbar-nav .nav-link {
    color: var(--color-dark);
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1.12rem;
    letter-spacing: -0.02em;
    border-radius: 0;
    margin-bottom: 0;
    padding: 0.78rem 0;
    background: none;
    border-bottom: 1px solid var(--color-border) !important;
}

.offcanvas-body .navbar-nav .nav-item:last-child .nav-link {
    border-bottom: none !important;
}

.offcanvas-body .navbar-nav .nav-link::before {
    display: none;
}

.offcanvas-body .navbar-nav .nav-link.active,
.offcanvas-body .navbar-nav .nav-link:hover {
    color: var(--color-primary);
    background: none;
    padding-left: 0;
    box-shadow: none;
}

.offcanvas-cta {
    margin-top: auto;
    padding: 1.15rem 1.2rem 1.2rem;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
}

.offcanvas-cta span {
    display: block;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-muted);
    margin-bottom: 0.45rem;
}

.offcanvas-cta a {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-dark);
    border-bottom: 1px solid rgba(44, 36, 38, 0.22) !important;
    padding-bottom: 0.12rem;
}

.offcanvas-cta a:hover {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary) !important;
}

/* ============================================================== 
    # Product Page Styles
=================================================================== */

/* Modern Breadcrumb Styles */
.breadcrumb-area-modern {
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, rgba(44, 28, 32, 0.58), rgba(90, 40, 54, 0.52)), url('/assets/breadcrumb.jpg');
    background-size: cover;
    background-position: center;
    padding: 150px 0 72px 0;
    display: flex;
    align-items: center;
}

/* .breadcrumb-area-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
} */

/* Search Box Modern */
.search-box-modern .input-group {
    border-radius: 50px;
    overflow: hidden;
}

.search-box-modern .input-group-text {
    border-radius: 50px 0 0 50px;
}

.search-box-modern .form-control {
    border-radius: 0;
}

.search-box-modern .btn {
    border-radius: 0 50px 50px 0;
}

.search-box-modern .btn-danger {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
    box-shadow: none;
}

.search-box-modern .btn-danger:hover,
.search-box-modern .btn-danger:focus-visible {
    background: var(--color-primary-hover);
    border-color: var(--color-primary-hover);
    color: #fff;
    transform: none;
    box-shadow: none;
}

/* Filter Buttons Modern */
.filter-buttons-modern {
    gap: 1rem;
}

.filter-btn-modern {
    padding: 0.7rem 1.4rem;
    border: 1px solid var(--color-border);
    background: white;
    color: var(--color-dark);
    border-radius: var(--radius-pill);
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 0.92rem;
}

.filter-btn-modern:hover {
    background: var(--color-blush);
    color: var(--color-primary);
    transform: none;
    box-shadow: none;
}

.filter-btn-modern.active {
    background: var(--color-dark);
    color: white;
    border-color: var(--color-dark);
    box-shadow: none;
}

/* Video Card Modern */
.video-card-modern {
    border-radius: 20px;
    overflow: hidden;
    transition: box-shadow 0.2s ease;
}

.video-card-modern:hover {
    box-shadow: var(--shadow-md) !important;
}

.video-card-modern video {
    border-radius: 15px;
}

/* Table Modern */
.table-modern {
    border-radius: 20px;
    overflow: hidden;
    border: none;
}

.table-modern thead th {
    border: none;
}

.table-modern thead {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.table-modern tbody tr {
    transition: all 0.3s ease;
}

.table-modern tbody tr:hover {
    background-color: rgba(var(--color-primary-rgb), 0.05);
}

.table-modern tbody td {
    border-color: rgba(0, 0, 0, 0.05);
}

.skin-guide {
    background: var(--color-cream);
    padding: 5rem 0 4.5rem;
}

.skin-guide-group + .skin-guide-group {
    margin-top: 2.75rem;
}

.skin-guide-label {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--color-muted);
    margin-bottom: 1.15rem;
}

.skin-guide-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.15rem;
}

.skin-guide-group:last-child .skin-guide-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.skin-guide-card {
    height: 100%;
    padding: 1.55rem 1.4rem 1.45rem;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.skin-guide-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 1.05rem;
    margin-bottom: 0.95rem;
}

.skin-guide-card h4 {
    font-size: 1.08rem;
    margin-bottom: 0.85rem;
    letter-spacing: -0.02em;
}

.skin-guide-card ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    padding: 0;
    margin: 0;
}

.skin-guide-card li {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--color-dark);
    background: var(--color-blush);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-pill);
    padding: 0.28rem 0.7rem;
}

@media (max-width: 991px) {
    .skin-guide-grid,
    .skin-guide-group:last-child .skin-guide-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 576px) {
    .skin-guide {
        padding: 3.5rem 0 3rem;
    }

    .skin-guide-grid,
    .skin-guide-group:last-child .skin-guide-grid {
        grid-template-columns: 1fr;
    }
}

/* Button Modern - Product Page Variant */
/* Note: .btn-modern-primary already exists for hero section (white bg, red text) */
/* This variant is for product page (red bg, white text) */
.product-loadmore {
    margin-top: 2rem;
    padding-bottom: 1rem;
}

.section-light-pink .btn-modern-primary,
#loadmoreBtn.btn-modern-primary {
    background: transparent;
    color: var(--color-dark);
    border: 1px solid rgba(44, 36, 38, 0.18) !important;
    box-shadow: none !important;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.75rem;
    box-sizing: border-box;
}

.section-light-pink .btn-modern-primary:hover,
#loadmoreBtn.btn-modern-primary:hover {
    background: var(--color-dark);
    border-color: var(--color-dark) !important;
    color: #fff !important;
    transform: none;
    box-shadow: none !important;
}

/* Animation - fadeInUp (alternative to fadeInUpModern) */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

/* Masonry Layout */
.masonry-wrapper {
    column-count: 1;
    column-gap: 1.5rem;
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 1.5rem;
    display: inline-block;
    width: 100%;
}

@media (min-width: 576px) {
    .masonry-wrapper {
        column-count: 2;
    }
}

@media (min-width: 992px) {
    .masonry-wrapper {
        column-count: 3;
    }
}

@media (min-width: 1200px) {
    .masonry-wrapper {
        column-count: 4;
    }
}

/* Product Page Responsive */
@media (max-width: 768px) {
    .filter-buttons-modern {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-btn-modern {
        width: 100%;
    }

    .product-btn,
    .product-card-modern .product-btn {
        padding: 0.7rem 0.75rem;
        font-size: 0.62rem;
        letter-spacing: 0.12em;
        font-weight: 600;
    }

    .product-card-modern .product-btn i {
        display: none;
    }
}


.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--color-primary-hover) !important;
}
.owl-carousel .owl-item img:hover{
    transform: scale(1);
}
.owl-carousel .owl-stage-outer{
    overflow:  visible !important;
}

/* ==============================================================
    # Product Detail (PDP)
=================================================================== */

.product-pdp-media {
    background: var(--color-blush);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    border: 1px solid var(--color-border);
}

.product-pdp-media img {
    border-radius: calc(var(--radius-lg) - 6px);
    width: 100%;
    display: block;
    background: #fff;
}

.product-pdp {
    padding: 0.25rem 0 0.25rem 0.5rem;
}

.product-pdp-title {
    font-size: clamp(1.75rem, 3vw, 2.6rem);
    font-weight: 600;
    letter-spacing: -0.035em;
    line-height: 1.15;
    margin: 0.35rem 0 1.25rem;
    color: var(--color-dark);
}

.product-pdp-price {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 2.4vw, 2rem);
    font-weight: 600;
    color: var(--color-dark);
    letter-spacing: -0.03em;
    margin-bottom: 1.75rem;
}

.product-pdp-price small {
    font-size: 0.55em;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--color-muted);
    margin-right: 0.35rem;
}

.product-pdp-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin: 0 0 1.75rem;
    padding: 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.product-pdp-meta > div {
    padding: 1rem 1.25rem 1rem 0;
    border-bottom: 1px solid var(--color-border);
}

.product-pdp-meta > div:nth-child(odd) {
    border-right: 1px solid var(--color-border);
    padding-right: 1.25rem;
}

.product-pdp-meta > div:nth-child(even) {
    padding-left: 1.25rem;
}

.product-pdp-meta > div:nth-last-child(-n+2) {
    border-bottom: none;
}

.product-pdp-meta dt {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--color-muted);
    margin-bottom: 0.25rem;
}

.product-pdp-meta dd {
    margin: 0;
    font-size: 0.98rem;
    font-weight: 500;
    color: var(--color-dark);
}

.product-pdp-copy {
    color: var(--color-text);
    line-height: 1.85;
    font-size: 1.02rem;
    margin-bottom: 0;
}

.product-pdp-copy p:last-child {
    margin-bottom: 0;
}

.product-pdp-share-label {
    display: block;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--color-muted);
    margin-bottom: 0.75rem;
}

.product-pdp-share .social-btn {
    background: transparent;
    border: 1px solid var(--color-border);
    color: var(--color-dark);
    border-radius: 50%;
}

.product-pdp-share .social-btn:hover {
    background: var(--color-dark);
    border-color: var(--color-dark);
    color: #fff;
    box-shadow: none;
}

.owl-carousel .owl-item {
    overflow: visible;
}

.article-body {
    line-height: 1.85;
    color: var(--color-text);
}

.article-body p,
.article-body ul,
.article-body ol {
    margin-bottom: 1.15rem;
}

.article-body > *:last-child {
    margin-bottom: 0;
}

.content-share,
.product-pdp-share {
    margin-top: 2.75rem;
    margin-bottom: 0.5rem;
    padding-top: 1.85rem;
    border-top: 1px solid var(--color-border);
}

.content-share-label,
.product-pdp-share-label {
    display: block;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--color-muted);
    margin-bottom: 0.85rem;
}

.content-share .social-btn,
.product-pdp-share .social-btn {
    background: transparent;
    border: 1px solid var(--color-border);
    color: var(--color-dark);
    border-radius: 50%;
}

.content-share .social-btn:hover,
.product-pdp-share .social-btn:hover {
    background: var(--color-dark);
    border-color: var(--color-dark);
    color: #fff;
    box-shadow: none;
}

@media (max-width: 767px) {
    .product-pdp {
        padding: 0;
    }

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

    .product-pdp-meta > div,
    .product-pdp-meta > div:nth-child(odd),
    .product-pdp-meta > div:nth-child(even) {
        border-right: none;
        padding: 0.9rem 0;
    }

    .product-pdp-meta > div:nth-last-child(-n+2) {
        border-bottom: 1px solid var(--color-border);
    }

    .product-pdp-meta > div:last-child {
        border-bottom: none;
    }
}

/* ==============================================================
    # Homepage — join band, values, bonus
=================================================================== */

.join-band {
    background: var(--color-blush);
    padding: 4.5rem 0;
}

.join-band-inner {
    display: grid;
    grid-template-columns: 1.4fr auto;
    gap: 3rem;
    align-items: end;
    padding: 3rem 3.25rem;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
}

.join-band-title {
    font-size: clamp(2rem, 3.4vw, 3.1rem);
    letter-spacing: -0.04em;
    margin: 0.2rem 0 1rem;
    color: var(--color-dark);
}

.join-band-text {
    max-width: 36rem;
    color: var(--color-text);
    line-height: 1.8;
    margin-bottom: 1.75rem;
}

.join-band-btn {
    display: inline-block;
    padding: 0.85rem 1.6rem;
    background: transparent;
    color: var(--color-dark);
    border: 1px solid rgba(44, 36, 38, 0.18) !important;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.join-band-btn:hover {
    background: var(--color-dark);
    border-color: var(--color-dark) !important;
    color: #fff;
}

.join-band-stats {
    display: flex;
    gap: 2.5rem;
    padding-bottom: 0.35rem;
}

.join-band-stats strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    letter-spacing: -0.04em;
    color: var(--color-dark);
    line-height: 1.1;
}

.join-band-stats span {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-muted);
}

.value-card {
    height: 100%;
    padding: 1.75rem 1.5rem 1.6rem;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.value-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 1.2rem;
    margin-bottom: 1.1rem;
}

.value-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.65rem;
}

.value-card p {
    margin: 0;
    color: var(--color-muted);
    line-height: 1.7;
    font-size: 0.95rem;
}

.bonus-card {
    height: 100%;
}

.bonus-card-media {
    position: relative;
    height: 340px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--color-blush);
}

.bonus-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bonus-card-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1.6rem 1.5rem 1.45rem;
    background: linear-gradient(180deg, transparent, rgba(44, 28, 32, 0.72) 70%);
    color: #fff;
    text-align: left;
}

.bonus-card-overlay span {
    display: block;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0.8;
    margin-bottom: 0.4rem;
}

.bonus-card-overlay h3 {
    color: #fff;
    font-size: 1.35rem;
    margin-bottom: 0.35rem;
}

.bonus-card-overlay p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.92rem;
    line-height: 1.55;
}

@media (min-width: 992px) {
    .navbar.fixed-top .navbar-toggler {
        display: none !important;
    }
}

@media (max-width: 991px) {
    .join-band-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1.5rem;
    }

    .join-band-stats {
        gap: 1.75rem;
    }

    .bonus-card-media {
        height: 280px;
    }

    html,
    body {
        overflow-x: hidden;
    }

    .navbar.fixed-top .navbar-toggler {
        display: inline-flex !important;
    }

    .navbar.fixed-top .navbar-brand img,
    .navbar.fixed-top.scrolled .navbar-brand img,
    .navbar.fixed-top.navbar-inner .navbar-brand img {
        max-height: 38px;
    }

    .breadcrumb-area-modern {
        padding: 118px 0 52px;
    }

    .breadcrumb-area-modern .display-4 {
        font-size: 1.7rem;
        margin-bottom: 1rem !important;
    }

    .modern-hero,
    .carousel-item {
        min-height: 62vh;
        height: 62vh;
    }

    .filter-btn-modern {
        padding: 0.55rem 0.95rem;
        font-size: 0.8rem;
    }

    .search-box-modern .form-control {
        font-size: 0.92rem !important;
    }

    .product-card-modern .product-image {
        height: 168px;
    }

    .product-info {
        padding: 0.95rem 0.85rem 1rem;
    }

    .join-band-title {
        font-size: 1.7rem;
    }

    .value-card {
        padding: 1.4rem 1.2rem 1.3rem;
    }

    .table-responsive {
        -webkit-overflow-scrolling: touch;
    }

    .wa-chatbot {
        z-index: 1020;
        bottom: max(16px, env(safe-area-inset-bottom));
        right: 16px;
    }

    .wa-chatbot-btn {
        width: 52px;
        height: 52px;
        font-size: 1.55rem;
    }
}

@media (max-width: 576px) {
    .modern-hero,
    .carousel-item {
        min-height: 52vh;
        height: 52vh;
    }

    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .product-loadmore {
        padding-bottom: 2.5rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}