/* Main Website Styles - The Mystery Of Java Island */

/* CSS Variables */
:root {
    --primary-green: #4caf50;
    --dark-green: #0a1a0a;
    --medium-green: #0d2d0d;
    --light-green: #e8f5e8;
    --accent-green: #45a049;
    --text-primary: #ffffff;
    --text-secondary: #e8f5e8;
    --border-color: rgba(76, 175, 80, 0.3);
    --shadow-green: rgba(76, 175, 80, 0.3);
    --shadow-dark: rgba(10, 26, 10, 0.95);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #ffffff;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    min-height: 100vh;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 26, 10, 0.4), rgba(13, 45, 13, 0.6));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
    padding: 0 20px;
}

.hero-title {
    color: white;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    line-height: 1.2;
    letter-spacing: -1px;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    margin-bottom: 40px;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Navigation - Transparent Style */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-logo {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    text-decoration: none;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.navbar.scrolled .nav-logo {
    color: var(--dark-green);
}

.nav-logo:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.navbar.scrolled .nav-link {
    color: var(--dark-green);
}

.nav-link:hover {
    color: var(--primary-green);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-green);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Get Started Button */
.btn-get-started {
    display: inline-block;
    padding: 18px 45px;
    background: linear-gradient(135deg, #f4e5c2, #d4af37);
    color: var(--dark-green);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-get-started::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
}

.btn-get-started:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, #d4af37, #b8941f);
}

.btn-get-started:hover::before {
    left: 100%;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin: 10px;
    cursor: pointer;
    border: none;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    color: white;
    box-shadow: 0 5px 15px var(--shadow-green);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px var(--shadow-green);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.btn-secondary:hover {
    background: var(--primary-green);
    color: white;
    transform: translateY(-3px);
}

/* Content Sections */
.section {
    padding: 80px 0;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 50px;
    text-shadow: 0 0 15px var(--shadow-green);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-green);
    border-radius: 2px;
}

/* Cards */
.card {
    background: rgba(13, 45, 13, 0.8);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 30px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-green));
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px var(--shadow-green);
    border-color: var(--primary-green);
}

.card-title {
    color: var(--primary-green);
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.card-content {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Grid Layouts */
.grid {
    display: grid;
    gap: 30px;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* Forms */
.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    color: var(--primary-green);
    margin-bottom: 8px;
    font-weight: 500;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

/* Loading Animation */
.loading {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--shadow-dark);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.loading.active {
    display: flex;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--border-color);
    border-top: 3px solid var(--primary-green);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Footer */
.footer {
    background: var(--dark-green);
    border-top: 1px solid var(--border-color);
    padding: 50px 0 20px;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    color: var(--primary-green);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-section p,
.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    line-height: 1.8;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-green);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Mobile Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.navbar.scrolled .hamburger span {
    background: var(--dark-green);
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transition: right 0.3s ease;
        z-index: 1000;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        font-size: 1.5rem;
        color: white;
    }
    
    .navbar.scrolled .nav-link {
        color: white;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 100px 0 60px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .card {
        padding: 20px;
    }

    .section {
        padding: 60px 0;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mt-4 { margin-top: 40px; }

.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mb-4 { margin-bottom: 40px; }

.p-1 { padding: 10px; }
.p-2 { padding: 20px; }
.p-3 { padding: 30px; }
.p-4 { padding: 40px; }

.fade-in { animation: fadeInUp 0.6s ease; }
.pulse { animation: pulse 2s infinite; }

/* Komentar Page Specific Styles */

/* Hero Section - Komentar */
.komentar-hero-section {
    position: relative;
    height: 50vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)),
                url('../../image/ChatGPT%20Image%20Jan%2011,%202026,%2008_03_01%20PM.png') center/cover fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.komentar-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1000px;
    padding: 0 20px;
}

.komentar-hero-title {
    color: white;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    line-height: 1.2;
}

.komentar-hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
    line-height: 1.6;
}

/* Comments Section */
.comments-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark-green), var(--medium-green));
}

