/**
 * Falcon Taxis - Driver Portal Branding
 * Official brand styling with orange/cream palette
 */

/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Inter:wght@400;500;600&display=swap');

/* CSS Variables - Brand Colors */
:root {
    --primary-orange: #E85C27;
    --primary-orange-hover: #d24e1d;
    --secondary-cream: #FFF8ED;
    --accent-dark-gray: #2C2C2C;
    --neutral-light-gray: #F5F5F5;
    --success-green: #27AE60;
    --warning-yellow: #F2C94C;
    --danger-red: #EB5757;
    --border-color: #E0E0E0;
    
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --border-radius: 8px;
    --transition: 0.3s ease-in-out;
}

/* Global Styles - Theme Agnostic */
.dop-container {
    font-family: var(--font-body) !important;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.5px;
    color: var(--accent-dark-gray) !important;
}

.dop-wrapper {
    background: linear-gradient(135deg, var(--neutral-light-gray) 0%, #ffffff 100%);
    min-height: 100vh;
    padding: 0;
    margin: 0;
}

/* Hide admin bar for drivers */
body.logged-in .dop-wrapper {
    margin-top: 0 !important;
}

/* Header */
.dop-header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.dop-navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.dop-nav-brand {
    display: flex;
    align-items: center;
}

.dop-nav-logo {
    height: 56px;
    width: auto;
}

.dop-nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.dop-nav-link {
    color: var(--accent-dark-gray);
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 500;
    transition: all var(--transition);
    position: relative;
}

.dop-nav-link:hover,
.dop-nav-link.active {
    color: var(--primary-orange);
}

.dop-nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-orange);
}

.dop-user-info {
    color: var(--accent-dark-gray);
    font-family: var(--font-heading);
    font-weight: 500;
    padding: 8px 16px;
    background: var(--secondary-cream);
    border-radius: 20px;
}

.dop-mobile-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.dop-mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--accent-dark-gray);
    transition: all var(--transition);
}

/* Footer */
.dop-footer {
    background: var(--accent-dark-gray);
    color: white;
    margin-top: 0;
}

.dop-footer h5,
.dop-footer h4,
.dop-footer h3 {
    color: white;
}

.dop-footer-main {
    padding: 3rem 0 2rem;
}

.dop-footer-section h5 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.dop-footer-logo {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
}

.dop-footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.dop-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dop-footer-links li {
    margin-bottom: 0.5rem;
}

.dop-footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all var(--transition);
}

.dop-footer-links a:hover {
    color: var(--primary-orange);
}

.dop-social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.dop-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all var(--transition);
}

.dop-social-link:hover {
    background: var(--primary-orange);
    transform: translateY(-2px);
}

.dop-contact-info p {
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
}

.dop-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
}

.dop-footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
}

.dop-footer-legal {
    display: flex;
    gap: 1.5rem;
}

.dop-footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.875rem;
    transition: all var(--transition);
}

.dop-footer-legal a:hover {
    color: var(--primary-orange);
}

/* Mobile Header */
@media (max-width: 768px) {
    .dop-nav-menu {
        display: none;
    }
    
    .dop-mobile-toggle {
        display: flex;
    }
    
    .dop-footer-legal {
        justify-content: center;
        margin-top: 1rem;
    }
}
.dop-container {
    font-family: var(--font-body) !important;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.5px;
    color: var(--accent-dark-gray) !important;
}

.dop-wrapper {
    background: linear-gradient(135deg, var(--neutral-light-gray) 0%, #ffffff 100%);
    min-height: 100vh;
    padding: 0;
    margin: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--accent-dark-gray);
}

/* Logo Styles */
.dop-logo {
    max-width: 180px;
    height: auto;
}

.dop-logo-small {
    width: 48px;
    height: 48px;
}

/* Professional Button System */
.dop-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    line-height: 1;
    text-decoration: none;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.dop-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.dop-btn:hover::before {
    left: 100%;
}

.dop-btn-primary {
    background: linear-gradient(135deg, var(--primary-orange), #ff7849);
    color: white;
    box-shadow: 0 4px 15px rgba(232, 92, 39, 0.3);
}

.dop-btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-orange-hover), #e64a19);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(232, 92, 39, 0.4);
    color: white;
}

