/* ================= RESET & BASE ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: #f3e6c9;
    color: #3b2a1a;
    line-height: 1.85;
    overflow-x: hidden;
}

/* ================= NAVBAR (Sudah disamakan sempurna) ================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(60, 42, 22, 0.95);
    backdrop-filter: blur(14px);
    z-index: 1000;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    padding: 14px 5%;
    background: rgba(60, 42, 22, 0.98);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #f5d28c;
    font-weight: 700;
    font-size: 1.42rem;
}

.logo img {
    width: 54px;
    transition: transform 0.4s ease;
}

.logo:hover img {
    transform: scale(1.1) rotate(6deg);
}

.menu {
    display: flex;
    gap: 34px;
    align-items: center;
}

.menu a {
    color: #f5d28c;
    text-decoration: none;
    font-size: 15.8px;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.menu a.active,
.menu a:hover {
    color: #fff;
}

.menu a::after {
    content: "";
    position: absolute;
    bottom: -7px;
    left: 0;
    width: 0;
    height: 2.8px;
    background: #e2a33b;
    transition: width 0.4s ease;
}

.menu a:hover::after,
.menu a.active::after {
    width: 100%;
}

/* ================= BUTTON PRIMARY ================= */
.btn-primary {
    background: linear-gradient(135deg, #d4a017, #f0c14e);
    color: #3c2a14;
    padding: 13px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 5px 18px rgba(212, 160, 23, 0.35);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(212, 160, 23, 0.5);
}

/* ================= SECTION TITLE ================= */
.section-title {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 85px;
    color: #3b2a1a;
    font-weight: 700;
    position: relative;
}

.section-title::after {
    content: "";
    display: block;
    width: 110px;
    height: 6px;
    background: linear-gradient(to right, #c58b2b, #e2a33b);
    margin: 30px auto 0;
    border-radius: 4px;
}

/* ================= COMMENT SECTION ================= */
.comment-section {
    background: #fff8e6;
    padding: 170px 5% 140px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.comment-section::before {
    content: "";
    position: absolute;
    top: -150px;
    right: -180px;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(197,139,43,0.09) 0%, transparent 70%);
    z-index: 0;
}

.comment-wrapper {
    max-width: 980px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ================= FORM CARD ================= */
.comment-form-card {
    background: white;
    padding: 45px 50px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
    margin-bottom: 90px;
    transition: all 0.4s ease;
}

.comment-form-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 70px rgba(197, 139, 43, 0.15);
}

.comment-form-card h2 {
    text-align: center;
    margin-bottom: 35px;
    font-size: 2.8rem;
    color: #3b2a1a;
    font-weight: 700;
}

/* Input & Textarea */
input, textarea {
    width: 100%;
    padding: 16px 20px;
    margin-bottom: 22px;
    border-radius: 14px;
    border: 2px solid #e0d3b6;
    font-size: 1.02rem;
    background: #fffdf7;
    transition: all 0.3s ease;
    resize: vertical;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #c58b2b;
    box-shadow: 0 0 0 4px rgba(197, 139, 43, 0.18);
    background: white;
}

.submit-btn {
    display: block;
    margin: 10px auto 0;
    background: linear-gradient(135deg, #c58b2b, #e2a33b);
    color: white;
    padding: 14px 40px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 700;
    transition: all 0.4s ease;
}

.submit-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(197, 139, 43, 0.4);
}

/* ================= COMMENT TITLE ================= */
.comment-title {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 85px;
    color: #3b2a1a;
    font-weight: 700;
    position: relative;
}

.comment-title::after {
    content: "";
    display: block;
    width: 110px;
    height: 6px;
    background: linear-gradient(to right, #c58b2b, #e2a33b);
    margin: 30px auto 0;
    border-radius: 4px;
}

/* ================= COMMENT CARD ================= */
.comment-card {
    background: white;
    padding: 28px 32px;
    border-radius: 20px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.14);
    margin-bottom: 28px;
    display: flex;
    gap: 22px;
    transition: all 0.4s ease;
}

.comment-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 60px rgba(197, 139, 43, 0.18);
}

.comment-avatar {
    min-width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c58b2b, #e2a33b);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.45rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(197, 139, 43, 0.3);
}

.comment-content h4 {
    margin-bottom: 8px;
    font-size: 1.22rem;
    color: #3b2a1a;
    font-weight: 600;
}

.comment-content p {
    color: #4b3a24;
    line-height: 1.75;
    margin-bottom: 10px;
    font-size: 1.03rem;
}

.comment-content small {
    color: #8b7355;
    font-size: 0.92rem;
}

/* ================= FOOTER ================= */
.footer {
    background: #3c2a14;
    color: white;
    padding: 95px 5% 45px;
    margin-top: 90px;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    gap: 55px;
    flex-wrap: wrap;
}

.footer-left, .footer-center, .footer-right {
    flex: 1;
    min-width: 260px;
}

.footer-left img {
    width: 90px;
    margin-bottom: 20px;
}

.footer-left p {
    color: #ccc;
    font-size: 0.98rem;
    line-height: 1.75;
}

.footer-center h3,
.footer-right h3 {
    margin-bottom: 24px;
    color: #f5d28c;
    font-size: 1.28rem;
}

.footer-center ul {
    list-style: none;
}

.footer-center ul li {
    margin-bottom: 13px;
}

.footer-center ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-center ul li a:hover {
    color: #f5d28c;
}

.footer-right p {
    color: #ccc;
    margin-bottom: 11px;
    font-size: 0.98rem;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.13);
    margin-top: 65px;
    padding: 28px 0 15px;
    font-size: 0.93rem;
    color: #aaa;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
    .comment-form-card {
        padding: 35px 30px;
    }
    
    .comment-card {
        flex-direction: column;
        gap: 18px;
    }
    
    .comment-avatar {
        width: 48px;
        height: 48px;
        font-size: 1.3rem;
    }
    
    .comment-title {
        font-size: 2.9rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 16px 5%;
    }
    
    .comment-section {
        padding: 130px 5% 110px;
    }
}

@media (max-width: 600px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 45px;
    }
}