* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Public Sans', -apple-system, Roboto, Helvetica, sans-serif;
    background: #fff;
    overflow-x: hidden;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Selection Color */
::selection {
    background: #5284BD;
    color: #fff;
}

::-moz-selection {
    background: #5284BD;
    color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: linear-gradient(135deg, #ffffff 0%, #C1D3E7 100%);
    box-shadow: 0 2px 15px rgba(82, 132, 189, 0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid #5284BD;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo img {
    height: 60px;
    width: auto;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
}

.nav-menu a {
    color: #2F527A;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-menu a.active {
    color: #5284BD;
}

.nav-menu a:hover {
    color: #3D6A9F;
}

.nav-menu .fa-chevron-down {
    font-size: 12px;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 220px;
    padding: 10px 0;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 5px;
    display: block !important;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: #2F527A;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-align: left;
}

.dropdown-menu a:hover {
    background: rgba(82, 132, 189, 0.1);
    color: #5284BD;
    padding-left: 25px;
}

/* Nav Menu Styling */
.nav-menu>ul {
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.nav-menu>ul>li {
    display: inline-block;
    position: relative;
    margin: 0;
    padding: 0;
}

.nav-menu>ul>li>a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 15px;
    text-decoration: none;
    color: #2F527A;
    transition: all 0.3s ease;
}

/* Ensure dropdown appears below parent */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    min-width: 220px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    margin-top: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    display: block !important;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 8px 20px;
    color: #2F527A;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
    white-space: nowrap;
    text-align: left;
}

.dropdown-menu a:hover {
    background: rgba(82, 132, 189, 0.1);
    color: #5284BD;
    padding-left: 25px;
}

.cta-button {
    background: linear-gradient(135deg, #5284BD 0%, #3D6A9F 100%);
    color: #fff;
    padding: 12px 28px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(82, 132, 189, 0.4);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #9CB8D9 0%, #5284BD 100%);
    transition: left 0.4s ease;
}

.cta-button:hover::before {
    left: 0;
}

.cta-button span {
    position: relative;
    z-index: 1;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(82, 132, 189, 0.5);
}

/* Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
    height: 753px;
    overflow: hidden;
    background: linear-gradient(135deg, #5284BD 0%, #9CB8D9 50%, #E6EDF5 100%);
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-track {
    display: flex;
    width: 100%;
    height: 100%;
}

.slide {
    min-width: 100%;
    height: 100%;
    display: none;
}

.slide.active {
    display: block;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(82, 132, 189, 0.9);
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: white;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.slider-btn:hover {
    background: rgba(61, 106, 159, 1);
    transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev {
    left: 20px;
}

.slider-btn.next {
    right: 20px;
}

/* Welcome Section */
.welcome-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #C1D3E7 100%);
    position: relative;
}

.welcome-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(82, 132, 189, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.welcome-section .container {
    display: block;
}

.welcome-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.welcome-header {
    text-align: center;
    width: 100%;
    margin-bottom: 40px;
}

.welcome-header h2 {
    color: #2F527A;
    font-family: 'Public Sans', sans-serif;
    font-size: 42px;
    /* Slightly reduced from 52px to ensure 1 line fit */
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 20px;
    display: inline-block;
}

.welcome-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, #5284BD 0%, #3D6A9F 100%);
    border-radius: 3px;
}

/* Original styles below tailored for content */
.welcome-image {
    position: relative;
}

.welcome-image img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(47, 82, 122, 0.2);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.welcome-image::before {
    content: '';
    position: absolute;
    top: 20px;
    right: -20px;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #5284BD 0%, #3D6A9F 100%);
    border-radius: 24px;
    z-index: 1;
    opacity: 0.35;
}

.welcome-image img:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(82, 132, 189, 0.35);
}

.welcome-content {
    padding-right: 0;
}

/* Remove old h2 styles from welcome-content if they are no longer used here or keep for compatibility */
.welcome-content h2 {
    color: #2F527A;
    font-family: 'Public Sans', sans-serif;
    font-size: 52px;
    font-weight: 800;
    line-height: 62px;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 20px;
}

.welcome-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, #5284BD 0%, #3D6A9F 100%);
    border-radius: 3px;
}

.welcome-content h2::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 110px;
    width: 30px;
    height: 5px;
    background: #9CB8D9;
    border-radius: 3px;
    opacity: 0.6;
}

.welcome-content p {
    color: #333;
    font-family: 'Public Sans', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 32px;
    text-shadow: none;
    margin-bottom: 30px;
}

.welcome-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(82, 132, 189, 0.1);
    border-radius: 12px;
    border-left: 4px solid #5284BD;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(82, 132, 189, 0.18);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(82, 132, 189, 0.2);
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: #2F527A;
    display: block;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 13px;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.welcome-social {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 28px;
}

.welcome-social span {
    font-size: 15px;
    font-weight: 600;
    color: #2F527A;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    text-decoration: none;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.social-icon.facebook {
    background: #1877F2;
}

.social-icon.youtube {
    background: #FF0000;
}

.social-icon.instagram {
    background: radial-gradient(circle at 30% 30%, #FFD76F, #F56040 40%, #E1306C 65%, #5851DB);
}

.social-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
    opacity: 0.9;
}

/* Section Header */
.section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 40px 0;
}

.section-header i {
    color: #5284BD;
    font-size: 42px;
    background: linear-gradient(135deg, #C1D3E7 0%, #E6EDF5 100%);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 5px 20px rgba(82, 132, 189, 0.25);
}

.section-header h2 {
    color: #2F527A;
    text-align: center;
    font-family: Roboto, sans-serif;
    font-size: 38px;
    font-weight: 700;
    line-height: 57px;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #5284BD 0%, #3D6A9F 100%);
    border-radius: 2px;
}

/* Profile Section */
.profile-section {
    padding: 70px 0;
    background: linear-gradient(135deg, #E6EDF5 0%, #C1D3E7 100%);
    position: relative;
}

.profile-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://api.builder.io/api/v1/image/assets/TEMP/5d41f88ee1a8204735b3b4184aa20dc06d6ac214?width=3810') lightgray 0% 0% / 100px 100px repeat;
    opacity: 0.3;
    z-index: 0;
}

.profile-section .container {
    position: relative;
    z-index: 1;
}

.video-container {
    max-width: 1140px;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.video-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.video-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.3s;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

/* News Section */
.news-section {
    padding: 70px 0;
    background: #ffffff;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 35px;
}

.news-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.news-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #5284BD 0%, #3D6A9F 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.news-card:hover::before {
    transform: scaleX(1);
}

.news-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.news-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 0;
    margin-bottom: 0;
    transition: transform 0.6s ease;
}

.news-card:hover img {
    transform: scale(1.08);
}

.news-content {
    padding: 25px;
    position: relative;
}

