        /* ====================== */
        /*       GLOBAL STYLE     */
        /* ====================== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }
        
        :root {
            --primary-green: #376a54;
            --secondary-green: #81c784;
            --primary-orange: #fb8c00;
            --secondary-orange: #ffb74d;
            --white: #ffffff;
            --black: #212121;
            --gray: #757575;
            --light-gray: #e0e0e0;
        }
        
        body {
            overflow-x: hidden;
        }

        
        /* ====================== */
        /*       NAVBAR STYLE     */
        /* ====================== */
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.40rem 2rem;
            background-color: var(--white);
            position: fixed;
            width: 90%;
            top: 30px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 1000;
            border-radius: 50px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        
        .logo img {
            height: 50px;

            transition: transform 0.3s;
        }
        
        .logo:hover img {
            transform: scale(1.05);
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 1.5rem;
            margin: 0 auto;
        }
        
        .nav-menu li {
            position: relative;
        }
        
        .nav-menu a {
            text-decoration: none;
            color: var(--black);
            font-weight: 500;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 0.5rem 0;
            position: relative;
            font-size: 15px;
        }
        
        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary-green);
            transition: width 0.3s ease;
        }
        
        .nav-menu a:hover::after {
            width: 100%;
        }
        
        .nav-menu a:hover {
            color: var(--primary-green);
        }

        
        .dropdown-content {
            display: none;
            position: absolute;
            background-color: var(--white);
            min-width: 180px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
            z-index: 1;
            border-radius: 12px;
            top: 100%;
            left: 0;
            margin-left: -15%;
            margin-top: -5%;
            padding: 8px 0;
            overflow: hidden;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        .dropdown:hover .dropdown-content {
            display: block;
            animation: fadeIn 0.3s;
        }
        
        .dropdown-content a {
            color: var(--black);
            padding: 8px 20px;
            text-decoration: none;
            display: block;
            transition: all 0.3s;
            position: relative;
            font-size: 14px;
        }
        
        .dropdown-content a:hover {
            background-color: rgba(55, 106, 84, 0.05);
            padding-left: 25px;
            color: var(--primary-green);
        }
        
        .login-btn {
            padding: 0.5rem 1.5rem;
            background-color: var(--primary-green);
            color: var(--white);
            border: none;
            border-radius: 50px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .login-btn:hover {
            background-color: #2a5542;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(55, 106, 84, 0.2);
        }
        
        .hamburger {
            display: none;
            cursor: pointer;
            font-size: 1.5rem;
            color: var(--black);
            transition: transform 0.3s;
        }
        
        .hamburger:hover {
            transform: rotate(90deg);
        }


        
        /* ====================== */
        /*       HEADER STYLE     */
        /* ====================== */
        .header {
            height: 100vh;
            min-height: 600px;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--white);
        }
        
        .video-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -1;
        }
        
        .header-content {
            max-width: 800px;
            padding: 0 2rem;
            z-index: 1;
        }
        
        .header-title {
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            animation: fadeInDown 1s;
        }
        
        .header-title h1 {
            font-size: 4rem;
            font-weight: 900;
            line-height: 1;
            color: var(--white);
        }
        
        .header-title h2 {
            font-size: 2rem;
            font-weight: 1500;
            margin-top: -0.1rem;
            color: var(--secondary-orange);
        }
        
        .header p {
            font-size: 1.2rem;
            line-height: 1.6;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
            animation: fadeInUp 1.4s;
            max-width: 700px;
            margin: 0 auto;
            margin-top: -1rem;
        }
        
        .scroll-down {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            color: var(--white);
            font-size: 1.5rem;
            cursor: pointer;
            animation: bounce 2s infinite;
            z-index: 10;
        }
        
        .scroll-down:hover {
            color: var(--secondary-orange);
        }

        .header::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 100%);
            z-index: 0;
        }
        
        /* Content Section */
        .content-section {
            min-height: 100vh;
            padding: 100px 2rem;
            background-color: var(--white);
            color: var(--black);
            text-align: center;
        }
        
        .content-section h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: var(--primary-green);
        }
        
        .content-section p {
            font-size: 1.1rem;
            line-height: 1.8;
            max-width: 800px;
            margin: 0 auto;
        }
        
        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0) translateX(-50%);
            }
            40% {
                transform: translateY(-20px) translateX(-50%);
            }
            60% {
                transform: translateY(-10px) translateX(-50%);
            }
        }
        
        /* Responsive Styles */
        @media (max-width: 1200px) {
            .nav-menu {
                gap: 1.2rem;
            }
        }
        
        @media (max-width: 992px) {
            .navbar {
                width: 95%;
                padding: 0.8rem 2rem;
            }
            
            .header-title h1 {
                font-size: 3.5rem;
            }
            
            .header-title h2 {
                font-size: 1.8rem;
            }
        }
        
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            
            .nav-menu {
                position: fixed;
                top: 90px;
                left: 50%;
                transform: translateX(-50%);
                width: 85%;
                flex-direction: column;
                background-color: var(--white);
                padding: 1.5rem;
                transition: all 0.3s;
                gap: 1rem;
                box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
                border-radius: 20px;
                opacity: 0;
                visibility: hidden;
                margin-top: 5%;
            }
            
            .nav-menu.active {
                opacity: 1;
                visibility: visible;
                top: 80px;
            }
            
            .dropdown-content {
                position: static;
                box-shadow: none;
                display: none;
                background-color: rgba(55, 106, 84, 0.05);
                margin-left: 0%;
                margin-top: 8px;
                border: none;
                border-radius: 10px;
                width: 100%;
            }
            
            .dropdown:hover .dropdown-content {
                display: none;
            }
        
            
            .dropdown i {
                transition: transform 0.3s;
            }
            
            .dropdown.active i {
                transform: rotate(180deg);
            }
            
            .header-title h1 {
                font-size: 2.8rem;
            }
            
            .header-title h2 {
                font-size: 1.5rem;
            }
            
            .header p {
                font-size: 1.1rem;
            }
            
            .content-section {
                padding: 80px 1.5rem;
            }
        }
        
        @media (max-width: 576px) {
            .navbar {
                padding: 0.6rem 1.5rem;
                top: 20px;
            }
            
            .header-title h1 {
                font-size: 2.2rem;
            }
            
            .header-title h2 {
                font-size: 1.2rem;
            }
            
            .header p {
                font-size: 1rem;
            }
            
            .nav-menu {
                top: 70px;
            }
            
            .nav-menu.active {
                top: 70px;
            }
            
            .scroll-down {
                font-size: 1.2rem;
                bottom: 30px;
            }
            
            .content-section h2 {
                font-size: 2rem;
            }
        }




    /* ====================== */
    /*   PAKET INFORMASI      */
    /* ====================== */

    .paket-section {
        background: linear-gradient(to bottom, var(--light-gray) 0%, var(--white) 100%);
        padding: 100px 0;
        position: relative;
        overflow: hidden;
    }

    .paket-section .container {
        max-width: 1210px;
        margin: 0 auto;
        padding: 0 1rem; /* Tambahkan padding untuk mobile */
        }

    
    .paket-header {
        text-align: center;
        margin-bottom: 30px;
        position: relative;
        z-index: 1;
    }
    
    .title-wrapper {
        margin-bottom: 20px;
    }
    
    .subtitle {
        display: block;
        color: var(--primary-orange);
        font-size: 1.1rem;
        font-weight: 500;
        letter-spacing: 2px;
        text-transform: uppercase;
        margin-bottom: 10px;
    }
    
    .main-title {
        font-size: 2.5rem;
        color: var(--primary);
        font-weight: 700;
        line-height: 1.2;
    }
    
    .main-title span {
        color: var(--primary-orange);
        position: relative;
    }
    
    .main-title span::after {
        content: '';
        position: absolute;
        bottom: 5px;
        left: 0;
        width: 100%;
        height: 8px;
        background-color: rgba(251, 140, 0, 0.3);
        z-index: -1;
    }
    
    .header-decoration {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 20px 0;
    }
    
    .decoration-line {
        width: 80px;
        height: 2px;
        background: linear-gradient(to right, transparent 0%, var(--primary-green) 50%, transparent 100%);
        margin: 0 15px;
    }
    
    .header-decoration i {
        color: var(--primary-green);
        font-size: 1.5rem;
        opacity: 0.8;
    }

    .section-desc {
        max-width: 700px;
        margin: 0 auto;
        color: var(--gray);
        font-size: 1.1rem;
        line-height: 1.8;
    }
    .paket-informasi-section {
        padding: 6rem 2rem;
        background: linear-gradient(135deg, #f9f9f9 0%, #e8f5e9 100%);
        position: relative;
        overflow: hidden;
    }
    
    .paket-informasi-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="%23376a54" fill-opacity="0.03" d="M0,0 L100,0 L100,100 Q50,80 0,100 Z"></path></svg>');
        background-size: 100% auto;
        background-repeat: no-repeat;
        background-position: top center;
        z-index: 0;
    }

    .paket-informasi-section .section-header {
        text-align: center;
        margin-bottom: 4rem;
        position: relative;
        z-index: 1;
    }

    .paket-informasi-section h2 {
        font-size: 2.8rem;
        color: var(--primary-green);
        margin-bottom: 1.5rem;
        position: relative;
        display: inline-block;
    }

    .paket-informasi-section h2::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: var(--primary-orange);
        border-radius: 2px;
    }
    
    .paket-informasi-section p {
        color: var(--gray);
        max-width: 700px;
        margin: 0 auto;
        font-size: 1.2rem;
        line-height: 1.8;
        position: relative;
    }
    
    .paket-informasi-container {
        position: relative;
        max-width: 1210px;
        margin: 0 auto;
        padding: 0 20px;
    }

    /* Efek floating untuk header */
    @keyframes floating {
        0% { transform: translateY(0px); }
        50% { transform: translateY(-10px); }
        100% { transform: translateY(0px); }
    }

    .section-header {
        animation: floating 6s ease-in-out infinite;
    }

    /* Tambahan dekorasi */
    .decorative-circle {
        position: absolute;
        border-radius: 50%;
        opacity: 0.1;
        z-index: 0;
    }

    .circle-1 {
        width: 200px;
        height: 200px;
        background: var(--primary-green);
        top: -50px;
        right: -50px;
    }

    .circle-2 {
        width: 150px;
        height: 150px;
        background: var(--primary-orange);
        bottom: -30px;
        left: -30px;
    }
    
    .paket-slider {
        display: flex;
        gap: 2rem;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        padding: 1rem 0;
        scrollbar-width: none;
        cursor: grab;
        user-select: none;
        -webkit-user-select: none;
    }
    
    .paket-slider::-webkit-scrollbar {
        display: none;
    }
    
    .paket-item {
        scroll-snap-align: start;
        flex: 0 0 calc(33.333% - 1.5rem);
        border-radius: 16px;
        overflow: hidden;
        position: relative;
        transition: all 0.3s ease;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        height: 100%;
        
    }
    
    .paket-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
    }
    
    .paket-item-image-container {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .paket-item-image {
        width: 100%; /* Ganti dari max-width ke width */
        height: 100%; /* Ganti dari max-height ke height */
        object-fit: cover; /* Ganti dari contain ke cover biar gambar full */
        transition: opacity 0.3s ease;
    }
    
    .paket-item-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
        padding: 2rem;
        color: white;
        transform: translateY(100px);
        opacity: 0;
        transition: all 0.3s ease;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }
    
    .paket-item:hover .paket-item-overlay {
        transform: translateY(0);
        opacity: 1;
    }
    
    .paket-item-title {
        font-size: 1.5rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
        color: white;
    }
    
    .paket-item-link {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 2;
    }
    
    /* ===== SLIDER DOTS STYLE ===== */