.comments-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Comment Form */
.comment-form-section {
    margin-bottom: 80px;
}

.comment-form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 50px;
    position: relative;
    overflow: hidden;
}

.comment-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-green));
}

.comment-form-title {
    color: var(--primary-green);
    font-size: 2rem;
    margin-bottom: 40px;
    font-weight: 600;
    text-align: center;
}

.comment-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.comment-form-group {
    position: relative;
}

.comment-form-label {
    display: block;
    color: var(--primary-green);
    margin-bottom: 12px;
    font-weight: 500;
    font-size: 1rem;
}

.comment-form-input,
.comment-form-textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.comment-form-input:focus,
.comment-form-textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.comment-form-input::placeholder,
.comment-form-textarea::placeholder {
    color: var(--text-secondary);
    opacity: 0.7;
}

.comment-form-textarea {
    resize: vertical;
    min-height: 150px;
}

.comment-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.comment-form-submit {
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.comment-form-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
}

.comment-form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--shadow-green);
}

.comment-form-submit:hover::before {
    left: 100%;
}

.comment-form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Comments List */
.comments-list-section {
    margin-top: 80px;
}

.comments-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.comments-title {
    color: var(--primary-green);
    font-size: 2.5rem;
    font-weight: 600;
}

.comments-count {
    background: var(--primary-green);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 600;
}

/* Sort Options */
.comments-sort {
    display: flex;
    gap: 15px;
    align-items: center;
}

.sort-label {
    color: var(--text-secondary);
    font-weight: 500;
}

.sort-select {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 8px 15px;
    color: var(--text-primary);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sort-select:focus {
    outline: none;
    border-color: var(--primary-green);
}

/* Comments Grid */
.comments-grid {
    display: grid;
    gap: 40px;
}

/* Comment Card */
.comment-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.comment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-green), var(--accent-green));
}

.comment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px var(--shadow-green);
    border-color: var(--primary-green);
}

.comment-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.comment-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    flex-shrink: 0;
}

.comment-author-info {
    flex: 1;
}

.comment-author {
    color: var(--primary-green);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.comment-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.comment-date {
    display: flex;
    align-items: center;
    gap: 5px;
}

.comment-rating {
    display: flex;
    gap: 2px;
}

.star {
    color: var(--gold-subtle);
    font-size: 0.9rem;
}

.star.filled {
    color: var(--gold-subtle);
}

.star.empty {
    color: var(--text-secondary);
    opacity: 0.5;
}

.comment-actions {
    display: flex;
    gap: 15px;
}

.comment-action {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.comment-action:hover {
    color: var(--primary-green);
}

.comment-action.like:hover {
    color: #e74c3c;
}

.comment-content {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 25px;
}

.comment-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.comment-replies {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.comment-share {
    display: flex;
    gap: 10px;
}

.share-btn {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.share-btn:hover {
    background: var(--primary-green);
    color: white;
    border-color: var(--primary-green);
    transform: translateY(-2px);
}

/* Reply Section */
.reply-section {
    margin-top: 30px;
    padding-left: 80px;
    display: none;
}

.reply-section.active {
    display: block;
}

.reply-form {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 30px;
}

.reply-form-textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    resize: vertical;
    min-height: 100px;
    margin-bottom: 20px;
}

.reply-form-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.btn-reply,
.btn-cancel {
    padding: 10px 25px;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-reply {
    background: var(--primary-green);
    color: white;
}

.btn-reply:hover {
    background: var(--accent-green);
    transform: translateY(-2px);
}

.btn-cancel {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
}

.btn-cancel:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--primary-green);
}

/* Replies List */
.replies-list {
    margin-top: 30px;
    padding-left: 80px;
}

.reply-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
}

.reply-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.reply-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent-green), var(--primary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    font-weight: 600;
}

.reply-author {
    color: var(--primary-green);
    font-weight: 600;
    margin-bottom: 3px;
}

.reply-date {
    color: var(--text-secondary);
    font-size: 0.8rem;
}

.reply-content {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Pagination */
.comments-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 60px;
}

