@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-color: #cda137;
    --secondary-color: #000;
    --accent-color: #fff;
    --primary-gradient: linear-gradient(135deg, #cda137 0%, #b8942f 100%);
    --secondary-gradient: linear-gradient(135deg, #000 0%, #333 100%);
    --accent-gradient: linear-gradient(135deg, #fff 0%, #f8f8f8 100%);
    --glass-bg: rgba(205, 161, 55, 0.1);
    --glass-border: rgba(205, 161, 55, 0.3);
    --shadow-light: 0 8px 32px rgba(205, 161, 55, 0.1);
    --shadow-medium: 0 16px 48px rgba(205, 161, 55, 0.15);
    --shadow-heavy: 0 24px 64px rgba(205, 161, 55, 0.2);
    --border-radius: 20px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    background: linear-gradient(135deg, #fff 0%, #f8f8f8 100%);
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;
    color: #000;
    padding-top: 76px; /* Space for fixed navbar */
}

.hero {
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 100%), url('images/konfeksi.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.6) 0%, rgba(205,161,55,0.2) 50%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}

.hero-confetti {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.confetti-piece {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #cda137;
    animation: confetti-fall linear infinite;
}

.confetti-piece:nth-child(1) {
    left: 10%;
    animation-duration: 3s;
    animation-delay: 0s;
}

.confetti-piece:nth-child(2) {
    left: 20%;
    animation-duration: 4s;
    animation-delay: 1s;
    background: #fff;
}

.confetti-piece:nth-child(3) {
    left: 30%;
    animation-duration: 3.5s;
    animation-delay: 2s;
}

.confetti-piece:nth-child(4) {
    left: 40%;
    animation-duration: 5s;
    animation-delay: 0.5s;
    background: #fff;
}

.confetti-piece:nth-child(5) {
    left: 50%;
    animation-duration: 4.5s;
    animation-delay: 1.5s;
}

.confetti-piece:nth-child(6) {
    left: 60%;
    animation-duration: 3.8s;
    animation-delay: 2.5s;
    background: #fff;
}

.confetti-piece:nth-child(7) {
    left: 70%;
    animation-duration: 4.2s;
    animation-delay: 0.8s;
}

.confetti-piece:nth-child(8) {
    left: 80%;
    animation-duration: 5.2s;
    animation-delay: 1.2s;
    background: #fff;
}

.confetti-piece:nth-child(9) {
    left: 90%;
    animation-duration: 3.9s;
    animation-delay: 2.8s;
}

.confetti-piece:nth-child(10) {
    left: 95%;
    animation-duration: 4.8s;
    animation-delay: 0.3s;
}

@keyframes confetti-fall {
    0% {
        transform: translateY(-100vh) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(720deg);
        opacity: 0;
    }
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #cda137 0%, #fff 50%, #cda137 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textGlow 2s ease-in-out infinite alternate;
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, #cda137 0%, #b8942f 100%);
    border: 2px solid #cda137;
    color: #000;
    padding: 1rem 3rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #b8942f 0%, #cda137 100%);
    border-color: #b8942f;
    color: #fff;
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-heavy);
}

.card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    overflow: hidden;
    position: relative;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.card:hover::before {
    transform: scaleX(1);
}

.card:hover {
    transform: translateY(-10px) rotate(1deg);
    box-shadow: var(--shadow-heavy);
}

.card-img-top {
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.card:hover .card-img-top {
    transform: scale(1.1);
}

.card-title {
    color: #1a1a1a;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.card-text {
    color: #666;
    font-weight: 400;
}

.navbar {
    background: rgba(0, 0, 0, 0.95) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid #cda137;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    transform: translateY(-100%);
    animation: slideDown 0.8s ease-out 0.5s forwards;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.navbar-brand-section {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    padding: 0px 15px;
}

.brand-text {
    font-weight: 800;
    font-size: 1.5rem;
    color: #cda137 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Mobile Sidebar */
.offcanvas {
    background: linear-gradient(135deg, #000 0%, #333 100%);
    width: 280px !important;
}

.offcanvas-header {
    background: rgba(205, 161, 55, 0.1);
    border-bottom: 1px solid #cda137;
    padding: 1rem 1.5rem;
}

.offcanvas-body {
    padding: 1.5rem;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    margin-bottom: 0.5rem;
    color: #fff !important;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 1.1rem;
}

.mobile-nav-link:hover {
    background: rgba(205, 161, 55, 0.2);
    color: #cda137 !important;
    transform: translateX(5px);
}

.mobile-nav-link.active {
    background: linear-gradient(135deg, #cda137 0%, #b8942f 100%);
    color: #000 !important;
}

.mobile-nav-link i {
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.mobile-menu-toggle {
    border: 2px solid #cda137;
    border-radius: 8px;
    padding: 0.5rem;
    background: rgba(205, 161, 55, 0.1);
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(205, 161, 55, 0.2);
    border-color: #b8942f;
}

.mobile-menu-toggle .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%28205, 161, 55, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-nav {
    display: flex;
    justify-content: center;
    width: 100%;
}

.navbar-nav .nav-item {
    margin: 0 15px;
}

.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #cda137 0%, #b8942f 100%);
    color: #000;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(205, 161, 55, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.contact-btn:hover::before {
    left: 100%;
}

.contact-btn:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 25px rgba(205, 161, 55, 0.6);
}

.contact-btn i {
    font-size: 1.2rem;
    margin-right: 0;
    transition: all 0.3s ease;
}

.contact-btn span {
    position: absolute;
    right: 70px;
    background: #000;
    color: #cda137;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
    white-space: nowrap;
    pointer-events: none;
}

.contact-btn:hover span {
    opacity: 1;
    transform: translateX(0);
}

.contact-btn:hover i {
    transform: rotate(15deg);
}

/* Corner Text */
.corner-text {
    position: fixed;
    top: 30px;
    left: 30px;
    z-index: 1000;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1;
    pointer-events: none;
}

.corner-text span {
    display: block;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    animation: textGlow 3s ease-in-out infinite alternate;
}

.corner-text span:first-child {
    font-size: 2rem;
    color: #cda137;
    margin-bottom: 5px;
}

.corner-text span:last-child {
    font-size: 1.2rem;
    color: #fff;
    opacity: 0.9;
}

.nav-link {
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-gradient);
    transition: width 0.3s ease;
}

.nav-link {
    color: #fff !important;
}

.nav-link:hover {
    color: #cda137 !important;
}

.nav-link:hover::after {
    width: 100%;
    background: linear-gradient(135deg, #cda137 0%, #fff 100%);
}

.nav-link.active {
    color: #cda137 !important;
}

.nav-link.active::after {
    width: 100%;
    background: linear-gradient(135deg, #cda137 0%, #fff 100%);
}

footer {
    background: linear-gradient(135deg, #000 0%, #333 100%);
    color: #fff;
    margin-top: auto;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #cda137 0%, #fff 100%);
}

.features {
    background: linear-gradient(135deg, #fff 0%, #f8f8f8 50%, #fff 100%);
    padding: 5rem 0;
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="2" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23pattern)"/></svg>');
}

.features .container {
    position: relative;
    z-index: 2;
}

.features .card {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid #cda137;
    color: #fff;
}

.features .card-title {
    color: #cda137;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.features .card-text {
    color: #fff;
}

/* Blog Preview Section */
.blog-preview {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Gallery Preview Section */
.gallery-preview {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
}

/* Animations */
@keyframes textGlow {
    from { filter: brightness(1); }
    to { filter: brightness(1.2); }
}

.fade-in {
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-in-left {
    animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-right {
    animation: slideInRight 0.8s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.1);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #cda137 0%, #b8942f 100%);
    border-radius: 10px;
    border: 2px solid transparent;
    background-clip: content-box;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #b8942f 0%, #cda137 100%);
    background-clip: content-box;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 3.8rem;
    }

    .hero p {
        font-size: 1.3rem;
    }

    .navbar-nav .nav-item {
        margin: 0 12px;
    }

    .brand-text {
        font-size: 1.4rem;
    }
}

@media (max-width: 992px) {
    .hero h1 {
        font-size: 3.2rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .navbar-nav .nav-item {
        margin: 0 10px;
    }

    .brand-text {
        font-size: 1.3rem;
    }

    .blog-preview .row,
    .gallery-preview .row {
        --bs-gutter-x: 1.5rem;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 70px; /* Adjust for mobile navbar */
    }

    .hero {
        min-height: 75vh;
        padding: 4rem 0;
        background-attachment: scroll; /* Disable fixed attachment on mobile */
    }

    .hero h1 {
        font-size: 2.8rem;
        margin-bottom: 1.2rem;
    }

    .hero p {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
    }

    .card-img-top {
        height: 200px;
    }

    .btn-primary {
        padding: 0.9rem 2.5rem;
        font-size: 0.95rem;
    }

    .navbar-brand {
        font-size: 1.5rem;
    }

    .desktop-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: block !important;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }

    .navbar-brand-section {
        position: static;
        text-align: center;
        margin-bottom: 30px;
        width: 100%;
        padding: 0px 15px;
    }

    .brand-text {
        font-size: 1.3rem;
        display: block;
        text-align: center;
    }

    .offcanvas-title.brand-text {
        margin-top: 20px;
        text-align: center;
    }

    .corner-text {
        display: none; /* Hide on mobile since it's now in navbar */
    }

    .floating-contact {
        bottom: 25px;
        right: 25px;
    }

    .contact-btn {
        width: 55px;
        height: 55px;
    }

    .contact-btn span {
        display: none; /* Hide tooltip on mobile */
    }

    /* Blog and Gallery Preview Responsive */
    .blog-preview .card,
    .gallery-preview .card {
        margin-bottom: 2rem;
    }

    .blog-preview .row,
    .gallery-preview .row {
        --bs-gutter-x: 1rem;
    }

    .blog-preview .card-img-top,
    .gallery-preview .card-img-top {
        height: 220px;
    }

    .blog-preview .card-title,
    .gallery-preview .card-title {
        font-size: 1.15rem;
    }

    .blog-preview .card-text,
    .gallery-preview .card-text {
        font-size: 0.95rem;
    }

    /* Hero section responsive adjustments */
    .hero .row {
        text-align: center;
    }

    .hero .col-lg-8,
    .hero .col-lg-4 {
        margin-bottom: 2.5rem;
    }

    .hero-images {
        align-items: center;
    }

    .hero-showcase {
        padding: 1.5rem;
        margin: 0 auto;
        max-width: 320px;
    }

    .hero-text-box {
        font-size: 1rem;
        padding: 8px 15px;
        top: 15px;
        left: 15px;
    }

    .showcase-title {
        font-size: 1.5rem;
    }

    .showcase-subtitle {
        font-size: 0.9rem;
    }

    .hero-carousel {
        margin: 0 auto;
        max-width: 280px;
    }

    .hero-image {
        height: 220px !important;
    }

    .image-overlay {
        padding: 1.5rem 2rem;
        border-radius: 15px;
    }

    .image-title {
        font-size: 1.1rem;
    }

    .image-subtitle {
        font-size: 0.9rem;
    }

    .hero-carousel .carousel-control-prev,
    .hero-carousel .carousel-control-next {
        width: 38px;
        height: 38px;
    }

    .hero-carousel .carousel-control-prev-icon,
    .hero-carousel .carousel-control-next-icon {
        width: 16px;
        height: 16px;
    }

    /* Glass elements responsive */
    .glass {
        padding: 1.2rem !important;
    }

    /* Display adjustments for mobile */
    .d-flex {
        flex-direction: column;
    }

    .text-center {
        text-align: center !important;
    }

    /* Process section responsive: tampilkan timeline sebagai satu baris yang bisa digulir secara horizontal pada layar kecil */
    .process-timeline {
        display: flex;
        flex-direction: row;
        gap: 1.25rem;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
        padding-bottom: 0.5rem; /* beri sedikit ruang untuk scrollbar */
    }

    .process-step {
        flex: 0 0 260px; /* lebar tetap per kotak agar sejajar 1 baris */
        min-width: 220px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        background: white;
        padding: 1rem;
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        border: 1px solid rgba(205, 161, 55, 0.08);
    }

    .step-number {
        width: 50px;
        height: 50px;
        margin-bottom: 0;
        margin-right: 1rem;
        flex-shrink: 0;
    }

    .step-content {
        background: transparent;
        padding: 0;
        box-shadow: none;
        border: none;
    }

    .step-content:hover {
        transform: none;
        box-shadow: none;
    }

    .process-arrow {
        display: none;
    }

    /* Process Timeline Section */
    .process-section {
        background: linear-gradient(135deg, #fff 0%, #f8f9fa 50%, #fff 100%);
        padding: 5rem 0;
        position: relative;
    }

    .process-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(135deg, #cda137 0%, #fff 50%, #cda137 100%);
    }

    .process-timeline {
        display: flex;
        align-items: stretch;
        justify-content: center;
        gap: 1rem;
        position: relative;
        flex-wrap: nowrap; /* jangan bungkus, tata satu baris */
        overflow-x: auto; /* aktifkan scroll horizontal bila perlu */
        -webkit-overflow-scrolling: touch;
        padding-bottom: 0.5rem;
    }

    .process-step {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        flex: 0 0 260px; /* setiap kotak memiliki lebar tetap */
        min-width: 220px;
        position: relative;
    }

    .process-arrow {
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        color: #cda137;
        font-size: 1.2rem;
    }

    .step-number {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: linear-gradient(135deg, #cda137 0%, #b8942f 100%);
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
        box-shadow: 0 8px 25px rgba(205, 161, 55, 0.3);
        transition: all 0.3s ease;
    }

    .step-number:hover {
        transform: scale(1.1);
        box-shadow: 0 12px 35px rgba(205, 161, 55, 0.4);
    }

    .step-content {
        background: white;
        padding: 1.5rem;
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        border: 1px solid rgba(205, 161, 55, 0.1);
        transition: all 0.3s ease;
    }

    .step-content:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    }

    .step-title {
        color: #333;
        font-size: 1.1rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
    }

    .step-description {
        color: #666;
        font-size: 0.9rem;
        line-height: 1.5;
        margin: 0;
    }

    .process-arrow {
        color: #cda137;
        font-size: 1.5rem;
        transition: all 0.3s ease;
    }

    .process-arrow:hover {
        transform: scale(1.2);
        color: #b8942f;
    }

    /* Features section responsive */
    .features .card {
        margin-bottom: 2.5rem;
    }

    .features .row {
        --bs-gutter-x: 1rem;
    }
}

@media (max-width: 576px) {
    body {
        padding-top: 65px;
    }

    .hero {
        min-height: 70vh;
        padding: 3rem 0;
    }

    .hero h1 {
        font-size: 2.2rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .card-img-top {
        height: 180px;
    }

    .btn-primary {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
        width: 100%;
        margin-top: 1.5rem;
    }

    .brand-text {
        font-size: 1.1rem;
    }

    .navbar-nav .nav-link {
        padding: 0.5rem 1rem;
        font-size: 0.95rem;
    }

    .floating-contact {
        bottom: 20px;
        right: 20px;
    }

    .contact-btn {
        width: 50px;
        height: 50px;
    }

    .contact-btn i {
        font-size: 1.1rem;
    }

    /* Blog and Gallery cards */
    .blog-preview .card-img-top,
    .gallery-preview .card-img-top {
        height: 200px;
    }

    .blog-preview .card-title,
    .gallery-preview .card-title {
        font-size: 1.1rem;
    }

    .blog-preview .card-text,
    .gallery-preview .card-text {
        font-size: 0.9rem;
    }

    /* Footer responsive */
    footer .container {
        padding: 1.5rem;
    }
    
    footer p {
        font-size: 0.95rem;
    }
    
    @media (max-width: 768px) {
        footer .row.align-items-center {
            flex-direction: column;
            text-align: center;
        }
    
        footer .row.align-items-center > div {
            margin-bottom: 0.5rem;
        }
    }

    /* Card spacing */
    .card {
        margin-bottom: 1.5rem;
    }

    /* Glass elements */
    .glass {
        padding: 1rem !important;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 60px;
    }

    .hero {
        padding: 2.5rem 0;
        min-height: 65vh;
    }

    .hero h1 {
        font-size: 1.9rem;
        margin-bottom: 0.8rem;
    }

    .hero p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .btn-primary {
        padding: 0.7rem 1.5rem;
        font-size: 0.85rem;
    }

    .brand-text {
        font-size: 1rem;
    }

    .navbar-nav .nav-link {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }

    .floating-contact {
        bottom: 15px;
        right: 15px;
    }

    .contact-btn {
        width: 45px;
        height: 45px;
    }

    .contact-btn i {
        font-size: 1rem;
    }

    /* Blog and Gallery cards */
    .blog-preview .card-img-top,
    .gallery-preview .card-img-top {
        height: 180px;
    }

    .blog-preview .card-title,
    .gallery-preview .card-title {
        font-size: 1rem;
    }

    .blog-preview .card-text,
    .gallery-preview .card-text {
        font-size: 0.85rem;
    }

    /* Card spacing */
    .card {
        margin-bottom: 1.2rem;
    }

    /* Container padding */
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* Loading animation */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Trust Section */
.trust-section {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 50%, #fff 100%);
    position: relative;
}

.trust-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #cda137 0%, #fff 50%, #cda137 100%);
}

.trust-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(205, 161, 55, 0.1);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.trust-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #cda137 0%, #b8942f 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.trust-card:hover::before {
    transform: scaleX(1);
}

.trust-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(205, 161, 55, 0.2);
}

.trust-icon {
    transition: all 0.4s ease;
}

.trust-card:hover .trust-icon {
    transform: scale(1.1) rotate(5deg);
}

.trust-title {
    color: #333;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.trust-description {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Produk Simple Section */
.produk-simple {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.produk-image-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 250px;
}

.produk-image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.produk-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.produk-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.produk-image-card:hover .produk-image {
    transform: scale(1.1);
}

.produk-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.produk-image-card:hover .produk-overlay {
    transform: translateY(0);
}

.produk-content {
    color: white;
    text-align: center;
}

.produk-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.produk-description {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    line-height: 1.4;
}

.produk-price-overlay {
    display: inline-block;
}

.produk-price-overlay .price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #cda137 0%, #b8942f 100%);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 2px solid rgba(255,255,255,0.3);
    box-shadow: 0 4px 15px rgba(205, 161, 55, 0.3);
    display: inline-block;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

    /* Mobile responsive for trust cards */
    .trust-card {
        margin-bottom: 2rem;
        padding: 2rem 1.5rem;
    }

    .trust-icon i {
        font-size: 3rem !important;
    }

    .trust-title {
        font-size: 1.1rem;
    }

    .trust-description {
        font-size: 0.9rem;
    }

    /* Mobile responsive for produk image cards */
    .produk-image-card {
        height: 200px;
        margin-bottom: 1.5rem;
    }

    .produk-overlay {
        padding: 1.5rem 1rem 1rem;
    }

    .produk-title {
        font-size: 1.1rem;
    }

    .produk-description {
        font-size: 0.8rem;
        margin-bottom: 0.8rem;
    }

    .produk-price-overlay .price {
        font-size: 1rem;
        padding: 0.4rem 0.8rem;
    }

/* Process Section Styling - Simple & Elegant */
.process-section {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 50%, #fff 100%);
    position: relative;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #cda137 0%, #fff 50%, #cda137 100%);
}

.process-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(205, 161, 55, 0.1);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #cda137 0%, #b8942f 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.process-card:hover::before {
    transform: scaleX(1);
}

.process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(205, 161, 55, 0.15);
}

.process-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #cda137 0%, #b8942f 100%);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 15px rgba(205, 161, 55, 0.3);
    transition: all 0.3s ease;
}

.process-card:hover .process-number {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(205, 161, 55, 0.4);
}

.process-title {
    color: #333;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.process-desc {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Testimoni Section */
.testimoni-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.testimoni-carousel {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0,0,0,0.1);
}

.testimoni-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 0;
    box-shadow: none;
    border: none;
    position: relative;
    overflow: hidden;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimoni-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #cda137 0%, #b8942f 100%);
}

.testimoni-avatar {
    transition: all 0.4s ease;
}

.testimoni-stars {
    color: #ffc107;
    margin-bottom: 1.5rem;
}

.testimoni-text {
    font-style: italic;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    position: relative;
    font-size: 1.1rem;
}

.testimoni-text::before {
    content: '"';
    font-size: 4rem;
    color: #cda137;
    position: absolute;
    top: -15px;
    left: -30px;
    font-family: Georgia, serif;
    opacity: 0.3;
}

.testimoni-text::after {
    content: '"';
    font-size: 4rem;
    color: #cda137;
    position: absolute;
    bottom: -45px;
    right: -30px;
    font-family: Georgia, serif;
    opacity: 0.3;
}

.testimoni-author {
    color: #333;
    font-size: 1rem;
    font-weight: 600;
}

/* Carousel Controls */
.testimoni-carousel .carousel-control-prev,
.testimoni-carousel .carousel-control-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.6) 100%);
    border: 2px solid #cda137;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.testimoni-carousel .carousel-control-prev {
    left: 20px;
}

.testimoni-carousel .carousel-control-next {
    right: 20px;
}

.testimoni-carousel .carousel-control-prev:hover,
.testimoni-carousel .carousel-control-next:hover {
    background: linear-gradient(135deg, #cda137 0%, #b8942f 100%);
    border-color: #b8942f;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(205, 161, 55, 0.5);
}

.testimoni-carousel .carousel-control-prev-icon,
.testimoni-carousel .carousel-control-next-icon {
    width: 20px;
    height: 20px;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.3));
}

.testimoni-carousel .carousel-indicators {
    bottom: 20px;
    margin-bottom: 0;
}

.testimoni-carousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.6);
    border: 2px solid #cda137;
    margin: 0 5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.testimoni-carousel .carousel-indicators button.active {
    background: linear-gradient(135deg, #cda137 0%, #b8942f 100%);
    border-color: #b8942f;
    transform: scale(1.3);
    box-shadow: 0 4px 12px rgba(205, 161, 55, 0.4);
}

/* Statistics Section */
.stats-section {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 50%, #fff 100%);
    position: relative;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #cda137 0%, #fff 50%, #cda137 100%);
}

.stats-content h2 {
    margin-bottom: 2rem;
}

.stats-content .lead {
    font-size: 1.1rem;
    line-height: 1.6;
}

.stats-highlights {
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    font-weight: 500;
    color: #555;
}

.highlight-item i {
    flex-shrink: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stats-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(205, 161, 55, 0.1);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stats-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #cda137 0%, #b8942f 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stats-card:hover::before {
    transform: scaleX(1);
}

.stats-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(205, 161, 55, 0.2);
}

.stats-icon {
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.stats-card:hover .stats-icon {
    transform: scale(1.1);
}

.stats-card .stats-content {
    flex: 1;
}

.stats-number {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.stats-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

/* Gallery hover overlay */
.hover-overlay {
    background: rgba(0, 0, 0, 0.7);
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateY(100%);
}

.card:hover .hover-overlay {
    opacity: 1 !important;
    transform: translateY(0);
}

/* Gallery filters */
.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.filter-btn {
    transition: all 0.3s ease;
    border-radius: 25px;
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    background-color: #000 !important;
    border-color: #000 !important;
    color: #fff !important;
}

.filter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    background-color: #333 !important;
    border-color: #333 !important;
}

.filter-btn.active {
    background: linear-gradient(135deg, #cda137 0%, #b8942f 100%) !important;
    border-color: #cda137 !important;
    color: #000 !important;
    font-weight: 600;
}

.gallery-item {
    transition: all 0.3s ease;
}

.gallery-item[style*="display: none"] {
    opacity: 0;
    transform: scale(0.8);
}

.gallery-item[style*="display: block"] {
    opacity: 1;
    transform: scale(1);
}

/* Blog filters */
.blog-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.blog-item {
    transition: all 0.3s ease;
}

.blog-item[style*="display: none"] {
    opacity: 0;
    transform: scale(0.8);
}

.blog-item[style*="display: block"] {
    opacity: 1;
    transform: scale(1);
}

/* Simple elegant blog cards */
.blog-item .card {
    transition: all 0.3s ease;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
}

.blog-item .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.blog-item .card-img-top {
    transition: transform 0.3s ease;
}

.blog-item .card:hover .card-img-top {
    transform: scale(1.05);
}

.blog-item .badge {
    font-size: 0.75rem;
    padding: 0.375rem 0.75rem;
    border-radius: 20px;
    font-weight: 500;
}

/* Blog sidebar styles */
.sidebar {
    position: sticky;
    top: 100px;
}

.related-article {
    padding: 0.75rem;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 8px;
    background: #fff;
    transition: all 0.3s ease;
}

.related-article:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.related-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
}

.related-title {
    font-size: 0.9rem;
    line-height: 1.3;
}

.related-title a {
    color: #333;
    font-weight: 600;
}

.related-title a:hover {
    color: #cda137;
}

.sidebar-section {
    margin-bottom: 2rem;
}

.category-link {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.25rem 0;
    transition: color 0.3s ease;
}

.category-link:hover {
    color: #cda137;
}

.category-link i {
    color: #cda137;
    font-size: 0.8rem;
}

/* Custom button colors */
.btn-outline-primary {
    color: #cda137;
    border-color: #cda137;
}

.btn-outline-primary:hover {
    color: #000;
    background-color: #cda137;
    border-color: #cda137;
}

/* Scroll to Top Button */
.fab {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #cda137 0%, #b8942f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(205, 161, 55, 0.4);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

.fab.show {
    opacity: 1;
    visibility: visible;
}

.fab:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 25px rgba(205, 161, 55, 0.6);
}

.fab i {
    transition: transform 0.3s ease;
}

.fab:hover i {
    transform: translateY(-2px);
}

/* Footer social icons */
.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff; /* Warna default untuk teks/link */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
    font-family: inherit; /* Reset font-family untuk memastikan Font Awesome bekerja */
}

.social-icon:hover {
    transform: translateY(-2px) scale(1.1);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
    color: #fff; /* Tetap putih saat hover */
    background: rgba(255, 255, 255, 0.2);
}

.social-icon i {
    font-size: 1.2rem;
    color: #fff;
    transition: transform 0.3s ease;
    font-family: "Font Awesome 6 Brands", "Font Awesome 6 Free", sans-serif;
}

.social-icon:hover i {
    transform: scale(1.2);
}

.social-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* Mobile responsive for scroll to top */
@media (max-width: 768px) {
    .fab {
        bottom: 85px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }

    .social-icon {
        width: 35px;
        height: 35px;
    }

    .social-icon i {
        font-size: 1rem;
    }
}

/* Image Modal Styles */
.modal-content {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(205, 161, 55, 0.3);
    border-radius: 15px;
}

.modal-header {
    border-bottom: 1px solid rgba(205, 161, 55, 0.3);
    padding: 1rem 1.5rem;
}

.btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
}

.btn-close:hover {
    filter: invert(1) grayscale(100%) brightness(200%) opacity(0.8);
}

#imageModal .modal-content {
    background: transparent;
    border: none;
}

#imageModal .modal-body {
    padding: 0;
    position: relative;
}