/* SLIDER DOTS - GLOBAL */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    padding: 10px 0;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background-color: var(--primary-green);
    transform: scale(1.2);
}

.slider-dot:hover:not(.active) {
    background-color: #aaa;
}

/* Sembunyikan dots jika hanya ada 1 */
.slider-dots[style*="display: none"] {
    height: 0;
    padding: 0;
    margin: 0;
    overflow: hidden;
}

    /* Hide arrows on all devices */
    .slider-nav {
        display: none !important;
    }
    
    /* ===== RESPONSIVE SLIDER ===== */
    @media (max-width: 992px) {
        .paket-item {
            flex: 0 0 calc(50% - 1rem);
        }
        
        .slider-nav {
            width: 40px;
            height: 40px;
            font-size: 1rem;
        }
    }
    
    @media (max-width: 768px) {
        .paket-section {
            padding: 80px 0;
        }

          .paket-section .container {
            padding: 0 2rem; /* Tambahkan padding lebih besar untuk desktop */
        }
        
        .paket-header {
            margin-bottom: 20px;
        }
        
        .main-title {
            font-size: 2rem;
        }
        
        .paket-item {
            flex: 0 0 100%;
        }
        

        .slider-dot {
            width: 10px;  /* Tetap bulet */
            height: 10px; /* Tetap bulet */
            border-radius: 50%; /* Pastikan tetap bulat */
        }
    }
    
    @media (max-width: 576px) {
        .paket-section {
            padding: 60px 0;
        }
        
        .main-title {
            font-size: 1.8rem;
        }
        
        .subtitle {
            font-size: 1rem;
        }
        
        .section-desc {
            font-size: 1rem;
        }
    }


    


    /* ====================== */
