.profile-container {
    display: flex;
    min-height: 100vh;
    background: #111;
    color: white;
}

/* Background Image Side */
.profile-visual {
    flex: 1;
    background: linear-gradient(to right, rgba(17,17,17,0), rgba(17,17,17,1)), 
                url('heavy-duty-tipper.jpg'); /* Use a photo of your 30-wheeler */
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 40px;
}

.stat-overlay {
    display: flex;
    gap: 30px;
    background: rgba(255, 204, 0, 0.9);
    padding: 20px;
    border-radius: 4px;
}

.stat-item .number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #111;
}

.stat-item .label {
    color: #333;
    font-size: 0.8rem;
    text-transform: uppercase;
}

/* Content Side */
.profile-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tag {
    color: #ffcc00;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
}

.profile-header h1 {
    font-size: 3.5rem;
    margin: 10px 0 30px 0;
}

.lead {
    font-size: 1.3rem;
    color: #ccc;
    margin-bottom: 40px;
}

.expertise-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.exp-card {
    background: #222;
    padding: 20px;
    border-top: 4px solid #ffcc00;
}

.exp-card h3 {
    margin-bottom: 10px;
    color: #ffcc00;
}

.btn-primary {
    background: #ffcc00;
    color: #111;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    margin-right: 20px;
}

.btn-secondary {
    border: 2px solid #ffcc00;
    color: #ffcc00;
    padding: 13px 30px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .profile-container { flex-direction: column; }
    .profile-visual { height: 40vh; }
    .profile-content { padding: 40px 20px; }
    .profile-header h1 { font-size: 2.5rem; }
    .expertise-grid { grid-template-columns: 1fr; }
}
