.category-main {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
    min-height: 100vh;
}

.category-hero {
    background: linear-gradient(-45deg, #edd566, #b59d46, #f4e473, #edd566);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    padding: 2rem 0;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
    border-radius: 0 0 25px 25px;
    box-shadow: 0 8px 32px rgba(237, 213, 102, 0.3);
    height: 180px;
    display: flex;
    align-items: center;
}

.category-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
    background-size: 200% 200%;
    animation: shimmer 3s ease-in-out infinite;
}

.category-hero-logo {
    position: absolute;
    left: 5%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.hero-logo-animated {
    width: 120px;
    height: 120px;
    object-fit: contain;
    filter: drop-shadow(0 8px 20px rgba(255, 255, 255, 0.5));
    animation: logoFloat 6s ease-in-out infinite, logoRotate 20s linear infinite;
    opacity: 0.6;
}

.category-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.breadcrumb-link {
    color: var(--header-text-dark);
    text-decoration: none;
    font-weight: 500;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

.breadcrumb-link:hover {
    background: rgba(255, 255, 255, 0.4);
    color: var(--header-text-dark);
    text-decoration: none;
    transform: translateY(-2px);
}

.breadcrumb-current {
    color: var(--header-text-dark);
    font-weight: 700;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    font-size: 0.85rem;
}

.breadcrumb-separator {
    color: var(--header-text-dark);
    font-size: 1.1rem;
    opacity: 0.7;
}

.category-hero-content {
    text-align: right;
    position: relative;
    z-index: 2;
}

.category-title {
    font-size: 3rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-family: 'Tajawal', sans-serif;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3),
                 4px 4px 16px rgba(0, 0, 0, 0.2),
                 -1px -1px 4px rgba(255, 255, 255, 0.1);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
    transform: perspective(500px) rotateX(10deg);
    background: linear-gradient(45deg, #ffffff, #f8f9fa, #ffffff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.category-description {
    font-size: 1.1rem;
    color: var(--header-text-dark);
    margin-bottom: 0;
    opacity: 0.9;
    max-width: 500px;
    position: relative;
    z-index: 2;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.filters-sidebar {
    background: linear-gradient(135deg, #ffffff, #fafafa);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(237, 213, 102, 0.1);
    margin-bottom: 2rem;
    position: sticky;
    top: 2rem;
}

.filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(237, 213, 102, 0.2);
}

.filters-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--header-text-dark);
    margin: 0;
    font-family: 'Tajawal', sans-serif;
}

.filters-title i {
    color: var(--header-primary-gold);
    font-size: 1.5rem;
}

.filters-reset {
    background: rgba(237, 213, 102, 0.1);
    border: 2px solid var(--header-primary-gold);
    color: var(--header-dark-gold);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filters-reset:hover {
    background: var(--header-primary-gold);
    color: var(--header-text-dark);
    transform: translateY(-2px);
}

.filter-group {
    margin-bottom: 2rem;
}

.filter-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    color: var(--header-text-dark);
    margin-bottom: 1rem;
    font-size: 1rem;
    font-family: 'Tajawal', sans-serif;
}

.filter-label i {
    color: var(--header-primary-gold);
    font-size: 1.2rem;
}

.verification-filters,
.status-filters {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.verification-option,
.status-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    padding: 0.75rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid transparent;
}

.verification-option:hover,
.status-option:hover {
    background: rgba(237, 213, 102, 0.1);
    border-color: var(--header-primary-gold);
    transform: translateX(-3px);
}

.verification-radio,
.status-radio {
    display: none;
}

.verification-label,
.status-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: 600;
    color: var(--header-text-dark);
    font-size: 0.95rem;
    font-family: 'Tajawal', sans-serif;
}

.verification-indicator,
.status-indicator {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 3px solid #dee2e6;
    background: white;
    position: relative;
    transition: all 0.3s ease;
}

.verification-indicator.verified {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    border-color: #27ae60;
}

