* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to top, #faf1fd, #f9dd8a);
    color: #333;
    min-height: 100vh;
    width: 100%;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 40px;
    position: sticky;
    top: 0;
    z-index: 100;

    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.logo {
    font-size: 18px;
    font-weight: 700;
    color: #4b3f72;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 25px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    font-weight: 500;
    color: #4b3f72;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #f9dd8a;
}

.btn-nav {
    padding: 8px 18px;
    border-radius: 20px;
    background: #f1be73;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
}

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

/* HEADER */
.header-section {
    text-align: center;
    margin-bottom: 40px;
}

.header-section h1 {
    font-size: 32px;
    margin-bottom: 10px;
    color: #4b3f72;
}

.view-more {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #f1be73;
    cursor: pointer;
}

/* FORM */
.glass-card {
    padding: 30px;
    border-radius: 25px;

    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.05);
}

.form-container {
    max-width: 700px;
    margin: 0 auto 60px;
}

.form-container h3 {
    margin-bottom: 20px;
    color: #4b3f72;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #888;
}

input,
textarea {
    width: 100%;
    padding: 12px;
    border-radius: 12px;

    border: 1px solid #e2e8f0;
    background: #fdfdfd;
    font-family: inherit;
    outline: none;

    transition: 0.3s;
}

input:focus,
textarea:focus {
    border-color: #f1be73;
    box-shadow: 0 0 0 4px rgba(75, 63, 114, 0.1);
}

.btn-submit {
    width: 100%;
    margin-top: 10px;
    padding: 15px;
    border: none;
    border-radius: 12px;

    background: #f1be73;
    color: #fff;
    font-weight: 600;
    cursor: pointer;

    transition: 0.3s;
}

.btn-submit:hover {
    color: #f9dd8a;
    transform: translateY(-2px);
}

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

.testi-card {
    padding: 25px;
    border-radius: 20px;

    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);

    transition: all 0.3s ease;

    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.6s ease forwards;
}

.testi-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.testi-card::before {
    content: "";
    display: block;
    width: 40px;
    height: 4px;
    background: #f1be73;
    border-radius: 10px;
    margin-bottom: 15px;
}

/* animasi */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* header for testi */
.testi-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.testi-name {
    font-weight: 600;
    font-size: 16px;
    color: #4b3f72;
}

.testi-stars {
    font-size: 14px;
    color: #f1be73;
}

.testi-date {
    margin-top: 4px;
    font-size: 11px;
    color: #aaa;
}

.testi-text {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
}