/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f9fafb;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    display: block;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s;
    background: transparent;
}

header.scrolled {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    background: linear-gradient(135deg, #FE7743, #FFAF90);
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.logo-text h1 {
    font-size: 1.25rem;
    font-weight: bold;
    color: white;
    transition: color 0.3s;
}

.logo-text p {
    font-size: 0.75rem;
    color: white;
    transition: color 0.3s;
}

header.scrolled .logo-text h1,
header.scrolled .logo-text p {
    color: #273F4F;
}

.desktop-nav {
    display: none;
    gap: 8px;
}

.desktop-nav a {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: all 0.3s;
}

.desktop-nav a:hover {
    background: rgba(255,255,255,0.2);
}

.desktop-nav a.active {
    background: #273F4F;
    color: white;
}

header.scrolled .desktop-nav a {
    color: #273F4F;
}

header.scrolled .desktop-nav a:hover {
    background: #f3f4f6;
}

header.scrolled .desktop-nav a.active {
    background: #447D9B;
    color: white;
}

.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: white;
    transition: background 0.3s;
}

header.scrolled .mobile-menu-btn span {
    background: #273F4F;
}

.mobile-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: #D7D7D7;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.3s;
    z-index: 999;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
}

.mobile-menu nav {
    padding-top: 2rem;
    padding-bottom: 1rem;
    padding-left: 0.5rem;
    padding-right: 1rem;
}

.mobile-menu nav a {
    display: block;
    padding: 0.5rem;
    text-decoration: none;
    color: #273F4F;
    font-weight: 600;
    border-radius: 8px;
    transition: background 0.3s;
}

.mobile-menu nav a:hover,
.mobile-menu nav a.active {
    background: #447D9B;
    color: white;
}

/* Hero Section */
.hero {
    position: relative;
    height: 500px;
    background: linear-gradient(135deg, #FE7743, #FFAF90);
    display: flex;
    align-items: center;
    margin-top: 0px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.1);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: white;
}

.hero-content h2 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 600px;
}

.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary {
    background: white;
    color: #273F4F;
}

.btn-primary:hover {
    background: #f3f4f6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Stats Section */
.stats {
    padding: 4rem 0;
    background: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stat-number.blue { color: #3f638e; }
.stat-number.purple { color: #3f748e; }
.stat-number.pink { color: #3f828e; }

.stat-label {
    color: #6b7280;
    font-size: 1rem;
}

/* About Preview */
.about-preview {
    padding: 4rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: #273F4F;
}

.about-text p {
    color: #6b7280;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    color: #447D9B;
    font-weight: 600;
    text-decoration: none;
    margin-top: 1rem;
    transition: color 0.3s;
}

.link-arrow:hover {
    color: #4ea2cf;
}

.about-image {
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    position: relative;
}

.image-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.slider-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slider-image.active {
    opacity: 1;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.dot.active {
    background: white;
    width: 30px;
    border-radius: 6px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* UPS Section */
.ups-section {
    padding: 4rem 0;
    background: white;
}

.ups-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.ups-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.ups-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.ups-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.ups-content {
    padding: 1.5rem;
}

.ups-card h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #273F4F;
}

.ups-card p {
    color: #6b7280;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.ups-link {
    color: #447D9B;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.ups-link:hover {
    color: #4ea2cf;
}

/* News Section */
.news-section {
    padding: 4rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 3rem;
    color: #273F4F;
}

.news-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.news-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s !important;
}

.news-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.news-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-content {
    padding: 1.5rem;
}

.news-date {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.news-card h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #273F4F;
}

.news-card p {
    color: #6b7280;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.news-link {
    color: #447D9B;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.news-link:hover {
    color: #4ea2cf;
}

/* Footer */
footer {
    background: #1f2937;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-col h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.footer-col p,
.footer-col ul {
    color: #9ca3af;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col ul li i {
    margin-right: 8px;
}

.footer-col a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
    color: #9ca3af;
}

/* Content Pages */
.page-header {
    position: relative;
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #FE7743, #FFAF90);
    color: white;
    text-align: center;
}

.page-header::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.1);
    z-index: 0;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: bold;
}

.content-section {
    padding: 4rem 0;
}

.content-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    text-align: justify;
}

.content-card h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: #273F4F;
}

.content-card p {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 1rem;
}

#panah {
    margin-left: 0.17rem;
}

.content-card-p {
    color: #273F4F !important;
    display: inline;
    margin-left: 1.2rem;
}

.content-card-p2 {
    display: inline;
    margin-left: 1rem;
}