.verification-indicator.verified::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: 700;
    font-size: 12px;
}

.verification-indicator.unverified {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-color: #e74c3c;
}

.verification-indicator.unverified::after {
    content: '✗';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: 700;
    font-size: 12px;
}

.status-indicator.online {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    border-color: #27ae60;
    animation: statusPulse 2s infinite;
}

.status-indicator.offline {
    background: linear-gradient(135deg, #95a5a6, #7f8c8d);
    border-color: #95a5a6;
}

.verification-radio:checked + .verification-label .verification-indicator,
.status-radio:checked + .status-label .status-indicator {
    border-color: var(--header-primary-gold);
    box-shadow: 0 0 0 3px rgba(237, 213, 102, 0.3);
}

.filter-apply-btn {
    width: 100%;
    margin-top: 1rem;
}

.content-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(237, 213, 102, 0.2);
}

.results-info {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.results-count {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--header-text-dark);
    font-family: 'Tajawal', sans-serif;
}

.results-text {
    font-size: 1rem;
    color: var(--header-neutral-gray);
    font-weight: 500;
}

.sort-controls .select-custom-container {
    min-width: 200px;
}

.drivers-grid {
    margin-bottom: 3rem;
}

.driver-card {
    background: linear-gradient(135deg, #ffffff, #fafafa);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(237, 213, 102, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    cursor: pointer;
    margin-bottom: 0;
}

.driver-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--header-primary-gold);
}

.driver-header {
    position: relative;
    padding: 1.5rem 1.5rem 0.5rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(237, 213, 102, 0.05), rgba(255, 255, 255, 0.8));
}

.driver-avatar {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 1rem;
}

.driver-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--header-primary-gold);
    transition: all 0.3s ease;
}

.driver-card:hover .driver-image {
    transform: scale(1.05);
    border-color: var(--header-accent-gold);
}

.driver-status {
    position: absolute;
    bottom: 3px;
    right: 3px;
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.driver-status.online i {
    color: #27ae60;
    font-size: 14px;
    animation: statusPulse 2s infinite;
}

.driver-status.offline i {
    color: #95a5a6;
    font-size: 14px;
}

.driver-verification {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.4rem 0.8rem;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    z-index: 3;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    animation: verifiedPulse 2s ease-in-out infinite;
}

.driver-verification.verified {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
}

.driver-verification.unverified {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
}

.driver-verification i {
    font-size: 16px;
}

.driver-info {
    padding: 0 1.5rem 1rem;
    text-align: center;
}

.driver-name {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 1rem;
    font-family: 'Tajawal', sans-serif;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    color: #ffffff;
    text-align: center;
}

.driver-status-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.driver-status-text.online {
    color: #27ae60;
}

.driver-status-text.offline {
    color: #95a5a6;
}

.driver-status-text i {
    font-size: 16px;
}

.driver-location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--header-neutral-gray);
    margin-bottom: 1rem;
    font-weight: 500;
}

.driver-location i {
    color: var(--header-primary-gold);
    font-size: 16px;
}

.driver-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.rating-stars {
    display: flex;
    gap: 2px;
}

.rating-stars i {
    font-size: 16px;
    color: #ddd;
    transition: color 0.3s ease;
}

.rating-stars i.filled {
    color: #ffc107;
}

.rating-value {
    font-weight: 600;
    color: var(--header-text-dark);
    font-size: 0.9rem;
}

.driver-actions {
    padding: 0 1.5rem 1.5rem;
    text-align: center;
}

.driver-profile-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--header-primary-gold), var(--header-mid-gold));
    color: var(--header-text-dark);
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(237, 213, 102, 0.4);
    min-width: 200px;
}

.driver-profile-btn:hover {
    background: linear-gradient(135deg, var(--header-accent-gold), var(--header-primary-gold));
    color: var(--header-text-dark);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(237, 213, 102, 0.6);
}

