/* ================================
   Claymorphism Custom Styles
   Navy (#02275d) + Yellow (#ffb300)
   ================================ */

/* ========================================
   LANDING PAGE STYLES
   ======================================== */

/* Hero Section - Minimalist Claymorphism */
.hero-area {
    padding: 180px 0 100px;
    background: linear-gradient(145deg, #f0f4f8 0%, #e2e8f0 100%);
    position: relative;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content h1 .text-gradient-gold {
    color: #FFC107;
}

.hero-btn {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(145deg, var(--primary-color), var(--primary-dark));
    color: #fff;
    border-radius: var(--radius-pill);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
    margin-top: 20px;
    box-shadow:
        6px 6px 14px var(--clay-shadow-dark),
        -6px -6px 14px var(--clay-shadow-light);
    border: none;
}

.hero-btn:hover {
    background: linear-gradient(145deg, var(--primary-dark), var(--primary-color));
    color: #fff;
    transform: translateY(-2px);
    box-shadow:
        8px 8px 18px var(--clay-shadow-dark),
        -8px -8px 18px var(--clay-shadow-light);
    text-decoration: none;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(8px 8px 16px rgba(163, 177, 198, 0.3));
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.section-title h2 .text-gradient-gold {
    color: #FFC107;
}

.section-title p {
    color: var(--text-muted);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section - Minimalist Claymorphism */
.about-section {
    padding: 80px 0;
    background: var(--clay-bg);
}

.about-content {
    text-align: justify;
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 16px;
    background: var(--clay-white);
    padding: 40px;
    border-radius: var(--radius-clay);
    box-shadow:
        8px 8px 20px var(--clay-shadow-dark),
        -8px -8px 20px var(--clay-shadow-light);
}

/* Program Cards - Minimalist Claymorphism */
.program-section {
    padding: 80px 0;
    background: var(--clay-bg-soft);
}

.program-card {
    background: var(--clay-white);
    border-radius: var(--radius-clay);
    overflow: hidden;
    box-shadow:
        8px 8px 20px var(--clay-shadow-dark),
        -8px -8px 20px var(--clay-shadow-light);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    height: 100%;
    border: none;
}

.program-card:hover {
    transform: translateY(-6px);
    box-shadow:
        12px 12px 28px var(--clay-shadow-dark),
        -12px -12px 28px var(--clay-shadow-light);
}

.program-card-img {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 150%;
    background: var(--clay-bg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.program-card-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s;
    cursor: pointer;
}

.program-card:hover .program-card-img img {
    transform: scale(1.1);
}

.program-number-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(145deg, var(--primary-color), var(--primary-dark));
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    z-index: 2;
    box-shadow:
        4px 4px 10px rgba(2, 39, 93, 0.3),
        -2px -2px 6px rgba(255, 255, 255, 0.4);
}

.program-card-body {
    padding: 30px;
    text-align: center;
}

.program-card-title {
    color: var(--text-dark);
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 20px;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.program-btn {
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(145deg, var(--primary-color), var(--primary-dark));
    color: #fff;
    border-radius: var(--radius-pill);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
    border: none;
    box-shadow:
        4px 4px 12px rgba(2, 39, 93, 0.3),
        -4px -4px 12px rgba(255, 255, 255, 0.6);
}

.program-btn:hover {
    background: linear-gradient(145deg, var(--primary-dark), var(--primary-color));
    color: #fff;
    transform: translateY(-2px);
    box-shadow:
        6px 6px 16px rgba(2, 39, 93, 0.35),
        -6px -6px 16px rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

/* Features Section - Minimalist Claymorphism */
.features-section {
    padding: 80px 0;
    background: var(--clay-bg);
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
    transition: all 0.3s;
    background: var(--clay-white);
    border-radius: var(--radius-clay);
    box-shadow:
        6px 6px 16px var(--clay-shadow-dark),
        -6px -6px 16px var(--clay-shadow-light);
    height: 100%;
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow:
        10px 10px 24px var(--clay-shadow-dark),
        -10px -10px 24px var(--clay-shadow-light);
}

.feature-item img {
    margin-bottom: 15px;
    transition: transform 0.3s;
    height: 80px;
    width: auto;
    filter: drop-shadow(4px 4px 8px rgba(163, 177, 198, 0.25));
}

.feature-item:hover img {
    transform: scale(1.1);
}

.feature-item p {
    color: var(--text-muted);
    margin: 0;
    font-weight: 500;
}

/* Testimonials Section - Minimalist Claymorphism */
.testimonial-section {
    padding: 80px 0;
    background: var(--clay-bg-soft);
}

.testimonial-card {
    background: var(--clay-white);
    border-radius: var(--radius-clay);
    padding: 32px;
    box-shadow:
        8px 8px 20px var(--clay-shadow-dark),
        -8px -8px 20px var(--clay-shadow-light);
    text-align: center;
    margin: 12px;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    border: none;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow:
        12px 12px 28px var(--clay-shadow-dark),
        -12px -12px 28px var(--clay-shadow-light);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 16px;
    left: 24px;
    font-size: 60px;
    color: var(--primary-color);
    opacity: 0.1;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 16px;
    overflow: hidden;
    border: 3px solid var(--accent-color);
    box-shadow:
        4px 4px 10px var(--clay-shadow-dark),
        -4px -4px 10px var(--clay-shadow-light);
    transition: all 0.2s ease;
}

.testimonial-card:hover .testimonial-avatar {
    transform: scale(1.05);
    box-shadow:
        6px 6px 14px var(--clay-shadow-dark),
        -6px -6px 14px var(--clay-shadow-light);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-stars {
    color: var(--accent-color);
    margin-bottom: 12px;
}

.testimonial-stars i {
    font-size: 14px;
}

.testimonial-name {
    color: var(--text-dark);
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 4px;
}

.testimonial-location {
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 12px;
}

.testimonial-text {
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.7;
    font-size: 15px;
}

/* Footer/Contact Section - Minimalist Claymorphism */
.footer-section {
    background: var(--navy-color);
    padding: 60px 0 24px;
    color: #fff;
}

.contact-form {
    background: var(--clay-white);
    padding: 32px;
    border-radius: var(--radius-clay);
    box-shadow:
        8px 8px 20px rgba(0, 0, 0, 0.2),
        -4px -4px 12px rgba(255, 255, 255, 0.05);
}

.contact-form h3 {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    margin-bottom: 16px;
    border: 1.5px solid #E2E8F0;
    background: var(--clay-bg);
    color: var(--text-dark);
    border-radius: 12px;
    font-size: 14px;
    transition: all 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(2, 39, 93, 0.1);
    background: var(--clay-white);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #94A3B8;
}

.contact-form button {
    width: 100%;
    padding: 12px;
    background: linear-gradient(145deg, var(--primary-color), var(--primary-dark));
    color: #fff;
    border: none;
    border-radius: var(--radius-pill);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
    box-shadow:
        4px 4px 12px rgba(2, 39, 93, 0.3),
        -4px -4px 12px rgba(255, 255, 255, 0.6);
}

.contact-form button:hover {
    background: linear-gradient(145deg, var(--primary-dark), var(--primary-color));
    transform: translateY(-1px);
    box-shadow:
        6px 6px 16px rgba(2, 39, 93, 0.35),
        -6px -6px 16px rgba(255, 255, 255, 0.7);
}

.footer-info h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-info h3 .text-gradient-gold {
    color: #FFC107;
}

.footer-info p {
    color: #CBD5E1;
    line-height: 1.7;
    font-size: 15px;
}

.social-links {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links li a {
    width: 46px;
    height: 46px;
    background: linear-gradient(145deg, #475569, #3d4f5f);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow:
        4px 4px 10px rgba(0, 0, 0, 0.25),
        -2px -2px 6px rgba(255, 255, 255, 0.08);
    font-size: 18px;
}

.social-links li a:hover {
    background: linear-gradient(145deg, var(--primary-color), var(--primary-dark));
    transform: translateY(-3px);
    box-shadow:
        6px 6px 14px rgba(2, 39, 93, 0.3),
        -2px -2px 6px rgba(255, 255, 255, 0.1);
}

.copyright {
    text-align: center;
    padding-top: 24px;
    margin-top: 40px;
    border-top: 1px solid #475569;
    color: #CBD5E1;
    font-size: 14px;
}

.copyright a {
    color: var(--accent-color);
    text-decoration: none;
}

.copyright a:hover {
    text-decoration: underline;
}

/* Carousel Controls - Minimalist Claymorphism */
.carousel-control-prev,
.carousel-control-next {
    width: 48px;
    height: 48px;
    background: linear-gradient(145deg, var(--primary-color), var(--primary-dark));
    border-radius: 14px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.95;
    box-shadow:
        4px 4px 10px var(--clay-shadow-dark),
        -2px -2px 6px var(--clay-shadow-light);
    border: none;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: linear-gradient(145deg, var(--primary-dark), var(--primary-color));
    opacity: 1;
    transform: translateY(-50%) scale(1.08);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 18px;
    height: 18px;
}

.carousel-indicators {
    bottom: -40px;
}

.carousel-indicators [data-bs-target] {
    background-color: #CBD5E1;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.carousel-indicators .active {
    background-color: var(--primary-color);
    width: 24px;
    border-radius: 5px;
}

/* Program Preview Modal Styles - Minimalist Claymorphism */
#programModal .modal-content {
    border: none;
    border-radius: var(--radius-clay);
    box-shadow:
        12px 12px 30px var(--clay-shadow-dark),
        -8px -8px 20px var(--clay-shadow-light);
    overflow: hidden;
}

#programModal .modal-header {
    border-bottom: none;
    background: linear-gradient(145deg, var(--navy-color), var(--navy-light));
}

#programModal .modal-footer {
    border-top: 1px solid #E2E8F0;
    background: var(--clay-bg);
}

.program-preview-container {
    box-shadow: inset 0 0 10px rgba(0,0,0,0.05);
    border-radius: 12px;
}

#programImage {
    transition: transform 0.3s ease;
}

.btn.bg-yellow {
    background: linear-gradient(145deg, #FFD166, #FFC84D);
    border: none;
    box-shadow:
        4px 4px 10px rgba(255, 179, 0, 0.3),
        -2px -2px 6px rgba(255, 255, 255, 0.5);
}

.btn.bg-yellow:hover {
    background: linear-gradient(145deg, #FFC84D, #FFD166);
    transform: translateY(-2px);
    box-shadow:
        6px 6px 14px rgba(255, 179, 0, 0.4),
        -4px -4px 10px rgba(255, 255, 255, 0.6);
}

/* Landing Page Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 32px;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .hero-area {
        padding: 120px 0 60px;
    }

    .about-section,
    .program-section,
    .features-section,
    .testimonial-section,
    .footer-section {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .program-card-title {
        font-size: 18px;
        min-height: 50px;
    }

    .testimonial-card {
        padding: 25px;
    }
}


/* ========================================
   NEWS PAGE STYLES
   ======================================== */

.news-section {
    padding: 120px 0 80px;
    background: var(--clay-bg);
}

.page-title {
    text-align: center;
    margin-bottom: 50px;
}

.page-title h1 {
    font-size: 42px;
    font-weight: 700;
    color: var(--navy-color);
}

.page-title h1 em {
    color: var(--yellow-color);
}

.news-card {
    background: var(--clay-white);
    border-radius: var(--radius-clay);
    overflow: hidden;
    box-shadow:
        8px 8px 20px var(--clay-shadow-dark),
        -8px -8px 20px var(--clay-shadow-light);
    transition: all 0.3s;
    margin-bottom: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow:
        12px 12px 28px var(--clay-shadow-dark),
        -12px -12px 28px var(--clay-shadow-light);
}

.news-card-img {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.news-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.news-card:hover .news-card-img img {
    transform: scale(1.1);
}

.news-number-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(145deg, var(--navy-color), var(--navy-light));
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    z-index: 2;
    box-shadow:
        4px 4px 10px rgba(2, 39, 93, 0.3),
        -2px -2px 6px rgba(255, 255, 255, 0.4);
}

.news-card-body {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-card-title {
    color: var(--navy-color);
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 15px;
    line-height: 1.4;
}

.news-card-date {
    color: var(--yellow-color);
    font-size: 14px;
    margin-bottom: 15px;
    font-weight: 500;
}

.news-card-date i {
    margin-right: 5px;
}

.news-card-text {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    flex: 1;
}

.news-btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(145deg, var(--navy-color), var(--navy-light));
    color: #fff;
    border-radius: var(--radius-pill);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    align-self: flex-start;
    box-shadow:
        4px 4px 12px rgba(2, 39, 93, 0.3),
        -4px -4px 12px rgba(255, 255, 255, 0.6);
}

.news-btn:hover {
    background: linear-gradient(145deg, var(--yellow-color), var(--yellow-light));
    color: #fff;
    transform: translateY(-2px);
    box-shadow:
        6px 6px 16px rgba(255, 179, 0, 0.3),
        -6px -6px 16px rgba(255, 255, 255, 0.7);
}

/* News Responsive */
@media (max-width: 768px) {
    .news-card-img {
        height: 200px;
    }

    .news-section {
        padding: 100px 0 60px;
    }
}


/* ========================================
   ARTICLE / BACA BERITA STYLES
   ======================================== */

.article-section {
    padding: 140px 0 80px;
    background: var(--clay-bg);
}

.article-card {
    background: var(--clay-white);
    border-radius: var(--radius-clay);
    padding: 40px;
    box-shadow:
        8px 8px 20px var(--clay-shadow-dark),
        -8px -8px 20px var(--clay-shadow-light);
}

.article-card img {
    width: 100%;
    border-radius: 16px;
    margin-bottom: 24px;
    box-shadow: 4px 4px 12px rgba(0,0,0,0.08);
}

.article-card h2 {
    color: var(--navy-color);
    font-weight: 700;
    margin-bottom: 16px;
}

.article-card h4 {
    color: var(--navy-color);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 22px;
}

.article-meta {
    color: var(--yellow-color);
    font-weight: 500;
    margin-bottom: 24px;
    font-size: 14px;
}

.article-meta span {
    display: inline-block;
    margin-bottom: 4px;
}

.article-body {
    color: #555;
    line-height: 1.8;
    text-align: justify;
}

.article-body p {
    margin-bottom: 16px;
}

.back-btn-section {
    padding: 20px 0 80px;
    background: var(--clay-bg);
    text-align: center;
}

.back-btn {
    display: inline-block;
    padding: 14px 36px;
    background: linear-gradient(145deg, var(--navy-color), var(--navy-light));
    color: #fff;
    border-radius: var(--radius-pill);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
    box-shadow:
        4px 4px 12px rgba(2, 39, 93, 0.3),
        -4px -4px 12px rgba(255, 255, 255, 0.6);
}

.back-btn:hover {
    background: linear-gradient(145deg, var(--yellow-color), var(--yellow-light));
    color: #fff;
    transform: translateY(-2px);
    text-decoration: none;
    box-shadow:
        6px 6px 16px rgba(255, 179, 0, 0.3),
        -6px -6px 16px rgba(255, 255, 255, 0.7);
}

/* Article Responsive */
@media (max-width: 768px) {
    .article-section {
        padding: 120px 0 60px;
    }

    .article-card {
        padding: 25px;
    }
}


/* ========================================
   PRIVACY & TERMS CONTENT STYLES
   ======================================== */

.content-section {
    padding: 120px 0 80px;
    background: var(--clay-bg);
}

.content-box {
    background: var(--clay-white);
    padding: 40px;
    border-radius: var(--radius-clay);
    box-shadow:
        8px 8px 20px var(--clay-shadow-dark),
        -8px -8px 20px var(--clay-shadow-light);
}

.content-box h5 {
    color: var(--navy-color);
    font-weight: 700;
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--yellow-color);
}

.content-box h5:first-of-type {
    margin-top: 0;
}

.content-box p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
    text-align: justify;
}

.content-box a {
    color: var(--yellow-color);
    font-weight: 600;
    text-decoration: none;
}

.content-box a:hover {
    color: var(--navy-color);
    text-decoration: underline;
}

/* Content Responsive */
@media (max-width: 768px) {
    .page-title h1 {
        font-size: 32px;
    }

    .content-section {
        padding: 100px 0 60px;
    }

    .content-box {
        padding: 25px;
    }
}