.dop-btn-outline {
    background: transparent;
    color: var(--primary-orange);
    border: 2px solid var(--primary-orange);
    box-shadow: 0 2px 10px rgba(232, 92, 39, 0.1);
}

.dop-btn-outline:hover {
    background: var(--primary-orange);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 92, 39, 0.3);
}

.btn-success {
    background-color: var(--success-green);
    border-color: var(--success-green);
    border-radius: var(--border-radius);
}

.btn-danger {
    background-color: var(--danger-red);
    border-color: var(--danger-red);
    border-radius: var(--border-radius);
}

/* Professional Card System */
.dop-card {
    background: #ffffff;
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all var(--transition);
    overflow: hidden;
    position: relative;
}

.dop-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange), #ff7849);
}

.dop-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(232, 92, 39, 0.15);
}

.dop-card-header {
    background: linear-gradient(135deg, var(--secondary-cream), #ffffff);
    border-bottom: 1px solid rgba(232, 92, 39, 0.1);
    padding: 24px;
    font-family: var(--font-heading);
    font-weight: 600;
}

.dop-card-body {
    padding: 24px;
}

.dop-card-footer {
    background: rgba(245, 245, 245, 0.5);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding: 20px 24px;
}

/* Progress Bar */
.progress {
    background-color: var(--neutral-light-gray);
    border-radius: var(--border-radius);
    height: 32px;
    overflow: hidden;
}

.progress-bar {
    background-color: var(--primary-orange);
    transition: width var(--transition);
    font-family: var(--font-heading);
    font-weight: 600;
}

/* Status Badges */
.badge {
    border-radius: 6px;
    padding: 6px 12px;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.875rem;
}

.badge.bg-success, .status-approved {
    background-color: var(--success-green) !important;
    color: white;
}

.badge.bg-warning, .status-pending {
    background-color: var(--warning-yellow) !important;
    color: var(--accent-dark-gray);
}

.badge.bg-danger, .status-rejected {
    background-color: var(--danger-red) !important;
    color: white;
}

.badge.bg-info, .status-submitted {
    background-color: var(--primary-orange) !important;
    color: white;
}

.badge.bg-secondary {
    background-color: var(--neutral-light-gray) !important;
    color: var(--accent-dark-gray);
}

/* Authentication Pages */
.dop-auth-section {
    background: linear-gradient(135deg, var(--neutral-light-gray) 0%, #ffffff 100%);
    min-height: 100vh;
    position: relative;
}

.dop-auth-card {
    max-width: 480px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

.dop-auth-logo {
    margin-bottom: 2rem;
}

.dop-auth-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 2rem;
    color: var(--accent-dark-gray);
    margin-bottom: 0.5rem;
}

.dop-auth-subtitle {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.dop-auth-form {
    text-align: left;
    margin-bottom: 1.5rem;
}

.dop-auth-form label {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--accent-dark-gray);
    margin-bottom: 0.5rem;
    display: block;
}

.dop-auth-form input[type="text"],
.dop-auth-form input[type="password"],
.dop-auth-form input[type="email"] {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 16px;
    transition: all var(--transition);
    background: #ffffff;
    margin-bottom: 1rem;
}

.dop-auth-form input:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(232, 92, 39, 0.1);
}

.dop-auth-form input[type="submit"] {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-orange), #ff7849);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 10px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all var(--transition);
    margin-top: 1rem;
}

.dop-auth-form input[type="submit"]:hover {
    background: linear-gradient(135deg, var(--primary-orange-hover), #e64a19);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(232, 92, 39, 0.4);
}

.dop-auth-links {
    text-align: center;
    margin-bottom: 2rem;
}

.dop-link {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 500;
    transition: all var(--transition);
}

.dop-link:hover {
    color: var(--primary-orange-hover);
    text-decoration: underline;
}

.dop-auth-divider {
    position: relative;
    text-align: center;
    margin: 2rem 0;
    color: #666;
    font-size: 0.875rem;
}

.dop-auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--border-color);
    z-index: 1;
}

.dop-auth-divider span {
    background: white;
    padding: 0 1rem;
    position: relative;
    z-index: 2;
}