.driver-profile-btn i {
    font-size: 18px;
}

.pagination-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.pagination-nav {
    background: linear-gradient(135deg, #ffffff, #fafafa);
    padding: 1rem 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(237, 213, 102, 0.1);
}

.pagination-list {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.pagination-item {
    display: flex;
}

.pagination-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 12px;
    text-decoration: none;
    color: var(--header-text-dark);
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    background: rgba(237, 213, 102, 0.05);
}

.pagination-link:hover {
    background: var(--header-primary-gold);
    color: var(--header-text-dark);
    text-decoration: none;
    transform: translateY(-2px);
    border-color: var(--header-accent-gold);
}

.pagination-item.active .pagination-link {
    background: var(--header-primary-gold);
    color: var(--header-text-dark);
    border-color: var(--header-mid-gold);
    box-shadow: 0 4px 15px rgba(237, 213, 102, 0.4);
}

.pagination-item.disabled .pagination-link {
    opacity: 0.5;
    cursor: not-allowed;
    background: rgba(237, 213, 102, 0.02);
}

.pagination-item.disabled .pagination-link:hover {
    background: rgba(237, 213, 102, 0.02);
    transform: none;
    border-color: transparent;
}

.pagination-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    color: var(--header-neutral-gray);
    font-weight: 700;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(-10px) scale(1); }
    50% { transform: translateY(10px) scale(1.05); }
}

@keyframes logoRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes verifiedPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes statusPulse {
    0%, 100% { 
        opacity: 1; 
        box-shadow: 0 0 0 0 rgba(39, 174, 96, 0.7);
    }
    50% { 
        opacity: 0.7; 
        box-shadow: 0 0 0 10px rgba(39, 174, 96, 0);
    }
}

@media (max-width: 991.98px) {
    .category-title {
        font-size: 2.2rem;
    }
    
    .category-description {
        font-size: 1rem;
    }
    
    .category-hero {
        height: 150px;
    }
    
    .hero-logo-animated {
        width: 90px;
        height: 90px;
    }
    
    .filters-sidebar {
        position: static;
        margin-bottom: 2rem;
    }
    
    .content-header {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .sort-controls {
        align-self: flex-end;
    }
}

@media (max-width: 768px) {
    .driver-avatar {
        width: 80px;
        height: 80px;
    }
    
    .driver-header {
        padding: 1rem 1rem 0.5rem;
    }
    
    .driver-actions {
        padding: 0 1rem 1rem;
    }
    
    .driver-profile-btn {
        min-width: auto;
        width: 100%;
    }
    
    .category-hero {
        padding: 1.5rem 0;
        height: 130px;
    }
    
    .category-title {
        font-size: 1.8rem;
    }
    
    .category-description {
        font-size: 0.9rem;
    }
    
    .hero-logo-animated {
        width: 70px;
        height: 70px;
    }
    
    .filters-sidebar {
        padding: 1.5rem;
    }
    
    .breadcrumb-link,
    .breadcrumb-current {
        padding: 0.3rem 0.6rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 575.98px) {
    .driver-avatar {
        width: 70px;
        height: 70px;
    }
    
    .driver-name {
        font-size: 1rem;
    }
    
    .driver-profile-btn {
        font-size: 0.8rem;
        padding: 0.6rem 1.2rem;
    }
    
    .category-hero {
        border-radius: 0;
        margin-bottom: 2rem;
        height: 120px;
        padding: 1rem 0;
    }
    
    .category-title {
        font-size: 1.5rem;
    }
    
    .hero-logo-animated {
        width: 60px;
        height: 60px;
    }
    
    .pagination-nav {
        padding: 0.75rem 1rem;
    }
    
    .pagination-link {
        width: 40px;
        height: 40px;
    }
}

.select-custom-options {
    max-height: 300px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--header-primary-gold) rgba(237, 213, 102, 0.1);
}

.select-custom-options::-webkit-scrollbar {
    width: 6px;
}

.select-custom-options::-webkit-scrollbar-track {
    background: rgba(237, 213, 102, 0.1);
    border-radius: 3px;
}

.select-custom-options::-webkit-scrollbar-thumb {
    background: var(--header-primary-gold);
    border-radius: 3px;
}

.select-custom-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(237, 213, 102, 0.1);
    background: transparent;
    color: var(--header-text-dark);
}