/*       FOOTER STYLE     */
/* ====================== */
.footer {
  background: linear-gradient(135deg, #1a5f4b 0%, #123d30 100%);
  color: var(--white);
  padding: 5rem 0 2rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="rgba(255,255,255,0.05)" d="M0,0 L100,0 L100,100 Q50,80 0,100 Z"/></svg>') no-repeat;
  background-size: 100% auto;
  background-position: top center;
  z-index: 0;
}

.islamic-decoration {
  position: absolute;
  color: rgba(255, 255, 255, 0.05);
  font-size: 5rem;
  z-index: 0;
}

.islamic-decoration.top-left {
  top: 20px;
  left: 20px;
}

.islamic-decoration.top-right {
  top: 20px;
  right: 20px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {
  max-width: 300px;
}

.footer-text {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 1.5rem 0;
  font-size: 0.95rem;
}

.footer-contact-info {
  margin: 1.5rem 0;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.contact-icon {
  color: var(--primary-orange);
  font-size: 0.9rem;
}

.contact-link {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.contact-link:hover {
  color: var(--white);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.social-link:hover {
  background-color: var(--primary-orange);
  transform: translateY(-3px);
}

.footer-links-group {
  margin-bottom: 1.5rem;
}

.footer-links-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
  color: var(--primary-orange);
}

.footer-links-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary-orange);
}

.footer-links {
  list-style: none;
}

.footer-link {
  color: rgba(255, 255, 255, 0.8);
  display: inline-block;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
  position: relative;
  font-size: 0.95rem;
}

.footer-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--primary-orange);
  transition: width 0.3s ease;
}

.footer-link:hover {
  color: var(--white);
  transform: translateX(5px);
}

.footer-link:hover::after {
  width: 100%;
}

.footer-middle {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem 0;
  margin: 2rem 0;
}

.prayer-times {
  max-width: 600px;
  margin: 0 auto;
}

.prayer-times-title {
  text-align: center;
  color: var(--primary-orange);
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

.prayer-times-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 1rem;
}

.prayer-time {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 0.8rem;
  text-align: center;
  transition: all 0.3s ease;
}

.prayer-time:hover {
  background-color: rgba(251, 140, 0, 0.2);
}

.prayer-name {
  display: block;
  font-weight: 500;
  margin-bottom: 0.3rem;
}

.prayer-hour {
  display: block;
  font-weight: 600;
  color: var(--primary-orange);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
}

.legal-link {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.legal-link:hover {
  color: var(--primary-orange);
}

/* Scroll to Top Button */
.scroll-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary-orange);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: none;
  outline: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 999;
}

.scroll-top-btn.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top-btn:hover {
  background-color: #e67e00;
  transform: translateY(-3px) scale(1.05);
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer {
    padding: 3rem 0 2rem;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-brand {
    max-width: 100%;
  }
  
  .footer-middle {
    padding: 1.5rem 0;
    margin: 1.5rem 0;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-legal-links {
    margin-top: 0.5rem;
  }
  
  .scroll-top-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    bottom: 20px;
    right: 20px;
  }
  
  .islamic-decoration {
    font-size: 3rem;
  }
}

    



/* ====================== */
/*   PAKET TABS STYLE     */
/* ====================== */
.paket-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--light-gray);
}

.paket-tab {
    padding: 0.75rem 2rem;
    margin: 0 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray);
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    outline: none;
}

.paket-tab.active {
    color: var(--primary-green);
    border-bottom-color: var(--primary-orange);
}

.paket-tab:hover:not(.active) {
    color: var(--primary-orange);
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

/* ====================== */
/*   PAKET REGULAR SLIDER */
/* ====================== */
.paket-regular-slider {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 1rem 0;
    scrollbar-width: none;
    cursor: grab;
}

.paket-regular-slider::-webkit-scrollbar {
    display: none;
}

.paket-regular-slide {
    scroll-snap-align: start;
    flex: 0 0 calc(25% - 1.5rem); /* 4 item per slide */
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.paket-regular-slide:hover {
    transform: translateY(-5px);
    box-shadow: 0 9px 25px rgba(0,0,0,0.15);
}

.paket-regular-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.paket-regular-content {
    padding: 1.5rem;
}

.paket-regular-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 1rem;
    min-height: 60px;
}

.paket-regular-hotels {
    margin-bottom: 1rem;
}

.paket-regular-hotel {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.paket-regular-hotel i {
    color: var(--primary-orange);
    margin-right: 0.5rem;
    width: 20px;
    text-align: center;
}

.paket-regular-hotel span {
    flex: 1;
}

.paket-regular-stars {
    color: var(--primary-orange);
    font-size: 0.8rem;
}

.paket-regular-price {
    margin: 1.5rem 0;
}

.paket-regular-original-price {
    text-decoration: line-through;
    color: var(--gray);
    font-size: 0.9rem;
}

.paket-regular-promo-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-orange);
}