.form-control, .form-select {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 12px 16px;
    font-family: var(--font-body);
    transition: all var(--transition);
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(232, 92, 39, 0.1);
    outline: none;
}

.form-label {
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--accent-dark-gray);
    margin-bottom: 0.5rem;
}

/* Dashboard Layout */
.dop-dashboard-layout {
    background: var(--neutral-light-gray);
    min-height: calc(100vh - 120px);
}

.dop-sidebar {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 1rem;
}

.dop-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dop-nav-list li {
    margin-bottom: 0.5rem;
}

.dop-nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 12px 16px;
    color: var(--accent-dark-gray);
    text-decoration: none;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 500;
    transition: all var(--transition);
}

.dop-nav-link:hover,
.dop-nav-link.active {
    background: linear-gradient(135deg, var(--primary-orange), #ff7849);
    color: white;
    transform: translateX(4px);
}

.dop-icon {
    font-size: 1.2rem;
}

.dop-main-content {
    padding: 1rem;
}

.dop-tab-content {
    display: none;
}

.dop-tab-content.active {
    display: block;
}

/* Stats Grid */
.dop-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.dop-stat-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all var(--transition);
}

.dop-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(232, 92, 39, 0.15);
}

.dop-stat-icon {
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-orange), #ff7849);
    border-radius: 50%;
    color: white;
}

.dop-stat-info h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 2rem;
    color: var(--accent-dark-gray);
    margin: 0;
}

.dop-stat-info p {
    color: #666;
    margin: 0;
    font-size: 0.875rem;
}

/* Recent Activity */
.dop-recent-activity {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.dop-recent-activity h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--accent-dark-gray);
    margin-bottom: 1rem;
}

.dop-activity-item {
    padding: 0.75rem;
    border-left: 3px solid var(--primary-orange);
    background: rgba(232, 92, 39, 0.05);
    border-radius: 0 8px 8px 0;
    margin-bottom: 0.5rem;
}

/* Profile Form */
.dop-profile-form {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.dop-profile-form .form-label {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--accent-dark-gray);
    margin-bottom: 0.5rem;
}

.dop-profile-form .form-control {
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 12px 16px;
    transition: all var(--transition);
}

.dop-profile-form .form-control:focus {
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(232, 92, 39, 0.1);
}

/* Button Sizes */
.dop-btn-sm {
    padding: 8px 16px;
    font-size: 0.875rem;
}

.dop-btn-lg {
    padding: 16px 32px;
    font-size: 1.125rem;
}

/* Responsive */
@media (max-width: 768px) {
    .dop-sidebar {
        margin-bottom: 1rem;
    }
    
    .dop-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .dop-nav-link {
        justify-content: center;
        text-align: center;
    }
}

.dop-loading-spinner .spinner-border {
    width: 3rem;
    height: 3rem;
    border-width: 0.3em;
    color: var(--primary-orange) !important;
}

/* Success Message */
.dop-success-message {
    padding: 2rem 0;
}

.dop-success-message .text-success {
    color: var(--success-green) !important;
}

/* Alert Styling */
.alert {
    border-radius: 10px;
    border: none;
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
}

.alert-danger {
    background: rgba(235, 87, 87, 0.1);
    color: var(--danger-red);
    border-left: 4px solid var(--danger-red);
}

.alert-success {
    background: rgba(39, 174, 96, 0.1);
    color: var(--success-green);
    border-left: 4px solid var(--success-green);
}

.alert-info {
    background: rgba(232, 92, 39, 0.1);
    color: var(--primary-orange);
    border-left: 4px solid var(--primary-orange);
}

/* Sidebar */
.dop-sidebar {
    background-color: white;
    border-right: 1px solid var(--border-color);
    padding: 1.5rem;
    min-height: calc(100vh - 80px);
}

.dop-sidebar-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dop-sidebar-nav li {
    margin-bottom: 0.5rem;
}

.dop-sidebar-nav a {
    display: block;
    padding: 12px 16px;
    color: var(--accent-dark-gray);
    text-decoration: none;
    border-radius: var(--border-radius);
    font-family: var(--font-heading);
    font-weight: 500;
    transition: all var(--transition);
}