.select-custom-option:hover {
    background: rgba(237, 213, 102, 0.1);
    color: var(--header-dark-gold);
    transform: translateX(-5px);
}

.select-custom-option:last-child {
    border-bottom: none;
}

.select-custom-option i {
    color: var(--header-mid-gold);
    font-size: 18px;
    transition: all 0.3s ease;
}

.select-custom-option:hover i {
    color: var(--header-dark-gold);
    transform: scale(1.1);
}

.select-custom-option.select-custom-selected-option {
    background: rgba(237, 213, 102, 0.2);
    color: var(--header-dark-gold);
    border-color: var(--header-primary-gold);
}

.select-custom-option.select-custom-hidden {
    display: none;
}

.driver-apply-page {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(-45deg, #edd566, #b59d46, #f4e473, #edd566, #2c3e50, #34495e);
    background-size: 400% 400%;
    animation: heroGradientShift 20s ease infinite;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.4) 100%);
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>') repeat;
    background-size: 50px 50px;
    animation: starsMove 60s linear infinite;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    font-family: 'Tajawal', sans-serif;
    text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.5);
    background: linear-gradient(45deg, #ffffff, #f8f9fa, #edd566);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: titlePulse 3s ease-in-out infinite;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    font-weight: 500;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    min-width: 200px;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transform: translateY(0);
}

.primary-btn {
    background: linear-gradient(135deg, var(--header-primary-gold), var(--header-accent-gold));
    color: var(--header-text-dark);
}

.primary-btn:hover {
    background: linear-gradient(135deg, var(--header-accent-gold), var(--header-primary-gold));
    color: var(--header-text-dark);
    text-decoration: none;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(237, 213, 102, 0.6);
}

.secondary-btn {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    color: white;
    text-decoration: none;
    transform: translateY(-5px) scale(1.05);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-btn i {
    font-size: 1.3rem;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: white;
    font-size: 2rem;
    animation: scrollBounce 2s infinite;
    cursor: pointer;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--header-text-dark);
    margin-bottom: 1rem;
    font-family: 'Tajawal', sans-serif;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--header-primary-gold), var(--header-accent-gold));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--header-neutral-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.features-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #ffffff, #fafafa);
}

.feature-card {
    background: linear-gradient(135deg, #ffffff, #fafafa);
    border-radius: 25px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(237, 213, 102, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(237, 213, 102, 0.1), transparent);
    transition: left 0.6s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--header-primary-gold);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--header-primary-gold), var(--header-accent-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(237, 213, 102, 0.4);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 40px rgba(237, 213, 102, 0.6);
}

.feature-icon i {
    font-size: 2.2rem;
    color: var(--header-text-dark);
}

.feature-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--header-text-dark);
    margin-bottom: 1rem;
    font-family: 'Tajawal', sans-serif;
}

.feature-description {
    font-size: 1rem;
    color: var(--header-neutral-gray);
    line-height: 1.6;
    margin: 0;
}

.how-it-works-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
}

.steps-container {
    position: relative;
}

.step-card {
    background: linear-gradient(135deg, #ffffff, #fafafa);
    border-radius: 25px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(237, 213, 102, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--header-primary-gold);
}

.step-number {
    position: absolute;
    top: -20px;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--header-primary-gold), var(--header-accent-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--header-text-dark);
    box-shadow: 0 8px 25px rgba(237, 213, 102, 0.4);
    z-index: 2;
}