.paket-regular-seat {
    display: inline-block;
    background: var(--primary-green);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-top: 0.5rem;
}

.paket-regular-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--primary-green);
    color: white;
    padding: 0.75rem;
    border-radius: 8px;
    margin-top: 1rem;
    transition: all 0.3s ease;
    font-weight: 500;
}

.paket-regular-btn:hover {
    background: #2a5542;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1200px) {
    .paket-regular-slide {
        flex: 0 0 calc(33.333% - 1.5rem); /* 3 item per slide */
    }
}

@media (max-width: 992px) {
    .paket-regular-slide {
        flex: 0 0 calc(50% - 1rem); /* 2 item per slide */
    }
}

@media (max-width: 768px) {
    .paket-regular-slide {
        flex: 0 0 100%; /* 1 item per slide */
    }
}



/* ====================== */
/*   PAKET NON-AKTIF      */
/* ====================== */
.paket-regular-slide.non-aktif {
    position: relative;
    opacity: 0.8;
}

.paket-regular-slide.non-aktif::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
    z-index: 1;
    border-radius: 12px;
}

.status-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #e74c3c;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-badge i {
    font-size: 1rem;
}

.paket-regular-btn.disabled {
    background: #95a5a6 !important;
    cursor: not-allowed;
    pointer-events: none;
}

/* Efek hover beda untuk non-aktif */
.paket-regular-slide.non-aktif:hover {
    transform: none !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1) !important;
}


.tab-badge {
    background: var(--primary-orange);
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
    font-size: 0.7rem;
    margin-left: 0.5rem;
}





/* ====================== */
/*   PAKET REGULAR SLIDER */
/* ====================== */
.paket-regular-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.paket-regular-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 20px 0;
  scrollbar-width: none;
}

.paket-regular-slider::-webkit-scrollbar {
  display: none;
}

.paket-regular-slide {
  scroll-snap-align: start;
  flex: 0 0 calc(50% - 15px);
  min-width: 0;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0,0,0,0.08);
  display: flex;
  height: 320px;
  position: relative;
  transition: all 0.3s ease;
}

.paket-regular-slide:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.paket-image-section {
  flex: 0 0 45%;
  position: relative;
  overflow: hidden;
}

.paket-regular-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.paket-regular-slide:hover .paket-regular-image {
  transform: scale(1.05);
}

.paket-info-section {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.paket-title {
  font-size: 1.2rem;
  color: var(--primary-green);
  margin-bottom: 10px;
  line-height: 1.3;
  font-weight: 600;
  position: relative;
  padding-bottom: 8px;
}

.paket-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--primary-orange);
}

.hotel-info {
  margin: 10px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.hotel-row {
  display: flex;
  align-items: center;
  font-size: 0.75rem;
  color: #555;
}

.hotel-row i {
  color: var(--primary-orange);
  margin-right: 8px;
  min-width: 16px;
  text-align: center;
  font-size: 0.8rem;
}

.star-rating {
  color: var(--primary-orange);
  letter-spacing: 1px;
  font-size: 0.7rem;
}

.price-section {
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px dashed #eee;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 8px;
}

.original-price {
  text-decoration: line-through;
  color: #999;
  font-size: 0.75rem;
}

.promo-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-orange);
}

.promo-price::before {
  content: 'Rp ';
  font-size: 0.8em;
}

/* Seat Progress Bar */
.seat-container {
  margin: 12px 0;
}

.seat-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
  font-size: 0.7rem;
  color: #666;
}

.seat-available {
  color: var(--primary-green);
  font-weight: 600;
}

.seat-progress {
  height: 4px;
  background: #f0f0f0;
  border-radius: 2px;
  overflow: hidden;
}

.seat-progress-bar {
  height: 100%;
  background: linear-gradient(to right, var(--primary-green), #4CAF50);
  border-radius: 2px;
}

/* Button */
.paket-regular-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 12px;
  background: linear-gradient(135deg, var(--primary-green), #2a5542);
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
  text-decoration: none;
  text-align: center;
}

.paket-regular-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(55, 106, 84, 0.3);
}

.paket-regular-btn i {
  font-size: 0.8rem;
}

/* Status Badge */
.status-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 0, 0, 0.8);
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 500;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 4px;
}

.status-badge i {
  font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 992px) {
  .paket-regular-slide {
    flex: 0 0 calc(100% - 20px);
    height: auto;
    flex-direction: column;
  }
  
  .paket-image-section {
    flex: 0 0 200px;
  }
  
  .paket-info-section {
    padding: 15px;
  }
}

@media (max-width: 576px) {
  .hotel-info {
    grid-template-columns: 1fr;
  }
  
  .paket-title {
    font-size: 1.1rem;
  }
}



/* Adjust slider for 4 items */
@media (min-width: 1200px) {
    #tab-regular .paket-item {
        flex: 0 0 calc(25% - 15px) !important;
    }
}

/* Non-aktif style */
.paket-item.non-aktif {
    position: relative;
    opacity: 0.8;
}

.paket-item.non-aktif::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
    z-index: 2;
    border-radius: 16px;
}


/* Tambahkan ini di style.css */
.paket-item.non-aktif {
    position: relative;
    filter: grayscale(80%);
    opacity: 0.8;
}

.paket-item.non-aktif::before {
    content: 'TIDAK TERSEDIA';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-15deg);
    background: rgba(231, 76, 60, 0.9);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.2rem;
    z-index: 3;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.paket-item.non-aktif::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 2;
    border-radius: 16px;
}

.paket-item.non-aktif .paket-item-overlay {
    display: none !important;
}











/* ====================== */
/* PREMIUM SERVICE DESIGN */
/* ====================== */
.premium-service-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #1a5f4b 0%, #123d30 100%);
    position: relative;
    overflow: hidden;
}