.news-badge {
    position: absolute;
    top: -130px;
    right: 15px;
    background: linear-gradient(135deg, #5284BD 0%, #3D6A9F 100%);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(82, 132, 189, 0.4);
    z-index: 10;
}

.news-content h3 {
    color: #2F527A;
    font-family: Montserrat, sans-serif;
    font-size: 19px;
    font-weight: 700;
    line-height: 26px;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.news-card:hover .news-content h3 {
    color: #5284BD;
}

.news-date {
    color: #ADADAD;
    font-family: 'Roboto Slab', serif;
    font-size: 12px;
    line-height: 15.6px;
    margin-bottom: 14px;
}

.news-excerpt {
    color: #777;
    font-family: Montserrat, sans-serif;
    font-size: 14px;
    line-height: 21px;
}

/* Advantages Section */
.advantages-section {
    padding: 70px 0;
    background: linear-gradient(180deg, #C1D3E7 0%, #E6EDF5 100%);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.advantage-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(47, 82, 122, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.advantage-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(82, 132, 189, 0.1) 0%, rgba(61, 106, 159, 0.1) 100%);
    transition: left 0.5s ease;
}

.advantage-item:hover::before {
    left: 0;
}

.advantage-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 45px rgba(82, 132, 189, 0.2);
}

.advantage-item img {
    width: 100px;
    height: 100px;
    padding: 20px;
    background: linear-gradient(135deg, #5284BD 0%, #3D6A9F 100%);
    border-radius: 50%;
    transition: all 0.5s ease;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 20px rgba(82, 132, 189, 0.35);
}

.advantage-item:hover img {
    transform: rotate(360deg) scale(1.15);
    box-shadow: 0 12px 30px rgba(82, 132, 189, 0.45);
}

.advantage-item h3 {
    color: #2F527A;
    font-family: Montserrat, sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 26px;
    position: relative;
    z-index: 1;
}

.advantage-item p {
    color: #666;
    font-family: Montserrat, sans-serif;
    font-size: 15px;
    line-height: 26px;
    position: relative;
    z-index: 1;
}

/* Goals Section */
.goals-section {
    padding: 70px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.goals-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    padding: 50px;
    background: linear-gradient(135deg, #3D6A9F 0%, #5284BD 100%);
    border-radius: 24px;
    box-shadow: 0 15px 50px rgba(82, 132, 189, 0.3);
    position: relative;
    overflow: hidden;
}

.goals-grid::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.goals-grid::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.goal-card {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 35px;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 20px;
    border: none;
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.12);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px);
}

.goal-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    background: #fff;
}

.goal-card i {
    color: #5284BD;
    font-size: 64px;
    background: linear-gradient(135deg, #C1D3E7 0%, #E6EDF5 100%);
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.goal-card:hover i {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #5284BD 0%, #3D6A9F 100%);
    color: #fff;
}

.goal-content h3 {
    color: #2F527A;
    font-family: Montserrat, sans-serif;
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
}

.goal-content p {
    color: #666;
    font-family: Montserrat, sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
}

/* Gallery Section */
.gallery-section {
    padding: 70px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.gallery-slider {
    position: relative;
    overflow: hidden;
    margin: 20px 0;
}

.gallery-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
}

.gallery-track img {
    width: 393px;
    height: 280px;
    object-fit: cover;
    flex-shrink: 0;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-track img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(82, 132, 189, 0.9);
    border: none;
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.gallery-btn:hover {
    background: rgba(61, 106, 159, 1);
    transform: translateY(-50%) scale(1.1);
}

.gallery-btn.prev {
    left: 10px;
}

.gallery-btn.next {
    right: 10px;
}

.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.gallery-dots::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #5284BD;
    border-radius: 3px;
    opacity: 0.2;
}

/* Testimoni Section */
.testimoni-section {
    padding: 70px 0;
    background: linear-gradient(135deg, #5284BD 0%, #3D6A9F 100%);
    position: relative;
    overflow: hidden;
}

.testimoni-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.testimoni-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.testimoni-section .section-header i,
.testimoni-section .section-header h2 {
    color: #fff;
}

.testimoni-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto 0;
}

/* Card dengan ukuran tetap */
.testimoni-item {
    background: rgba(255, 255, 255, 0.15);
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    height: 320px;
    /* Ukuran card tetap */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimoni-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Testimoni content yang bisa scroll jika kepanjangan */
.testimoni-content {
    flex: 1;
    /* Ambil sisa space yang ada */
    overflow-y: auto;
    margin-bottom: 20px;
    padding-right: 5px;
}

.testimoni-content::-webkit-scrollbar {
    width: 4px;
}

.testimoni-content::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
}

.testimoni-content p {
    color: #fff;
    font-family: 'Public Sans', sans-serif;
    font-size: 15px;
    font-style: italic;
    line-height: 1.7;
    margin: 0;
}

/* Author section selalu di bawah dengan posisi tetap */
.testimoni-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: auto;
    /* Dorong ke bawah */
}

.author-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #5284BD 0%, #3D6A9F 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.author-icon i {
    font-size: 24px;
    color: #fff;
}

.author-info {
    text-align: left;
}

.author-info h4 {
    color: #fff;
    font-family: Montserrat, sans-serif;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 5px 0;
    line-height: 1.2;
}

.author-info p {
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Public Sans', sans-serif;
    font-size: 13px;
    font-weight: 400;
    margin: 0;
    line-height: 1.2;
}

/* Responsive */
@media (max-width: 992px) {
    .testimoni-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .testimoni-grid {
        grid-template-columns: 1fr;
    }

    .testimoni-item {
        height: auto;
        /* Di mobile biarkan flexible */
        min-height: 280px;
    }
}

/* Partners Section */
.partners-section {
    padding: 70px 0;
    background: linear-gradient(180deg, #ffffff 0%, #C1D3E7 100%);
}

.partners-slider {
    overflow: hidden;
    margin: 20px 0;
}

.partners-track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.partners-track img {
    height: 80px;
    width: auto;
    object-fit: contain;
    padding: 15px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.partners-track img:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.partners-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2F527A 0%, #3D2F2F 100%);
    color: #fff;
    padding: 50px 0 25px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #5284BD 0%, #3D6A9F 50%, #5284BD 100%);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    /* Explicit column widths for desktop */
    gap: 40px;
    margin-bottom: 30px;
    align-items: start;
}

.footer-logo {
    margin-bottom: 20px;
    margin-right: 20px;
}

.footer-logo img {
    max-width: 250px;
    max-height: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.footer-about p {
    font-family: Montserrat, sans-serif;
    font-size: 16px;
    line-height: 24px;
}

.footer-contact h3,
.footer-links h3,
.footer-units h3 {
    font-family: Montserrat, sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 20px;
    margin-bottom: 20px;
}

.footer-links ul,
.footer-units ul {
    list-style: none;
}

.footer-links li,
.footer-units li {
    margin-bottom: 10px;
}

.footer-links a,
.footer-units a {
    color: #ffffff;
    text-decoration: none;
    font-family: Montserrat, sans-serif;
    font-size: 16px;
    line-height: 24px;
    transition: color 0.3s;
}

.footer-links a:hover,
.footer-units a:hover {
    color: #5284BD;
}

.footer-contact ul {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-family: Montserrat, sans-serif;
    font-size: 16px;
    line-height: 24px;
}

.footer-contact i {
    width: 17.5px;
}

/* FULL WIDTH MAPS SECTION - NEW */
.footer-map-fullwidth {
    margin: 50px 0 30px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.footer-map-fullwidth h3 {
    font-family: Montserrat, sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 24px;
    margin-bottom: 25px;
    text-align: center;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.footer-map-fullwidth h3::before {
    content: '📍';
    font-size: 28px;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.map-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(82, 132, 189, 0.4);
}

.map-container iframe {
    display: block;
    width: 100%;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-family: Montserrat, sans-serif;
    font-size: 16px;
    line-height: 16px;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-map-fullwidth {
        padding: 20px;
        margin: 30px 0 20px;
    }

    .footer-map-fullwidth h3 {
        font-size: 20px;
    }

    .map-container iframe {
        height: 300px;
    }
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    left: 25px;
    z-index: 1000;
}

.whatsapp-button {
    display: flex;
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, #49E670 0%, #25D366 100%);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-button:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
}

.whatsapp-tooltip {
    position: absolute;
    left: 75px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #ffffff 0%, #C1D3E7 100%);
    color: #2F527A;
    padding: 8px 18px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    font-family: Roboto, sans-serif;
    font-size: 15px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(82, 132, 189, 0.3);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    left: 80px;
}

.whatsapp-tooltip::before {
    content: '';
    position: absolute;
    left: -5px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-right: 5px solid #fff;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
}

/* Responsive */
@media (max-width: 1024px) {
    .nav-menu {
        display: none;
    }

    .header-container {
        justify-content: space-between;
    }

    .hero-slider {
        height: 500px;
    }

    .welcome-section .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .welcome-content h2 {
        font-size: 36px;
        line-height: 44px;
    }

    .welcome-stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .section-header h2 {
        font-size: 28px;
    }

    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .goals-grid {
        grid-template-columns: 1fr;
        padding: 30px;
    }

    .goal-card {
        padding: 25px;
    }

    .goal-card i {
        font-size: 48px;
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 70vh;
        min-height: 400px;
    }

    .slider-container {
        height: 100%;
    }

    .slider-track {
        height: 100%;
    }

    .slide {
        height: 100%;
    }

    .slide img {
        width: 100%;
        object-fit: cover;
        object-position: center;
    }


    .welcome-content h2 {
        font-size: 32px;
        line-height: 38px;
    }

    .welcome-content p {
        font-size: 16px;
        line-height: 26px;
    }

    .welcome-stats {
        grid-template-columns: 1fr;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
    }

    .goals-grid {
        grid-template-columns: 1fr;
        padding: 25px;
    }

    .goal-card {
        flex-direction: row;
        padding: 25px;
    }

    .gallery-track img {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .whatsapp-float {
        bottom: 20px;
        left: 20px;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 40px;
    }

    .cta-button {
        padding: 10px 20px;
        font-size: 13px;
    }

    .hero-slider {
        height: 100vh;
        min-height: 300px;
    }

    .slider-container {
        height: 100%;
    }

    .slider-track {
        height: 100%;
    }

    .slide {
        height: 100%;
    }

    .slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .section-header h2 {
        font-size: 24px;
        line-height: 36px;
    }

    .welcome-content h2 {
        font-size: 24px;
        line-height: 28px;
    }

    .stat-number {
        font-size: 24px;
    }

    .stat-label {
        font-size: 11px;
    }

    .goal-content h3 {
        font-size: 28px;
    }
}

/* Animations */

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Apply animations */
.welcome-content {
    animation: slideInLeft 0.8s ease-out;
}

.welcome-image {
    animation: slideInRight 0.8s ease-out;
}



.news-card:nth-child(1) {
    animation-delay: 0.1s;
}

.news-card:nth-child(2) {
    animation-delay: 0.2s;
}

.news-card:nth-child(3) {
    animation-delay: 0.3s;
}

.advantage-item {
    animation: scaleIn 0.6s ease-out;
}

.advantage-item:nth-child(1) {
    animation-delay: 0.1s;
}

.advantage-item:nth-child(2) {
    animation-delay: 0.2s;
}

.advantage-item:nth-child(3) {
    animation-delay: 0.3s;
}

.advantage-item:nth-child(4) {
    animation-delay: 0.4s;
}

.advantage-item:nth-child(5) {
    animation-delay: 0.5s;
}

.advantage-item:nth-child(6) {
    animation-delay: 0.6s;
}



.goal-card:nth-child(1) {
    animation-delay: 0.1s;
}

.goal-card:nth-child(2) {
    animation-delay: 0.2s;
}

.goal-card:nth-child(3) {
    animation-delay: 0.3s;
}

.goal-card:nth-child(4) {
    animation-delay: 0.4s;
}

/* Scroll Progress Indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, #5284BD 0%, #3D6A9F 100%);
    z-index: 9999;
    transition: width 0.1s ease;
}

/* Floating Decorative Shapes */
.floating-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.shape {
    position: absolute;
    opacity: 0.05;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #5284BD 0%, #3D6A9F 100%);
    border-radius: 50%;
    top: 10%;
    left: -150px;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #E6EDF5 0%, #C1D3E7 100%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    top: 50%;
    right: -100px;
    animation-delay: 5s;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #9CB8D9 0%, #5284BD 100%);
    border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
    bottom: 10%;
    left: 50%;
    animation-delay: 10s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    25% {
        transform: translateY(-50px) rotate(90deg);
    }

    50% {
        transform: translateY(0) rotate(180deg);
    }

    75% {
        transform: translateY(50px) rotate(270deg);
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 25px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #5284BD 0%, #3D6A9F 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(82, 132, 189, 0.35);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(82, 132, 189, 0.45);
}

/* Video Section */
.video-section {
    padding: 70px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.video-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

/* Alur Pendaftaran Section */
.alur-section {
    padding: 70px 0;
    background: linear-gradient(180deg, #ffffff 0%, #C1D3E7 100%);
}

.alur-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.alur-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #5284BD 0%, #9CB8D9 100%);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #5284BD 0%, #3D6A9F 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(82, 132, 189, 0.35);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-number {
    transform: scale(1.15) rotate(360deg);
    box-shadow: 0 12px 35px rgba(82, 132, 189, 0.45);
}

.timeline-content {
    flex: 1;
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.timeline-content h3 {
    color: #2F527A;
    font-family: Montserrat, sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.timeline-content p {
    color: #666;
    font-family: 'Public Sans', sans-serif;
    font-size: 15px;
    line-height: 24px;
}

/* Update Section */
.update-section {
    padding: 70px 0;
    background: #ffffff;
}

.update-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 35px;
}

.update-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.update-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #5284BD 0%, #3D6A9F 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.update-card:hover::before {
    transform: scaleX(1);
}

.update-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.update-actions {
    margin-top: 2rem;
    text-align: center;
}

.update-more-button {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    border-radius: 999px;
    border: 2px solid #5284BD;
    color: #5284BD;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.update-more-button:hover {
    background-color: #5284BD;
    color: #fff;
}

.update-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.update-card:hover img {
    transform: scale(1.08);
}

.update-content {
    padding: 25px;
}

.update-date {
    display: inline-block;
    color: #5284BD;
    font-family: 'Roboto Slab', serif;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
}

.update-content h3 {
    color: #2F527A;
    font-family: Montserrat, sans-serif;
    font-size: 19px;
    font-weight: 700;
    line-height: 26px;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.update-card:hover .update-content h3 {
    color: #5284BD;
}

.update-content p {
    color: #777;
    font-family: Montserrat, sans-serif;
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 15px;
}

.read-more {
    color: #5284BD;
    font-family: Montserrat, sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: #3D6A9F;
    gap: 12px;
}

/* Why Section */
.why-section {
    padding: 70px 0;
    background: linear-gradient(180deg, #C1D3E7 0%, #E6EDF5 100%);
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-family: 'Public Sans', sans-serif;
    font-size: 16px;
    margin-top: 10px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(82, 132, 189, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.why-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(82, 132, 189, 0.1) 0%, rgba(61, 106, 159, 0.1) 100%);
    transition: left 0.5s ease;
}

.why-item:hover::before {
    left: 0;
}

.why-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 45px rgba(82, 132, 189, 0.2);
}

.why-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #5284BD 0%, #3D6A9F 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 20px rgba(82, 132, 189, 0.35);
}

.why-icon i {
    font-size: 40px;
    color: #fff;
}

.why-item:hover .why-icon {
    transform: rotate(360deg) scale(1.15);
    box-shadow: 0 12px 30px rgba(82, 132, 189, 0.45);
}

.why-item h3 {
    color: #2F527A;
    font-family: Montserrat, sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 26px;
    position: relative;
    z-index: 1;
}

.why-item p {
    color: #666;
    font-family: Montserrat, sans-serif;
    font-size: 15px;
    line-height: 26px;
    position: relative;
    z-index: 1;
}

/* Galeri Section */
.galeri-section {
    padding: 70px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.galeri-slider {
    position: relative;
    overflow: hidden;
    margin: 20px 0;
}

.galeri-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
}

.galeri-track img {
    width: 393px;
    height: 280px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.galeri-track img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.galeri-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(82, 132, 189, 0.9);
    border: none;
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.galeri-btn:hover {
    background: rgba(61, 106, 159, 1);
    transform: translateY(-50%) scale(1.1);
}

.galeri-btn.prev {
    left: 10px;
}

.galeri-btn.next {
    right: 10px;
}

.galeri-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

/* Testimoni Section */
.testimoni-section {
    padding: 70px 0;
    background: linear-gradient(135deg, #5284BD 0%, #3D6A9F 100%);
    position: relative;
    overflow: hidden;
}

.testimoni-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.testimoni-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.testimoni-section .section-header i,
.testimoni-section .section-header h2 {
    color: #fff;
}

.testimoni-section .section-header h2::after {
    background: #fff;
}

.testimoni-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.testimoni-item {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.testimoni-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    background: #fff;
}

.testimoni-content p {
    color: #555;
    font-family: 'Public Sans', sans-serif;
    font-size: 15px;
    line-height: 26px;
    font-style: italic;
    margin-bottom: 25px;
}

.testimoni-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimoni-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #5284BD;
}

.author-info h4 {
    color: #2F527A;
    font-family: Montserrat, sans-serif;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
}

.author-info p {
    color: #888;
    font-family: 'Public Sans', sans-serif;
    font-size: 13px;
}

/* Event Section */
.event-section {
    padding: 70px 0;
    background: linear-gradient(180deg, #ffffff 0%, #C1D3E7 100%);
}

.event-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 340px));
    gap: 30px;
    margin-top: 25px;
    justify-content: center;
}

.event-card {
    display: flex;
    gap: 25px;
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.event-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, #5284BD 0%, #3D6A9F 100%);
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.event-card:hover::before {
    transform: scaleY(1);
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
}

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #5284BD 0%, #3D6A9F 100%);
    color: #fff;
    border-radius: 12px;
    padding: 15px 20px;
    min-width: 80px;
    flex-shrink: 0;
}

.date-day {
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
}

.date-month {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.event-info h3 {
    color: #2F527A;
    font-family: Montserrat, sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.event-info p {
    color: #666;
    font-family: 'Public Sans', sans-serif;
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 8px;
}

.event-info p i {
    color: #5284BD;
    margin-right: 8px;
    width: 16px;
}

.event-desc {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #eee;
}

/* Responsive for Yamuna */
@media (max-width: 1024px) {
    .alur-timeline::before {
        left: 35px;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        flex-direction: row !important;
        padding-left: 100px;
    }

    .timeline-number {
        position: absolute;
        left: 0;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .why-grid {
        grid-template-columns: 1fr;
    }

    .event-grid {
        grid-template-columns: 1fr;
    }

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

    .event-date {
        flex-direction: row;
        gap: 10px;
        padding: 15px 25px;
    }
}

/* Page Banner */
.page-banner {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.page-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(82, 132, 189, 0.8) 0%, rgba(61, 106, 159, 0.8) 100%);
    z-index: 1;
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    color: #fff;
}

.banner-content h1 {
    font-family: 'Public Sans', sans-serif;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
}

.banner-content p {
    font-family: 'Public Sans', sans-serif;
    font-size: 18px;
    font-weight: 400;
}

/* About Detail Section */
.about-detail-section {
    padding: 70px 0;
    background: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.image-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #5284BD 0%, #3D6A9F 100%);
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(82, 132, 189, 0.4);
}

.about-content h2 {
    color: #2F527A;
    font-family: Montserrat, sans-serif;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 25px;
}

.about-content p {
    color: #666;
    font-family: 'Public Sans', sans-serif;
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 20px;
}

/* Contact Info */
.about-content .contact-info p {
    margin-bottom: 10px;
}

.about-content .about-description {
    margin-top: 20px;
    line-height: 1.8;
}

/* About Stats - Sejajar dengan Icon */
.about-stats-inline {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.stat-inline {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-inline i {
    font-size: 40px;
    color: #5284BD;
    flex-shrink: 0;
}

.stat-inline>div {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat-inline h3 {
    font-size: 28px;
    font-weight: 800;
    color: #2F527A;
    margin: 0;
    line-height: 1;
}

.stat-inline p {
    font-size: 14px;
    color: #888;
    margin: 5px 0 0 0;
    line-height: 1.3;
}

/* Responsive */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-stats-inline {
        flex-direction: column;
        gap: 20px;
    }
}

/* Values Section */
.values-section {
    padding: 70px 0;
    background: linear-gradient(180deg, #C1D3E7 0%, #E6EDF5 100%);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.value-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #5284BD 0%, #3D6A9F 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon i {
    font-size: 35px;
    color: #fff;
}

.value-card h3 {
    color: #2F527A;
    font-family: Montserrat, sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.value-card p {
    color: #666;
    font-size: 14px;
    line-height: 24px;
}

/* Profile Gallery Section */
.profile-gallery-section {
    padding: 70px 0;
    background: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    color: #fff;
    font-family: Montserrat, sans-serif;
    font-size: 18px;
    font-weight: 700;
}

/* Visi Section */
.visi-section {
    padding: 70px 0;
    background: linear-gradient(135deg, #5284BD 0%, #3D6A9F 100%);
}

.visi-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
}

.visi-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.visi-icon i {
    font-size: 50px;
}

.visi-container h2 {
    font-family: Montserrat, sans-serif;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 25px;
}

.visi-text {
    font-family: 'Public Sans', sans-serif;
    font-size: 20px;
    line-height: 36px;
    font-style: italic;
}

/* Misi Section */
.misi-section {
    padding: 70px 0;
    background: #fff;
}

.misi-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.misi-card {
    display: flex;
    gap: 25px;
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.misi-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
}

.misi-number {
    font-size: 48px;
    font-weight: 800;
    color: #5284BD;
    opacity: 0.3;
    flex-shrink: 0;
}

.misi-content h3 {
    color: #2F527A;
    font-family: Montserrat, sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.misi-content p {
    color: #666;
    font-size: 15px;
    line-height: 26px;
}

/* Tujuan Section */
.tujuan-section {
    padding: 70px 0;
    background: linear-gradient(180deg, #C1D3E7 0%, #E6EDF5 100%);
}

.tujuan-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.tujuan-item {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.tujuan-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.tujuan-item i {
    font-size: 50px;
    color: #5284BD;
    margin-bottom: 20px;
}

.tujuan-item h3 {
    color: #2F527A;
    font-family: Montserrat, sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

.tujuan-item p {
    color: #666;
    font-size: 14px;
    line-height: 24px;
}

/* Kepala Sekolah Section */
.kepala-sekolah-section {
    padding: 70px 0;
    background: #fff;
}

.kepala-sekolah-card {
    display: flex;
    gap: 50px;
    align-items: center;
    background: linear-gradient(135deg, #C1D3E7 0%, #E6EDF5 100%);
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.kepala-image {
    flex-shrink: 0;
}

.kepala-image img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    border: 8px solid #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.kepala-info h2 {
    color: #2F527A;
    font-family: Montserrat, sans-serif;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 10px;
}

.position {
    color: #5284BD;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.bio {
    color: #666;
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 25px;
}

.kepala-contact a {
    color: #2F527A;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s ease;
}

.kepala-contact a:hover {
    color: #5284BD;
}

/* Struktur Section */
.struktur-section {
    padding: 70px 0;
    background: linear-gradient(180deg, #C1D3E7 0%, #E6EDF5 100%);
}

.struktur-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.struktur-card {
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.struktur-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.struktur-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
}

.struktur-image img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #5284BD;
}

.struktur-card h3 {
    color: #2F527A;
    font-family: Montserrat, sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.struktur-position {
    color: #5284BD;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

.struktur-desc {
    color: #888;
    font-size: 13px;
}

/* Wali Kelas Section */
.wali-kelas-section {
    padding: 70px 0;
    background: #fff;
}

.wali-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.wali-card {
    background: linear-gradient(135deg, #C1D3E7 0%, #E6EDF5 100%);
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.wali-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.wali-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #5284BD 0%, #3D6A9F 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    margin: 0 auto 15px;
}

.wali-card h3 {
    color: #2F527A;
    font-family: Montserrat, sans-serif;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
}

.wali-card p {
    color: #888;
    font-size: 13px;
}

/* Kalender Section */
.kalender-section {
    padding: 70px 0;
    background: #fff;
}

.semester-block {
    margin-bottom: 60px;
}

.semester-title {
    color: #2F527A;
    font-family: Montserrat, sans-serif;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid #5284BD;
}

.kalender-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.kalender-item {
    background: linear-gradient(135deg, #C1D3E7 0%, #E6EDF5 100%);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.kalender-month {
    background: linear-gradient(135deg, #5284BD 0%, #3D6A9F 100%);
    color: #fff;
    padding: 15px;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
}

.kalender-events {
    padding: 20px;
}

.event-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.event-item:last-child {
    border-bottom: none;
}

.event-date {
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
}

.event-name {
    color: #2F527A;
    font-size: 14px;
    font-weight: 500;
}

/* Download Section */
.download-section {
    padding: 70px 0;
    background: linear-gradient(135deg, #5284BD 0%, #3D6A9F 100%);
}

.download-card {
    text-align: center;
    color: #fff;
}

.download-card i {
    font-size: 60px;
    margin-bottom: 20px;
}

.download-card h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 15px;
}

.download-card p {
    font-size: 16px;
    margin-bottom: 30px;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #5284BD;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Fasilitas Section */
.fasilitas-section {
    padding: 70px 0;
    background: #fff;
}

.fasilitas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.fasilitas-card {
    display: flex;
    gap: 30px;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.fasilitas-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
}

.fasilitas-image {
    position: relative;
    width: 250px;
    flex-shrink: 0;
}

.fasilitas-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fasilitas-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: #5284BD;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
}

.fasilitas-content {
    padding: 30px 30px 30px 0;
}

.fasilitas-content h3 {
    color: #2F527A;
    font-family: Montserrat, sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.fasilitas-content p {
    color: #666;
    font-size: 15px;
    line-height: 26px;
    margin-bottom: 20px;
}

.fasilitas-features {
    list-style: none;
    padding: 0;
}

.fasilitas-features li {
    color: #666;
    font-size: 14px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.fasilitas-features i {
    color: #5284BD;
    font-size: 16px;
}

/* Fasilitas Pendukung */
.fasilitas-pendukung-section {
    padding: 70px 0;
    background: linear-gradient(180deg, #C1D3E7 0%, #E6EDF5 100%);
}

.pendukung-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.pendukung-item {
    background: #fff;
    padding: 35px 25px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.pendukung-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pendukung-item i {
    font-size: 45px;
    color: #5284BD;
    margin-bottom: 15px;
}

.pendukung-item h3 {
    color: #2F527A;
    font-family: Montserrat, sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.pendukung-item p {
    color: #666;
    font-size: 14px;
}

/* Gallery Page */
.gallery-intro {
    padding: 80px 0;
    background: #fff;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.media-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 50px;
    background: rgba(82, 132, 189, 0.15);
    color: #5284BD;
    font-weight: 600;
    margin-bottom: 20px;
}

.media-pill i {
    font-size: 18px;
}

.gallery-intro h2 {
    color: #2F527A;
    font-family: Montserrat, sans-serif;
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 20px;
}

.gallery-intro p {
    color: #666;
    line-height: 30px;
}

.gallery-stats {
    display: flex;
    gap: 25px;
    margin-top: 35px;
}

.stat-item {
    flex: 1;
    background: #fff;
    border-radius: 18px;
    padding: 25px;
    border: 1px solid rgba(82, 132, 189, 0.2);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.stat-item h3 {
    color: #5284BD;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 6px;
}

.stat-item p {
    color: #777;
    font-size: 14px;
    margin: 0;
}

.intro-card {
    background: linear-gradient(145deg, #5284BD 0%, #3D6A9F 100%);
    border-radius: 24px;
    padding: 40px;
    color: #fff;
    box-shadow: 0 20px 60px rgba(61, 106, 159, 0.35);
}

.intro-card p {
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 25px;
}

.media-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.media-highlights li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.media-highlights i {
    font-size: 18px;
    color: #FFE2E2;
}

.intro-thumbs {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(2, minmax(120px, 1fr));
    gap: 15px;
}

.intro-thumbs img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 15px;
    border: 3px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.gallery-highlight {
    padding: 80px 0;
    background: linear-gradient(180deg, #FDF7F7 0%, #F4E2E2 100%);
}

.highlight-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 45px;
    align-items: center;
}

.featured-video {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(61, 106, 159, 0.35);
}

.video-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 10px 18px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    z-index: 2;
}

.video-frame {
    position: relative;
    width: 100%;
    height: 420px;
}

.video-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 30px;
}

.highlight-content h2 {
    font-family: Montserrat, sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #2F527A;
    margin-bottom: 18px;
}

.highlight-content p {
    color: #5F4E4E;
    margin-bottom: 25px;
    line-height: 28px;
}

.highlight-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.point-card {
    background: #fff;
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.point-card i {
    font-size: 32px;
    color: #5284BD;
    margin-bottom: 15px;
}

.point-card h4 {
    color: #2F527A;
    font-size: 18px;
    margin-bottom: 8px;
}

.point-card p {
    color: #777;
    font-size: 14px;
    margin: 0;
}

.gallery-feed {
    padding: 80px 0;
    background: #fff;
}

.feed-header {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    align-items: flex-start;
    margin-bottom: 40px;
}

.feed-header h2 {
    font-family: Montserrat, sans-serif;
    font-size: 34px;
    font-weight: 800;
    color: #2F527A;
    margin: 10px 0;
}

.feed-header p {
    color: #777;
    margin: 0;
    max-width: 520px;
}

.feed-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.feed-chip {
    border: 1px solid rgba(82, 132, 189, 0.4);
    border-radius: 999px;
    padding: 8px 18px;
    background: #fff;
    color: #2F527A;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.feed-chip.active,
.feed-chip:hover {
    background: linear-gradient(135deg, #5284BD 0%, #3D6A9F 100%);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 12px 25px rgba(61, 106, 159, 0.3);
}

.feed-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.feed-card {
    background: #fff;
    border-radius: 26px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(82, 132, 189, 0.15);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.feed-media {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.feed-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.feed-card:hover .feed-media img {
    transform: scale(1.05);
}

.feed-badge,
.feed-count {
    position: absolute;
    left: 20px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.feed-badge {
    top: 18px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
}

.feed-count {
    bottom: 18px;
    background: rgba(255, 255, 255, 0.9);
    color: #2F527A;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.feed-content {
    padding: 24px 26px 30px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.feed-meta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    font-size: 13px;
    color: #8A7A7A;
}

.feed-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.feed-content h3 {
    margin: 0;
    font-size: 20px;
    color: #2F527A;
}

.feed-content p {
    margin: 0;
    color: #777;
    line-height: 26px;
}

.feed-thumbs {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.feed-thumbs img {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.feed-extra {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: rgba(82, 132, 189, 0.12);
    color: #5284BD;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.feed-link {
    margin-top: auto;
    text-decoration: none;
    font-weight: 600;
    color: #5284BD;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.feed-link i {
    transition: transform 0.3s ease;
}

.feed-link:hover i {
    transform: translateX(4px);
}

.video-library {
    padding: 80px 0;
    background: #FBF6F4;
}

.video-library-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 32px;
    align-items: start;
}

.video-featured {
    background: #fff;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.featured-frame {
    position: relative;
    padding-top: 56%;
    background: #000;
}

.featured-frame iframe,
.featured-frame video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 0;
}

.featured-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.featured-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 20px;
    background: rgba(82, 132, 189, 0.15);
    color: #5284BD;
    font-weight: 600;
    font-size: 13px;
}

.featured-body h3 {
    margin: 0;
    font-size: 26px;
    color: #2F527A;
}

.featured-body p {
    margin: 0;
    color: #6A5A5A;
    line-height: 27px;
}

.featured-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    color: #8A7A7A;
    font-size: 14px;
}

.featured-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.featured-actions {
    margin-top: 10px;
}

.video-playlist {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.playlist-card {
    display: flex;
    gap: 18px;
    padding: 18px;
    background: #fff;
    border-radius: 20px;
    border: 1px solid rgba(82, 132, 189, 0.15);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
}

.playlist-thumb {
    width: 160px;
    border-radius: 16px;
    background-size: cover;
    background-position: center;
    position: relative;
    flex-shrink: 0;
    height: 110px;
}

.playlist-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 5px 10px;
    border-radius: 16px;
    font-size: 11px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.playlist-body h4 {
    margin: 0;
    color: #2F527A;
    font-size: 18px;
}

.playlist-body p {
    margin: 6px 0 0;
    color: #777;
    line-height: 22px;
}

.playlist-meta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 8px;
    color: #8A7A7A;
    font-size: 13px;
}

.playlist-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.playlist-actions {
    margin-top: 10px;
}

.video-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(82, 132, 189, 0.15);
    color: #5284BD;
    padding: 10px 18px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.video-btn.small {
    padding: 8px 14px;
    font-size: 13px;
}

.video-btn:hover {
    background: rgba(82, 132, 189, 0.25);
    transform: translateY(-2px);
}

.video-empty {
    color: #777;
    font-style: italic;
}

.album-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.album-card {
    background: #fff;
    border-radius: 26px;
    overflow: hidden;
    border: 1px solid rgba(82, 132, 189, 0.15);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.album-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.album-cover {
    position: relative;
    height: 230px;
    overflow: hidden;
}

.album-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.album-card:hover .album-cover img {
    transform: scale(1.05);
}

.album-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.6px;
}

.album-count {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    color: #2F527A;
    padding: 8px 18px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.album-count i {
    color: #5284BD;
}

.album-content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.album-content h3 {
    font-size: 20px;
    color: #2F527A;
    font-weight: 700;
    margin: 0;
}

.album-content p {
    color: #777;
    margin: 0;
    line-height: 26px;
}

.album-thumbs {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.album-thumbs img {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    object-fit: cover;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    border: 3px solid #fff;
}

.album-extra {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(82, 132, 189, 0.12);
    color: #5284BD;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed rgba(82, 132, 189, 0.5);
}

.album-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
}

.album-meta span {
    font-size: 14px;
    color: #8A7A7A;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.album-link {
    text-decoration: none;
    color: #5284BD;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.album-link i {
    font-size: 13px;
    transition: transform 0.3s ease;
}

.album-link:hover i {
    transform: translateX(4px);
}

.gallery-pagination {
    margin-top: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.page-btn {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid rgba(82, 132, 189, 0.4);
    background: #fff;
    color: #2F527A;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.page-btn:hover:not(.disabled) {
    background: rgba(82, 132, 189, 0.1);
    color: #5284BD;
}

.page-btn.active {
    background: linear-gradient(135deg, #5284BD 0%, #3D6A9F 100%);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 12px 25px rgba(61, 106, 159, 0.4);
}

.page-btn.disabled {
    opacity: 0.4;
    pointer-events: none;
}

.photo-story-section {
    padding: 80px 0;
    background: #fff;
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 35px;
}

.story-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.story-media img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.story-content {
    padding: 25px;
}

.story-content span {
    display: inline-block;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    color: #5284BD;
    margin-bottom: 8px;
}

.story-content h3 {
    color: #2F527A;
    font-size: 20px;
    margin-bottom: 10px;
}

.story-content p {
    color: #777;
    margin: 0;
    line-height: 26px;
}

.gallery-cta {
    padding: 70px 0;
    background: linear-gradient(135deg, #5284BD 0%, #3D6A9F 100%);
}

.cta-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.cta-card h2 {
    font-family: Montserrat, sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #2F527A;
    margin-bottom: 10px;
}

.cta-card p {
    color: #777;
    margin: 0;
}

.cta-card .cta-button {
    flex-shrink: 0;
}

/* Virtual Tour Section */
.virtual-tour-section {
    padding: 70px 0;
    background: #fff;
}

.virtual-tour-card {
    text-align: center;
    padding: 60px;
    background: linear-gradient(135deg, #C1D3E7 0%, #E6EDF5 100%);
    border-radius: 24px;
}

.virtual-tour-card i {
    font-size: 70px;
    color: #5284BD;
    margin-bottom: 25px;
}

.virtual-tour-card h2 {
    color: #2F527A;
    font-family: Montserrat, sans-serif;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
}

.virtual-tour-card p {
    color: #666;
    font-size: 18px;
    margin-bottom: 35px;
}

.tour-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.tour-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
}

.tour-btn.primary {
    background: linear-gradient(135deg, #5284BD 0%, #3D6A9F 100%);
    color: #fff;
}

.tour-btn.secondary {
    background: #fff;
    color: #5284BD;
    border: 2px solid #5284BD;
}

.tour-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* ============================================
   MITRA SEKOLAH SECTION - SIMPLE HORIZONTAL STYLE
   Similar to "Trusted by Thousands" layout
   ============================================ */

.mitra-section-simple {
    padding: 60px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    border-top: 1px solid rgba(82, 132, 189, 0.1);
    border-bottom: 1px solid rgba(82, 132, 189, 0.1);
}

.mitra-simple-header {
    text-align: center;
    margin-bottom: 40px;
}

.mitra-simple-header h3 {
    color: #6c757d;
    font-family: Montserrat, sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}

.mitra-simple-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.mitra-simple-item {
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.mitra-simple-item img {
    height: 60px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.5);
    transition: all 0.3s ease;
}

.mitra-simple-item:hover img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}

/* Alternative: Always show in color */
.mitra-simple-item.always-color img {
    filter: grayscale(0%) opacity(0.85);
}

.mitra-simple-item.always-color:hover img {
    opacity: 1;
}

/* Responsive */
@media (max-width: 1024px) {
    .mitra-simple-logos {
        gap: 60px;
    }

    .mitra-simple-item img {
        height: 50px;
        max-width: 150px;
    }
}

@media (max-width: 768px) {
    .mitra-section-simple {
        padding: 40px 0;
    }

    .mitra-simple-header {
        margin-bottom: 30px;
    }

    .mitra-simple-logos {
        gap: 40px;
    }

    .mitra-simple-item img {
        height: 45px;
        max-width: 130px;
    }
}

@media (max-width: 480px) {
    .mitra-simple-logos {
        gap: 30px;
        flex-direction: column;
    }

    .mitra-simple-item img {
        height: 50px;
        max-width: 160px;
    }
}

/* Animation on load */

.mitra-simple-item:nth-child(1) {
    animation-delay: 0.1s;
}

.mitra-simple-item:nth-child(2) {
    animation-delay: 0.2s;
}

.mitra-simple-item:nth-child(3) {
    animation-delay: 0.3s;
}

/* Optional: Background pattern */
.mitra-section-simple.with-pattern {
    position: relative;
    overflow: hidden;
}

.mitra-section-simple.with-pattern::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(82, 132, 189, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.mitra-section-simple .container {
    position: relative;
    z-index: 1;
}

/* Responsive for New Pages */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .misi-grid {
        grid-template-columns: 1fr;
    }

    .tujuan-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .struktur-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .wali-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .kalender-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fasilitas-grid {
        grid-template-columns: 1fr;
    }

    .pendukung-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .intro-grid,
    .highlight-grid {
        grid-template-columns: 1fr;
    }

    .highlight-points {
        grid-template-columns: repeat(2, 1fr);
    }

    .feed-header {
        flex-direction: column;
    }

    .feed-filters {
        justify-content: flex-start;
    }

    .feed-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .video-library-grid {
        grid-template-columns: 1fr;
    }

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

    .playlist-thumb {
        width: 100%;
        height: 170px;
    }

    .cta-card {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .banner-content h1 {
        font-size: 32px;
    }

    .values-grid,
    .gallery-grid,
    .tujuan-grid,
    .struktur-grid,
    .wali-grid,
    .kalender-grid,
    .pendukung-grid {
        grid-template-columns: 1fr;
    }

    .kepala-sekolah-card {
        flex-direction: column;
        text-align: center;
    }

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

    .fasilitas-image {
        width: 100%;
        height: 250px;
    }

    .tour-buttons {
        flex-direction: column;
    }

    .gallery-stats {
        flex-direction: column;
    }

    .feed-grid {
        grid-template-columns: 1fr;
    }

    .feed-header h2 {
        font-size: 28px;
    }

    .playlist-thumb {
        height: 150px;
    }

    .highlight-points {
        grid-template-columns: 1fr;
    }

    .intro-thumbs {
        grid-template-columns: repeat(2, minmax(100px, 1fr));
    }

    /* Tentang Yayasan - Banner */
    .page-banner {
        height: 280px;
    }

    .banner-content h1 {
        font-size: 26px;
        line-height: 1.3;
        margin-bottom: 12px;
    }

    .banner-content p {
        font-size: 15px;
        line-height: 1.4;
    }

    /* Tentang Yayasan - About Detail Section */
    .about-detail-section {
        padding: 50px 0;
    }

    .about-content h2 {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .about-content p {
        font-size: 15px;
        line-height: 26px;
    }

    .about-content .contact-info p {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .image-badge {
        font-size: 16px;
        padding: 12px 24px;
        bottom: 20px;
        right: 20px;
    }

    .stat-inline h3 {
        font-size: 24px;
    }

    .stat-inline p {
        font-size: 13px;
    }

    /* Tentang Yayasan - Gallery Section */
    .profile-gallery-section {
        padding: 50px 0;
    }

    .gallery-item img {
        height: 240px;
    }

    .gallery-overlay h4 {
        font-size: 16px;
    }

    /* Visi Misi - Visi Section */
    .visi-section {
        padding: 50px 0;
    }

    .visi-container h2 {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .visi-text {
        font-size: 18px;
        line-height: 32px;
        padding: 0 20px;
    }

    .visi-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 25px;
    }

    .visi-icon i {
        font-size: 40px;
    }

    /* Visi Misi - Misi Section */
    .misi-section {
        padding: 50px 0;
    }

    .misi-card {
        padding: 28px;
        gap: 20px;
    }

    .misi-number {
        font-size: 40px;
    }

    .misi-content h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .misi-content p {
        font-size: 14px;
        line-height: 24px;
    }

    /* Visi Misi - Tujuan Section */
    .tujuan-section {
        padding: 50px 0;
    }

    .tujuan-item {
        padding: 35px 25px;
    }

    .tujuan-item i {
        font-size: 42px;
        margin-bottom: 18px;
    }

    .tujuan-item h3 {
        font-size: 17px;
        margin-bottom: 12px;
    }

    .tujuan-item p {
        font-size: 13px;
        line-height: 22px;
    }
}

/* Mobile Small Devices (iPhone SE and similar - 576px) */
@media screen and (max-width: 576px) {

    /* Tentang Yayasan - Page Banner */
    .page-banner {
        height: 300px;
    }

    .banner-content {
        width: 90%;
        padding: 0 15px;
    }

    .banner-content h1 {
        font-size: 20px;
        line-height: 1.25;
        margin-bottom: 8px;
        font-weight: 700;
    }

    .banner-content p {
        font-size: 12px;
        line-height: 1.4;
    }

    /* Tentang Yayasan - About Detail Section */
    .about-detail-section {
        padding: 25px 0;
    }

    .about-grid {
        gap: 25px;
    }

    .about-content h2 {
        font-size: 24px;
        margin-bottom: 18px;
    }

    .about-content p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 15px;
    }

    .about-content .contact-info p {
        font-size: 13px;
        margin-bottom: 6px;
    }

    .about-content .about-description {
        font-size: 14px;
        line-height: 1.7;
        margin-top: 15px;
    }

    .image-badge {
        font-size: 14px;
        padding: 10px 20px;
        bottom: 15px;
        right: 15px;
    }

    .about-stats-inline {
        gap: 25px;
        margin-top: 30px;
    }

    .stat-inline i {
        font-size: 32px;
    }

    .stat-inline h3 {
        font-size: 22px;
    }

    .stat-inline p {
        font-size: 12px;
    }

    /* Tentang Yayasan - Gallery Section */
    .profile-gallery-section {
        padding: 25px 0;
    }

    .gallery-grid {
        gap: 18px;
    }

    .gallery-item {
        border-radius: 12px;
    }

    .gallery-item img {
        height: 200px;
    }

    .gallery-overlay {
        padding: 15px;
    }

    .gallery-overlay h4 {
        font-size: 15px;
    }

    /* Visi Misi - Visi Section */
    .visi-section {
        padding: 20px 0;
    }

    .visi-container {
        padding: 0 15px;
    }

    .visi-container h2 {
        font-size: 24px;
        margin-bottom: 15px;
        line-height: 1.3;
    }

    .visi-text {
        font-size: 16px;
        line-height: 28px;
        padding: 0;
    }

    .visi-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }

    .visi-icon i {
        font-size: 30px;
    }

    /* Visi Misi - Misi Section */
    .misi-section {
        padding: 20px 0;
    }

    .misi-card {
        padding: 20px;
        gap: 15px;
        flex-direction: row;
    }

    .misi-number {
        font-size: 32px;
    }

    .misi-content h3 {
        font-size: 16px;
        margin-bottom: 8px;
        line-height: 1.3;
    }

    .misi-content p {
        font-size: 13px;
        line-height: 22px;
    }

    /* Visi Misi - Tujuan Section */
    .tujuan-section {
        padding: 40px 0;
    }

    .tujuan-item {
        padding: 30px 20px;
    }

    .tujuan-item i {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .tujuan-item h3 {
        font-size: 15px;
        margin-bottom: 10px;
        line-height: 1.3;
    }

    .tujuan-item p {
        font-size: 12px;
        line-height: 20px;
    }
}

/* Additional styles for missing sections */
.section-subtitle {
    text-align: center;
    color: #666;
    font-family: 'Public Sans', sans-serif;
    font-size: 16px;
    margin-top: 10px;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .shape {
        animation: none;
    }
}

/* ========================================
   RESPONSIVE DESIGN - MEDIA QUERIES
   ======================================== */

/* ========= TABLET & BELOW (max-width: 1024px) ========= */
@media screen and (max-width: 1024px) {

    /* Container */
    .container {
        max-width: 100%;
        padding: 0 30px;
    }

    /* Welcome Section */
    .welcome-section .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .welcome-content {
        padding-right: 0;
        text-align: center;
    }

    .welcome-content h2 {
        font-size: 42px;
        line-height: 50px;
    }

    .welcome-content h2::after,
    .welcome-content h2::before {
        left: 50%;
        transform: translateX(-50%);
    }

    .welcome-content h2::before {
        left: calc(50% + 60px);
    }

    .welcome-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .welcome-social {
        justify-content: center;
    }

    /* News & Grid Layouts */
    .news-grid,
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    /* Section Headers */
    .section-header h2 {
        font-size: 32px;
        line-height: 42px;
    }

    .section-header i {
        font-size: 36px;
        width: 70px;
        height: 70px;
    }
}

/* ========= MOBILE & SMALL TABLETS (max-width: 768px) ========= */
@media screen and (max-width: 768px) {

    /* Container */
    .container {
        padding: 0 20px;
    }

    /* Header - Logo Size */
    .logo img {
        height: 50px;
    }

    /* Hero Slider */
    .hero-slider {
        height: 400px;
    }

    .slider-btn {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }

    .slider-btn.prev {
        left: 10px;
    }

    .slider-btn.next {
        right: 10px;
    }

    /* Welcome Section */
    .welcome-section {
        padding: 50px 0;
    }

    .welcome-content h2 {
        font-size: 34px;
        line-height: 42px;
        margin-bottom: 20px;
    }

    .welcome-content p {
        font-size: 16px;
        line-height: 27px;
    }

    .welcome-stats {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 30px;
    }

    .stat-item {
        padding: 15px;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-label {
        font-size: 12px;
    }

    .welcome-social {
        flex-direction: column;
        gap: 10px;
        margin-top: 20px;
    }

    .social-icon {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }

    /* Section Headers */
    .section-header {
        padding: 30px 0;
        gap: 12px;
    }

    .section-header h2 {
        font-size: 28px;
        line-height: 36px;
    }

    .section-header i {
        font-size: 34px;
        width: 62px;
        height: 62px;
    }

    .section-subtitle {
        font-size: 15px !important;
        line-height: 1.6 !important;
    }

    /* Alur Section */
    .alur-section,
    .update-section,
    .why-section,
    .galeri-section,
    .testimoni-section,
    .event-section,
    .video-section {
        padding: 50px 0;
    }

    .alur-timeline {
        gap: 20px;
    }

    .timeline-item {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .timeline-number {
        font-size: 28px;
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }

    .timeline-content h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .timeline-content p {
        font-size: 13px;
    }

    /* Video Section */
    .video-container iframe {
        height: 300px !important;
    }

    /* Update/News Cards */
    .update-grid,
    .news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .update-card,
    .news-card {
        margin-bottom: 15px;
    }

    .update-card img,
    .news-card img {
        height: 200px;
    }

    .update-content h3,
    .news-content h3 {
        font-size: 17px;
        line-height: 23px;
    }

    .update-content p,
    .news-excerpt {
        font-size: 13px;
        line-height: 19px;
    }

    /* Why Section */
    .why-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .why-item {
        padding: 25px;
    }

    .why-icon {
        width: 60px;
        height: 60px;
        font-size: 26px;
    }

    .why-item h3 {
        font-size: 18px;
    }

    .why-item p {
        font-size: 14px;
    }

    /* Galeri Section */
    .galeri-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .galeri-btn.prev {
        left: 10px;
    }

    .galeri-btn.next {
        right: 10px;
    }

    /* Testimoni Section */
    .testimoni-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimoni-item {
        padding: 25px;
    }

    .testimoni-content p {
        font-size: 14px;
        line-height: 22px;
    }

    .author-info h4 {
        font-size: 15px;
    }

    .author-info p {
        font-size: 12px;
    }

    /* Event Section */
    .event-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .event-card {
        flex-direction: column;
        text-align: center;
    }

    .event-date {
        width: 80px;
        height: 80px;
        margin-bottom: 15px;
    }

    .date-day {
        font-size: 28px;
    }

    .date-month {
        font-size: 14px;
    }

    .event-info h3 {
        font-size: 18px;
    }

    .event-info p {
        font-size: 13px;
    }

    .event-desc {
        font-size: 13px !important;
    }

    /* Advantages Section */
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .advantage-item {
        padding: 30px 20px;
    }

    .advantage-item img {
        width: 80px;
        height: 80px;
    }

    .advantage-item h3 {
        font-size: 18px;
    }

    .advantage-item p {
        font-size: 14px;
    }

    /* Footer - Improved Mobile Layout */
    .footer {
        padding: 50px 0 25px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-about,
    .footer-links,
    .footer-units,
    .footer-contact {
        text-align: left;
        padding: 0 10px;
    }

    .footer-logo {
        margin: 0 0 20px 0;
        text-align: left;
    }

    .footer h3 {
        font-size: 19px;
        margin-bottom: 18px;
        font-weight: 700;
        color: white;
        padding-bottom: 10px;
        border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    }

    .footer ul {
        padding-left: 0;
    }

    .footer ul li {
        font-size: 14px;
        margin-bottom: 12px;
        line-height: 1.6;
    }

    .footer ul li a {
        display: inline-block;
        padding: 4px 0;
    }

    .footer-about p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 15px;
    }

    .footer-contact ul li {
        font-size: 14px;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 8px 0;
    }

    .footer-contact ul li i {
        margin-right: 10px;
        margin-top: 3px;
    }

    .footer-contact iframe {
        height: 180px !important;
        border-radius: 8px;
        margin-top: 10px;
    }

    .footer-mitra-fullwidth {
        padding: 25px 0 !important;
        margin-top: 35px !important;
        margin-bottom: 25px !important;
    }

    .footer-mitra-fullwidth h3 {
        font-size: 18px !important;
        margin-bottom: 22px !important;
        padding-bottom: 0 !important;
        border-bottom: none !important;
    }

    .footer-mitra-fullwidth>div {
        gap: 25px !important;
        justify-content: center !important;
    }

    .footer-mitra-fullwidth>div>div {
        height: 55px !important;
        padding: 10px !important;
        border-radius: 8px;
    }

    .footer-bottom {
        margin-top: 25px;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.15);
    }

    .footer-bottom p {
        font-size: 13px;
        line-height: 1.6;
    }

    /* WhatsApp Float Button */
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-button {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .whatsapp-tooltip {
        display: none;
    }

    /* CTA Button */
    .cta-button {
        padding: 10px 22px;
        font-size: 14px;
    }

    /* Profile Section */
    .profile-section {
        padding: 50px 0;
    }
}

/* ========= SMALL MOBILE (max-width: 576px) ========= */
@media screen and (max-width: 576px) {

    /* Container */
    .container {
        padding: 0 15px;
    }

    /* Header */
    .logo img {
        height: 45px;
    }

    /* Hero Slider */
    .hero-slider {
        height: 350px;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    /* Welcome Section */
    .welcome-content h2 {
        font-size: 30px;
        line-height: 38px;
    }

    .welcome-content p {
        font-size: 15px;
        line-height: 25px;
    }

    .stat-number {
        font-size: 26px;
    }

    .stat-label {
        font-size: 12px;
    }

    .social-icon {
        width: 38px;
        height: 38px;
        font-size: 17px;
    }

    /* Section Headers */
    .section-header h2 {
        font-size: 26px;
        line-height: 34px;
    }

    .section-header i {
        font-size: 30px;
        width: 58px;
        height: 58px;
    }

    /* Timeline */
    /* Timeline Numbers - Alur Pendaftaran */
    .timeline-number {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .timeline-content h3 {
        font-size: 16px;
    }

    .timeline-content p {
        font-size: 13px;
        line-height: 1.5;
    }

    /* Cards */
    .update-card img,
    .news-card img {
        height: 190px;
    }

    .update-content h3,
    .news-content h3 {
        font-size: 17px;
        line-height: 24px;
    }

    .update-content p,
    .news-excerpt {
        font-size: 14px;
        line-height: 21px;
    }

    /* Why Items */
    .why-icon {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }

    .why-item h3 {
        font-size: 17px;
    }

    .why-item p {
        font-size: 13px;
    }

    /* Event */
    .event-date {
        width: 70px;
        height: 70px;
    }

    .date-day {
        font-size: 24px;
    }

    .date-month {
        font-size: 12px;
    }

    .event-info h3 {
        font-size: 17px;
    }

    /* Footer - Better Typography for Small Mobile */
    .footer h3 {
        font-size: 18px;
    }

    .footer ul li {
        font-size: 13px;
    }

    .footer-about p {
        font-size: 13px;
        line-height: 22px;
    }

    .footer-contact ul li {
        font-size: 13px;
    }

    .footer-mitra-fullwidth>div>div {
        height: 50px !important;
    }

    .footer-bottom p {
        font-size: 12px;
    }

    /* Buttons */
    .cta-button {
        padding: 9px 20px;
        font-size: 13px;
    }

    .update-more-button,
    .read-more {
        font-size: 13px;
        padding: 8px 20px;
    }
}

/* ========= EXTRA SMALL MOBILE (max-width: 400px) ========= */
@media screen and (max-width: 400px) {

    /* Hero Slider */
    .hero-slider {
        height: 300px;
    }

    /* Welcome Section */
    .welcome-content h2 {
        font-size: 24px;
        line-height: 32px;
    }

    .welcome-content p {
        font-size: 14px;
        line-height: 22px;
    }

    /* Section Headers */
    .section-header h2 {
        font-size: 22px;
        line-height: 30px;
    }

    /* Video */
    .video-container iframe {
        height: 220px !important;
    }

    /* Footer Logo */
    .footer-logo img {
        width: 80px !important;
        height: 80px !important;
    }

    .footer-mitra-fullwidth>div>div {
        height: 40px !important;
    }
}

/* ========================================
   RESPONSIVE FOR PROFILE PAGES (SD, SMP, TK)
   ======================================== */

/* ========= TABLET (max-width: 1024px) ========= */
@media screen and (max-width: 1024px) {

    /* Profile Hero */
    .hero-section h1 {
        font-size: 3rem !important;
    }

    .hero-section p {
        font-size: 1.15rem !important;
    }

    /* Teachers Grid */
    .teachers-grid {
        justify-content: center;
    }

    /* Programs & Facilities Grid */
    .four-column-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 20px;
    }

    .programs-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

/* ========= MOBILE (max-width: 768px) ========= */
@media screen and (max-width: 768px) {

    /* Wide Container for Profile Pages */
    .wide-container {
        max-width: 100%;
        padding: 0 20px;
    }

    /* Profile Hero Section */
    .hero-section {
        padding: 60px 0 !important;
    }

    .hero-section h1 {
        font-size: 2.5rem !important;
    }

    .hero-section p {
        font-size: 1.1rem !important;
    }

    .hero-section>div>div>div {
        flex-direction: column;
        gap: 10px;
        margin-top: 50px;
    }

    .hero-section a {
        padding: 12px 28px !important;
        font-size: 14px !important;
    }

    /* Visi Misi Section */
    section h2 {
        font-size: 2rem !important;
    }

    section p {
        font-size: 1rem !important;
    }

    .visi-card,
    .misi-card {
        margin-bottom: 20px;
    }

    .misi-card {
        padding: 30px 20px !important;
    }

    .misi-card>div:first-child {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 10px !important;
    }

    .misi-item {
        padding: 10px !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 8px !important;
    }

    .misi-item div[style*="width: 28px"] {
        position: relative !important;
        margin-bottom: 5px;
    }

    .misi-item p {
        font-size: 13px !important;
        padding-left: 0 !important;
    }

    /* Details/Dropdown */
    details {
        padding: 10px !important;
    }

    details summary {
        font-size: 13px !important;
    }

    details>div>div {
        padding: 6px !important;
    }

    details>div>div p {
        font-size: 12px !important;
    }

    /* Contact Info Cards */
    .contact-item {
        flex-direction: column;
        text-align: center;
        align-items: center !important;
    }

    /* Character Education Cards */
    section[style*="padding: 80px 0"] {
        padding: 50px 0 !important;
    }

    /* Teachers Section */
    .teachers-grid {
        gap: 20px !important;
    }

    .teachers-grid .teacher-card {
        width: calc(50% - 20px) !important;
        max-width: none !important;
        padding: 25px 20px !important;
    }

    .teacher-photo {
        width: 150px !important;
        height: 150px !important;
    }

    .teacher-card h3 {
        font-size: 0.9rem !important;
    }

    .teacher-card p {
        font-size: 0.75rem !important;
    }

    /* Programs Grid */
    .four-column-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px;
    }

    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .program-card {
        padding: 25px !important;
    }

    .program-card h3 {
        font-size: 1.15rem !important;
    }

    .program-card p {
        font-size: 14px !important;
    }

    .program-icon {
        width: 60px !important;
        height: 60px !important;
    }

    .program-icon i {
        font-size: 1.5rem !important;
    }

    /* Facility Cards */
    .facility-gallery-card {
        max-width: 100% !important;
    }

    .facility-gallery-card>div:first-child {
        height: 220px !important;
    }

    .facility-gallery-card h3 {
        font-size: 1.15rem !important;
    }

    .facility-gallery-card p {
        font-size: 14px !important;
    }

    /* Activity Gallery */
    .activity-gallery-item {
        height: 250px !important;
    }

    .activity-gallery-item h4 {
        font-size: 1.15rem !important;
    }

    .activity-gallery-item p {
        font-size: 13px !important;
    }
}

/* ========= SMALL MOBILE (max-width: 576px) ========= */
@media screen and (max-width: 576px) {

    /* Wide Container */
    .wide-container {
        padding: 0 15px;
    }

    /* Profile Hero */
    .hero-section h1 {
        font-size: 2rem !important;
    }

    .hero-section p {
        font-size: 1rem !important;
    }

    /* Section Headers */
    section h2 {
        font-size: 1.75rem !important;
    }

    section h3 {
        font-size: 1.3rem !important;
    }

    /* Visi Misi */
    .misi-card {
        padding: 25px 15px !important;
    }

    .misi-card h3 {
        font-size: 1.2rem !important;
    }

    .misi-item {
        padding: 8px !important;
    }

    .misi-item p {
        font-size: 12px !important;
        line-height: 1.5 !important;
    }

    /* Teachers Grid - Stack on Mobile */
    .teachers-grid {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .teachers-grid .teacher-card {
        width: 100% !important;
        max-width: 320px !important;
        margin-bottom: 15px;
    }

    .teacher-photo {
        width: 180px !important;
        height: 180px !important;
    }

    /* Programs & Facilities - Single Column */
    .four-column-grid {
        grid-template-columns: 1fr !important;
    }

    .programs-grid {
        grid-template-columns: 1fr;
    }

    .program-card {
        padding: 25px 20px !important;
    }

    /* Activity Gallery */
    .activity-gallery-item {
        height: 280px !important;
    }
}

/* ========= EXTRA SMALL MOBILE (max-width: 400px) ========= */
@media screen and (max-width: 400px) {

    /* Profile Hero */
    .hero-section h1 {
        font-size: 1.75rem !important;
    }

    /* Visi Misi */
    .misi-card {
        padding: 20px 12px !important;
    }

    .misi-card>div:first-child div[style*="width: 50px"] {
        width: 40px !important;
        height: 40px !important;
    }

    .misi-item div[style*="width: 28px"] {
        width: 24px !important;
        height: 24px !important;
    }

    /* Teacher Cards */
    .teacher-photo {
        width: 160px !important;
        height: 160px !important;
    }

    /* Programs */
    .program-card {
        padding: 20px 15px !important;
    }
}

/* ========================================
   COMPREHENSIVE RESPONSIVE DESIGN
   ======================================== */

/* ========= HEADER & NAVIGATION ========= */
@media screen and (max-width: 1024px) {
    .header-container {
        padding: 12px 15px;
    }

    .logo img {
        height: 50px;
    }

    .nav-menu a {
        font-size: 14px;
    }

    .cta-button {
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media screen and (max-width: 768px) {
    .header-container {
        flex-wrap: wrap;
    }

    .logo img {
        height: 45px;
    }

    .nav-menu {
        width: 100%;
        order: 3;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 10px;
        padding: 15px 0;
    }
}

/* ========= HERO SLIDER ========= */
@media screen and (max-width: 1024px) {
    .hero-slider {
        height: 600px;
    }

    .slider-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

@media screen and (max-width: 768px) {
    .hero-slider {
        height: 450px;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .slider-btn.prev {
        left: 10px;
    }

    .slider-btn.next {
        right: 10px;
    }
}

/* ========= WELCOME SECTION ========= */
@media screen and (max-width: 1024px) {
    .welcome-section {
        padding: 60px 0;
    }

    .welcome-content h2 {
        font-size: 42px;
        line-height: 50px;
    }

    .welcome-content p {
        font-size: 16px;
        line-height: 28px;
    }

    .welcome-stats {
        gap: 15px;
    }

    .stat-number {
        font-size: 28px;
    }
}

@media screen and (max-width: 768px) {
    .welcome-section {
        padding: 40px 0;
    }

    .welcome-grid {
        display: flex;
        flex-direction: column-reverse;
        /* Image (2nd in HTML) goes to Top, Content (1st) goes to Bottom */
        gap: 20px;
    }

    .welcome-content {
        padding: 0 15px;
        text-align: center;
    }

    .welcome-content h2 {
        font-size: 26px;
        line-height: 1.3;
        text-align: center;
        margin-bottom: 20px;
    }

    .welcome-content h2::after {
        left: 50%;
        transform: translateX(-50%);
        bottom: -10px;
    }

    .welcome-content h2::before {
        display: none;
    }

    .welcome-content p {
        font-size: 15px;
        line-height: 1.6;
        text-align: center;
        /* Center alignment looks cleaner on mobile usually */
        padding: 0;
    }

    .welcome-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        /* Force 3 columns */
        gap: 8px;
        /* High density */
        margin-top: 20px;
        width: 100%;
    }

    /* On very small screens, 3 cols might be too tight. */
    @media screen and (max-width: 360px) {
        .welcome-stats {
            grid-template-columns: repeat(3, 1fr);
            /* Try to keep them side-by-side even on small screens, as "menyamping" implies row preference. */
        }
    }

    .welcome-social {
        justify-content: center;
        margin-top: 30px;
        flex-direction: column;
        gap: 15px;
    }

    .welcome-image {
        width: 100%;
        margin: 20px 0 0 0;
        padding: 0 15px;
        /* Add padding to align with container */
        position: relative;
        left: auto;
        right: auto;
        margin-left: 0;
        margin-right: 0;
        overflow: visible;
    }

    .welcome-image img {
        width: 100%;
        height: auto;
        max-height: 350px;
        object-fit: cover;
        border-radius: 20px;
        background: #fff;
        padding: 5px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        display: block;
    }

    .welcome-image::before {
        display: block;
        top: 15px;
        right: 0px;
        left: 30px;
        /* Offset background slightly */
        height: 100%;
        width: auto;
        opacity: 0.15;
        border-radius: 20px;
        z-index: -1;
    }
}

/* Additional mobile styling for smaller devices */
@media screen and (max-width: 480px) {
    .welcome-image {
        width: 100vw;
        margin: 15px 0 0 0;
        /* left: 50%; */
        /* margin-left: -50vw; */
        /* margin-right: -50vw; */
    }

    .welcome-image img {
        width: 100vw;
        height: 45vh;
        min-height: 280px;
        object-fit: cover;
        object-position: center center;
    }
}

/* ========= NEWS SECTION ========= */
@media screen and (max-width: 1024px) {
    .news-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }

    .news-card img {
        height: 200px;
    }
}

@media screen and (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .news-content {
        padding: 20px;
    }

    .news-content h3 {
        font-size: 17px;
        line-height: 24px;
    }
}

/* ========= ADVANTAGES SECTION ========= */
@media screen and (max-width: 1024px) {
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .advantage-item {
        padding: 30px 20px;
    }

    .advantage-item img {
        width: 80px;
        height: 80px;
    }
}

@media screen and (max-width: 768px) {
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .advantage-item {
        padding: 25px 20px;
    }

    .advantage-item h3 {
        font-size: 18px;
        line-height: 24px;
    }

    .advantage-item p {
        font-size: 14px;
        line-height: 24px;
    }
}

/* ========= GOALS SECTION ========= */
@media screen and (max-width: 1024px) {
    .goals-grid {
        padding: 35px;
        gap: 20px;
    }

    .goal-card {
        padding: 25px;
        gap: 20px;
    }

    .goal-card i {
        font-size: 50px;
        width: 80px;
        height: 80px;
    }

    .goal-content h3 {
        font-size: 30px;
    }
}

@media screen and (max-width: 768px) {
    .goals-grid {
        grid-template-columns: 1fr;
        padding: 25px 20px;
        gap: 15px;
    }

    .goal-card {
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }

    .goal-card i {
        font-size: 42px;
        width: 70px;
        height: 70px;
    }

    .goal-content h3 {
        font-size: 24px;
    }

    .goal-content p {
        font-size: 13px;
    }
}

/* ========= GALLERY SECTION ========= */
@media screen and (max-width: 1024px) {
    .gallery-track img {
        width: 320px;
        height: 240px;
    }
}

@media screen and (max-width: 768px) {
    .gallery-track img {
        width: 280px;
        height: 200px;
    }

    .gallery-btn {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }
}

/* ========= SECTION HEADERS ========= */
@media screen and (max-width: 1024px) {
    .section-header {
        padding: 30px 0;
    }

    .section-header i {
        font-size: 36px;
        width: 70px;
        height: 70px;
    }

    .section-header h2 {
        font-size: 32px;
        line-height: 48px;
    }
}

@media screen and (max-width: 768px) {
    .section-header {
        padding: 25px 0;
        gap: 12px;
    }

    .section-header i {
        font-size: 30px;
        width: 60px;
        height: 60px;
    }

    .section-header h2 {
        font-size: 26px;
        line-height: 36px;
    }
}

/* ========= CONTAINER & SPACING ========= */
@media screen and (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }


}

@media screen and (max-width: 768px) {
    .container {
        padding: 0 12px;
    }


}

/* ========= PARTNERS & FOOTER ========= */
@media screen and (max-width: 768px) {
    .partners-track {
        gap: 20px;
    }

    .partners-track img {
        height: 60px;
    }
}

/* ========= HOME PAGE SECTIONS ========= */

/* ALUR PENDAFTARAN TIMELINE */
@media screen and (max-width: 1024px) {
    .alur-timeline {
        max-width: 800px;
    }

    .timeline-number {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .timeline-content {
        padding: 25px;
    }

    .timeline-content h3 {
        font-size: 18px;
    }

    .timeline-content p {
        font-size: 14px;
        line-height: 22px;
    }
}

@media screen and (max-width: 768px) {
    .alur-timeline::before {
        left: 22px;
    }

    .timeline-item {
        flex-direction: row !important;
        padding-left: 0;
        margin-bottom: 25px;
        gap: 15px;
    }

    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        flex-direction: row !important;
    }

    .timeline-number {
        width: 44px;
        height: 44px;
        font-size: 18px;
        margin-left: 0;
    }

    .timeline-content {
        padding: 16px 14px;
    }

    .timeline-content h3 {
        font-size: 14px;
        margin-bottom: 6px;
        line-height: 1.3;
    }

    .timeline-content p {
        font-size: 12px;
        line-height: 1.5;
    }
}

@media screen and (max-width: 576px) {
    .alur-section {
        padding: 40px 0;
    }

    .alur-timeline {
        padding: 0;
        max-width: 100%;
    }

    /* Hide the vertical timeline line on mobile */
    .alur-timeline::before {
        display: none;
    }

    /* FORCE VERTICAL STACK FOR ALL ITEMS - Override nth-child */
    .timeline-item,
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        flex-direction: column !important;
        gap: 0;
        margin-bottom: 25px;
        align-items: stretch;
        padding: 0 10px;
    }

    /* Number circle - centered on top */
    .timeline-number {
        width: 40px;
        height: 40px;
        font-size: 18px;
        margin: 0 auto 0 auto;
        box-shadow: 0 4px 15px rgba(82, 132, 189, 0.3);
        flex-shrink: 0;
    }

    /* Content card - full width below number WITH MARGIN TOP */
    .timeline-content {
        padding: 16px 14px;
        margin: 16px 0 0 0;
        width: 100%;
    }

    .timeline-content h3 {
        font-size: 13px;
        margin-bottom: 6px;
        line-height: 1.4;
        font-weight: 600;
        text-align: left;
    }

    .timeline-content p {
        font-size: 11px;
        line-height: 1.5;
        text-align: left;
    }
}

/* COMING EVENT SECTION */
@media screen and (max-width: 1024px) {
    .event-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 320px));
        gap: 25px;
    }

    .event-card {
        padding: 25px;
        gap: 20px;
    }

    .event-date {
        min-width: 70px;
        padding: 12px 16px;
    }

    .date-day {
        font-size: 28px;
    }

    .date-month {
        font-size: 13px;
    }

    .event-info h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .event-info p {
        font-size: 13px;
        line-height: 20px;
    }
}

@media screen and (max-width: 768px) {
    .event-section {
        padding: 40px 0;
    }

    .event-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .event-card {
        padding: 16px;
        gap: 14px;
        flex-direction: row;
    }

    .event-date {
        min-width: 60px;
        padding: 10px 12px;
        flex-shrink: 0;
    }

    .date-day {
        font-size: 22px;
    }

    .date-month {
        font-size: 11px;
    }

    .event-info h3 {
        font-size: 15px;
        margin-bottom: 6px;
        line-height: 1.3;
        font-weight: 600;
    }

    .event-info p {
        font-size: 11px;
        line-height: 1.5;
        margin-bottom: 5px;
    }

    .event-desc {
        margin-top: 8px;
        padding-top: 8px;
        font-size: 11px;
        line-height: 1.4;
    }
}

@media screen and (max-width: 576px) {
    .event-card {
        padding: 14px 12px;
        gap: 12px;
    }

    .event-date {
        min-width: 56px;
        padding: 8px 10px;
    }

    .date-day {
        font-size: 20px;
    }

    .date-month {
        font-size: 10px;
    }

    .event-info h3 {
        font-size: 14px;
        margin-bottom: 5px;
        line-height: 1.25;
    }

    .event-info p {
        font-size: 10px;
        margin-bottom: 4px;
    }

    .event-info p i {
        font-size: 10px;
        margin-right: 6px;
    }

    .event-desc {
        font-size: 10px;
        line-height: 1.4;
        margin-top: 6px;
        padding-top: 6px;
    }
}

/* RAJ YAMUNA UPDATE SECTION */
@media screen and (max-width: 1024px) {
    .update-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }

    .update-card img {
        height: 200px;
    }

    .update-content h3 {
        font-size: 18px;
    }
}

@media screen and (max-width: 768px) {
    .update-section {
        padding: 50px 0;
    }

    .update-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .update-card img {
        height: 180px;
    }

    .update-content {
        padding: 20px;
    }

    .update-content h3 {
        font-size: 16px;
        line-height: 1.4;
    }

    .update-content p {
        font-size: 13px;
        line-height: 1.6;
    }

    .read-more {
        font-size: 13px;
    }
}

@media screen and (max-width: 576px) {
    .update-card img {
        height: 160px;
    }

    .update-content {
        padding: 18px 15px;
    }

    .update-content h3 {
        font-size: 15px;
    }
}

/* WHY YAMUNA SECTION */
@media screen and (max-width: 1024px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .why-item {
        padding: 30px 25px;
    }

    .why-icon {
        width: 70px;
        height: 70px;
    }

    .why-icon i {
        font-size: 30px;
    }

    .why-item h3 {
        font-size: 18px;
    }

    .why-item p {
        font-size: 14px;
    }
}

@media screen and (max-width: 768px) {
    .why-section {
        padding: 50px 0;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .why-item {
        padding: 25px 20px;
    }

    .why-icon {
        width: 60px;
        height: 60px;
    }

    .why-icon i {
        font-size: 26px;
    }

    .why-item h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .why-item p {
        font-size: 13px;
        line-height: 1.6;
    }
}

@media screen and (max-width: 576px) {
    .why-item {
        padding: 20px 18px;
    }

    .why-icon {
        width: 55px;
        height: 55px;
    }

    .why-icon i {
        font-size: 24px;
    }

    .why-item h3 {
        font-size: 15px;
        margin-bottom: 8px;
    }

    .why-item p {
        font-size: 12px;
    }
}

/* ========= UTILITY CLASSES ========= */
@media screen and (max-width: 768px) {
    .text-center {
        text-align: center !important;
    }

    /* Hide on mobile */
    .hide-mobile {
        display: none !important;
    }

    /* Show only on mobile */
    .show-mobile {
        display: block !important;
    }
}

@media screen and (min-width: 769px) {
    .show-mobile {
        display: none !important;
    }

    .hide-desktop {
        display: none !important;
    }
}

/* Justify text for Foundation Profile Details */
.about-content p,
.about-content .contact-info p,
.about-content .about-description {
    text-align: justify;
}