.gradient-card {
    background: linear-gradient(135deg, #dd5c29, #FE7743);
    color: white;
}

.gradient-card h2 {
    color: white;
}

.gradient-card p {
    color: white;
}

/* Mission Tujuan Items */
.mission-tujuan-list {
    list-style: none;
}

.mission-tujuan-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.mission-tujuan-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.mission-tujuan-icon.gray { background: #dddddd; }

.mission-tujuan-content h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #273F4F;
}

.mission-tujuan-content p {
    color: #6b7280;
}

/* Slogan Items */
.slogan-list {
    list-style: none;
}

.slogan-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.slogan-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.slogan-icon {
    background: #c2461d;
    color: white;
}

.slogan-content h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: white;
}

.slogan-content p {
    color: white;
}

/* Logo */
.logo-item {
    max-width: 180px;
    height: auto;
    transform: translateY(-20px);
}

td:last-child {
    padding-left: 40px;
}

td {
    vertical-align: middle;
}

/* List Gagasan/Ide + Pendiri */
.all-list li {
    margin-left: 0.2rem;
    font-size: 1.125rem; 
    line-height: 1.8;
    list-style: none;
}

/* Organ Yayasan Grid */
.organ-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.organ-box {
    background: linear-gradient(135deg, #dd5c29, #FE7743);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    color: white;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(68, 125, 155, 0.2);
}

.organ-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    backdrop-filter: blur(10px);
}

.organ-box h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.bidang-section {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
}

.bidang-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.5rem;
    color: #273F4F;
}

.bidang-header i {
    font-size: 1.5rem;
    color: #447D9B;
}

.bidang-header h3 {
    font-size: 1.3rem;
    margin: 0;
}

.bidang-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
}

.bidang-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    border-left: 4px solid #FFAF90;
}

.bidang-card i {
    font-size: 1.8rem;
    color: #FE7743;
    flex-shrink: 0;
}

.bidang-card p {
    margin: 0;
    text-align: left;
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.5;
}

#gedung1 {
    margin-left: 0.15rem;
    margin-right: 0.25rem;
}

/* Jaringan Kerja */
.jaringan-section {
    background: rgba(255, 255, 255, 0.12);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
}

.jaringan-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.5rem;
}

.jaringan-header i {
    font-size: 1.5rem;
}

.jaringan-header h3 {
    font-size: 1.3rem;
    margin: 0;
}

.jaringan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
}

.jaringan-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.jaringan-card i {
    font-size: 1.8rem;
    color: #FE7743;
    flex-shrink: 0;
}

.jaringan-card p {
    margin: 0;
    text-align: left;
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.5;
}

/* Strategi Styles */
.strategi-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.strategi-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.strategi-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #FE7743;
    opacity: 0.3;
    line-height: 1;
    flex-shrink: 0;
}

.strategi-content {
    flex: 1;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.strategi-content i {
    font-size: 1.5rem;
    color: #447D9B;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.strategi-content p {
    margin: 0;
    color: #4b5563;
    line-height: 1.7;
}

.sistem-kerja {
    margin-top: 2rem;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 12px;
}

.sistem-kerja h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.5rem;
    color: #273F4F;
    font-size: 1.3rem;
}

.sistem-kerja h3 i {
    color: #447D9B;
}

