/* General Styles */
:root {
    --primary: #0d6efd;
    --secondary: #6c757d;
    --success: #198754;
    --danger: #dc3545;
    --warning: #ffc107;
    --info: #0dcaf0;
    --light: #f8f9fa;
    --dark: #212529;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding-top: 70px;
    color: #000000;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Feature Cards */
.feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 12px;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.feature-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Service Cards */
.service-card {
    transition: all 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15) !important;
}

.service-card .card-header {
    border-radius: 12px 12px 0 0 !important;
}

/* Marketing Cards */
.marketing-card {
    transition: all 0.3s ease;
    border-radius: 12px;
}

.marketing-card:hover {
    transform: scale(1.05);
}

.marketing-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, var(--primary) 0%, #0b5ed7 100%);
    transition: all 0.3s ease;
}

.cta-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(13, 110, 253, 0.3) !important;
}

/* Testimonial Cards */
.testimonial-card {
    transition: all 0.3s ease;
    border-radius: 12px;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

/* Registration Form */
.registration-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366; /* Warna WhatsApp */
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 99;
}

.whatsapp-button.show {
    opacity: 1;
    width: 80px;
    height: 80px;
}

.whatsapp-button i {
    font-size: 40px;
}

/* Contact Icons */
.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brochure-badge {
    position: absolute; 
    top: 20px; 
    right: 20px; 
    background: rgb(255 224 0); 
    padding: 8px 10px; 
    border-radius: 8px; 
/*    z-index: 2; */
    box-shadow: 0 4px 12px rgba(0,0,0,0.15); 
    display: flex; 
    align-items: center; 
    gap: 12px;
}

img.img-badge {
    height: 100%;
    max-height: 30px;
    padding: 2px;
}

a.wa {
    display: none;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    body {
        padding-top: 60px;
    }
    
    .hero-section {
        padding: 60px 0;
        text-align: center;
    }

    .brochure-card {
        margin-top: 20px;
    }

    img.img-badge {
        height: 100%;
        max-height: 20px;
        padding: 4px;
    }
}

/* Responsive Adjustments */
@media (max-width: 800px) {

    a.wa {
        display: block;
        width: 100%;
    }

    a.regis, a.servis {
        display: none;
    }
}

.list-font {
    text-shadow: 2px 2px #000, 2px -2px #000, -2px 2px #000, -2px -2px #000, 2px 0px #000, -2px 0px #000, 2px -0px #000, -2px -0px #000, 0px 2px #000, -0px 2px #000, 0px -2px #000, -0px -2px #000;
}