.pagination-btn {
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.pagination-btn:hover {
    background: var(--primary-green);
    color: white;
    border-color: var(--primary-green);
    transform: translateY(-2px);
}

.pagination-btn.active {
    background: var(--primary-green);
    color: white;
    border-color: var(--primary-green);
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Loading State */
.comments-loading {
    text-align: center;
    padding: 60px 20px;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--border-color);
    border-top: 3px solid var(--primary-green);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

.loading-text {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Empty State */
.comments-empty {
    text-align: center;
    padding: 80px 20px;
}

.empty-icon {
    font-size: 4rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    opacity: 0.5;
}

.empty-title {
    color: var(--primary-green);
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.empty-description {
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto;
}

/* Success Message */
.success-message {
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
    color: var(--primary-green);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    text-align: center;
    font-size: 1.1rem;
    display: none;
}

.success-message.show {
    display: block;
    animation: fadeInUp 0.5s ease;
}

/* Error Message */
.error-message {
    background: rgba(244, 67, 54, 0.1);
    border: 1px solid rgba(244, 67, 54, 0.3);
    color: #f44336;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    text-align: center;
    font-size: 1.1rem;
    display: none;
}

.error-message.show {
    display: block;
    animation: fadeInUp 0.5s ease;
}

/* Responsive Design for Comments */
@media (max-width: 768px) {
    .comment-form-wrapper {
        padding: 35px 25px;
    }
    
    .comment-form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .comments-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .comments-sort {
        justify-content: center;
    }
    
    .comment-card {
        padding: 30px 25px;
    }
    
    .comment-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .comment-author-info {
        width: 100%;
    }
    
    .comment-footer {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .reply-section,
    .replies-list {
        padding-left: 40px;
    }
    
    .comment-form-actions {
        flex-direction: column;
    }
    
    .btn-reply,
    .btn-cancel {
        width: 100%;
        text-align: center;
    }
    
    .komentar-hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .comment-form-wrapper {
        padding: 30px 20px;
    }
    
    .comment-form-title,
    .comments-title {
        font-size: 1.5rem;
    }
    
    .comment-card {
        padding: 25px 20px;
    }
    
    .comment-avatar {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .reply-section,
    .replies-list {
        padding-left: 20px;
    }
    
    .reply-item {
        padding: 20px 15px;
    }
    
    .komentar-hero-title {
        font-size: 2rem;
    }
}

/* About Section Styles */
.about-section {
    padding: 100px 0;
    background: linear-gradient(to right, #ffffff 60%, #e8f5e6 100%);
    color: #343a40;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

.about-text .section-title {
    color: #2c3e50;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: -1px;
    line-height: 1;
}

.about-subtitle {
    color: #16a085;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.1;
}

.about-text p {
    color: #5d6d7e;
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 20px;
    text-align: left;
    font-weight: 400;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-text p b {
    color: #2c3e50;
    font-weight: 700;
}

/* Responsive Design for About Section */
@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
        background: linear-gradient(to right, #ffffff 70%, #e8f5e6 100%);
    }
    
    .about-content {
        padding: 0 20px;
    }
    
    .about-text .section-title {
        font-size: 2.2rem;
        text-align: center;
    }
    
    .about-subtitle {
        font-size: 1.6rem;
        text-align: center;
        margin-bottom: 25px;
    }
    
    .about-text p {
        font-size: 0.95rem;
        text-align: left;
    }
    
    /* Hero Section Mobile Responsive */
    .hero-section {
        height: 100vh;
        min-height: 600px;
        background-attachment: scroll;
        background-size: cover;
        background-position: center;
    }
    
    .hero-content {
        padding: 0 20px;
        max-width: 100%;
    }
    
    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
        margin-bottom: 20px;
        line-height: 1.1;
    }
    
    .hero-content h2 {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
        margin-bottom: 30px;
        padding: 0 10px;
    }
    
    .btn-get-started {
        padding: 12px 30px;
        font-size: 1rem;
        margin: 0 auto;
    }
}
