/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    min-height: 100%;
}

/* Header */
.header {
    background: linear-gradient(135deg, #2c5530, #4a7c59);
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    color: white;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    transition: all 0.3s ease-in-out;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #a8d5a8;
}

.mobile-menu {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: transform 0.3s ease;
    z-index: 1002;
}

.mobile-menu:hover {
    transform: scale(1.1);
}

.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, #2c5530, #4a7c59);
        padding: 1rem 0;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        z-index: 1001;
        opacity: 0;
        transform: translateY(-20px);
    }

    .nav-menu.active {
        display: flex;
        opacity: 1;
        transform: translateY(0);
    }

    .nav-menu li {
        margin: 0.5rem 0;
        text-align: center;
    }

    .nav-menu a {
        font-size: 1.2rem;
        padding: 0.5rem 1rem;
        display: block;
    }

    .mobile-menu {
        display: block;
    }
}

@media (max-width: 480px) {
    .nav-menu a {
        font-size: 1rem;
    }

    .mobile-menu {
        font-size: 1.5rem;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin: 60px 0 0;
    padding: 0;
    position: relative;
}

.hero-content {
    max-width: 900px;
    padding: 0 20px;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    letter-spacing: 0.5px;
    line-height: 1.5;
    animation: slideInDown 1s ease-out;
}

.hero h1 {
    font-size: 5rem;
    font-weight: 900;
    margin: 2rem 0;
    text-shadow: 4px 4px 8px rgba(0,0,0,0.8);
    letter-spacing: 3px;
    animation: zoomIn 1.2s ease-out 0.3s both;
    text-transform: uppercase;
    background: linear-gradient(45deg, #ffffff, #e0e0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-location {
    font-size: 1.2rem;
    font-weight: 400;
    margin-top: 2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    letter-spacing: 0.5px;
    animation: slideInUp 1s ease-out 0.6s both;
    padding: 15px 30px;
    background: rgba(255,255,255,0.1);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    display: inline-block;
}

.cta-button {
    background: #ff6b35;
    color: white;
    padding: 15px 30px;
    font-size: 1.1rem;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    animation: fadeInUp 1s ease-out 0.8s both;
    margin-top: 2rem;
}

.cta-button:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Pendahuluan Section */
.pendahuluan {
    padding: 80px 0;
    background: #f8f9fa;
}

.pendahuluan-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.pendahuluan-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.pendahuluan-image {
    text-align: center;
}

/* Tujuan Program Section */
.tujuan-program {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.tujuan-program::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="1" fill="%23ffffff" opacity="0.05"/><circle cx="10" cy="90" r="1" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
    background-attachment: fixed;
}

.tujuan-content {
    position: relative;
    z-index: 1;
}

.tujuan-header {
    text-align: center;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.tujuan-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #2c5530;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.tujuan-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #4a7c59, #2c5530);
    border-radius: 2px;
}

.tujuan-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 300;
}

.tujuan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tujuan-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px);
    border: 1px solid rgba(74, 124, 89, 0.1);
}

.tujuan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4a7c59, #2c5530);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.tujuan-card:hover::before {
    transform: scaleX(1);
}

.tujuan-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.tujuan-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    padding: 20px;
    background: linear-gradient(135deg, #4a7c59, #2c5530);
    border-radius: 50%;
    color: white;
    box-shadow: 0 10px 30px rgba(74, 124, 89, 0.3);
    transition: all 0.3s ease;
}

.tujuan-card:hover .tujuan-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(74, 124, 89, 0.4);
}

.tujuan-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c5530;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.tujuan-card:hover h3 {
    color: #4a7c59;
}

.tujuan-card p {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

.tujuan-highlight {
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, #2c5530, #4a7c59);
    border-radius: 25px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.tujuan-highlight::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: tujuanPulse 4s ease-in-out infinite;
}

.tujuan-highlight-content {
    position: relative;
    z-index: 1;
}

.tujuan-highlight h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.tujuan-highlight p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
    font-weight: 300;
}

.tujuan-highlight strong {
    font-weight: 600;
    color: #a8d5a8;
}

/* Section Desa Nagrog */
.desa-nagrog {
    padding: 100px 0;
    background: linear-gradient(135deg, #f1f8f4 0%, #e8f5e8 100%);
    position: relative;
    overflow: hidden;
}

.desa-nagrog::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(74, 124, 89, 0.05) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

.desa-nagrog-content {
    position: relative;
    z-index: 1;
}

.desa-nagrog-header {
    text-align: center;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.desa-nagrog-header h2 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #2c5530;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.desa-nagrog-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, #4a7c59, #2c5530);
    border-radius: 3px;
}

.desa-nagrog-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    color: #666;
    margin-top: 1.5rem;
    font-style: italic;
}

.desa-nagrog-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.desa-nagrog-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(74, 124, 89, 0.1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateX(-50px);
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4a7c59, #2c5530);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.info-card:hover::before {
    transform: scaleX(1);
}

