/* ===== VARIABLE & RESET ===== */
:root {
    --primary: #2c6fbb;
    --primary-dark: #1a4f8c;
    --primary-light: #e8f2fc;
    --secondary: #4caf50;
    --accent: #ff9800;
    --light: #f8f9fa;
    --dark: #343a40;
    --gray: #6c757d;
    --light-gray: #e9ecef;
    --danger: #e53935;
    --success: #43a047;
    --warning: #ffb300;
    --border-radius: 8px;
    --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}

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

/* Navigation Buttons Styling */
.navigation-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
}

.right-buttons {
    margin-left: auto;
}

/* rekap.css */
.table th {
    vertical-align: middle;
    text-align: center;
}

.table td {
    vertical-align: middle;
}

.badge {
    font-size: 1rem;
    padding: 0.5rem 0.8rem;
}

/* Tambahkan di file app.css atau dalam tag style di head */
.table {
    width: 100%;
    margin-bottom: 1rem;
    background-color: transparent;
    border-collapse: collapse;
}

.table th,
.table td {
    padding: 0.2rem;
    vertical-align: center;
    text-align: center;
    border-top: 1px solid #dee2e6;
}

.table thead th {
    vertical-align: center;
    border-bottom: 2px solid #dee2e6;
}

.table tbody+tbody {
    border-top: 2px solid #dee2e6;
}

.table-bordered {
    border: 1px solid #dee2e6;
}


.table-bordered th,
.table-bordered td {
    border: 1px solid #dee2e6;
}

.table-bordered thead th,
.table-bordered thead td {
    border-bottom-width: 2px;
}

.table-hover tbody tr:hover {
    background-color: rgba(0, 0, 0, 0.075);
}

.thead-dark th {
    color: #fff;
    background-color: #343a40;
    border-color: #454d55;
}

.badge {
    display: inline-block;
    padding: 0.25em 0.4em;
    font-size: 125%;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.25rem;
}

.badge-primary {
    color: #fff;
    background-color: #007bff;
}

