* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}

/* Header Navigation */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
    padding: 15px 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    animation: slideDown 0.8s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
    animation: fadeInLeft 1s ease-out 0.3s both;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.logo-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
}

.logo-circle .logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo-text {
    font-size: 18px;
    font-weight: bold;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    padding: 5px;
}

.nav-menu {
    display: flex;
    gap: 30px;
    list-style: none;
    align-items: center !important;
}

.nav-menu li {
    position: relative;
    animation: fadeInDown 0.8s ease-out both;
}

.nav-menu li:nth-child(1) { animation-delay: 0.5s; }
.nav-menu li:nth-child(2) { animation-delay: 0.6s; }
.nav-menu li:nth-child(3) { animation-delay: 0.7s; }
.nav-menu li:nth-child(4) { animation-delay: 0.8s; }
.nav-menu li:nth-child(5) { animation-delay: 0.9s; }
.nav-menu li:nth-child(6) { animation-delay: 1.0s; }
.nav-menu li:nth-child(7) { animation-delay: 1.1s; }
.nav-menu li:nth-child(8) { animation-delay: 1.2s; }

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.menu-gw {
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.menu-gw::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: linear-gradient(90deg, #ffd700, #ff9800);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.menu-gw:hover {
    color: #ffd700;
    transform: translateY(-2px);
}

.menu-gw:hover::after {
    width: 100%;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-toggle .arrow {
    font-size: 10px;
    transition: transform 0.3s;
}

.dropdown:hover .arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: linear-gradient(135deg, #283593 0%, #1a237e 100%);
    min-width: 220px;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    margin-top: 15px;
    padding: 10px 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
    animation: none;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: white;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s;
    text-transform: none;
    letter-spacing: 0.3px;
}

.dropdown-menu a::after {
    display: none;
}

.dropdown-menu a:hover {
    background: rgba(255, 215, 0, 0.1);
    padding-left: 30px;
    color: #ffd700;
    transform: none;
}

.nav-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.login-btn {
    background: linear-gradient(135deg, #ff9800, #f57c00);
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
    animation: fadeInRight 1s ease-out 1s both;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 152, 0, 0.4);
}

/* Hero Section */
.hero {
    margin-top: 80px;
    height: calc(100vh - 80px);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1.2s ease-out 0.5s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: left;
    color: white;
    max-width: 1200px;
    width: 100%;
    padding: 0 40px;
}

.value-label {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    color: #ffd700;
    font-weight: 500;
}

.value-title {
    font-size: 72px;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
    border-left: 5px solid #ff9800;
    padding-left: 30px;
}

.value-description {
    font-size: 20px;
    margin-bottom: 40px;
    padding-left: 35px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 50px;
    right: 50px;
    display: flex;
    gap: 15px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: white;
    width: 40px;
    border-radius: 6px;
}

/* Welcome Section */
.welcome-section {
    padding: 80px 40px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eef5 100%);
}

.welcome-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.welcome-content {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1s ease-out;
}

.welcome-content.animate {
    opacity: 1;
    transform: translateX(0);
}

.welcome-title {
    font-size: 36px;
    color: #1a237e;
    margin-bottom: 30px;
    font-weight: 700;
    line-height: 1.3;
}

.welcome-text {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.welcome-closing {
    font-size: 16px;
    color: #4a5568;
    margin-top: 30px;
    margin-bottom: 15px;
}

.principal-info {
    margin-top: 20px;
}

.principal-name {
    font-size: 24px;
    color: #1a237e;
    font-weight: 700;
    margin-bottom: 5px;
}

.principal-title {
    font-size: 16px;
    color: #283593;
    font-weight: 500;
}

.welcome-image {
    opacity: 0;
    transform: translateX(50px);
    transition: all 1s ease-out;
}

.welcome-image.animate {
    opacity: 1;
    transform: translateX(0);
}

.image-wrapper {
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.image-wrapper:hover {
    transform: translateY(-10px);
}

.principal-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
    object-fit: cover;
}

/* News Section */
.news-section {
    padding: 80px 40px;
    background: white;
}

.news-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.section-header.animate {
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    font-size: 42px;
    color: #1a237e;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 16px;
    color: #718096;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.news-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(50px);
}

.news-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.news-card:nth-child(1).animate {
    transition-delay: 0.2s;
}

.news-card:nth-child(2).animate {
    transition-delay: 0.4s;
}

.news-card:nth-child(3).animate {
    transition-delay: 0.6s;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.news-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-image {
    transform: scale(1.1);
}

.news-image-wrapper {
    overflow: hidden;
    position: relative;
}

.news-content {
    padding: 25px;
}

.news-title {
    font-size: 20px;
    color: #1a237e;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-description {
    font-size: 14px;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.read-more {
    color: #ff9800;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.read-more:hover {
    gap: 12px;
    color: #f57c00;
}

.read-more::after {
    content: '→';
    font-size: 16px;
}

/* Ekstrakurikuler Section */
.ekskul-section {
    padding: 80px 40px;
    background: white;
}

.ekskul-container {
    max-width: 1400px;
    margin: 0 auto;
}

.ekskul-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.ekskul-card {
    background: white;
    border-radius: 20px;
    padding: 50px 35px;
    text-align: center;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(50px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.ekskul-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #1a237e, #283593);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.ekskul-card:hover::before {
    transform: scaleX(1);
}

.ekskul-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.ekskul-card:nth-child(1).animate { transition-delay: 0.2s; }
.ekskul-card:nth-child(2).animate { transition-delay: 0.4s; }
.ekskul-card:nth-child(3).animate { transition-delay: 0.6s; }

.ekskul-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.ekskul-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 48px;
    transition: all 0.4s ease;
    position: relative;
    box-shadow: 0 10px 30px rgba(26, 35, 126, 0.3);
}

.ekskul-card:hover .ekskul-icon {
    transform: rotateY(360deg) scale(1.1);
    box-shadow: 0 15px 40px rgba(26, 35, 126, 0.4);
}

.ekskul-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    opacity: 0.3;
    animation: pulse 2s infinite;
}

.ekskul-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
    color: white;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
}

.ekskul-title {
    font-size: 26px;
    color: #1a237e;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.ekskul-description {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 30px;
    text-align: center;
}

.ekskul-link {
    display: inline-block;
    background: linear-gradient(135deg, #ff9800, #f57c00);
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
}

.ekskul-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 152, 0, 0.4);
}

/* Galeri Section */
.galeri-section {
    padding: 80px 40px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eef5 100%);
}

