/* ==========================================
   RAJAART MASTER STYLESHEET
   Compatible for: index.html, request.html, freefiles.html
   ========================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

body {
    background-color: #0d1117;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px 15px;
}

/* Container utama universal */
.profile-container, .request-container {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
}

/* ==========================================
   HEADER & PROFILE SECTION
   ========================================== */
.profile-header {
    text-align: center;
    margin-bottom: 25px;
}

.brand-logo-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #30363d;
    margin-bottom: 12px;
}

.brand-name {
    font-size: 1.6rem;
    font-weight: 700;
}

.tagline {
    font-size: 0.9rem;
    color: #8b949e;
    margin-bottom: 15px;
}

.brand-description {
    font-size: 0.85rem;
    color: #c9d1d9;
    line-height: 1.5;
    background: #161b22;
    padding: 15px;
    border-radius: 12px;
    border: 1px solid #30363d;
    text-align: center;
}

.section-title {
    font-size: 0.75rem;
    font-weight: 700;
    color: #8b949e;
    text-align: left;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

/* ==========================================
   CARDS & LINKS (INDEX & GENERAL)
   ========================================== */
.social-links, .other-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}

.social-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #161b22;
    color: #fff;
    text-decoration: none;
    padding: 14px 18px;
    border-radius: 12px;
    border: 1px solid #30363d;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s ease-in-out;
}

.social-card i {
    font-size: 1.3rem;
    width: 25px;
}

.social-card:hover {
    transform: translateY(-2px);
    border-color: #58a6ff;
    background: #1c2128;
}

/* Color Accents */
.whatsapp i { color: #25D366; }
.wa-channel i { color: #128C7E; }
.telegram i { color: #0088cc; }
.instagram i { color: #E1306C; }
.other-card i { color: #58a6ff; }
.ai-card { border-color: #a855f7; }
.ai-card i { color: #a855f7; }

/* ==========================================
   PAGE: FORM REQUEST & FEEDBACK (request.html)
   ========================================== */
.request-container h2 {
    font-size: 1.3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #fff;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
    text-align: left;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #c9d1d9;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    background: #161b22;
    border: 1px solid #30363d;
    border-radius: 10px;
    color: #ffffff;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s;
}

.form-group select option {
    background: #161b22;
    color: #fff;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    border-color: #58a6ff;
}

.btn-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px;
    background: #238636;
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    text-align: center;
}

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

.btn-back {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-top: 15px;
    padding: 12px;
    background: transparent;
    color: #8b949e;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 10px;
    border: 1px solid #30363d;
    transition: all 0.2s;
}

.btn-back:hover {
    color: #fff;
    border-color: #8b949e;
    background: #161b22;
}

/* ==========================================
   PAGE: FREE FILES DIRECTORY (freefiles.html)
   ========================================== */
.file-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: #161b22;
    padding: 16px;
    border-radius: 12px;
    border: 1px solid #30363d;
    text-align: left;
    transition: transform 0.2s, border-color 0.2s;
}

.file-card:hover {
    border-color: #58a6ff;
    transform: translateY(-2px);
}

.file-header-info {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.file-badge {
    background: rgba(56, 139, 253, 0.15);
    color: #58a6ff;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 20px;
    border: 1px solid rgba(56, 139, 253, 0.4);
    letter-spacing: 0.5px;
}

.file-info h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
}

.file-info p {
    font-size: 0.8rem;
    color: #8b949e;
    line-height: 1.4;
}

.btn-file-download {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 10px;
    background: #21262d;
    color: #58a6ff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 8px;
    border: 1px solid #30363d;
    transition: all 0.2s;
}

.btn-file-download:hover {
    background: #58a6ff;
    color: #0d1117;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer-section {
    text-align: center;
    font-size: 0.75rem;
    color: #484f58;
    margin-top: 20px;
}