/* Untuk mobile: tombol menumpuk jika perlu */
@media (max-width: 576px) {
    .navigation-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .right-buttons {
        margin-left: 0;
        width: 100%;
        text-align: right;
    }

    /* Atur agar kolom aksi tidak menggunakan pseudo element */
    td:nth-child(7):before {
        display: none;
    }

    .mobile-actions {
        display: flex;
        justify-content: center;
        gap: 0.5rem;
        margin-top: 0.5rem;
        width: 100%;
    }

}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f5f8fd;
    color: #333;
    line-height: 1.6;
    min-height: 100vh;
    background-image: linear-gradient(135deg, #f5f7fa 0%, #e4edf9 100%);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--primary-dark);
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

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

.text-center {
    text-align: center;
}

/* ===== HEADER & NAVIGATION ===== */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.nav-links a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

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

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center; /* Pusatkan konten vertikal di dalam tombol */
    justify-content: center; /* Pusatkan horizontal */
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
    text-decoration: none; /* Untuk link yang menjadi tombol */
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 12px rgba(44, 111, 187, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(44, 111, 187, 0.4);
}

.btn-secondary {
    background: var(--secondary);
    color: white;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.btn-secondary:hover {
    background: var(--secondary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(44, 111, 187, 0.4);
}

.btn-success {
    background: var(--success);
    color: white;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.btn-success:hover {
    background: var(--success-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(44, 111, 187, 0.4);
}

.btn-danger {
    background: var(--danger);
    color: white;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.btn-danger:hover {
    background: var(--danger-dark); /* Warna merah yang lebih gelap saat hover */
    transform: translateY(-3px); /* Efek angkat seperti tombol lain */
    box-shadow: 0 6px 15px rgba(198, 40, 40, 0.4); /* Shadow yang lebih kuat saat hover */
    color: white; /* Pastikan teks tetap putih */
}

.btn-sm {
    padding: 6px 14px;
    font-size: 0.85rem;
}

.btn-accent {
    background: var(--accent);
    color: white;
    box-shadow: 0 4px 12px rgba(255, 152, 0, 0.3);
}

.btn-accent:hover {
    background: #e68a00;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(255, 152, 0, 0.4);
}

.btn-info {
    background: var(--info);
    color: white;
    box-shadow: 0 4px 8px rgba(23, 162, 184, 0.2);
}

.btn-info:hover {
    background: var(--info-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(23, 162, 184, 0.3);
}

.btn-lg {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* ===== CARD ===== */
.card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 30px;
    margin-bottom: 30px;
    transition: var(--transition);
    border: 1px solid rgba(44, 111, 187, 0.1);
}

.card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

/* ===== HERO SECTION (Welcome Page) ===== */
.hero {
    padding: 80px 0 50px;
}

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

.hero h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero h1 span {
    color: var(--primary);
}

.hero p {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-image {
    max-width: 100%;
    height: auto;
    margin: 50px auto 0;
    display: block;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

/* ===== FEATURES SECTION (Welcome Page) ===== */
.section {
    padding: 40px 0;
}

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

.section-title h2 {
    font-size: 2.2rem;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
}

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

.feature-card {
    text-align: center;
    padding: 30px;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow);
    background: white;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-light);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--primary);
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

/* ===== TEST PAGE ===== */
.test-container {
    max-width: 800px;
    margin: 50px auto;
}

.question-card {
    margin-bottom: 25px;
}

.question-text {
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 500;
    color: var(--dark);
}

.options-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.option-item {
    padding: 15px 20px;
    background: white;
    border-radius: var(--border-radius);
    border: 2px solid var(--light-gray);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 15px;
}

.option-item:hover {
    border-color: var(--primary);
    transform: translateX(5px);
}

.option-item.selected {
    border-color: var(--primary);
    background: var(--primary-light);
}

.option-letter {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.option-text {
    flex: 1;
}

.progress-container {
    margin: 30px 0;
}

.progress-bar {
    height: 10px;
    background: var(--light-gray);
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-fill {
    height: 100%;
    background: var(--primary);
    transition: width 0.4s ease;
}

.progress-text {
    font-size: 0.9rem;
    color: var(--gray);
    text-align: right;
}

.navigation-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

/* ===== RESULTS PAGE ===== */
.participant-info {
    background: rgba(44, 111, 187, 0.05);
    border-radius: var(--border-radius);
    padding: 15px;
    margin-bottom: 25px;
    text-align: center;
    border-left: 4px solid var(--primary);
}

.participant-info p {
    font-size: 1.1rem;
    color: var(--dark);
    font-weight: 500;
}

.top-three {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 25px 0;
}

.top-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 25px 15px;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    position: relative;
    transition: var(--transition);
    border: 2px solid transparent;
}

.top-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.top-item h3 {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 10px;
}

.top-item h4 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.top-item .score {
    font-size: 1.1rem;
    color: var(--secondary);
    font-weight: bold;
    background: rgba(76, 175, 80, 0.1);
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
}

.top-item:first-child:after {
    content: "🥇";
    position: absolute;
    top: -15px;
    right: -15px;
    font-size: 32px;
    background: gold;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    line-height: 45px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.top-item:nth-child(2):after {
    content: "🥈";
    position: absolute;
    top: -15px;
    right: -15px;
    font-size: 32px;
    background: silver;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    line-height: 45px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.top-item:nth-child(3):after {
    content: "🥉";
    position: absolute;
    top: -15px;
    right: -15px;
    font-size: 32px;
    background: #cd7f32;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    line-height: 45px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.personality-section {
    margin: 40px 0;
}

.code-highlight {
    font-weight: 800;
    color: var(--primary-dark);
    font-size: 1.2rem;
    letter-spacing: 3px;
    background: rgba(44, 111, 187, 0.1);
    padding: 5px 15px;
    border-radius: 8px;
    display: inline-block;
    border: 2px dashed var(--primary);
}
.code-text {
    font-weight: 200;
    color: var(--primary-dark);
    font-size:0.2rem;
    letter-spacing: 3px;
    background: rgba(44, 111, 187, 0.1);
    padding: 5px 15px;
    border-radius: 8px;
    display: inline-block;
    border: 2px dashed var(--primary);
}

.combination-box {
    background: rgba(255, 152, 0, 0.08);
    padding: 25px;
    border-radius: var(--border-radius);
    margin-bottom: 30px;
    border-left: 5px solid var(--accent);
}

.combination-box p {
    font-size: 1.1rem;
    color: var(--dark);
    line-height: 1.8;
}

.individual-box {
    padding: 20px;
    margin: 20px 0;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--secondary);
    transition: var(--transition);
}

.individual-box:hover {
    transform: translateX(5px);
}

.individual-box strong {
    color: var(--secondary);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.individual-box p {
    color: var(--dark);
    font-size: 1.05rem;
}

.categories-section {
    margin: 30px 0;
}

.category-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    margin: 12px 0;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border-left: 4px solid var(--light-gray);
}

.category-box.top-category {
    border-left: 4px solid var(--primary);
    background: rgba(44, 111, 187, 0.05);
    font-weight: 500;
}

.category-box:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.category-box strong {
    color: var(--primary);
}

.footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--light-gray);
    text-align: center;
    color: var(--gray);
    font-size: 0.95rem;
}

.trust-badge {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
}

.badge-icon {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

/* ===== FOOTER ===== */
.main-footer {
    background: var(--dark);
    color: white;
    padding: 40px 0 20px;
    margin-top: 80px;
}

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

.footer-column h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--light-gray);
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--light-gray);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .top-three {
        flex-direction: column;
        align-items: center;
    }

    .top-item {
        min-width: 100%;
        max-width: 350px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.animate-fade {
    animation: fadeIn 0.6s ease-out forwards;
}

.animate-pulse {
    animation: pulse 2s infinite ease-in-out;
}

/* ===== WELCOME PAGE ENHANCEMENTS ===== */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 80px 0;
    border-radius: var(--border-radius);
    margin: 50px 0;
    text-align: center;
    box-shadow: var(--box-shadow);
}

.cta-section h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.testimonial-section {
    margin: 80px 0;
}

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

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    position: relative;
    border-top: 4px solid var(--accent);
}

.testimonial-card:before {
    content: "";
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 5rem;
    color: var(--primary-light);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-content {
    margin-top: 40px;
    font-style: italic;
    color: var(--dark);
}

.testimonial-author {
    margin-top: 20px;
    font-weight: 600;
    color: var(--primary);
}

/* ===== TEST PAGE ENHANCEMENTS ===== */
.instructions-box {
    background: var(--primary-light);
    border-radius: var(--border-radius);
    padding: 20px;
    margin-bottom: 30px;
    border-left: 4px solid var(--primary);
}

.instructions-box ul {
    padding-left: 20px;
    margin: 15px 0;
}

.instructions-box li {
    margin-bottom: 10px;
}

.question-counter {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.question-counter:before {
    content: "";
    display: inline-block;
    width: 24px;
    height: 24px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%232c6fbb"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 17h2v2h-2v-2zm2.07-7.75l-.9.92C12.45 12.9 12 13.5 12 15h-2v-.5c0-1.1.45-2.1 1.17-2.83l1.24-1.26c.37-.36.59-.86.59-1.41 0-1.1-.9-2-2-2s-2 .9-2 2H8c0-2.21 1.79-4 4-4s4 1.79 4 4c0 .88-.36 1.68-.93 2.25z"/></svg>');
}

.timer-container {
    background: rgba(255, 152, 0, 0.1);
    border-radius: var(--border-radius);
    padding: 15px;
    text-align: center;
    margin: 20px 0;
    border: 1px solid rgba(255, 152, 0, 0.3);
}

.timer {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    font-family: 'Poppins', sans-serif;
}

/* ===== RESULTS PAGE ENHANCEMENTS ===== */
.recommendations-section {
    margin: 50px 0;
}

.recommendation-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

.recommendation-header {
    background: var(--primary);
    color: white;
    padding: 20px;
    text-align: center;
}

.recommendation-body {
    padding: 25px;
}

.recommendation-body ul {
    padding-left: 20px;
    margin: 15px 0;
}

.recommendation-body li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 30px;
}

.recommendation-body li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--secondary);
    font-weight: bold;
}

.download-section {
    text-align: center;
    margin: 50px 0;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--secondary);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
    transition: var(--transition);
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.4);
    background: #3d8b40;
}

/* ===== FOOTER ===== */
.main-footer {
    background: var(--dark);
    color: white;
    padding: 60px 0 30px;
    margin-top: 80px;
}

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

.footer-column h3 {
    color: white;
    margin-bottom: 25px;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: var(--light-gray);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a:before {
    content: "→";
    color: var(--accent);
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-links a:hover:before {
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--primary);
    transform: translateY(-5px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    margin-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--light-gray);
    font-size: 0.95rem;
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.4rem;
    }

    .section {
        padding: 70px 0;
    }
}

@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .hero {
        padding: 60px 0 30px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }

    .section-title h2 {
        font-size: 1.6rem;
    }

    .top-item {
        min-width: 100%;
    }

    .code-highlight {
        font-size: 1.8rem;
    }

    .recommendation-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    body {
        background: white;
        color: black;
        padding: 0;
    }

    .navbar,
    .footer,
    .download-section,
    .trust-badge {
        display: none;
    }

    .card {
        box-shadow: none;
        border: none;
        padding: 0;
        margin: 0;
    }

    .participant-info {
        border-left: 3px solid var(--primary);
    }

    .page-break {
        page-break-before: always;
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid #ccc;
    }
}