.galeri-container {
    max-width: 1400px;
    margin: 0 auto;
}

.galeri-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.galeri-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    height: 300px;
    cursor: pointer;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
}

.galeri-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.galeri-card:nth-child(1).animate { transition-delay: 0.1s; }
.galeri-card:nth-child(2).animate { transition-delay: 0.2s; }
.galeri-card:nth-child(3).animate { transition-delay: 0.3s; }
.galeri-card:nth-child(4).animate { transition-delay: 0.4s; }
.galeri-card:nth-child(5).animate { transition-delay: 0.5s; }
.galeri-card:nth-child(6).animate { transition-delay: 0.6s; }

.galeri-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.galeri-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.galeri-card:hover .galeri-image {
    transform: scale(1.1);
}

.galeri-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26, 35, 126, 0.9), transparent);
    padding: 25px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.galeri-card:hover .galeri-overlay {
    transform: translateY(0);
}

.galeri-title {
    color: white;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.galeri-date {
    color: #ffd700;
    font-size: 13px;
    font-weight: 500;
}

/* Footer Section */
.footer {
    background: linear-gradient(135deg, #1a237e 0%, #0d47a1 100%);
    color: white;
    padding: 60px 40px 20px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff9800, #ffd700, #ff9800);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #ffd700;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #ff9800, #ffd700);
    border-radius: 2px;
}

.footer-about {
    padding-right: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.footer-logo-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-logo-text {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
}

.footer-description {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a::before {
    content: '→';
    color: #ff9800;
    font-weight: bold;
    transition: transform 0.3s;
}

.footer-links a:hover {
    color: #ffd700;
    padding-left: 5px;
}

.footer-links a:hover::before {
    transform: translateX(5px);
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

.footer-contact li .icon {
    color: #ff9800;
    font-size: 16px;
    margin-top: 2px;
}

.social-media {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-link-facebook {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.social-link-tiktok {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.social-link-instagram {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.social-link-facebook:hover {
    background: linear-gradient(135deg, #0092fa, #002aff);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 152, 0, 0.4);
    border-color: #ffd700;
}

.social-link-tiktok:hover {
    background: linear-gradient(135deg, #7700ff, #000000);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 152, 0, 0.4);
    border-color: #ffd700;
}

.social-link-instagram:hover {
    background: linear-gradient(135deg, #7700ff, #ff7300);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 152, 0, 0.4);
    border-color: #ffd700;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-copyright a {
    color: #ffd700;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.footer-copyright a:hover {
    color: #ff9800;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-bottom-links a:hover {
    color: #ffd700;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 60px;
    opacity: 0;
    animation: fadeIn 0.8s ease-out 1s forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.pagination-text {
    font-size: 14px;
    color: #4a5568;
    margin-right: 10px;
}

.pagination-btn {
    padding: 10px 16px;
    border: 1px solid #e0e0e0;
    background: white;
    color: #4a5568;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
    min-width: 40px;
    text-align: center;
}

.pagination-btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.pagination-btn.active {
    background: #1a7bc4;
    color: white;
    border-color: #1a7bc4;
    animation: scaleIn 0.3s ease-out;
}

@keyframes scaleIn {
    0% {
        transform: scale(0.8);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-more {
    padding: 10px 16px;
    color: #1a7bc4;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.pagination-more:hover {
    color: #145a8a;
}

/* Responsive */
@media (max-width: 968px) {
    .nav-container {
        padding: 0 20px;
    }

    .logo-text {
        font-size: 16px;
    }

    .menu-toggle {
        display: block;
    }

    .dropdown-menu{
        min-width: 10px;
    }

    nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
        transition: left 0.3s ease;
        overflow-y: auto;
        padding: 30px 0;
    }

    nav.active {
        left: 0;
    }

    .nav-menu {
        flex-direction: column;
        gap: 0;
        align-items: stretch;
        padding: 0 20px;
    }

    .nav-menu li {
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .menu-gw {
        padding: 15px 20px;
        display: flex;
        align-items: center;
    }

    .menu-gw::after {
        display: none;
    }

    /* Mobile Dropdown */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(0,0,0,0.2);
        margin-top: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .dropdown.active .dropdown-menu {
        max-height: 300px;
    }

    .dropdown.active .arrow {
        transform: rotate(180deg);
    }

    .dropdown-menu a {
        padding: 12px 20px 12px 40px;
        font-size: 13px;
    }

    .dropdown-menu a:hover {
        padding-left: 50px;
    }

    .nav-actions {
        margin-top: 15px;
        padding: 0 20px;
    }

    .login-btn {
        width: 100%;
        text-align: center;
        display: block;
    }

    .value-title {
        font-size: 36px;
    }

    .value-description {
        font-size: 16px;
    }

    .slide-content {
        padding: 0 20px;
    }

    .slider-dots {
        bottom: 30px;
        right: 50%;
        transform: translateX(50%);
    }

    /* Welcome Section Responsive */
    .welcome-section {
        padding: 60px 20px;
    }

    .welcome-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .welcome-title {
        font-size: 28px;
    }

    .welcome-text {
        font-size: 15px;
    }

    .principal-name {
        font-size: 20px;
    }

    .principal-title {
        font-size: 14px;
    }

    .news-section {
        padding: 60px 20px;
    }

    .section-title {
        font-size: 32px;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .news-card:nth-child(1).animate,
    .news-card:nth-child(2).animate,
    .news-card:nth-child(3).animate {
        transition-delay: 0.1s;
    }

    .ekskul-section {
        padding: 60px 20px;
    }

    .ekskul-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .ekskul-card {
        padding: 40px 30px;
    }

    .ekskul-card:nth-child(1).animate,
    .ekskul-card:nth-child(2).animate,
    .ekskul-card:nth-child(3).animate {
        transition-delay: 0.1s;
    }

    .ekskul-title {
        font-size: 22px;
    }

    .ekskul-description {
        font-size: 14px;
    }

    .galeri-section {
        padding: 60px 20px;
    }

    .galeri-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .galeri-card {
        height: 250px;
    }

    .galeri-card:nth-child(1).animate,
    .galeri-card:nth-child(2).animate,
    .galeri-card:nth-child(3).animate,
    .galeri-card:nth-child(4).animate,
    .galeri-card:nth-child(5).animate,
    .galeri-card:nth-child(6).animate {
        transition-delay: 0.1s;
    }

    .footer {
        padding: 40px 20px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-about {
        padding-right: 0;
    }

    .footer-section h3 {
        font-size: 18px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 12px;
    }
}