.step-icon {
    width: 70px;
    height: 70px;
    margin: 1rem auto 1.5rem;
    background: rgba(237, 213, 102, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.step-card:hover .step-icon {
    background: rgba(237, 213, 102, 0.2);
    transform: scale(1.1);
}

.step-icon i {
    font-size: 2rem;
    color: var(--header-primary-gold);
}

.step-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--header-text-dark);
    margin-bottom: 1rem;
    font-family: 'Tajawal', sans-serif;
}

.step-description {
    font-size: 1rem;
    color: var(--header-neutral-gray);
    line-height: 1.6;
    margin: 0;
}

.benefits-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
}

.benefits-image {
    position: relative;
    text-align: center;
}

.benefits-img {
    width: 100%;
    max-width: 500px;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.benefits-img:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.benefits-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, var(--header-primary-gold), var(--header-accent-gold));
    color: var(--header-text-dark);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 8px 25px rgba(237, 213, 102, 0.4);
    animation: badgePulse 2s ease-in-out infinite;
}

.benefits-badge i {
    color: #ffc107;
    font-size: 1.2rem;
}

.benefits-content {
    padding: 2rem 0;
}

.benefits-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--header-text-dark);
    margin-bottom: 1.5rem;
    font-family: 'Tajawal', sans-serif;
    line-height: 1.2;
}

.benefits-description {
    font-size: 1.2rem;
    color: var(--header-neutral-gray);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(237, 213, 102, 0.05);
    border-radius: 20px;
    border: 2px solid rgba(237, 213, 102, 0.1);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(237, 213, 102, 0.1);
    border-color: var(--header-primary-gold);
    transform: translateX(-5px);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--header-primary-gold), var(--header-accent-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(237, 213, 102, 0.4);
}

.benefit-icon i {
    font-size: 1.5rem;
    color: var(--header-text-dark);
}

.benefit-text h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--header-text-dark);
    margin-bottom: 0.5rem;
    font-family: 'Tajawal', sans-serif;
}

.benefit-text p {
    font-size: 1rem;
    color: var(--header-neutral-gray);
    margin: 0;
    line-height: 1.5;
}

.app-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
}

.app-content {
    padding: 2rem 0;
}

.app-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--header-text-dark);
    margin-bottom: 1.5rem;
    font-family: 'Tajawal', sans-serif;
}

.app-description {
    font-size: 1.2rem;
    color: var(--header-neutral-gray);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.app-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.app-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(237, 213, 102, 0.05);
    border-radius: 15px;
    border: 2px solid rgba(237, 213, 102, 0.1);
    transition: all 0.3s ease;
}

.app-feature:hover {
    background: rgba(237, 213, 102, 0.1);
    border-color: var(--header-primary-gold);
    transform: translateX(-3px);
}

.app-feature i {
    color: var(--header-primary-gold);
    font-size: 1.5rem;
}

.app-feature span {
    font-weight: 600;
    color: var(--header-text-dark);
}

.app-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.app-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    text-decoration: none;
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(44, 62, 80, 0.3);
    min-width: 180px;
}

.app-btn:hover {
    background: linear-gradient(135deg, #34495e, #2c3e50);
    color: white;
    text-decoration: none;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(44, 62, 80, 0.4);
}

.app-btn i {
    font-size: 2rem;
}

.app-btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.app-btn-text small {
    font-size: 0.8rem;
    opacity: 0.8;
}

.app-btn-text span {
    font-size: 1rem;
    font-weight: 700;
}

.app-mockup {
    text-align: center;
    padding: 2rem 0;
}

.app-phone {
    max-width: 300px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.app-phone:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.testimonials-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #ffffff, #fafafa);
}

.testimonial-card {
    background: linear-gradient(135deg, #ffffff, #fafafa);
    border-radius: 25px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(237, 213, 102, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--header-primary-gold);
}

.testimonial-content {
    margin-bottom: 2rem;
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 1.5rem;
    justify-content: center;
}

.testimonial-stars i {
    color: #ffc107;
    font-size: 1.2rem;
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--header-neutral-gray);
    line-height: 1.6;
    text-align: center;
    font-style: italic;
    margin: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid var(--header-primary-gold);
}

.author-info {
    text-align: right;
}

.author-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--header-text-dark);
    margin-bottom: 0.25rem;
    font-family: 'Tajawal', sans-serif;
}