.premium-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.premium-header {
    text-align: center;
    margin-bottom: 60px;
}

.premium-subtitle {
    display: inline-block;
    background: rgba(251, 140, 0, 0.15);
    color: var(--primary-orange);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.premium-title {
    font-size: 2.5rem;
    color: white;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.premium-title span {
    color: var(--primary-orange);
    position: relative;
}

.premium-title span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(251, 140, 0, 0.3);
    z-index: -1;
    border-radius: 4px;
}

.premium-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.premium-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(to right, transparent 0%, rgba(255,255,255,0.3) 50%, transparent 100%);
    margin: 0 15px;
}

.premium-decoration i {
    color: var(--primary-orange);
    font-size: 1.5rem;
}

.premium-desc {
    max-width: 600px;
    margin: 0 auto;
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    line-height: 1.6;
}

.premium-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.premium-card {
    position: relative;
    height: 550px;
    perspective: 1000px;
}


/* Responsive Design */
@media (max-width: 992px) {
    .premium-grid {
        gap: 30px;
    }
    
    .premium-card {
        height: 450px;
    }
    
}

@media (max-width: 768px) {
    .premium-service-section {
        padding: 80px 20px;
    }
    
    .premium-title {
        font-size: 2rem;
    }
    
    .premium-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .premium-card {
        height: 550px;
    }
}

@media (max-width: 480px) {
    .premium-service-section {
        padding: 60px 15px;
    }
    
    .premium-title {
        font-size: 1.8rem;
    }
    
    .premium-subtitle {
        font-size: 0.9rem;
    }
    
    .premium-desc {
        font-size: 1rem;
    }
    
}

/* ====================== */
/*   PREMIUM CARD STYLE   */
/* ====================== */
.premium-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    border-radius: 20px;
    padding: 40px 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.5s ease;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.premium-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(251,140,0,0.1) 0%, transparent 70%);
    transform: rotate(30deg);
    transition: all 0.5s ease;
}

.premium-card:hover::before {
    transform: rotate(60deg);
}

.premium-card-inner {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card-icon {
    font-size: 3rem;
    color: var(--primary-orange);
    margin-bottom: 20px;
    text-align: center;
}

.card-title {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

.card-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-orange);
    border-radius: 3px;
}

.card-desc {
    color: rgba(255,255,255,0.8);
    text-align: center;
    margin-bottom: 25px;
    line-height: 1.6;
    font-size: 1rem;
}

.card-features {
    margin-bottom: 30px;
    flex-grow: 1;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    padding: 12px 15px;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(251,140,0,0.1);
    transform: translateX(5px);
}

.feature-item i {
    color: var(--primary-orange);
    margin-right: 10px;
    font-size: 1.1rem;
}

.feature-item span {
    color: white;
    font-size: 0.95rem;
}

.card-cta {
    text-align: center;
}

.detail-btn {
    background: transparent;
    color: white;
    border: 2px solid var(--primary-orange);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    /* Tambahkan ini untuk memastikan border-radius konsisten */
    z-index: 1;
}

.detail-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--primary-orange);
    transition: width 0.3s ease;
    z-index: -1;
    /* Tambahkan border-radius yang sama dengan button */
    border-radius: 50px;
}

.detail-btn:hover {
    color: white;
}

.detail-btn:hover::before {
    width: 100%;
}


.consult-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #25D366;
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.consult-btn:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .premium-card {
        padding: 30px 20px;
    }
    
    .card-title {
        font-size: 1.5rem;
    }
    
    .card-desc {
        font-size: 0.95rem;
    }
    
    .feature-item span {
        font-size: 0.9rem;
    }
    
    .back-title {
        font-size: 1.3rem;
    }
    
    .back-features li {
        font-size: 0.9rem;
    }
}











/* ====================== */
/*   GALLERY SECTION STYLE */
/* ====================== */
.gallery-section {
    padding: 100px 20px;
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
        margin-bottom: -10vh;
}

.gallery-section .container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.gallery-header {
    text-align: center;
    margin-bottom: 50px;
}

.gallery-subtitle {
    display: inline-block;
    background: rgba(55, 106, 84, 0.1);
    color: var(--primary-green);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.gallery-title {
    font-size: 2.5rem;
    color: var(--black);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
}

.gallery-title span {
    color: var(--primary-green);
    position: relative;
}

.gallery-title span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(55, 106, 84, 0.3);
    z-index: -1;
    border-radius: 4px;
}

.gallery-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.gallery-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(to right, transparent 0%, rgba(55, 106, 84, 0.3) 50%, transparent 100%);
    margin: 0 15px;
}

.gallery-decoration i {
    color: var(--primary-green);
    font-size: 1.5rem;
}

