/* Hero Section */
#hero {
    min-height: 100vh;
    background: 
        linear-gradient(135deg, rgba(25, 63, 52, 0.85) 0%, rgba(15, 147, 109, 0.75) 50%, rgba(59, 93, 80, 0.85) 100%),
        url('../images/background/second year - open house.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}


#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/element/pattern.svg') repeat;
    opacity: 0.08;
}

#hero .containers {
    max-width: 1200px;
    width: 100%;
    z-index: 1;
}

.hero-content {
    text-align: center;
    color: white;
}
.heroTitle{
    font-size: clamp(32px, 6vw, 56px);
    color: #DDE7B8;
    margin-top: 10%;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    font-weight: bold;
}

.hero-content h1 {
    color: #DDE7B8;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    font-size: clamp(32px, 6vw, 56px);
}

.hero-content h2 {
    color: white;
    font-weight: 300;
    margin-bottom: 20px;
    font-size: clamp(20px, 4vw, 32px);
}

.hero-content p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 30px;
}

.status-badge {
    display: flex;
    justify-content: center;
}

.badge-open {
    background: linear-gradient(135deg, #dc3545, #6e3636);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    animation: pulse 2s infinite;
}

.hero-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    padding: 15px 35px;
    background: white;
    color: #193F34;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.hero-cta-btn:hover {
    background: #DDE7B8;
    color: #193F34;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-cta-btn i {
    animation: bounce1 2s infinite;
}

@keyframes bounce1 {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(10px);
    }
    60% {
        transform: translateY(3px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(106, 190, 112, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(106, 190, 112, 0);
    }
}

/* Section Common Styles */
.containers {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    color: #193F34;
    margin-bottom: 10px;
}

.line-divider {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #0F936D, #6ABE70);
    margin: 0 auto 50px;
    border-radius: 2px;
}

/* Timeline Section */
#timeline {
    padding: 80px 20px;
    background: #f8f9fa;
}

.timeline-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 200px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.timeline-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0F936D, #3B5D50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.timeline-icon i {
    font-size: 24px;
    color: white;
}

.timeline-content h4 {
    color: #193F34;
    margin-bottom: 5px;
}

.timeline-content p {
    color: #666;
    margin: 0;
}

/* Requirements Section */
#requirements {
    padding: 80px 20px;
    background: white;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.requirement-card {
    background: linear-gradient(145deg, #f8f9fa, #ffffff);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.requirement-card:hover {
    border-color: #0F936D;
    box-shadow: 0 10px 30px rgba(15, 147, 109, 0.1);
    transform: translateY(-5px);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #DDE7B8, #6ABE70);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.card-icon i {
    font-size: 28px;
    color: #193F34;
}

.requirement-card h4 {
    color: #193F34;
    margin-bottom: 10px;
}

.requirement-card p {
    color: #666;
    margin: 0;
}

/* Benefits Section */
#benefits {
    padding: 80px 20px;
    background: 
        linear-gradient(180deg, rgba(25, 63, 52, 0.85) 0%, rgba(15, 147, 109, 0.8) 100%), 
        url('../images/background/ppk ormawa (1).jpeg') center/cover no-repeat;
}

#benefits .section-title {
    color: #DDE7B8;
}

#benefits .line-divider {
    background: linear-gradient(90deg, #DDE7B8, #6ABE70);
}

.benefits-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
}

.benefit-number {
    font-size: 48px;
    font-weight: 800;
    color: rgba(221, 231, 184, 0.3);
    line-height: 1;
    min-width: 80px;
}

.benefit-content h4 {
    color: #DDE7B8;
    margin-bottom: 8px;
}

.benefit-content p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Departments Section */
#departments {
    padding: 80px 20px;
    background: #f8f9fa;
}

.departments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    justify-items: center;
    gap: 25px;
}

.department-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-bottom: 4px solid transparent;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.department-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-bottom-color: #0F936D;
}

.dept-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #193F34, #0F936D);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.dept-icon i {
    font-size: 32px;
    color: #DDE7B8;
}

.department-card h4 {
    color: #193F34;
    margin-bottom: 10px;
}

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

/* CTA Section */
#cta {
    padding: 80px 20px;
    background: linear-gradient(135deg, #DDE7B8 0%, #6ABE70 100%);
    scroll-margin-top: 100px; 
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    color: #193F34;
    margin-bottom: 15px;
}

.cta-content p {
    color: #3B5D50;
    margin-bottom: 30px;
}

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

.btn-booklet,
.btn-register {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-booklet {
    background: white;
    color: #193F34;
    border: 2px solid #193F34;
}

.btn-booklet:hover {
    background: #193F34;
    color: white;
}

.btn-register {
    background: #193F34;
    color: white;
    border: 2px solid #193F34;
}

.btn-register:hover {
    background: #0F936D;
    border-color: #0F936D;
    transform: scale(1.05);
}

/* Contact Section */
#contact {
    padding: 80px 20px;
    background: #F5F5F5;
}

.contact-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 35px;
    background: linear-gradient(145deg, #f8f9fa, #ffffff);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon i {
    font-size: 28px;
    color: white;
}

.contact-info h4 {
    color: #193F34;
    margin-bottom: 5px;
}

.contact-info p {
    color: #666;
    margin-bottom: 10px;
}

.btn-wa {
    display: inline-block;
    padding: 8px 20px;
    background: #25D366;
    color: white;
    border-radius: 20px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-wa:hover {
    background: #128C7E;
    color: white;
    transform: scale(1.05);
}

/* Footer */
footer {
    background: #193F34;
    padding: 50px 20px 30px;
}

footer .containers {
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.footer-logo img {
    width: 80px;
    filter: brightness(0) invert(1);
}

.contact h5 {
    margin-bottom: 15px;
}

.contact ul {
    display: flex;
    gap: 15px;
    padding: 0;
    margin-bottom: 20px;
}

.contact .icon {
    font-size: 24px;
    color: white;
    transition: all 0.3s ease;
}

.contact .icon:hover {
    color: #DDE7B8;
    transform: scale(1.2);
}

footer hr {
    width: 100%;
    max-width: 300px;
    border-color: rgba(255, 255, 255, 0.2);
    margin-bottom: 20px;
}

footer span {
    font-size: 14px;
    opacity: 0.8;
}

/* Responsive Styles */
@media screen and (min-width: 768px) {
    .timeline-wrapper {
        flex-wrap: nowrap;
    }

    .timeline-item {
        width: 220px;
    }
}

@media screen and (min-width: 992px) {
    .requirements-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .departments-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .benefit-item {
        padding: 30px 40px;
    }
}

@media screen and (max-width: 624px) {


    #hero {
        padding: 120px 15px 60px;
    }
    .containers {
        padding: 15px 0px;
    }

    .departments-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .department-card {
        padding: 15px;
    }

    .timeline-item {
        width: 100%;
    }

    .benefit-item {
        flex-direction: column;
        text-align: center;
    }

    .benefit-number {
        min-width: auto;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-booklet,
    .btn-register {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .contact-card {
        flex-direction: column;
        text-align: center;
        width: 100%;
    }
}