.info-card:hover {
    transform: translateX(0) translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.info-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.info-card:hover .info-icon {
    transform: scale(1.1) rotate(5deg);
}

.info-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c5530;
    margin-bottom: 1rem;
}

.info-card p {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

.desa-nagrog-destinations {
    background: white;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateX(50px);
}

.desa-nagrog-destinations::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(74, 124, 89, 0.05) 0%, transparent 70%);
    animation: float 15s ease-in-out infinite reverse;
}

.desa-nagrog-destinations > * {
    position: relative;
    z-index: 1;
}

.desa-nagrog-destinations h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c5530;
    margin-bottom: 1.5rem;
    text-align: center;
}

.destinations-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.destination-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(74, 124, 89, 0.1);
}

.destination-item:hover {
    background: linear-gradient(135deg, #4a7c59, #2c5530);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(74, 124, 89, 0.3);
}

.destination-icon {
    font-size: 1.8rem;
    transition: transform 0.3s ease;
}

.destination-item:hover .destination-icon {
    transform: scale(1.2);
}

.destination-item span {
    font-weight: 600;
    font-size: 1rem;
}

.desa-nagrog-highlight {
    background: linear-gradient(135deg, #2c5530, #4a7c59);
    color: white;
    padding: 3.5rem;
    border-radius: 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 2rem;
    opacity: 0;
    transform: translateY(50px);
}

.desa-nagrog-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23pattern)"/></svg>');
    pointer-events: none;
}

.highlight-content {
    position: relative;
    z-index: 1;
}

.desa-nagrog-highlight h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.desa-nagrog-highlight p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin: 0;
    font-weight: 300;
    opacity: 0.95;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c5530;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #4a7c59;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c5530;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 80px 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.about-image {
    text-align: center;
}

.about-image img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Quote Section */
.quote {
    background: linear-gradient(135deg, #2c5530, #4a7c59);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.quote-text {
    font-size: 2rem;
    font-style: italic;
    margin-bottom: 1rem;
}

.quote-author {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2c5530, #4a7c59);
    color: white;
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footerPattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="white" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23footerPattern)"/></svg>');
    pointer-events: none;
}

.contact-layout {
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-column {
    text-align: center;
    flex: 1;
    min-width: 200px;
    color: white;
}

.contact-column h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #a8d5a8;
}

.contact-column ul {
    list-style: none;
    padding: 0;
}

.contact-column ul li {
    font-size: 1rem;
    margin: 8px 0;
    line-height: 1.4;
}

.footer-content {
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.footer-partners {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer-partners h3 {
    margin-bottom: 2rem;
    color: #a8d5a8;
    font-size: 1.3rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-partners h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: #ff6b35;
    border-radius: 2px;
}

.partners-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.partner-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    min-width: 280px;
    text-decoration: none;
    justify-content: center;
}

.partner-link:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border-color: rgba(168, 213, 168, 0.3);
}

.logo-placeholder {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    justify-content: center;
}

.logo-placeholder img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.partner-link:hover .logo-placeholder img {
    transform: scale(1.1);
}

.logo-placeholder p {
    font-size: 0.95rem;
    font-weight: 500;
    color: #e0e0e0;
    margin: 0;
    line-height: 1.4;
    text-align: center;
    max-width: 200px;
}

.footer .container {
    text-align: initial; /* Reset text-align untuk container */
}

.footer-bottom * {
    text-align: center !important; /* Force center alignment untuk semua elemen dalam footer-bottom */
}