.dop-sidebar-nav a:hover,
.dop-sidebar-nav a.active {
    background-color: var(--primary-orange);
    color: white;
}

/* Step Tiles */
.dop-step-tile {
    background-color: white;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    transition: all var(--transition);
    position: relative;
}

.dop-step-tile:hover {
    border-color: var(--primary-orange);
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(232, 92, 39, 0.15);
}

.dop-step-tile.completed {
    border-color: var(--success-green);
    background-color: rgba(39, 174, 96, 0.05);
}

.dop-step-tile.pending {
    border-color: var(--neutral-light-gray);
    background-color: var(--neutral-light-gray);
}

.dop-step-tile.rejected {
    border-color: var(--danger-red);
    background-color: rgba(235, 87, 87, 0.05);
}

.dop-step-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.dop-step-icon.approved {
    background-color: var(--success-green);
    color: white;
}

.dop-step-icon.pending {
    background-color: var(--warning-yellow);
    color: var(--accent-dark-gray);
}

.dop-step-icon.rejected {
    background-color: var(--danger-red);
    color: white;
}

.dop-step-icon.submitted {
    background-color: var(--primary-orange);
    color: white;
}

/* Hero Section */
.dop-hero {
    background: linear-gradient(135deg, var(--secondary-cream) 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.dop-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23E85C27" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.dop-hero-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 3.5rem;
    color: var(--accent-dark-gray);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.dop-hero-subtitle {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 2rem;
    font-weight: 400;
}

.dop-hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

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

.dop-stat-number {
    display: block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 2rem;
    color: var(--primary-orange);
}

.dop-stat-label {
    display: block;
    font-size: 0.875rem;
    color: #666;
    margin-top: 0.25rem;
}

.dop-hero-logo {
    max-width: 300px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(232, 92, 39, 0.2));
}

/* Section Styling */
.dop-section-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 2.5rem;
    color: var(--accent-dark-gray);
    margin-bottom: 1rem;
}

.dop-section-subtitle {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 0;
}

/* Job Cards */
.dop-job-card {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.dop-job-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-orange), #ff7849);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.dop-job-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--accent-dark-gray);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.dop-job-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.dop-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #666;
}

.dop-icon-location::before { content: "📍"; }
.dop-icon-salary::before { content: "💰"; }
.dop-icon-arrow::before { content: "→"; }

.dop-job-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

/* Hero Section Enhancements */
.dop-hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.dop-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    font-weight: 500;
}

.dop-feature-icon {
    font-size: 1.5rem;
}

.dop-hero-actions {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.dop-hero-visual {
    position: relative;
}

.dop-hero-badge {
    position: absolute;
    top: -20px;
    right: 20px;
    background: linear-gradient(135deg, var(--danger-red), #ff6b6b);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
    animation: pulse 2s infinite;
}

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

/* Why Choose Us Section */
.dop-why-section {
    background: linear-gradient(135deg, var(--secondary-cream) 0%, #ffffff 100%);
}

.dop-benefit-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all var(--transition);
    height: 100%;
}

.dop-benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(232, 92, 39, 0.15);
}

.dop-benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.dop-benefit-card h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--accent-dark-gray);
    margin-bottom: 1rem;
}

.dop-benefit-card p {
    color: #666;
    line-height: 1.6;
}

/* Process Section */
.dop-process-section {
    background: var(--neutral-light-gray);
}

.dop-process-step {
    text-align: center;
    padding: 2rem 1rem;
}

.dop-step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-orange), #ff7849);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.dop-process-step h5 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--accent-dark-gray);
    margin-bottom: 1rem;
}

.dop-process-step p {
    color: #666;
    line-height: 1.6;
}

/* CTA Section */
.dop-cta-section {
    background: linear-gradient(135deg, var(--accent-dark-gray) 0%, #1a1a1a 100%);
    color: white;
    padding: 4rem 0;
    margin-bottom: 0;
}

.dop-cta-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 3rem 2rem;
    backdrop-filter: blur(10px);
}

.dop-cta-card h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
}

.dop-cta-card p {
    font-size: 1.125rem;
    opacity: 0.9;
    color: white;
}

