body {
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
    color: #333; /* Darker text for better readability */
}

.hero-bg {
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                      url('https://placehold.co/1600x900?text=Food+Tray+Stainless+SUS304&alt=Stainless+steel+food+tray+with+three+compartments+containing+rice,+vegetables,+and+meat+in+a+school+canteen+setting');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.product-gallery img {
    transition: all 0.3s ease;
    cursor: pointer;
}
.product-gallery img:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.testimonial-card {
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 12px;
}
.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.08); }
    100% { transform: scale(1); }
}

.floating-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    font-weight: 600;
}

.tab-content {
    display: none;
}
.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* General button styling for consistency */
.btn-primary {
    padding: 0.75rem 2rem;
    background-color: #0ea5e9; /* sky-500 */
    color: #ffffff;
    font-weight: 600;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}
.btn-primary:hover {
    background-color: #0284c7; /* sky-700 */
}

.btn-secondary {
    padding: 0.75rem 2rem;
    background-color: #38bdf8; /* sky-400 */
    color: #ffffff;
    font-weight: 600;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}
.btn-secondary:hover {
    background-color: #0ea5e9; /* sky-500 */
}

.btn-outline {
    padding: 0.75rem 2rem;
    border: 2px solid #0ea5e9; /* border-sky-500 */
    color: #0ea5e9; /* text-sky-500 */
    font-weight: 600;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.btn-outline:hover {
    background-color: #f0f9ff; /* sky-50 */
}

/* Section headings */
.section-heading {
    color: #0ea5e9; /* text-sky-500 */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}
.section-title {
    font-size: 1.875rem; /* text-3xl */
    font-weight: 800;
    color: #111827; /* text-gray-900 */
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}
.section-divider {
    width: 6rem;
    height: 0.375rem;
    background-color: #0ea5e9; /* sky-500 */
    margin: 1rem auto 0 auto;
    border-radius: 9999px;
}

/* Card styling */
.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: 0.75rem;
    background-color: #ffffff;
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}
.feature-card:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    transform: translateY(-0.5rem);
}
.feature-icon {
    background-color: #e0f2fe; /* sky-100 */
    width: 5rem;
    height: 5rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    color: #0ea5e9; /* text-sky-500 */
    font-size: 1.875rem;
}

/* FAQ styling */
.faq-btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem;
    background-color: #ffffff;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
}
.faq-btn:hover {
    background-color: #f9fafb; /* hover:bg-gray-50 */
}
.faq-content {
    padding: 1.25rem;
    background-color: #f9fafb; /* bg-gray-50 */
    border-radius: 0 0 0.5rem 0.5rem;
}
.body-wrapper {
    margin-top: 1.5rem; /* Atur jarak supaya rata dengan sidebar */
}
