/* Reset dan Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #ffffff;
    --primary-dark: #0d3a73;
    --secondary: #d4a024;
    --light: #f8f9fa;
    --dark: #212529;
    --gray: #6c757d;
    --light-gray: #e9ecef;
    --success: #28a745;
    --danger: #dc3545;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --border-radius: 5px;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Noto Serif', serif;
    font-weight: 600;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    background-color: var(--primary);
    color: white;
    padding: 12px 28px;
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.section-title {
    text-align: center;
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--primary);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary);
}

/* Header & Navigation */
.header {
    background-color: white;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    left:-60px;
}

.logo {
    width: 100px;
    height: 60px;
    border-radius: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img {
    width: 125%;
    height: auto;
}

.logo-text h1 {
    font-size: 1.2rem;
    margin-bottom: 0;
    color: var(--primary);
}

.logo-text p {
    font-size: 0.9rem;
    color: var(--gray);
}

.navbar {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3px;
    margin-left: -88px;
    padding-left:0;
    transform: translateX(-10px);
}

.nav-menu > li {
    position: relative;
}

.nav-menu > li > a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 30px;
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: var(--transition);
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active {
    background-color: var(--light);
    color: var(--primary);
}

.nav-menu > li > a i.fa-chevron-down {
    font-size: 0.20rem;
    margin-left: -20px;
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 220px;
    box-shadow: var(--shadow);
    border-radius: var(--border-radius);
    padding: 10px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 12px 20px;
    transition: var(--transition);
}

.dropdown-menu li a:hover {
    background-color: var(--light-gray);
    color: var(--primary);
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary);
}

/* Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
    margin-bottom: 50px;
}

.slides {
    display: flex;
    width: 500%;
    height: 100%;
    transition: transform 1s ease-in-out;
}

.slide {
    width: 20%;
    height: 100%;
    position: relative;
    flex-shrink: 0;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    bottom: 20%;
    left: 10%;
    color: red;
    max-width: 600px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.slide-content h2 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.slider-controls {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    z-index: 10;
}

.prev-slide, .next-slide {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.2rem;
}

.prev-slide:hover, .next-slide:hover {
    background-color: rgba(255, 255, 255, 0.4);
}

.slide-indicators {
    display: flex;
    gap: 12px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.indicator.active {
    background-color: white;
    transform: scale(1.2);
}

/* Quick Links Section */
.quick-links {
    padding: 80px 0;
    background-color: var(--light);
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.link-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px 25px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.link-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.link-icon {
    width: 50px;
    height: 50px;
    border-radius: 30%;
    background-color: rgba(26, 77, 143, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary);
    font-size: 1.5rem;
}

.link-card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.link-card p {
    color: var(--gray);
    font-size: 0.95rem;
}

.about {
            padding: 80px 0;
            background-color: white;
        }
        
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
        }
        
        .about-text h2 {
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        /* Simple Auto-Slider */
        .simple-image-slider {
            position: relative;
            width: 100%;
            height: 500px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        
        .simple-image-slider img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0;
            transition: opacity 1.5s ease;
        }
        
        .simple-image-slider img.active {
            opacity: 1;
        }


/* Announcements Section */
.announcements {
    padding: 80px 0;
}

.announcement-list {
    max-width: 800px;
    margin: 0 auto;
}

.announcement-item {
    display: flex;
    gap: 25px;
    padding: 25px 0;
    border-bottom: 1px solid var(--light-gray);
}

.announcement-item:last-child {
    border-bottom: none;
}

.announcement-date {
    min-width: 80px;
    text-align: center;
}

.announcement-date .day {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.announcement-date .month {
    display: block;
    font-size: 1rem;
    color: var(--gray);
    text-transform: uppercase;
}

.announcement-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.announcement-content p {
    color: var(--gray);
    margin-bottom: 15px;
}

.read-more {
    color: var(--primary);
    font-weight: 500;
    transition: var(--transition);
}

.read-more:hover {
    color: var(--secondary);
}

/* Footer */
.footer {
    background-color: var(--dark);
    color: white;
    padding: 70px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h4 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
.footer-logo {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 300%;
    height: px;
    background-color: var(--secondary);
}

    height: auto;
}

.footer-logo h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.footer-logo p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    font-size: 0.95rem;
    line-height: 1.7;
}

.social-icons {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 30px;
        }
        
        .social-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            background: white;
            border-radius: 50%;
            font-size: 2rem;
            color: white;
            transition: all 0.3s;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .social-icon:hover {
            transform: translateY(-10px);
        }

        .instagram {
            background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
        }
        
        .youtube {
            background: #ff0000;
        }
        
        .tiktok {
            background: #000000;
        }
        
        .facebook {
            background: #0d4a9c;
        }


/* Reset dan Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1a4d8f;
    --primary-dark: #0d3a73;
    --secondary: #d4a024;
    --light: #f8f9fa;
    --dark: #212529;
    --gray: #6c757d;
    --light-gray: #e9ecef;
    --success: #28a745;
    --danger: #dc3545;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Noto Serif', serif;
    font-weight: 600;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    background-color: var(--primary);
    color: white;
    padding: 12px 28px;
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: var(--primary);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary);
}

/* Header & Navigation */
.header {
    background-color: white;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    width: 100px;
    height: 60px;
    border-radius: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img {
    width: 125%;
    height: auto;
}


.logo-text h1 {
    font-size: 1.5rem;
    margin-bottom: 0;
    color: var(--primary);
}

.logo-text p {
    font-size: 0.9rem;
    color: var(--gray);
}

.navbar {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.1px;
}

.nav-menu > li {
    position: relative;
}

/* PERBAIKAN UTAMA: Teks menu memanjang ke samping */
.nav-menu > li > a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: var(--border-radius);
    font-weight: 250;
    transition: var(--transition);
    /* Mencegah teks terpecah menjadi beberapa baris */
    white-space: nowrap;
    text-align: center;
    line-height: 1.2;
}

/* Sembunyikan tag <br> di dalam menu jika ada */
.nav-menu > li > a br {
    display: none;
}

/* Format untuk teks yang biasanya dua baris */
.nav-menu > li > a .menu-text-single {
    display: inline-block;
    white-space: nowrap;
}

/* Alternatif: format dua baris dalam satu baris */
.nav-menu > li > a .menu-text-compact {
    display: flex;
    flex-direction: row;
    gap: 4px;
    align-items: center;
}

.nav-menu > li > a .menu-text-compact span {
    white-space: nowrap;
}

/* Format khusus untuk menu panjang */
.nav-menu > li.long-menu > a {
    font-size: 0.95rem;
    padding: 12px 15px;
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active {
    background-color: var(--light);
    color: var(--primary);
}

.nav-menu > li > a i.fa-chevron-down {
    font-size: 0.8rem;
    margin-left: 5px;
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 220px;
    box-shadow: var(--shadow);
    border-radius: var(--border-radius);
    padding: 10px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    transition: var(--transition);
    white-space: nowrap;
}

.dropdown-menu li a:hover {
    background-color: var(--light-gray);
    color: var(--primary);
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary);
    background: none;
    border: none;
    padding: 5px;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
    margin-bottom: 50px;
}

.slides {
    display: flex;
    width: 500%;
    height: 100%;
    transition: transform 1s ease-in-out;
}

.slide {
    width: 20%;
    height: 100%;
    position: relative;
    flex-shrink: 0;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    bottom: 20%;
    left: 10%;
    color: white;
    max-width: 600px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.slide-content h2 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.slider-controls {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    z-index: 10;
}

.prev-slide, .next-slide {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.2rem;
}

.prev-slide:hover, .next-slide:hover {
    background-color: rgba(255, 255, 255, 0.4);
}

.slide-indicators {
    display: flex;
    gap: 12px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.indicator.active {
    background-color: white;
    transform: scale(1.2);
}

/* Quick Links Section */
.quick-links {
    padding: 80px 0;
    background-color: var(--light);
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.link-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px 25px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.link-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.link-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(26, 77, 143, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary);
    font-size: 1.8rem;
}

.link-card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.link-card p {
    color: var(--gray);
    font-size: 0.95rem;
}


/* Announcements Section */
.announcements {
    padding: 80px 0;
}

.announcement-list {
    max-width: 800px;
    margin: 0 auto;
}

.announcement-item {
    display: flex;
    gap: 25px;
    padding: 25px 0;
    border-bottom: 1px solid var(--light-gray);
}

.announcement-item:last-child {
    border-bottom: none;
}

.announcement-date {
    min-width: 80px;
    text-align: center;
}

.announcement-date .day {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.announcement-date .month {
    display: block;
    font-size: 1rem;
    color: var(--gray);
    text-transform: uppercase;
}

.announcement-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.announcement-content p {
    color: var(--gray);
    margin-bottom: 15px;
}

.read-more {
    color: var(--primary);
    font-weight: 500;
    transition: var(--transition);
}

.read-more:hover {
    color: var(--secondary);
}

.activities {
            padding: 80px 0;
            background-color: white;
        }
        
        .activity-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        
        .activity-card:hover {
            transform: translateY(-10px);
        }
        
        .activity-icon {
            background-color: var(--primary);
            color: white;
            height: 70px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
        }
        
        .activity-content {
            padding: 25px;
            flex-grow: 1;
        }
        
        .activity-content h3 {
            color: var(--primary);
            margin-bottom: 10px;
        }
        
        .activities-image {
            padding: 0 25px 25px 25px;
            margin-top: auto;
        }
        
        .activities-image img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-radius: 8px;
            box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }
        
        .activity-card:hover .activities-image img {
            transform: scale(1.03);
        }
        
        .activity-cards {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
            align-items: stretch;
        }

        .communities {
            padding: 80px 0;
            background-color: #f0f5ff;
        }
        
        .community-cards {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .community-card {
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }
        
        .community-card:hover {
            background-color: var(--primary);
            color: white;
            transform: translateY(-5px);
        }
        
        .community-card:hover h3,
        .community-card:hover .community-icon {
            color: white;
        }
        
        .community-icon {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 20px;
        }

        .events {
            padding: 80px 0;
            background-color: white;
        }
        
        .event-list {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .event-item {
            display: flex;
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .event-date {
            background-color: var(--primary);
            color: white;
            padding: 20px;
            min-width: 100px;
            text-align: center;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .event-date .day {
            font-size: 2rem;
            font-weight: 700;
            line-height: 1;
        }
        
        .event-info {
            padding: 20px;
            flex-grow: 1;
        }

/* Footer */
.footer {
    background-color: var(--dark);
    color: white;
    padding: 70px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h4 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 50px;
    height: auto;
}

.footer-logo h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.footer-logo p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    font-size: 0.95rem;
    line-height: 1.7;
}

.social-icons {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 30px;
        }
        
        .social-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            background: white;
            border-radius: 50%;
            font-size: 2rem;
            color: white;
            transition: all 0.3s;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .social-icon:hover {
            transform: translateY(-10px);
        }

        .instagram {
            background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
        }
        
        .youtube {
            background: #ff0000;
        }
        
        .tiktok {
            background: #000000;
        }
        
        .facebook {
            background: #0d4a9c;
        }
.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-links li i {
    color: var(--secondary);
    margin-top: 3px;
    font-size: 0.9rem;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-links li a:hover {
    color: white;
    padding-left: 5px;
}

.app-download p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.app-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.app-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.app-btn i {
    font-size: 2rem;
}

.app-btn div {
    display: flex;
    flex-direction: column;
}

.app-btn span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

.app-btn strong {
    font-size: 1.1rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
}

.copyright p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-menu {
    display: flex;
    gap: 25px;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-menu a:hover {
    color: white;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .nav-menu > li > a {
        padding: 12px 15px;
        font-size: 0.95rem;
    }
    
    .logo-text h1 {
        font-size: 1.4rem;
    }
    
    .slide-content h2 {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 2.1rem;
    }
}

@media (max-width: 992px) {
    .nav-menu > li > a {
        padding: 12px 12px;
        font-size: 0.9rem;
    }
    
    .slide-content h2 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: white;
        position: absolute;
        top: 100%;
        left: 0;
        box-shadow: var(--shadow);
        padding: 20px;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    /* Pada mobile, biarkan teks tetap satu baris */
    .nav-menu > li > a {
        white-space: normal;
        text-align: left;
        justify-content: space-between;
        padding: 15px;
    }
    
    /* Tampilkan br tag pada mobile jika diperlukan */
    .nav-menu > li > a br {
        display: inline;
    }
    
    .mobile-toggle {
        display: block;
        position: absolute;
        top: 25px;
        right: 20px;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 20px;
        background-color: var(--light-gray);
        margin-top: 10px;
        border-radius: 5px;
    }
    
    .hero-slider {
        height: 60vh;
        min-height: 400px;
    }
    
    .slide-content h2 {
        font-size: 2rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-menu {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-slider {
        height: 50vh;
        min-height: 350px;
    }
    
    .slide-content {
        left: 5%;
        right: 5%;
        bottom: 15%;
    }
    
    .slide-content h2 {
        font-size: 1.8rem;
    }
    
    .links-grid {
        grid-template-columns: 1fr;
    }
    
    .announcement-item {
        flex-direction: column;
        gap: 15px;
    }
    
    .announcement-date {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .announcement-date .day {
        font-size: 1.8rem;
    }
}

/* Utility Classes untuk teks menu */
.menu-text-one-line {
    white-space: nowrap !important;
}

.menu-text-with-slash::after {
    content: " / ";
    margin: 0 2px;
}

.menu-text-compact-row {
    display: flex;
    gap: 4px;
    align-items: center;
}

/* Animasi untuk dropdown arrow */
.dropdown > a i.fa-chevron-down {
    transition: transform 0.3s ease;
}

.dropdown:hover > a i.fa-chevron-down {
    transform: rotate(180deg);
}    