@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@700;800;900&display=swap');

.btn-modern-primary:hover,
.btn-modern-primary:focus {
    color: #fff !important;
}


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

/* ============================================================== 
    # CSS Variables
=================================================================== */
:root {
    /* Typography */
    --font-default: 'Outfit', sans-serif;
    --font-heading: 'Manrope', sans-serif;

    /* Brand Colors */
    --color-primary: #E6224E;
    --color-primary-hover: #c4193d;
    --color-white: #ffffff;
    --color-dark: #0e0e0e;
    --color-text: #666666;
    --color-muted: #767676;

    /* Shadows */
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-primary: 0 10px 30px rgba(230, 34, 78, 0.3);

    /* Transitions */
    --transition: all 0.3s ease;
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1.3;
    margin: 0;
    margin-bottom: 1rem;
}

a {
    transition: var(--transition);
    text-decoration: none !important;
    border-bottom: none !important;
}

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

a:focus,
a:active,
a:visited {
    text-decoration: none !important;
    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: #5A5A5A !important;
}

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

.text-primary-brand {
    color: #E6224E !important;
}

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

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

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

.lead {
    font-size: 1.25rem;
    font-weight: 300;
}

.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: #c4193d;
    border-color: #c4193d;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
}

.btn-danger:hover {
    background-color: #c4193d;
    border-color: #c4193d;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(230, 34, 78, 0.3);
}

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

.btn-outline-danger:hover {
    color: #fff;
    background-color: #E6224E;
    border-color: #E6224E;
}

.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: #fff;
    background-color: #c4193d;
}

.badge-danger:hover {
    background-color: #c4193d;
}

.bg-danger {
    background-color: #E6224E !important;
}

.text-danger {
    color: #E6224E !important;
}

/* Card */
.card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    background-color: #fff;
    border-radius: 0.5rem;
    transition: all 0.3s 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(135deg, rgba(227, 66, 138, 0.446) 0%, rgba(164, 5, 79, 0.4) 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 all links in hero */
.modern-hero a,
.btn-modern-primary,
.btn-modern-outline {
    text-decoration: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
}

.modern-hero a:hover,
.btn-modern-primary:hover,
.btn-modern-outline: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: #E6224E;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-modern-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    background: #f8f8f8;
    color: #E6224E;
}

.btn-modern-outline {
    background: transparent;
    color: white;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid white;
    transition: all 0.3s;
}

.btn-modern-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-color: white;
    transform: translateY(-3px);
}

/* ============================================================== 
    # 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: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    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%) scale(1.15);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.2);
}

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

.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: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s;
    overflow: hidden;
    height: 100%;
}

/* 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;
    box-shadow: 0 8px 32px rgba(230, 34, 78, 0.10), 0 1.5px 8px rgba(0, 0, 0, 0.04);
    border-radius: 2rem;
}

.modern-card-new:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(230, 34, 78, 0.15);
}

/* Product Cards */
.product-card-modern {
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s;
}

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

.product-card-modern .product-image img {
    transition: transform 0.6s;
}

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

.product-card-modern .product-info {
    padding: 1.5rem;
    background: white;
}

.product-card-modern .product-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0e0e0e;
    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: 1rem;
    font-weight: 700;
    color: #E6224E;
    margin-bottom: 1rem;
}

.product-card-modern .product-btn,
.news-card-modern .product-btn {
    width: 100%;
    padding: 0.875rem;
    background: #E6224E;
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.product-card-modern .product-btn:hover,
.news-card-modern .product-btn:hover {
    background: #c4193d;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(230, 34, 78, 0.3);
    color: white;
}

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

    .product-card-modern .product-btn,
    .news-card-modern .product-btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
        font-weight: 500;
    }

    .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: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    display: block;
    height: 100%;
    position: relative;
}

.news-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(230, 34, 78, 0.15);
}

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

.news-card-modern .news-image img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* News Overlay */
.news-overlay {
    background: rgba(230, 34, 78, 0.85);
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-card-modern:hover .news-overlay {
    opacity: 1;
}

.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: #0e0e0e;
    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: #E6224E;
}

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

.bg-light {
    background-color: #fafafa !important;
}

.section-light-pink {
    background: linear-gradient(135deg, rgba(255, 245, 246, 0.5) 0%, rgba(255, 245, 246, 0.3) 100%);
    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;
        transform: translateY(40px);
    }

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

.animate-fade-up {
    animation: fadeInUpModern 0.8s ease-out forwards;
    will-change: transform, opacity;
}

.animate-delay-1 {
    animation-delay: 0.2s;
    opacity: 0;
    animation-fill-mode: forwards;
    will-change: transform, opacity;
}

.animate-delay-2 {
    animation-delay: 0.4s;
    opacity: 0;
    animation-fill-mode: forwards;
    will-change: transform, opacity;
}


/* ============================================================== 
    # 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(30px) !important;
}

/* Hover effects */
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
}

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