.author-role {
    font-size: 0.9rem;
    color: var(--header-neutral-gray);
    margin: 0;
}

.final-cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--header-primary-gold), var(--header-accent-gold), var(--header-mid-gold));
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
    background-size: 200% 200%;
    animation: shimmer 4s ease-in-out infinite;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.cta-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--header-text-dark);
    margin-bottom: 1.5rem;
    font-family: 'Tajawal', sans-serif;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
}

.cta-subtitle {
    font-size: 1.3rem;
    color: var(--header-text-dark);
    margin-bottom: 3rem;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 3rem;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(44, 62, 80, 0.4);
    position: relative;
    overflow: hidden;
}

.cta-btn:hover {
    background: linear-gradient(135deg, #34495e, #2c3e50);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(44, 62, 80, 0.6);
}

.cta-btn i {
    font-size: 1.5rem;
}

@keyframes heroGradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes starsMove {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(-50px) translateY(-50px); }
}

@keyframes titlePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@media (max-width: 991.98px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .benefits-title,
    .app-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2.8rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-btn {
        min-width: 250px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .benefits-title,
    .app-title {
        font-size: 1.8rem;
    }
    
    .cta-title {
        font-size: 2.2rem;
    }
    
    .feature-card,
    .step-card,
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .app-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }
    
    .author-info {
        text-align: center;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
        min-width: 200px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .benefits-title,
    .app-title {
        font-size: 1.5rem;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-btn {
        padding: 1.2rem 2rem;
        font-size: 1rem;
    }
    
    .feature-card,
    .step-card,
    .testimonial-card {
        padding: 1.5rem 1rem;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .cta-content {
        padding: 1rem;
    }
}

.driver-profile-page {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
    min-height: 100vh;
}

.driver-header-section {
    position: relative;
    margin-bottom: 3rem;
}

.driver-cover-image {
    position: relative;
    height: 350px;
    width: 100%;
    overflow: hidden;
    border-radius: 0 0 30px 30px;
}

.cover-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.cover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.4) 100%);
}

.driver-profile-header {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: -100px;
    z-index: 2;
    padding: 0 2rem;
}

.driver-avatar-container {
    position: relative;
    margin-bottom: 2rem;
}

.driver-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 5px solid white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    object-fit: cover;
    transition: all 0.3s ease;
}

.driver-avatar:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.driver-status {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 35px;
    height: 35px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.driver-status.online i {
    color: #27ae60;
    font-size: 20px;
    animation: statusPulse 2s infinite;
}

.driver-status.offline i {
    color: #95a5a6;
    font-size: 20px;
}

.verification-badge {
    position: absolute;
    top: 5px;
    left: 5px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.4);
    animation: verifiedPulse 2s ease-in-out infinite;
}

.verification-badge.verified i {
    color: white;
    font-size: 22px;
}

.driver-basic-info {
    margin-bottom: 2rem;
    color: white;
}



.driver-status-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.driver-status-text.online {
    color: #27ae60;
}

.driver-status-text.offline {
    color: #95a5a6;
}

.driver-status-text i {
    font-size: 20px;
}

.driver-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.rating-stars {
    display: flex;
    gap: 3px;
}

.rating-stars i {
    font-size: 20px;
    color: #ddd;
    transition: color 0.3s ease;
}

.rating-stars i.filled {
    color: #ffc107;
}

