/* Styling Group Tombol */
.cta-group {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.btn {
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

/* Gaya Tombol Primary (CV) */
.btn-primary {
    background: #007bff; /* Ganti dengan warna tema utamamu */
    color: white;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.6);
}

/* Gaya Tombol Secondary (License) */
.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff; /* Pastikan terlihat di background gelap */
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* --- PDF MODAL STYLING --- */
.pdf-modal-overlay {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* Gelap transparan */
    backdrop-filter: blur(8px); /* Efek blur modern */
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pdf-modal-overlay.active {
    opacity: 1;
}

.pdf-modal-content {
    background: #1a1a1a;
    width: 90%;
    max-width: 1000px;
    height: 85vh;
    border-radius: 12px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.pdf-modal-overlay.active .pdf-modal-content {
    transform: scale(1);
}

.pdf-header {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.close-btn {
    background: none;
    border: none;
    color: #aaa;
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
}

.close-btn:hover {
    color: #fff;
}

.pdf-body {
    flex: 1;
    overflow: hidden;
    background: #525659; /* Warna standar background PDF viewer */
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

iframe {
    border: none;
    display: block;
}