/* Driver Management Page Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #3b82f6;
    --primary-dark: #1d4ed8;
    --accent: #10b981;
    --bg-dark: #0f172a;
    --bg-card: rgba(30, 41, 59, 0.7);
    --text-main: #f8fafc;
    --text-dim: #94a3b8;
    --glass-border: rgba(255, 255, 255, 0.08);
}

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

body{
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

.glass, .glass.e-con {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
}
.glass.e-con .elementor-heading-title{
    color: var(--text-main);
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    color: var(--text-main);
}

.container section {
    padding: 100px 0;
}

.section-label,  .section-label.elementor-widget-heading .elementor-heading-title {
    display: inline-block;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.container .elementor-widget-heading h2.elementor-heading-title{
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 2rem;
    letter-spacing: -1px;
    color: var(--text-main);
}

/* Hero Section */
.container header {
    min-height: 80vh;
    display: flex;
    align-items: center;
    gap: 4rem;
    padding-top: 50px;
}

.hero-content {
    flex: 1;
}

.hero-title, .hero-title.elementor-widget-heading .elementor-heading-title {
    font-size: 4.5rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff 0%, #94a3b8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle, .hero-subtitle.elementor-widget-heading .elementor-heading-title {
    font-size: 1.25rem;
    color: var(--text-dim);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-visual {
    flex: 1;
    position: relative;
}

.safety-card {
    padding: 2rem;
    width: 350px;
    position: relative;
    z-index: 2;
}

.score-display {
    text-align: center;
    margin: 2rem 0;
}

.score-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 8px solid var(--accent);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.2);
}

.score-num {
    font-size: 3rem;
    font-weight: 800;
    color: white;
}

.score-label-inner {
    font-size: 0.8rem;
    color: var(--accent);
    font-weight: 600;
}

/* Feature Grids */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    padding: 2.5rem;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.feature-card p {
    color: var(--text-dim);
    font-size: 0.95rem;
}

/* Training Section */
.training-row {
    display: flex;
    align-items: center;
    gap: 5rem;
}

.training-content {
    flex: 1;
}

.training-visual {
    flex: 1;
}

.video-mockup {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 20px;
    background: #000;
    position: relative;
    overflow: hidden;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* Stats */
.stats-banner {
    display: flex;
    justify-content: space-around;
    padding: 4rem 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    margin-top: 4rem;
}

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

.stat-value {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent);
}

.stat-desc {
    color: var(--text-dim);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

@media (max-width: 968px) {
    .container header, .training-row { flex-direction: column; text-align: center; }
    .hero-title { font-size: 3rem; }
    .hero-subtitle { margin: 0 auto 2rem; }
}
