.elementor-kit-6{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-6 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* ===== GLOBAL STYLES ===== */
.profil-sekolah-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* ===== JUDUL DAN HEADING ===== */
.profil-sekolah-container h2 {
    color: #1e3a8a;
    border-bottom: 3px solid #3b82f6;
    padding-bottom: 10px;
    margin-bottom: 25px;
    font-size: 28px;
    font-weight: 700;
}

.profil-sekolah-container h3 {
    color: #2563eb;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: 600;
}

/* ===== TENTANG SEKOLAH ===== */
.tentang-sekolah-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border-left: 5px solid #3b82f6;
}

/* ===== VISI & MISI ===== */
.visi-section {
    background: #fff7ed;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 25px;
    border-left: 5px solid #f97316;
}

.misi-section {
    background: #f8fafc;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 25px;
    border-left: 5px solid #10b981;
}

.misi-category {
    margin-bottom: 20px;
}

.misi-category h4 {
    color: #059669;
    font-size: 18px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.misi-category h4:before {
    content: "✓";
    background: #10b981;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

/* ===== LIST STYLES ===== */
.misi-section ul {
    list-style: none;
    padding-left: 0;
}

.misi-section li {
    padding: 12px 15px;
    margin-bottom: 8px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
    border-left: 4px solid #dbeafe;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 35px;
}

.misi-section li:hover {
    transform: translateX(5px);
    border-left-color: #3b82f6;
    background: #eff6ff;
}

.misi-section li:before {
    content: "•";
    color: #3b82f6;
    font-size: 24px;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
}

/* ===== TUJUAN SEKOLAH ===== */
.tujuan-section {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    padding: 25px;
    border-radius: 12px;
    border: 2px dashed #10b981;
    text-align: center;
    font-style: italic;
    color: #065f46;
    font-weight: 500;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .profil-sekolah-container {
        padding: 20px 15px;
    }
    
    .profil-sekolah-container h2 {
        font-size: 24px;
    }
    
    .profil-sekolah-container h3 {
        font-size: 20px;
    }
    
    .tentang-sekolah-section,
    .visi-section,
    .misi-section,
    .tujuan-section {
        padding: 20px;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.profil-sekolah-container > * {
    animation: fadeInUp 0.5s ease-out forwards;
}

/* ===== SCROLL TO TOP BUTTON ===== */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #3b82f6;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    background: #2563eb;
    transform: scale(1.1);
}/* End custom CSS */