#modalImage {
    max-height: 80vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

#modalCaption {
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    font-size: 1.1rem;
    margin-top: 1rem;
}

#modalImage:hover {
    transform: scale(1.02);
}

/* Product Modal Styles */
#productModal .modal-content {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border: 1px solid rgba(205, 161, 55, 0.2);
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

#productModal .modal-header {
    background: linear-gradient(135deg, #cda137 0%, #b8942f 100%);
    color: white;
    border-bottom: none;
    border-radius: 15px 15px 0 0;
}

#productModal .modal-title {
    color: white !important;
    font-weight: 700;
}

#productModal .btn-close {
    filter: brightness(0) invert(1);
}

#productModal .modal-body {
    padding: 2rem;
}

#productModalImage {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

#productModalImage:hover {
    transform: scale(1.03);
}

.product-details {
    background: rgba(205, 161, 55, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(205, 161, 55, 0.1);
    margin-bottom: 1.5rem;
}

.product-details strong {
    color: #333;
    display: block;
    margin-bottom: 0.5rem;
}

.badge {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
}

/* Hover effects */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

/* Glassmorphism utility */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
}

/* Hero Showcase Styling */
.hero-showcase {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    border: 1px solid rgba(205, 161, 55, 0.2);
}

.showcase-header {
    text-align: center;
    margin-bottom: 2rem;
}