.gallery-desc {
    max-width: 600px;
    margin: 0 auto;
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .gallery-section {
        padding: 80px 15px;
    }

    .gallery-title {
        font-size: 2rem;
    }

    .gallery-desc {
        font-size: 1rem;
    }
}


    .gallery-section {
        padding: 100px 20px;
        background-color: #f9f9f9;
        position: relative;
    }
    .gallery-header {
        text-align: center;
        margin-bottom: 50px;
    }
    .gallery-subtitle {
        display: inline-block;
        background: rgba(55, 106, 84, 0.1);
        color: #376a54;
        font-size: 1rem;
        font-weight: 600;
        padding: 8px 20px;
        border-radius: 50px;
        margin-bottom: 20px;
        text-transform: uppercase;
    }
    .gallery-title {
        font-size: 2.5rem;
        color: #333;
        font-weight: 700;
        margin-bottom: 15px;
    }
    .gallery-title span {
        color: #376a54;
        position: relative;
    }
    .gallery-title span::after {
        content: '';
        position: absolute;
        bottom: 5px;
        left: 0;
        width: 100%;
        height: 8px;
        background: rgba(55, 106, 84, 0.3);
        z-index: -1;
    }
    .gallery-decoration {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 20px 0;
    }
    .gallery-line {
        width: 80px;
        height: 2px;
        background: linear-gradient(to right, transparent 0%, rgba(55, 106, 84, 0.3) 50%, transparent 100%);
        margin: 0 15px;
    }
    .gallery-decoration i {
        color: #376a54;
        font-size: 1.5rem;
    }
    .gallery-desc {
        max-width: 600px;
        margin: 0 auto;
        color: #666;
        font-size: 1.1rem;
    }
    .gallery-highlights {
        margin: 60px auto;
        max-width: 100%;
        overflow: hidden;
        position: relative;
    }
    .gallery-track {
        display: flex;
        gap: 15px;
        padding: 20px 0;
        animation: scroll 30s linear infinite;
    }
    .gallery-track:hover {
        animation-play-state: paused;
    }
    @keyframes scroll {
        0% { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }
    .gallery-track img {
        width: 250px;
        height: 180px;
        object-fit: cover;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        transition: transform 0.3s;
    }
    .gallery-track img:hover {
        transform: scale(1.05);
    }

    .gallery-buttons {
        display: flex;
        justify-content: center;
        gap: 20px;
    }
    .btn-umroh, .btn-haji {
        padding: 12px 30px;
        border-radius: 50px;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        transition: all 0.3s;
        color: white;
    }
    .btn-umroh {
        background: #3a5bd9;
    }
    .btn-haji {
        background: #2e7d32;
    }
    .btn-umroh:hover, .btn-haji:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }


        @keyframes pulse {
        0% { transform: scale(1); opacity: 1; }
        50% { transform: scale(1.1); opacity: 0.8; }
        100% { transform: scale(1); opacity: 1; }
    }
    
    .btn-umroh:hover, .btn-haji:hover {
        transform: translateY(-5px) scale(1.05);
        box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    }
    
    .btn-umroh:hover span {
        left: 100%;
    }
    
    .btn-haji:hover span {
        left: 100%;
    }
    
    .gallery-track img {
        width: 280px;
        height: 200px;
        border-radius: 12px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.15);
        transition: all 0.4s;
    }
    
    .gallery-track img:hover {
        transform: scale(1.08) rotate(1deg);
        box-shadow: 0 15px 30px rgba(0,0,0,0.25);
    }





    /* 3D Gallery Slider Styles */
.slider-container {
    perspective: 1500px;
    width: 100%;
    height: 600px;
    margin: 4rem auto;
    position: relative;
}

.slider {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.8s ease;
}

.slide {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 280px;
    height: 420px;
    margin-top: -210px;
    margin-left: -140px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    box-shadow: 0 15px 25px rgba(15, 15, 15, 0.8);
    transition: transform 0.8s ease, opacity 0.8s ease;
    cursor: pointer;
    overflow: hidden;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    box-sizing: border-box;
}

.slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.85) 90%);
    border-radius: 12px;
    z-index: 0;
}

.slide-content {
    position: relative;
    z-index: 1;
}

.slide .title {
    font-size: 1.8rem;
    line-height: 1.2;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
}

/* Position classes for slides */
.slide.pos0 {
    transform: translateX(-280px) translateZ(-200px) rotateY(45deg);
    opacity: 0.3;
    pointer-events: none;
    z-index: 1;
}

.slide.pos1 {
    transform: translateX(-140px) translateZ(100px) rotateY(15deg);
    opacity: 0.8;
    z-index: 2;
}

.slide.pos2 {
    transform: translateX(0) translateZ(300px) rotateY(0deg);
    opacity: 1;
    z-index: 3;
}

.slide.pos3 {
    transform: translateX(140px) translateZ(100px) rotateY(-15deg);
    opacity: 0.8;
    z-index: 2;
}

.slide.pos4 {
    transform: translateX(280px) translateZ(-200px) rotateY(-45deg);
    opacity: 0.3;
    pointer-events: none;
    z-index: 1;
}

.slide.hide {
    opacity: 0;
    pointer-events: none;
    transform: translateX(0) translateZ(0) rotateY(0);
}

/* Navigation */
.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(0, 100, 60, 0.486);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
    z-index: 4;
    border: 2px solid rgba(255, 255, 255, 0.486);
}

.nav-arrow:hover {
    background: rgb(0, 100, 60);
}

.nav-arrow svg {
    fill: white;
    width: 20px;
    height: 20px;
}

.nav-prev {
    left: 12px;
}

.nav-next {
    right: 12px;
}

.dots-container {
    position: absolute;
    bottom: -100px; /* Changed from -13vh to fixed value */
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 5;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(156, 156, 156, 0.3);
    cursor: pointer;
    transition: background 0.3s ease;
    border: 2px solid transparent;
}

.dot.active {
    background: rgb(88, 88, 88);
    border-color: #00714f;
}

@media (max-width: 768px) {
    .slider-container {
        height: 300px;
    }
    
    .slide {
        width: 200px;
        height: 300px;
        margin-top: -150px;
        margin-left: -100px;
    }
    
    .slide .title {
        font-size: 1.3rem;
    }

    .dots-container {
        bottom: -60px; /* Fixed value instead of vh */
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
}


/* CTA Section Styles */
.gallery-cta {
  background-color: #f8fafc;
  position: relative;
  overflow: hidden;
}

.gallery-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.03;
  z-index: 0;
}

.card-shadow {
  box-shadow: 
    0 10px 15px -3px rgba(42, 92, 84, 0.3),
    0 4px 6px -2px rgba(42, 92, 84, 0.1);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.card-shadow:hover {
  box-shadow: 
    0 20px 25px -5px rgba(42, 92, 84, 0.3),
    0 10px 10px -5px rgba(42, 92, 84, 0.1);
}

.icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 0.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  margin-right: 0.75rem;
  flex-shrink: 0;
}