.rating-value {
    font-weight: 700;
    font-size: 1.1rem;
    color: white;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.rating-count {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.driver-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    min-width: 200px;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.primary-btn {
    background: linear-gradient(135deg, var(--header-primary-gold), var(--header-accent-gold));
    color: var(--header-text-dark);
}

.primary-btn:hover {
    background: linear-gradient(135deg, var(--header-accent-gold), var(--header-primary-gold));
    color: var(--header-text-dark);
    text-decoration: none;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(237, 213, 102, 0.6);
}

.secondary-btn {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    color: white;
    text-decoration: none;
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.5);
}

.action-btn i {
    font-size: 1.2rem;
}

.section-card {
    background: linear-gradient(135deg, #ffffff, #fafafa);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(237, 213, 102, 0.1);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.section-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(237, 213, 102, 0.05), transparent);
    transition: left 0.6s ease;
}

.section-card:hover::before {
    left: 100%;
}

.section-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--header-primary-gold);
}

.section-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(237, 213, 102, 0.2);
}

.section-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--header-text-dark);
    margin: 0;
    font-family: 'Tajawal', sans-serif;
}

.section-title i {
    color: var(--header-primary-gold);
    font-size: 1.8rem;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--header-neutral-gray);
    margin-bottom: 2rem;
    text-align: justify;
}

.experience-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.experience-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(237, 213, 102, 0.1);
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    border: 2px solid rgba(237, 213, 102, 0.2);
    font-weight: 600;
    color: var(--header-text-dark);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.experience-badge:hover {
    background: rgba(237, 213, 102, 0.2);
    border-color: var(--header-primary-gold);
    transform: translateY(-2px);
}

.experience-badge i {
    color: var(--header-primary-gold);
    font-size: 1.1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(237, 213, 102, 0.05);
    border-radius: 15px;
    border: 2px solid rgba(237, 213, 102, 0.1);
    transition: all 0.3s ease;
}

.service-item:hover {
    background: rgba(237, 213, 102, 0.1);
    border-color: var(--header-primary-gold);
    transform: translateX(-5px);
}

.service-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--header-primary-gold), var(--header-accent-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(237, 213, 102, 0.4);
}

.service-icon i {
    color: var(--header-text-dark);
    font-size: 1.3rem;
}

.service-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--header-text-dark);
    margin-bottom: 0.5rem;
    font-family: 'Tajawal', sans-serif;
}

.service-description {
    font-size: 0.9rem;
    color: var(--header-neutral-gray);
    margin: 0;
    line-height: 1.5;
}

.reviews-summary {
    margin-bottom: 2rem;
    text-align: center;
}

.rating-overview {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem;
    background: rgba(237, 213, 102, 0.1);
    border-radius: 20px;
    border: 2px solid rgba(237, 213, 102, 0.2);
}

.overall-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.rating-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--header-text-dark);
    font-family: 'Tajawal', sans-serif;
}

.total-reviews {
    font-size: 0.9rem;
    color: var(--header-neutral-gray);
    font-weight: 500;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.review-item {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    border: 2px solid rgba(237, 213, 102, 0.1);
    transition: all 0.3s ease;
}

.review-item:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: var(--header-primary-gold);
    transform: translateX(-3px);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--header-primary-gold);
}

.reviewer-info {
    flex: 1;
}

.reviewer-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--header-text-dark);
    margin-bottom: 0.25rem;
    font-family: 'Tajawal', sans-serif;
}

.review-rating {
    display: flex;
    gap: 2px;
}

.review-rating i {
    font-size: 14px;
    color: #ffc107;
}

.review-date {
    font-size: 0.8rem;
    color: var(--header-neutral-gray);
    white-space: nowrap;
}

.review-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--header-neutral-gray);
    margin: 0;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(237, 213, 102, 0.05);
    border-radius: 12px;
    border: 2px solid rgba(237, 213, 102, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(237, 213, 102, 0.1);
    border-color: var(--header-primary-gold);
    transform: translateX(-3px);
}

.contact-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--header-primary-gold), var(--header-accent-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(237, 213, 102, 0.4);
}