/* Jobs Section Enhancements */
.dop-jobs-section {
    background: white;
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    .dop-hero-features {
        grid-template-columns: 1fr;
    }
    
    .dop-hero-actions {
        flex-direction: column;
    }
    
    .dop-hero-actions .dop-btn {
        width: 100%;
        text-align: center;
    }
    
    .dop-cta-card {
        text-align: center;
    }
    
    .dop-cta-card .col-lg-4 {
        margin-top: 2rem;
    }
}

/* Modal */
.modal-content {
    border-radius: var(--border-radius);
    border: none;
}

.modal-header {
    background-color: var(--secondary-cream);
    border-bottom: 2px solid var(--border-color);
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.modal-title {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--accent-dark-gray);
}

/* Alerts */
.alert {
    border-radius: var(--border-radius);
    border: none;
    font-family: var(--font-body);
}

.alert-success {
    background-color: rgba(39, 174, 96, 0.1);
    color: var(--success-green);
}

.alert-danger {
    background-color: rgba(235, 87, 87, 0.1);
    color: var(--danger-red);
}

.alert-warning {
    background-color: rgba(242, 201, 76, 0.1);
    color: #d4a017;
}

/* Tables */
.wp-list-table {
    border-radius: var(--border-radius);
    overflow: hidden;
}

.wp-list-table th {
    background-color: var(--secondary-cream);
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--accent-dark-gray);
}

/* Responsive */
@media (max-width: 768px) {
    .dop-dashboard-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .dop-sidebar {
        min-height: auto;
        border-right: none;
        border-bottom: 1px solid var(--border-color);
    }
    
    .dop-logo {
        max-width: 140px;
    }
}

/* Accessibility - WCAG AA Compliance */
a:focus, button:focus, input:focus, select:focus, textarea:focus {
    outline: 2px solid var(--primary-orange);
    outline-offset: 2px;
}

/* Loading Spinner */
.dop-spinner {
    border: 3px solid var(--neutral-light-gray);
    border-top: 3px solid var(--primary-orange);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

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

/* Toast Notifications */
.dop-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    min-width: 300px;
    max-width: 500px;
}

/* Loading States */
.spinner-border-sm {
    width: 1rem;
    height: 1rem;
}

/* Button States */
.dop-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

.dop-btn:disabled:hover {
    transform: none !important;
}

/* Mobile Navigation Toggle */
.dop-mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.dop-mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.dop-mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Enhanced Mobile Responsive */
@media (max-width: 768px) {
    .dop-nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        gap: 1rem;
    }
    
    .dop-nav-menu.active {
        display: flex;
    }
    
    .dop-mobile-toggle {
        display: flex;
    }
    
    .dop-navbar {
        position: relative;
    }
    
    .dop-hero-title {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .dop-hero-subtitle {
        text-align: center;
    }
    
    .dop-hero-features {
        grid-template-columns: 1fr;
    }
    
    .dop-hero-actions {
        flex-direction: column;
    }
    
    .dop-hero-actions .dop-btn {
        width: 100%;
        text-align: center;
    }
    
    .dop-section-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .dop-section-subtitle {
        text-align: center;
    }
    
    .dop-cta-card {
        text-align: center;
    }
    
    .dop-cta-card .col-lg-4 {
        margin-top: 2rem;
    }
    
    .dop-footer-legal {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .dop-job-card {
        margin-bottom: 1.5rem;
    }
    
    .dop-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .dop-process-step {
        margin-bottom: 2rem;
    }
    
    .dop-toast {
        left: 1rem;
        right: 1rem;
        min-width: auto;
    }
}

@media (max-width: 576px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .dop-hero {
        padding: 2rem 0;
    }
    
    .dop-hero-title {
        font-size: 2rem;
    }
    
    .dop-hero-subtitle {
        font-size: 1rem;
    }
    
    .dop-hero-stats {
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .dop-section-title {
        font-size: 1.75rem;
    }
    
    .dop-cta-card {
        padding: 2rem 1rem;
    }
    
    .dop-cta-card h3 {
        font-size: 1.5rem;
    }
    
    .dop-footer-main {
        padding: 2rem 0 1rem;
    }
    
    .dop-footer-section {
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .dop-social-links {
        justify-content: center;
    }
}
