/* ============================================
   STYLE4.CSS - HR PARTNER PAGE STYLING (Clean Facility Edition)
   ============================================ */

:root {
    /* Clean Facility Blue meets Talent Gold */
    --primary-dark: #0f172a;
    --card-bg: #1e293b;
    --text-light: #f8fafc;
    --text-muted: #94a3b8;
    --gold-accent: #d4af37; /* CV Talent Partners Gold */
    --blue-accent: #2563eb; /* Clean Facility Blau */
    --gradient: linear-gradient(135deg, var(--blue-accent), var(--gold-accent));
    --shadow: 0 20px 50px rgba(0,0,0,0.3);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--primary-dark);
    color: var(--text-light);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Cursor Customization */
.cursor-dot {
    width: 8px; height: 8px; background: var(--gold-accent);
    position: fixed; border-radius: 50%; z-index: 9999; pointer-events: none;
}
.cursor-outline {
    width: 40px; height: 40px; border: 2px solid var(--gold-accent);
    position: fixed; border-radius: 50%; z-index: 9999; pointer-events: none;
    transform: translate(-50%, -50%); transition: all 0.1s ease;
}

/* Wrapper */
.partner-wrapper {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
    background: radial-gradient(circle at 10% 10%, rgba(37, 99, 235, 0.1), transparent 40%);
}

.partner-card {
    background: var(--card-bg);
    max-width: 1000px;
    width: 100%;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow);
    overflow: hidden;
    position: relative;
    animation: slideUp 0.8s cubic-bezier(0.2, 1, 0.3, 1) forwards;
}

/* Header Section */
.partner-header {
    text-align: center;
    padding: 4rem 2rem 2rem;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.8), var(--card-bg));
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 2rem;
}

.ma-logo, .cv-logo {
    font-weight: 900;
    font-size: 1.5rem;
    width: 70px; height: 70px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 15px;
    color: white;
}

.ma-logo { background: var(--blue-accent); box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3); }
.cv-logo { background: transparent; border: 2px solid var(--gold-accent); color: var(--gold-accent); box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1); }

.partner-icon { font-size: 1.5rem; color: var(--text-muted); }

.partner-header h1 {
    font-size: 3rem;
    background: linear-gradient(to right, #fff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.partner-header .subtitle {
    color: var(--gold-accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    font-size: 0.9rem;
}

/* Content Grid */
.partner-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    padding: 4rem;
}

.info-text h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: white;
}

.info-text p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.highlight-box {
    background: rgba(255, 255, 255, 0.03);
    border-left: 4px solid var(--gold-accent);
    padding: 1.5rem;
    border-radius: 0 15px 15px 0;
    margin: 2rem 0;
}

.highlight-box strong { color: var(--gold-accent); }

/* Sidebar Info */
.partner-sidebar {
    background: rgba(15, 23, 42, 0.5);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.sidebar-item { margin-bottom: 2rem; }
.sidebar-item h3 { font-size: 1rem; color: var(--text-light); margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.sidebar-item h3 i { color: var(--gold-accent); }
.sidebar-item p, .sidebar-item a { color: var(--text-muted); font-size: 0.95rem; text-decoration: none; display: block; margin-bottom: 5px;}
.sidebar-item a:hover { color: var(--blue-accent); }

.cta-btn {
    display: block;
    width: 100%;
    padding: 1rem;
    background: var(--gold-accent);
    color: var(--primary-dark);
    text-align: center;
    border-radius: 12px;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    transition: transform 0.3s;
}
.cta-btn:hover { transform: translateY(-3px); background: #fff; }

/* Footer Link */
.footer-back {
    text-align: center;
    padding: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.back-link {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.back-link:hover { color: var(--blue-accent); }

@keyframes slideUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
    .partner-content { grid-template-columns: 1fr; padding: 2rem; }
    .partner-header h1 { font-size: 2rem; }
    .partner-wrapper { padding: 20px 10px; }
}