@media (max-width: 768px) {
    .footer-bottom {
        text-align: center;
        padding-top: 20px;
        margin-top: 20px;
    }
    
    .footer-bottom p {
        font-size: 0.85rem;
        text-align: center;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .footer-bottom {
        text-align: center;
        padding-top: 20px;
        margin-top: 20px;
    }
    
    .footer-bottom p {
        font-size: 0.85rem;
        text-align: center;
        margin: 0 auto;
        width: 100%;
        display: block;
    }
}

/* Media Query untuk Mobile */
@media (max-width: 768px) {
    .partners-logo {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .partner-link {
        flex-direction: column;
        padding: 1rem;
        min-width: 200px;
        max-width: 250px;
        text-align: center;
    }

    .logo-placeholder {
        flex-direction: column;
        gap: 0.5rem;
        justify-content: center;
        text-align: center;
    }

    .logo-placeholder img {
        width: 50px;
        height: 50px;
    }

    .logo-placeholder p {
        font-size: 0.85rem;
        max-width: 180px;
        text-align: center;
    }

    .partner-link:hover .logo-placeholder img {
        transform: scale(1.1);
    }

    .partner-link:hover .logo-placeholder p {
        color: #a8d5a8;
    }
}

@media (max-width: 480px) {
    .partner-link {
        padding: 0.8rem;
        min-width: 180px;
        max-width: 220px;
    }

    .logo-placeholder img {
        width: 40px;
        height: 40px;
    }

    .logo-placeholder p {
        font-size: 0.8rem;
        max-width: 160px;
    }
}

@media (max-width: 1024px) {
    .tujuan-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }
    
    .tujuan-card {
        padding: 2rem;
    }
    
    .desa-nagrog-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .desa-nagrog-info {
        order: 2;
    }
    
    .desa-nagrog-destinations {
        order: 1;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .partners-logo {
        grid-column: 1 / -1;
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .partner-link {
        flex: 1;
        min-width: 200px;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .tujuan-program {
        padding: 60px 0;
    }
    
    .tujuan-header h2 {
        font-size: 2.5rem;
    }
    
    .tujuan-description {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .tujuan-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .tujuan-card {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .tujuan-icon {
        font-size: 3rem;
        padding: 15px;
    }
    
    .tujuan-card h3 {
        font-size: 1.3rem;
    }
    
    .tujuan-highlight {
        margin: 2rem 1rem 0;
        padding: 2rem;
    }
    
    .tujuan-highlight h3 {
        font-size: 1.7rem;
    }
    
    .tujuan-highlight p {
        font-size: 1rem;
    }
    
    .desa-nagrog {
        padding: 60px 0;
    }
    
    .desa-nagrog-header h2 {
        font-size: 2.5rem;
    }
    
    .desa-nagrog-subtitle {
        font-size: 1.1rem;
    }
    
    .info-card {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .desa-nagrog-destinations {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .destinations-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .destination-item {
        padding: 1.2rem;
    }
    
    .desa-nagrog-highlight {
        padding: 2.5rem;
        margin: 2rem 1rem 0;
    }
    
    .desa-nagrog-highlight h3 {
        font-size: 1.8rem;
    }
    
    .desa-nagrog-highlight p {
        font-size: 1.1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.4;
    }

    .hero h1 {
        font-size: 3rem;
        letter-spacing: 2px;
    }

    .hero-location {
        font-size: 1rem;
        padding: 10px 20px;
    }

    .about-content,
    .pendahuluan-content {
        grid-template-columns: 1fr;
    }

    .quote-text {
        font-size: 1.5rem;
    }

    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .partners-logo {
        flex-direction: column;
        align-items: center;
    }
    
    .partner-link {
        max-width: 100%;
        justify-content: center;
    }
    
    .logo-placeholder {
        justify-content: center;
    }

    .contact-layout {
        flex-direction: column;
        gap: 20px;
    }

    .contact-column {
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    .tujuan-header h2 {
        font-size: 2rem;
    }
    
    .tujuan-description {
        font-size: 1rem;
    }
    
    .tujuan-card {
        padding: 1.2rem;
    }
    
    .tujuan-icon {
        font-size: 2.5rem;
        padding: 12px;
    }
    
    .tujuan-card h3 {
        font-size: 1.2rem;
    }
    
    .tujuan-card p {
        font-size: 0.9rem;
    }
    
    .tujuan-highlight {
        padding: 1.5rem;
    }
    
    .tujuan-highlight h3 {
        font-size: 1.5rem;
    }
    
    .desa-nagrog-header h2 {
        font-size: 2rem;
    }
    
    .info-card {
        padding: 1.5rem;
    }
    
    .info-icon {
        font-size: 2rem;
    }
    
    .info-card h3 {
        font-size: 1.2rem;
    }
    
    .desa-nagrog-destinations {
        padding: 1.5rem;
    }
    
    .destinations-grid {
        gap: 0.8rem;
    }
    
    .destination-item {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .destination-icon {
        font-size: 1.5rem;
    }
    
    .desa-nagrog-highlight {
        padding: 2rem;
    }
    
    .desa-nagrog-highlight h3 {
        font-size: 1.5rem;
    }
    
    .desa-nagrog-highlight p {
        font-size: 1rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }

    .hero h1 {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }

    .hero-location {
        font-size: 0.9rem;
        padding: 8px 16px;
    }

    .footer {
        padding: 30px 0 15px;
    }
    
    .footer-content {
        gap: 1.5rem;
    }
    
    .footer-section h3 {
        font-size: 1.1rem;
    }
    
    .partner-link {
        padding: 0.8rem;
        flex-direction: column;
        text-align: center;
    }
    
    .logo-placeholder {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .logo-placeholder img {
        width: 40px;
        height: 40px;
    }
    
    .logo-placeholder p {
        font-size: 0.8rem;
    }
    
    .footer-bottom {
        text-align: center;
        padding-top: 20px;
        margin-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        position: relative;
        z-index: 1;
    }
    
    .footer-bottom p {
        margin: 0;
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.8);
        text-align: center;
        width: 100%;
    }

    .contact-column h3 {
        font-size: 1.3rem;
    }

    .contact-column ul li {
        font-size: 0.9rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes tujuanPulse {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1) rotate(180deg);
        opacity: 0.8;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

@keyframes ripple {
    to {
        width: 200px;
        height: 200px;
        opacity: 0;
    }
}

.footer-bottom {
    margin-top: 80px !important;
    padding-top: 40px !important;
}