.news-card-modern a:hover,
.product-card-modern a: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(230, 34, 78, 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 #fff;
    font-size: 28px;
    font-weight: 600;
    color: #fff;
    display: inline-block;
    background: #e6224e;
}

.process-wrapp li>.pro-step:hover {
    background: #D10E38;
}

.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;
    transform: translateY(-2px);
}

/* 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.8s ease-out forwards;
}

.animate-scale-in {
    animation: scaleIn 0.6s ease-out forwards;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* 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: transform 0.3s;
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
    transform: scale(1.2);
}

/* 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: white;
    border-top: 1px solid rgba(230, 34, 78, 0.1);
    color: #333;
}

.footer-main {
    background: rgba(255, 255, 255, 0.98);
    padding: 3rem 0;
}

.footer-about .footer-logo {
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.08));
}

.footer-description {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

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

.social-btn {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #E6224E 0%, #ff4a6e 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(230, 34, 78, 0.2);
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(230, 34, 78, 0.4);
    color: white;
}

.footer-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #E6224E;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, #E6224E 0%, #ff4a6e 100%);
    border-radius: 3px;
}

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

.footer-menu li {
    margin-bottom: 0.875rem;
    color: #666;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.footer-menu li a {
    color: #666;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    font-size: 0.95rem;
}

.footer-menu li a:hover {
    color: #E6224E;
    padding-left: 5px;
}

.footer-menu li i {
    font-size: 0.875rem;
    margin-right: 0.5rem;
}

.footer-menu li i.fa-chevron-right,
.footer-menu li i.bi-chevron-right {
    font-size: 0.75rem;
    color: #E6224E;
}

.certificate-badges {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.cert-badge {
    max-width: 140px;
    width: auto;
    height: 60px;
    object-fit: contain;
    transition: all 0.3s;
}

.cert-badge:hover {
    transform: translateY(-3px);
}

/* Overseas Card Hover Effect */
.section-light-pink .card {
    transition: all 0.3s ease;
}

.section-light-pink .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(230, 34, 78, 0.15) !important;
}

.section-light-pink .card img {
    transition: transform 0.4s ease;
}

.section-light-pink .card:hover img {
    transform: scale(1.1);
}

/* ============================================================== 
    # 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: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    height: 100%;
    border: none;
}

.card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(230, 34, 78, 0.15);
}

/* 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: scale(1.12);
}

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

.card-modern-body h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0e0e0e;
    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: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.card-product-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(230, 34, 78, 0.15);
}

.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: scale(1.12);
}

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

.card-product-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0e0e0e;
    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.5rem;
    font-weight: 700;
    color: #E6224E;
    margin-bottom: 1rem;
}

.card-product-btn {
    width: 100%;
    padding: 0.875rem;
    background: #E6224E;
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s;
    display: block;
    text-align: center;
}

.card-product-btn:hover {
    background: #c4193d;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(230, 34, 78, 0.3);
    color: white;
}

/* 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: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.card-news-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(230, 34, 78, 0.15);
}

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

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

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

.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: #0e0e0e;
    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: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.card-travel-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(230, 34, 78, 0.15);
}

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

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

.card-travel-modern:hover .card-travel-image img {
    transform: scale(1.1);
}

.card-travel-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #E6224E 0%, #ff4a6e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.card-travel-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0e0e0e;
    margin-bottom: 0;
}

.footer-bottom {
    background: linear-gradient(135deg, rgba(230, 34, 78, 0.02) 0%, rgba(255, 245, 246, 0.5) 100%);
    border-top: 1px solid rgba(230, 34, 78, 0.08);
}

.footer-bottom p.small {
    font-size: 0.85rem;
}

/* 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: all 0.3s;
    z-index: 9999;
    cursor: pointer;
}

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

.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-bottom .text-lg-end {
        text-align: center !important;
        margin-top: 0.5rem;
    }
}

@media (max-width: 576px) {
    .footer-main {
        padding: 2rem 0 !important;
    }

    .social-btn {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

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

    .cert-badge {
        max-width: 100px;
        height: 50px;
    }
}

/* ============================================================== 
    # 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: 1rem 0;
    z-index: 1030;
    transition: all 0.3s ease;
}

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

.navbar.fixed-top.scrolled {
    background: rgba(255, 255, 255, 1);
    backdrop-filter: blur(30px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    padding: 0.75rem 0;
}

.navbar.fixed-top .navbar-brand img {
    max-height: 50px;
    transition: all 0.3s ease;
}

.navbar.fixed-top.scrolled .navbar-brand img {
    max-height: 45px;
}

/* Nav Link - Putih saat awal, gelap saat scroll */
.navbar.fixed-top .navbar-nav .nav-link {
    color: #ffffff;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.navbar.fixed-top.scrolled .navbar-nav .nav-link {
    color: #0e0e0e;
}