.sistem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.sistem-box {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.sistem-box i {
    font-size: 2rem;
    color: #447D9B;
    display: block;
    margin-bottom: 1rem;
}

.sistem-box span {
    display: block;
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Dana Styles */
.dana-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.dana-section {
    background: rgba(255, 255, 255, 0.12);
    padding: 2rem;
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.dana-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
}

.dana-header i {
    font-size: 1.8rem;
}

.dana-header h3 {
    font-size: 1.3rem;
    margin: 0;
    font-weight: 600;
}

.dana-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.dana-item {
    background: rgba(255, 255, 255, 0);
    color: white;
    padding: 1.2rem 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.dana-item i {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.dana-item span {
    font-size: 1rem;
    line-height: 1.5;
}

/* UPS Detail */
.ups-hero-image {
    text-align: center;
    margin-bottom: 2rem;
}

.ups-hero-image img {
    max-width: 600px;
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    display: inline-block;
}

.ups-detail {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.ups-detail img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.ups-detail-content {
    padding: 2rem;
}

.ups-detail-content-list {
    padding: 0.1rem;
    margin-left: 2rem;
}

/* Berita Detail */
.berita-detail {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.berita-detail img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.berita-detail-content {
    padding: 2rem;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    height: 250px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 100%;
    max-height: 100vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    background: none;
    border: none;
    transition: color 0.3s;
}

.lightbox-close:hover {
    color: #9ca3af;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-info {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.contact-info h2 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: #273F4F;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.contact-icon-1 {
    color: #447D9B;
    margin-right: 1rem;
    margin-left: 0.2rem;
    margin-top: 0.25rem;
}

.contact-icon {
    color: #447D9B;
    margin-right: 1rem;
    margin-top: 0.25rem;
}

.contact-details h3 {
    font-weight: bold;
    margin-bottom: 0.25rem;
    color: #273F4F;
}

.contact-details p {
    color: #6b7280;
}

.contact-details-list {
    margin-left: 1.3rem;
    color: #6b7280;
}

.social-links {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.3rem;
}

.social-link {
    transition: all 0.3s;
}

.social-link.instagram {
    width: 30px;
    height: 30px;
}

.social-link:hover {
    transform: translateY(-3px);
}

/* Form */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #273F4F;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #447D9B;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: #447D9B;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #273F4F;
}

.form-note {
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 1rem;
}

.map-container {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Responsive Design */
@media (min-width: 768px) {
    .desktop-nav {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: none;
    }
    
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }

    .ups-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .news-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .ups-detail {
        display: flex;
    }
    
    .ups-detail img {
        width: 400px;
        height: auto;
    }
    
    .berita-detail {
        display: flex;
    }
    
    .berita-detail img {
        width: 400px;
        height: auto;
    }
}

@media (max-width: 767px) {
    /* Hero Section */
    .hero {
        height: 400px;
    }
    
    .hero-content h2 {
        font-size: 1.75rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
    
    /* Typography */
    .section-title,
    .page-header h1 {
        font-size: 1.75rem;
    }
    
    .about-text h2,
    .content-card h2 {
        font-size: 1.5rem;
    }
    
    .page-header {
        padding: 6rem 0 3rem;
    }
    
    /* Stats */
    .stats {
        padding: 2rem 0;
    }
    
    .stats-grid {
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    /* Logo */
    .logo-icon {
        width: 40px;
        height: 40px;
    }
    
    .logo-icon img {
        width: 100%;
        height: 100%;
    }
    
    .logo-text h1 {
        font-size: 1rem;
    }
    
    .logo-text p {
        font-size: 0.65rem;
    }
    
    /* Content Cards */
    .content-card {
        padding: 1.5rem;
        text-align: left;
    }
    
    .content-card p {
        font-size: 0.95rem;
    }
    
    /* Mission & Tujuan Items */
    .mission-tujuan-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .mission-tujuan-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    /* Slogan Items */
    .slogan-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .slogan-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    /* Logo Table */
    .logo-item {
        max-width: 120px;
        transform: translateY(0);
        margin: 0 auto;
        display: block;
    }
    
    td:last-child {
        padding-left: 0;
        text-align: center;
    }
    
    table {
        display: block;
    }
    
    table tr {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    table td {
        display: block;
        width: 100%;
        text-align: center;
    }
    
    /* Organ Grid */
    .organ-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Bidang Section */
    .bidang-section {
        padding: 1.5rem;
    }
    
    .bidang-grid {
        grid-template-columns: 1fr;
    }
    
    .bidang-card {
        padding: 1rem;
    }
    
    /* Jaringan Section */
    .jaringan-section {
        padding: 1.5rem;
    }
    
    .jaringan-grid {
        grid-template-columns: 1fr;
    }
    
    .jaringan-card {
        padding: 1rem;
    }

    .jaringan-header h3 {
        text-align: left;
    }
    
    /* Strategi */
    .strategi-item {
        flex-direction: column;
        padding: 1rem;
    }
    
    .strategi-number {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .sistem-kerja {
        padding: 1.5rem;
    }
    
    .sistem-grid {
        grid-template-columns: 1fr;
    }
    
    /* Dana Section */
    .dana-section {
        padding: 1.5rem;
    }
    
    .dana-item {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
    }
    
    .dana-item i {
        margin-bottom: 0.5rem;
    }
    
    /* UPS & Berita Detail */
    .ups-detail,
    .berita-detail {
        flex-direction: column;
    }
    
    .ups-detail img,
    .berita-detail img {
        width: 100%;
        height: 250px;
    }
    
    .ups-detail-content,
    .berita-detail-content {
        padding: 1.5rem;
    }
    
    /* Gallery */
    .gallery-grid {
        gap: 1rem;
    }
    
    .gallery-item {
        height: 200px;
    }
    
    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        padding: 1.5rem;
    }
    
    .contact-item {
        flex-direction: row;
        align-items: flex-start;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    footer {
        padding: 2rem 0 1rem;
    }
    
    /* News & UPS Cards */
    .news-card,
    .ups-card {
        margin-bottom: 1rem;
    }
    
    /* About Preview */
    .about-preview {
        padding: 3rem 0;
    }
    
    .about-image {
        height: 300px;
    }
    
    /* Lightbox */
    .lightbox {
        padding: 1rem;
    }
    
    .lightbox-close {
        top: 10px;
        right: 15px;
        font-size: 2.5rem;
    }
    
    /* Container Padding */
    .container {
        padding: 0 15px;
    }
    
    /* Content Section */
    .content-section {
        padding: 3rem 0;
    }
    
    /* All List */
    .all-list li {
        font-size: 1rem;
    }
}