.contact-icon.whatsapp-icon {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.contact-icon i {
    color: var(--header-text-dark);
    font-size: 1.2rem;
}

.contact-icon.whatsapp-icon i {
    color: white;
}

.contact-details {
    flex: 1;
}

.contact-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--header-text-dark);
    margin-bottom: 0.25rem;
    font-family: 'Tajawal', sans-serif;
}

.contact-value {
    font-size: 1rem;
    color: var(--header-neutral-gray);
    margin: 0;
    line-height: 1.4;
}

.contact-link {
    color: var(--header-primary-gold);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: var(--header-dark-gold);
    text-decoration: underline;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-link.facebook {
    background: rgba(59, 89, 152, 0.1);
    color: #3b5998;
    border-color: rgba(59, 89, 152, 0.2);
}

.social-link.facebook:hover {
    background: #3b5998;
    color: white;
    text-decoration: none;
    transform: translateX(-5px);
}

.social-link.instagram {
    background: rgba(225, 48, 108, 0.1);
    color: #e1306c;
    border-color: rgba(225, 48, 108, 0.2);
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
    text-decoration: none;
    transform: translateX(-5px);
}

.social-link.youtube {
    background: rgba(255, 0, 0, 0.1);
    color: #ff0000;
    border-color: rgba(255, 0, 0, 0.2);
}

.social-link.youtube:hover {
    background: #ff0000;
    color: white;
    text-decoration: none;
    transform: translateX(-5px);
}

.social-link.tiktok {
    background: rgba(0, 0, 0, 0.1);
    color: #000000;
    border-color: rgba(0, 0, 0, 0.2);
}

.social-link.tiktok:hover {
    background: #000000;
    color: white;
    text-decoration: none;
    transform: translateX(-5px);
}

.social-link i {
    font-size: 1.3rem;
}

.map-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 300px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.location-map {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.location-map:hover {
    filter: grayscale(0%);
}

.map-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1rem;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.location-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--header-text-dark);
    font-size: 0.9rem;
}

.location-info i {
    color: var(--header-primary-gold);
    font-size: 1.1rem;
}

@keyframes statusPulse {
    0%, 100% { 
        opacity: 1; 
        box-shadow: 0 0 0 0 rgba(39, 174, 96, 0.7);
    }
    50% { 
        opacity: 0.7; 
        box-shadow: 0 0 0 10px rgba(39, 174, 96, 0);
    }
}

@keyframes verifiedPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@media (max-width: 991.98px) {
    .driver-name {
        font-size: 2.2rem;
    }
    
    .driver-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .action-btn {
        min-width: 250px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .section-card {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .driver-header-section {
        margin-bottom: 2rem;
    }
    
    .driver-cover-image {
        height: 280px;
    }
    
    .driver-profile-header {
        margin-top: -80px;
        padding: 0 1rem;
    }
    
    .driver-avatar {
        width: 120px;
        height: 120px;
    }
    
    .driver-name {
        font-size: 1.8rem;
    }
    
    .driver-rating {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .section-card {
        padding: 1.5rem;
    }
    
    .services-grid {
        gap: 1rem;
    }
    
    .service-item {
        padding: 1rem;
    }
    
    .experience-badges {
        flex-direction: column;
    }
    
    .experience-badge {
        justify-content: center;
    }
    
    .review-header {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .review-date {
        width: 100%;
        text-align: right;
    }
}

@media (max-width: 575.98px) {
    .driver-cover-image {
        height: 250px;
        border-radius: 0;
    }
    
    .driver-profile-header {
        margin-top: -70px;
    }
    
    .driver-avatar {
        width: 100px;
        height: 100px;
    }
    
    .driver-name {
        font-size: 1.5rem;
    }
    
    .action-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        min-width: 200px;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    .service-item {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .map-container {
        height: 250px;
    }
    
    .social-link {
        justify-content: center;
    }
}