.stat-card {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    height: 300px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border-top: 4px solid var(--secondary-color);
    text-align: center;
    display: flex;
    flex-direction: column;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #16823e;
    margin: 10px 0;
}

.stat-title {
    font-size: 1.1rem;
    color: #0c7432bb;
    font-weight: 600;
    text-transform: uppercase;
}

.stat-icon {
    font-size: 2rem;
    color: #0c7432bb;
}

.card-content {
    flex: 1;
}

@media (max-width: 767px) {
    .stat-card {
        margin: 30px;
    }
}

.adress,
.email,
.phone {
    margin-bottom: 15px;
}

.whatsapp-btn a {
    display: flex;
    align-items: center;
    background-color: #25d366;
    /* Warna WhatsApp */
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.whatsapp-btn a:hover {
    background-color: #128c7e;
}

.blog-sidebar .category-widget ul .active {
    color: #25d366;
}

/* Table */

.table-container {
    margin: 0 auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
}

th {
    background-color: #2c3e50;
    color: white;
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

td {
    padding: 12px 15px;
    border-bottom: 1px solid #e0e0e0;
}

tr:hover {
    background-color: #f1f5f9;
}

tr:last-child td {
    border-bottom: none;
}

.no-column {
    width: 50px;
    text-align: center;
}

.skema-column {
    font-weight: 500;
    color: #2c3e50;
}

.view-column {
    width: 100px;
}

.view-button {
    background-color: #25d366;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s;
}

.view-button:hover {
    background-color: #2980b9;
}

/* Contact */

.contact-section {
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.section-title-contact {
    font-size: 2rem;
    font-weight: 700;
    color: #f9f9f9;
    margin-bottom: 15px;
    position: relative;
}

.section-title-contact:after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: #3498db;
    margin: 15px 0;
}

.section-subtitle {
    color: #f9f9f9;
    margin-bottom: 30px;
}

/* Contact Card */
.contact-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.contact-info-col {
    padding: 40px;
    background: linear-gradient(135deg, #132b09, #2c3e50);
    color: white;
}

.contact-action-col {
    padding: 40px;
    background: white;
}

/* Contact Items */
.contact-item {
    display: flex;
    margin-bottom: 25px;
}

.contact-icon {
    font-size: 1.5rem;
    color: #3498db;
    background: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-info-col .contact-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.contact-text h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #2c3e50;
}

.contact-info-col .contact-text h4 {
    color: white;
}

.contact-text p,
.contact-text a {
    margin-top: 0px;
    color: #7f8c8d;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-info-col .contact-text p,
.contact-info-col .contact-text a {
    color: rgba(255, 255, 255, 0.8);
}

.contact-text a:hover {
    color: #3498db;
}

.contact-info-col .contact-text a:hover {
    color: white;
    text-decoration: underline;
}

/* WhatsApp Card */
.whatsapp-card {
    text-align: center;
    padding: 30px;
    background: #f5f9ff;
    border-radius: 8px;
    margin-bottom: 30px;
    border: 1px solid #e1e8f0;
}

.whatsapp-icon {
    font-size: 3rem;
    color: #25d366;
    margin-bottom: 15px;
}

.whatsapp-card h3 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.whatsapp-card p {
    color: #7f8c8d;
    margin-bottom: 20px;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #25d366;
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    background: #128c7e;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn i {
    margin-left: 10px;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover i {
    transform: translateX(5px);
}

/* Social Links */
.social-links {
    margin-top: 40px;
}

.social-links h5 {
    color: white;
    margin-bottom: 15px;
    font-size: 1rem;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: white;
    color: #3498db;
    transform: translateY(-3px);
}

/* Contact Hours */
.contact-hours {
    background: #f5f9ff;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e1e8f0;
}

.contact-hours h4 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.contact-hours ul {
    list-style: none;
    padding: 0;
}

.contact-hours li {
    margin-bottom: 10px;
    color: #7f8c8d;
    display: flex;
}

.contact-hours li span {
    font-weight: 600;
    color: #2c3e50;
    min-width: 120px;
    display: inline-block;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-info-col,
    .contact-action-col {
        padding: 30px 20px;
    }

    .contact-card {
        flex-direction: column;
    }

    .contact-info-col {
        border-radius: 10px 10px 0 0;
    }

    .contact-action-col {
        border-radius: 0 0 10px 10px;
    }
}