.showcase-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.showcase-subtitle {
    font-size: 1rem;
    color: #666;
    margin-bottom: 0;
    font-weight: 400;
}

.showcase-footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(205, 161, 55, 0.2);
}

/* Hero Carousel Styling */
.hero-carousel {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0,0,0,0.2);
    margin-bottom: 1rem;
}

.hero-carousel .carousel-indicators {
    bottom: 15px;
    margin-bottom: 0;
}

.hero-carousel .carousel-indicators button {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.6);
    border: 2px solid #cda137;
    margin: 0 5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.hero-carousel .carousel-indicators button.active {
    background: linear-gradient(135deg, #cda137 0%, #b8942f 100%);
    border-color: #b8942f;
    transform: scale(1.3);
    box-shadow: 0 4px 12px rgba(205, 161, 55, 0.4);
}

.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.6) 100%);
    border: 2px solid #cda137;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.hero-carousel .carousel-control-prev {
    left: 15px;
}

.hero-carousel .carousel-control-next {
    right: 15px;
}

.hero-carousel .carousel-control-prev:hover,
.hero-carousel .carousel-control-next:hover {
    background: linear-gradient(135deg, #cda137 0%, #b8942f 100%);
    border-color: #b8942f;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(205, 161, 55, 0.5);
}

.hero-carousel .carousel-control-prev-icon,
.hero-carousel .carousel-control-next-icon {
    width: 18px;
    height: 18px;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.3));
}