/* Warna tema */
.bg-ijo-lumut { background-color: #2a5c54; }
.text-ijo-lumut { color: #2a5c54; }
.bg-orange { background-color: #f97316; }
.text-orange { color: #f97316; }

/* Update the CTA cards container */
.max-w-6xl.mx-auto {
    position: relative;
    z-index: 2;
    margin-bottom: 0 !important; /* Remove negative margin */
    padding-bottom: 60px; /* Add proper padding */
}

/* Make CTA cards responsive */
.flex.flex-col.md\:flex-row {
    gap: 20px;
    padding: 0 15px;
}


/* Stack cards vertically on mobile */
@media (max-width: 768px) {
    .flex.flex-col.md\:flex-row {
        flex-direction: column;
    }
    
    .card-shadow {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .max-w-6xl.mx-auto {
        padding-bottom: 40px;
    }
}

/* Ensure slider container doesn't overlap with CTA */
.slider-container {
    margin-bottom: 80px; /* Add space for dots */
}

@media (max-width: 768px) {
    .slider-container {
        margin-bottom: 60px;
    }
}













/* ====================== */
/*   TESTIMONI STYLE      */
/* ====================== */
.testimoni-section {
    padding: 80px 20px;
    background-color: var(--primary-green);
    position: relative;
}

.testimoni-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.testimoni-header {
    text-align: center;
    margin-bottom: 50px;
}

.testimoni-subtitle {
    display: inline-block;
    background: rgba(251, 140, 0, 0.15);
    color: var(--primary-orange);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.testimoni-title {
    font-size: 2.5rem;
    color: var(--white);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
}

.testimoni-title span {
    color: var(--primary-orange);
    position: relative;
}

.testimoni-title span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(251, 140, 0, 0.25);
    z-index: 1;
    border-radius: 4px;
}

.testimoni-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.testimoni-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(to right, transparent 0%, rgba(255,255,255,0.3) 50%, transparent 100%);
    margin: 0 15px;
}

.testimoni-decoration i {
    color: var(--primary-orange);
    font-size: 1.5rem;
}

.testimoni-desc {
    max-width: 600px;
    margin: 0 auto;
    color: var(--white);
    font-size: 1.1rem;
    line-height: 1.6;
}

.testimoni-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}
.testimoni-slider-container {
    position: relative;
    padding: 20px 0;
    margin: 0 auto;
    max-width: 1200px;
}

.testimoni-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 10px 0;
    -webkit-overflow-scrolling: touch; /* Untuk smooth scroll di iOS */
}

/* Sembunyikan scrollbar */
.testimoni-slider::-webkit-scrollbar {
    display: none;
}





/* CARD LANDSCAPE TIPIS */
.testimoni-card {
    min-width: calc(33.33% - 14px);
    background: white;
    border-radius: 40px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.testimoni-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* HEADER */
.testimoni-header-content {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.testimoni-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3a7bd5, #00d2ff);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.testimoni-meta {
    flex-grow: 1;
}

.testimoni-name {
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.testimoni-date {
    color: #666;
    font-size: 0.7rem;
}

/* CONTENT */
.testimoni-content {
    flex-grow: 1;
    position: relative;
    padding: 0 0 0 15px;
    margin-bottom: 15px;
}

/* Optional: Tambahkan segitiga kecil di kiri */
.testimoni-text::before {
    content: '';
    position: absolute;
    left: 15px;
    top: -10px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid var(--primary-green);
}

/* Sesuaikan pseudo-element quote sebelumnya */
.testimoni-content::before {
    display: none; /* Kita sembunyikan yang lama */
}

.testimoni-text {
    color: white; /* Ubah warna teks jadi putih */
    line-height: 1.6;
    font-size: 0.9rem;
    font-style: italic;
    background-color: var(--primary-green); /* Warna background */
    padding: 15px; /* Ruang dalam */
    border-radius: 8px; /* Sudut melengkung */
    position: relative; /* Untuk pseudo-element */
    margin-left: -15px; /* Kompensasi padding parent */
    margin-right: -5px; /* Sedikit ruang di kanan */
    box-shadow: 0 2px 8px rgba(0,0,0,0.1); /* Sedikit bayangan */
}

/* FOOTER */
.testimoni-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  border-top: 1px dashed rgba(0,0,0,0.1);
  font-size: 0.75rem;
  color: #555;
}

.testimoni-rating {
    color: #FFB300;
    font-size: 0.8rem;
}

.testimoni-rating i:not(.active) {
    color: #e0e0e0;
}

/* NAVIGATION */
.testimoni-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    cursor: pointer;
    z-index: 2;
    border: none;
    outline: none;
}

.testimoni-nav:hover {
    background: #f5f5f5;
}

.testimoni-prev {
    left: -50px;
}

.testimoni-next {
    right: -50px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .testimoni-card {
        min-width: calc(50% - 10px);
        flex: 0 0 calc(50% - 10px);
    }
}

/* ====================== */
/*   TESTIMONI MOBILE     */
/* ====================== */
@media (max-width: 768px) {
    .testimoni-slider-container {
        overflow: hidden; /* sembunyiin yang keluar */
    }
    
    .testimoni-slider {
        display: flex;
        flex-direction: column; /* tumpuk vertikal */
        gap: 20px;
    }
    
    .testimoni-card {
        width: 100% !important; /* full width */
        min-width: auto !important;
                flex: 0 0 100%;
    }

}


/* Style scrollbar untuk browser WebKit */
.testimoni-slider-container::-webkit-scrollbar {
    height: 5px;
}

.testimoni-slider-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.testimoni-slider-container::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
}

.testimoni-slider-container::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}






/* ====================== */
/*   FORM SECTION STYLE   */
/* ====================== */
.form-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8f5e9 100%);
}

.form-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.form-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.form-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.form-title {
    font-size: 1.8rem;
    color: var(--primary-green);
    margin-bottom: 10px;
    position: relative;
    padding-bottom: 15px;
}

.form-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-orange);
    border-radius: 3px;
}

.form-desc {
    color: var(--gray);
    margin-bottom: 25px;
    line-height: 1.6;
}