.navbar.fixed-top .navbar-nav .nav-link:hover {
    color: #E6224E;
}

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

/* Toggle Button */
.navbar.fixed-top .navbar-toggler {
    border: none;
    color: #ffffff;
}

.navbar.fixed-top .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar.fixed-top.scrolled .navbar-toggler {
    color: #0e0e0e;
}

.navbar.fixed-top.scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2814, 14, 14, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Call/Info Section */
.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 {
    background: rgba(230, 34, 78, 0.1);
    color: #E6224E;
}

.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 {
    color: #999;
}

.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 {
    color: #0e0e0e;
}

.navbar.fixed-top .call .info h5 a:hover {
    color: #E6224E;
}

/* ============================================================== 
    # Offcanvas Mobile Menu - V2 (Modern Theme)
=================================================================== */


.offcanvas {
    background: #fff;
    border-left: 1px solid rgba(230, 34, 78, 0.08);
    box-shadow: -8px 0 32px rgba(230, 34, 78, 0.08);
    border-top-left-radius: 24px;
    border-bottom-left-radius: 24px;
    min-width: 270px;
    max-width: 85vw;
}

.offcanvas-header {
    border-bottom: 1px solid rgba(230, 34, 78, 0.08);
    padding: 1.5rem 1.5rem 1rem 1.5rem;
}

.offcanvas-title {
    color: var(--color-primary);
    font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: 0.5px;
}

.btn-close {
    background-size: 0.8em;
    opacity: 0.7;
    transition: all 0.2s;
}

.btn-close:hover {
    opacity: 1;
    transform: rotate(90deg);
}

.offcanvas-body {
    padding: 1.5rem 0.5rem 1.5rem 0.5rem;
}

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

.offcanvas-body .navbar-nav .nav-link {
    color: #0e0e0e;
    font-weight: 600;
    font-size: 1.08rem;
    border-radius: 12px;
    margin-bottom: 0.5rem;
    padding: 0.85rem 1.25rem;
    transition: all 0.2s;
    position: relative;
    background: none;
    border-bottom: none;
}

.offcanvas-body .navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%) scaleY(0);
    width: 5px;
    height: 28px;
    background: linear-gradient(180deg, #E6224E 0%, #ff4a6e 100%);
    border-radius: 3px;
    transition: transform 0.2s;
}

.offcanvas-body .navbar-nav .nav-link.active,
.offcanvas-body .navbar-nav .nav-link:hover {
    color: #E6224E;
    background: rgba(230, 34, 78, 0.07);
    padding-left: 1.75rem;
    box-shadow: 0 2px 12px rgba(230, 34, 78, 0.04);
}

.offcanvas-body .navbar-nav .nav-link.active::before,
.offcanvas-body .navbar-nav .nav-link:hover::before {
    transform: translateY(-50%) scaleY(1);
}

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

.offcanvas-body .call {
    background: rgba(230, 34, 78, 0.06);
    border-radius: 16px;
    padding: 1.25rem 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    box-shadow: 0 2px 12px rgba(230, 34, 78, 0.04);
}

.offcanvas-body .call .icon {
    background: #E6224E;
    color: #fff;
    border-radius: 10px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.offcanvas-body .call .info p {
    color: #E6224E;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.offcanvas-body .call .info h5 {
    margin: 0;
    font-size: 1.08rem;
    font-weight: 700;
}

.offcanvas-body .call .info h5 a {
    color: #0e0e0e;
    text-decoration: none;
    transition: color 0.2s;
}

.offcanvas-body .call .info h5 a:hover {
    color: #E6224E;
}

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

/* Modern Breadcrumb Styles */
.breadcrumb-area-modern {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(230, 34, 78, 0.2), rgba(185, 15, 148, 0.4)), url('/assets/breadcrumb.jpg');
    background-size: cover;
    background-position: center;
    padding: 140px 0 60px 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;
}

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

.filter-btn-modern {
    padding: 0.75rem 1.5rem;
    border: 2px solid #E6224E;
    background: white;
    color: #E6224E;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 0.95rem;
}

.filter-btn-modern:hover {
    background: #E6224E;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(230, 34, 78, 0.3);
}

.filter-btn-modern.active {
    background: #E6224E;
    color: white;
    box-shadow: 0 5px 15px rgba(230, 34, 78, 0.3);
}

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

.video-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !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(230, 34, 78, 0.05);
}

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

/* 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) */
.section-light-pink .btn-modern-primary,
#loadmoreBtn.btn-modern-primary {
    background: #E6224E;
    color: white;
    border: none;
}

.section-light-pink .btn-modern-primary:hover,
#loadmoreBtn.btn-modern-primary:hover {
    background: #c4193d;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(230, 34, 78, 0.3);
    color: white;
}

/* 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 Button Mobile - Perkecil dan sembunyikan icon */
    .product-card-modern .product-btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
        font-weight: 500;
    }

    .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: #C4193D !important;
}