.hero-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    transition: transform 0.4s ease;
}

.hero-image-container:hover {
    transform: scale(1.02);
}

.hero-image-container {
    position: relative;
    display: inline-block; /* agar container mengikuti ukuran gambar */
    overflow: visible; /* penting supaya teks tidak terpotong */
}

.hero-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.4s ease;
    border-radius: 10px;
}

.hero-image-container:hover .hero-image {
    transform: scale(1.05);
}

.hero-text-box {
    position: absolute;
    top: 20px;
    left: 0;
    transform: translateX(-35%); /* teks keluar sekitar 1/3 dari gambar */
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    padding: 10px 20px;
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    font-weight: 700;
    font-size: 1.4rem;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.7);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 10;
    max-width: 300px;
    transition: all 0.3s ease;
}

.hero-text-box:hover {
    transform: translateX(-30%) scale(1.02); /* efek halus saat hover */
}

.hero-text-box-bottom {
    position: absolute;
    bottom: 20px;
    left: 0;
    transform: translateX(-35%);
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    padding: 10px 20px;
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    font-weight: 700;
    font-size: 1.4rem;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.7);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 10;
    max-width: 300px;
    transition: all 0.3s ease;
}

.hero-text-box-bottom:hover {
    transform: translateX(-30%) scale(1.02);
}