.form-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: var(--black);
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f9f9f9;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    background: white;
    box-shadow: 0 0 0 3px rgba(55, 106, 84, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.rating-container {
    display: flex;
    gap: 5px;
}

.rating-star {
    color: #ddd;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.rating-star:hover,
.rating-star.active {
    color: #ffc107;
}

.submit-btn {
    background: var(--primary-green);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.submit-btn:hover {
    background: #2a5542;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(55, 106, 84, 0.3);
}

.submit-btn i {
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .testimoni-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .testimoni-section,
    .form-section {
        padding: 60px 15px;
    }
    
    .testimoni-title {
        font-size: 2rem;
    }
    
    .testimoni-desc,
    .form-desc {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .testimoni-title,
    .form-title {
        font-size: 1.8rem;
    }
    
    .testimoni-card {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .testimoni-slider {
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: 100%; /* satu card full width */
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
    }
    
    .testimoni-card {
        scroll-snap-align: start;
    }
}




/* ====================== */
/*   ROOT VARIABLES       */
/* ====================== */
:root {
    --primary-green: #376a54;
    --secondary-green: #81c784;
    --primary-orange: #fb8c00;
    --secondary-orange: #ffb74d;
    --white: #ffffff;
    --black: #212121;
    --gray: #757575;
    --light-gray: #e0e0e0;
}

/* ====================== */
/*   CONTACT FORM SECTION */
/* ====================== */
.contact-form-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-subtitle {
    display: inline-block;
    background-color: rgba(55, 106, 84, 0.1);
    color: var(--primary-green);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.section-title {
    font-size: 2.5rem;
    color: var(--black);
    margin-bottom: 15px;
    font-weight: 700;
}

.section-title span {
    color: var(--primary-green);
    position: relative;
}

.section-title span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(55, 106, 84, 0.2);
    z-index: -1;
    border-radius: 4px;
}

.section-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.decoration-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(to right, transparent 0%, rgba(55, 106, 84, 0.3) 50%, transparent 100%);
    margin: 0 15px;
}

.section-decoration i {
    color: var(--primary-green);
    font-size: 1.5rem;
}

.section-desc {
    max-width: 600px;
    margin: 0 auto;
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* ====================== */
/*   FORM CONTAINER       */
/* ====================== */
.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.form-container {
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    height: 100%;
}

/* ====================== */
/*   TABS - UPDATED STYLE */
/* ====================== */
.form-tabs {
    display: flex;
    background-color: var(--light-gray);
    border-radius: 8px 8px 0 0;
    padding: 5px;
    margin: 0;
}

.form-tab {
    flex: 1;
    padding: 12px 15px;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: var(--gray);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 6px;
    margin: 0 2px;
}

.form-tab.active {
    background-color: var(--primary-green);
    color: var(--white) !important;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.form-tab:not(.active):hover {
    background-color: rgba(55, 106, 84, 0.1);
    color: var(--primary-green);
}

/* ====================== */
/*   FORM CONTENT         */
/* ====================== */
.contact-form {
    display: none;
    padding: 30px;
}

.contact-form.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.form-header {
    margin-bottom: 25px;
}

.form-header h3 {
    font-size: 1.5rem;
    color: var(--black);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-header p {
    color: var(--gray);
    font-size: 1rem;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--black);
    font-size: 15px;
}

.input-with-icon, .textarea-with-icon {
    position: relative;
}

.input-with-icon i, .textarea-with-icon i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
    font-size: 16px;
}

.textarea-with-icon i {
    top: 20px;
    transform: none;
}

.form-group input {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border: 1px solid var(--light-gray);
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s;
    background-color: #f8f9fa;
}

.form-group textarea {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border: 1px solid var(--light-gray);
    border-radius: 8px;
    font-size: 16px;
    min-height: 150px;
    resize: vertical;
    transition: all 0.3s;
    background-color: #f8f9fa;
    font-family: inherit;
}

.form-group input:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(55, 106, 84, 0.1);
    background-color: var(--white);
}

/* ====================== */
/*   RATING SYSTEM        */
/* ====================== */
.rating-container {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.rating-stars {
    display: flex;
    gap: 5px;
}

.rating-stars i {
    font-size: 28px;
    color: var(--light-gray);
    cursor: pointer;
    transition: all 0.2s;
}

.rating-stars i.active, 
.rating-stars i:hover {
    color: var(--primary-orange);
}

.rating-text {
    font-size: 14px;
    color: var(--gray);
    font-style: italic;
}

/* ====================== */
/*   FORM FOOTER          */
/* ====================== */
.form-note {
    font-size: 14px;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 8px;
    margin: -10px 0 20px;
}

.form-note i {
    color: var(--primary-green);
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background-color: var(--primary-green);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    background-color: #2a5542;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(55, 106, 84, 0.3);
}

.error-message {
    color: #e74c3c;
    font-size: 14px;
    margin-top: 5px;
    display: none;
}

/* ====================== */
/*   MAPS CONTAINER       */
/* ====================== */
.maps-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.map-overlay {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255,255,255,0.95);
    padding: 12px 25px;
    border-radius: 50px;
    text-align: center;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    width: max-content;
    max-width: 90%;
}

.map-link {
    color: var(--primary-green);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.map-link:hover {
    color: #2a5542;
}

/* ====================== */
/*   RESPONSIVE DESIGN    */
/* ====================== */
@media (max-width: 768px) {
    .contact-form-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .form-tabs {
        flex-direction: column;
        background: none;
        padding: 0;
    }
    
    .form-tab {
        margin-bottom: 5px;
        border-radius: 8px;
    }
    
    .contact-form {
        padding: 20px;
    }
    
    .rating-stars i {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .form-tab {
        padding: 12px;
        font-size: 14px;
    }
    
    .form-header h3 {
        font-size: 1.3rem;
    }
    
    .section-subtitle {
        font-size: 12px;
        padding: 6px 15px;
    }
}



/* Testimoni Location */
.testimoni-location {
    display: block;
    font-size: 0.8rem;
    color: #666;
    margin-top: 2px;
}

/* Testimoni Avatar */
.testimoni-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3a7bd5, #00d2ff);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.3rem;
    flex-shrink: 0;
}

/* Testimoni Card Hover Effect */
.testimoni-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Status Badges */
.badge-warning {
    background-color: #ffc107;
    color: #212529;
}

.badge-success {
    background-color: #28a745;
}

.badge-danger {
    background-color: #dc3545;
    
}