.hero-text-box-bottom-right {
    position: absolute;
    bottom: 20px;
    right: 0;
    transform: translateX(35%);
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    padding: 10px 20px;
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    font-weight: 700;
    font-size: 1.4rem;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.7);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 10;
    max-width: 300px;
    transition: all 0.3s ease;
}

.hero-text-box-bottom-right:hover {
    transform: translateX(30%) scale(1.02);
}

.image-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.7) 100%);
    backdrop-filter: blur(15px);
    padding: 2rem 2.5rem;
    border-radius: 20px;
    color: white;
    text-align: center;
    border: 2px solid rgba(205, 161, 55, 0.4);
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
    animation: elegantFloat 4s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.bottom-overlay {
    top: auto;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    animation: none;
    padding: 1.5rem 2rem;
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.8) 100%);
}

.image-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(205, 161, 55, 0.1), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes elegantFloat {
    0%, 100% {
        transform: translate(-50%, -50%) translateY(0px) rotate(0deg);
    }
    25% {
        transform: translate(-50%, -50%) translateY(-8px) rotate(1deg);
    }
    50% {
        transform: translate(-50%, -50%) translateY(-15px) rotate(0deg);
    }
    75% {
        transform: translate(-50%, -50%) translateY(-8px) rotate(-1deg);
    }
}

@keyframes shimmer {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: -100%; }
}

.overlay-accent {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #cda137 0%, #fff 50%, #cda137 100%);
    border-radius: 2px;
}

.image-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    color: #fff;
    position: relative;
    z-index: 2;
}

.image-subtitle {
    font-size: 1.1rem;
    opacity: 0.95;
    margin-bottom: 0;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
    font-weight: 500;
    position: relative;
    z-index: 2;
    color: #cda137;
}

/* Gradient text utility */
.gradient-text {
    background: linear-gradient(135deg, #cda137 0%, #b8942f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}