/* ==========================================
   ZRIDO – Inner Pages Shared Stylesheet
   ========================================== */

/* ---------- Page Hero ---------- */
.page-hero {
    padding: 160px 0 80px;
    background: linear-gradient(180deg, #F5F0FF 0%, #EEFAFF 50%, #FFFFFF 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 40%, rgba(108, 92, 231, 0.06) 0%, transparent 50%),
                radial-gradient(circle at 70% 60%, rgba(6, 182, 212, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.page-hero .section-tag {
    display: inline-block;
    background: rgba(108, 92, 231, 0.1);
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.page-hero h1 {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--dark);
}

.page-hero .page-subtitle {
    font-size: 18px;
    color: var(--gray-500);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

.page-hero.page-hero-sm {
    padding: 140px 0 60px;
}
.page-hero.page-hero-sm h1 {
    font-size: clamp(28px, 4vw, 42px);
}
.page-hero.page-hero-sm p {
    color: var(--gray-500);
    font-size: 15px;
}

/* ---------- Breadcrumb ---------- */
.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
    font-size: 14px;
    color: var(--gray-400);
}

.breadcrumb a {
    color: var(--primary);
    font-weight: 500;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb .sep {
    color: var(--gray-300);
}

/* ---------- Inner Page Section ---------- */
.inner-section {
    padding: 80px 0;
}

.inner-section.alt-bg {
    background: var(--gray-100);
}

.inner-section .section-header {
    text-align: center;
    margin-bottom: 48px;
}

.inner-section .section-header h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    margin-bottom: 12px;
}

.inner-section .section-header p {
    font-size: 16px;
    color: var(--gray-500);
    max-width: 580px;
    margin: 0 auto;
}

/* ---------- Team Grid ---------- */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
}

.team-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 32px;
    text-align: center;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(108, 92, 231, 0.2);
}

.team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin: 0 auto 16px;
}

.team-card h4 {
    font-size: 18px;
    margin-bottom: 4px;
}

.team-card .role {
    font-size: 14px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 12px;
}

.team-card p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ---------- Values Grid ---------- */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.value-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 32px;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.value-card:hover {
    border-color: rgba(108, 92, 231, 0.3);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.value-icon {
    font-size: 36px;
    margin-bottom: 16px;
}

.value-card h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.value-card p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.7;
}

/* ---------- Timeline ---------- */
.timeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gradient);
    border-radius: 3px;
}

.timeline-item {
    position: relative;
    padding-bottom: 40px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -32px;
    top: 4px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--gradient);
    border: 3px solid white;
    box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.2);
}

.timeline-item h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.timeline-item .timeline-date {
    font-size: 13px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 8px;
}

.timeline-item p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.7;
}

/* ---------- Stats Row ---------- */
.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
    margin: 48px 0;
}

.stat-box {
    text-align: center;
    padding: 32px 16px;
    background: white;
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
}

.stat-box .stat-num {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 800;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.stat-box .stat-lbl {
    font-size: 14px;
    color: var(--gray-500);
}

/* ---------- How It Works Steps (detailed) ---------- */
.steps-detailed {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.step-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.step-detail:nth-child(even) {
    direction: rtl;
}

.step-detail:nth-child(even) > * {
    direction: ltr;
}

.step-detail-visual {
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.08), rgba(6, 182, 212, 0.08));
    border-radius: var(--radius-xl);
    padding: 48px;
    text-align: center;
    font-size: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1;
    max-height: 300px;
}

.step-detail-content .step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient);
    color: white;
    font-weight: 700;
    font-family: var(--font-display);
    font-size: 18px;
    margin-bottom: 16px;
}

.step-detail-content h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.step-detail-content p {
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 16px;
}

.step-detail-content ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.step-detail-content ul li {
    font-size: 14px;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    gap: 8px;
}

.step-detail-content ul li::before {
    content: '✓';
    color: var(--green);
    font-weight: 700;
}

/* ---------- Safety Features (detailed) ---------- */
.safety-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.safety-detail-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 32px;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.safety-detail-card:hover {
    border-color: rgba(108, 92, 231, 0.3);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.safety-detail-card .sd-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.safety-detail-card h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.safety-detail-card p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.7;
}

.safety-detail-card .sd-features {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.safety-detail-card .sd-tag {
    font-size: 12px;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    background: rgba(108, 92, 231, 0.08);
    color: var(--primary);
    font-weight: 500;
}

/* ---------- Cities Page ---------- */
.cities-filter {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 20px;
    border-radius: var(--radius-full);
    border: 2px solid var(--gray-200);
    background: white;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-main);
    color: var(--gray-600);
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--gradient);
    color: white;
    border-color: transparent;
}

.cities-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.city-page-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 24px;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    text-align: center;
}

.city-page-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(108, 92, 231, 0.3);
}

.city-page-card .city-emoji {
    font-size: 32px;
    margin-bottom: 12px;
}

.city-page-card h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.city-page-card .city-state {
    font-size: 13px;
    color: var(--gray-400);
    margin-bottom: 8px;
}

.city-page-card .city-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: var(--radius-full);
}

.city-badge.live {
    background: rgba(16, 185, 129, 0.1);
    color: var(--green);
}

.city-badge.soon {
    background: rgba(245, 158, 11, 0.1);
    color: var(--accent);
}

.city-badge.planned {
    background: rgba(108, 92, 231, 0.1);
    color: var(--primary);
}

/* ---------- Driver Page ---------- */
.driver-hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    padding: 120px 0 60px;
}

.driver-hero-text h1 {
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 16px;
}

.driver-hero-text p {
    font-size: 18px;
    color: var(--gray-500);
    margin-bottom: 24px;
    line-height: 1.7;
}

.driver-requirements {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.req-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 24px;
    border: 1px solid var(--gray-200);
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: var(--transition);
}

.req-card:hover {
    border-color: rgba(108, 92, 231, 0.3);
    transform: translateY(-2px);
}

.req-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.req-card h4 {
    font-size: 15px;
    margin-bottom: 4px;
}

.req-card p {
    font-size: 13px;
    color: var(--gray-500);
}

/* ---------- Blog ---------- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 32px;
}

.blog-card {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(108, 92, 231, 0.2);
}

.blog-card-img {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    position: relative;
}

.blog-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 13px;
    color: var(--gray-400);
}

.blog-category {
    background: rgba(108, 92, 231, 0.1);
    color: var(--primary);
    padding: 2px 10px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 12px;
}

.blog-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
    line-height: 1.4;
}

.blog-card h3 a:hover {
    color: var(--primary);
}

.blog-card p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.7;
    flex: 1;
}

.blog-card .read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
}

.blog-card .read-more:hover {
    gap: 10px;
}

/* ---------- Blog Post (Single) ---------- */
.blog-post-hero {
    padding: 140px 0 60px;
    background: linear-gradient(180deg, #F5F0FF 0%, #FFFFFF 100%);
}

.blog-post-hero .blog-post-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 14px;
    color: var(--gray-500);
    justify-content: center;
}

.blog-post-hero h1 {
    font-size: clamp(28px, 4vw, 44px);
    max-width: 800px;
    margin: 0 auto 16px;
    text-align: center;
    line-height: 1.3;
}

.blog-post-hero .post-subtitle {
    font-size: 18px;
    color: var(--gray-500);
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.blog-post-content {
    max-width: 760px;
    margin: 0 auto;
    padding: 40px 24px 80px;
}

.blog-post-content h2 {
    font-size: 28px;
    margin: 40px 0 16px;
}

.blog-post-content h3 {
    font-size: 22px;
    margin: 32px 0 12px;
}

.blog-post-content p {
    font-size: 16px;
    line-height: 1.9;
    color: var(--gray-600);
    margin-bottom: 20px;
}

.blog-post-content ul,
.blog-post-content ol {
    margin: 16px 0 24px 24px;
}

.blog-post-content li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: 8px;
}

.blog-post-content blockquote {
    border-left: 4px solid var(--primary);
    padding: 16px 24px;
    margin: 24px 0;
    background: rgba(108, 92, 231, 0.05);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-style: italic;
    color: var(--gray-600);
}

.blog-post-content .highlight-box {
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.08), rgba(6, 182, 212, 0.08));
    border-radius: var(--radius-lg);
    padding: 24px 32px;
    margin: 24px 0;
    border: 1px solid rgba(108, 92, 231, 0.15);
}

.blog-post-content .highlight-box h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.blog-post-content img {
    border-radius: var(--radius-lg);
    margin: 24px 0;
}

.blog-cta-box {
    background: var(--gradient);
    border-radius: var(--radius-xl);
    padding: 40px;
    text-align: center;
    color: white;
    margin: 40px 0;
}

.blog-cta-box h3 {
    color: white;
    font-size: 24px;
    margin-bottom: 8px;
}

.blog-cta-box p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 16px;
}

.blog-cta-box .btn {
    background: white;
    color: var(--primary);
    font-weight: 700;
}

.blog-share {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--gray-200);
}

.blog-share span {
    font-weight: 600;
    font-size: 14px;
    color: var(--dark);
}

.share-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    cursor: pointer;
    transition: var(--transition);
    font-size: 14px;
}

.share-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* ---------- Careers Page ---------- */
.perks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.perk-card {
    text-align: center;
    padding: 24px 16px;
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.perk-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.perk-card .perk-emoji {
    font-size: 36px;
    margin-bottom: 12px;
}

.perk-card h4 {
    font-size: 15px;
    margin-bottom: 4px;
}

.perk-card p {
    font-size: 13px;
    color: var(--gray-500);
}

.jobs-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 800px;
    margin: 0 auto;
}

.job-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 24px 32px;
    border: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition);
    gap: 16px;
    flex-wrap: wrap;
}

.job-card:hover {
    border-color: rgba(108, 92, 231, 0.3);
    box-shadow: var(--shadow-md);
}

.job-info h4 {
    font-size: 17px;
    margin-bottom: 4px;
}

.job-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.job-tag {
    font-size: 12px;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    background: var(--gray-100);
    color: var(--gray-500);
    font-weight: 500;
}

/* ---------- Apply Modal ---------- */
.apply-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    padding: 20px;
}
.apply-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}
.apply-modal {
    background: #fff;
    border-radius: var(--radius-xl, 16px);
    width: 100%;
    max-width: 580px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 36px 32px;
    position: relative;
    transform: translateY(30px) scale(0.96);
    transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
    box-shadow: 0 25px 60px rgba(0,0,0,0.25);
}
.apply-modal-overlay.active .apply-modal {
    transform: translateY(0) scale(1);
}
.apply-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border: none;
    background: var(--gray-100);
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
    transition: background 0.2s, color 0.2s;
    line-height: 1;
}
.apply-modal-close:hover {
    background: var(--gray-200);
    color: var(--gray-700);
}
.apply-modal-header {
    margin-bottom: 24px;
}
.apply-modal-header h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 6px;
}
.apply-modal-header p {
    color: var(--gray-500);
    font-size: 14px;
}

/* Form styles */
.apply-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.apply-form .form-group {
    margin-bottom: 16px;
}
.apply-form label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 6px;
}
.apply-form label .required {
    color: #EF4444;
}
.apply-form input[type="text"],
.apply-form input[type="email"],
.apply-form input[type="tel"],
.apply-form input[type="url"],
.apply-form textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-md, 8px);
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    background: var(--gray-50, #f9fafb);
    transition: border-color 0.2s, box-shadow 0.2s;
    color: var(--gray-800);
}
.apply-form input:focus,
.apply-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(108,92,231,0.12);
    background: #fff;
}
.apply-form input[readonly] {
    background: var(--gray-100);
    cursor: default;
    color: var(--gray-500);
}
.apply-form textarea {
    resize: vertical;
    min-height: 80px;
}

/* File upload */
.file-upload-wrapper {
    position: relative;
    border: 2px dashed var(--gray-300);
    border-radius: var(--radius-md, 8px);
    padding: 24px;
    text-align: center;
    transition: border-color 0.2s, background 0.2s;
    cursor: pointer;
}
.file-upload-wrapper:hover,
.file-upload-wrapper.drag-over {
    border-color: var(--primary);
    background: rgba(108,92,231,0.04);
}
.file-upload-wrapper.has-file {
    border-color: #10B981;
    background: rgba(16,185,129,0.04);
}
.file-upload-wrapper input[type="file"] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}
.file-upload-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    pointer-events: none;
}
.file-upload-text {
    font-size: 14px;
    color: var(--gray-500);
}
.file-upload-text strong {
    color: var(--primary);
}
.file-upload-hint {
    font-size: 12px;
    color: var(--gray-400);
}
.file-name-display {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #10B981;
}

/* Submit button spinner */
.btn-loading {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}
.spin {
    animation: spin 0.8s linear infinite;
}

/* Success state */
.apply-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 0;
    gap: 12px;
}
.success-icon {
    margin-bottom: 8px;
}
.apply-success h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
}
.apply-success p {
    color: var(--gray-500);
    max-width: 360px;
    font-size: 14px;
}

/* Job card button fix for <button> */
.job-card .btn {
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

/* Responsive */
@media (max-width: 640px) {
    .apply-modal {
        padding: 24px 20px;
        max-height: 95vh;
    }
    .apply-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .apply-modal-header h3 {
        font-size: 20px;
    }
    .file-upload-wrapper {
        padding: 16px;
    }
}

/* ---------- Contact Page ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.contact-form {
    background: white;
    border-radius: var(--radius-xl);
    padding: 40px;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: 15px;
    font-family: var(--font-main);
    transition: var(--transition);
    background: var(--gray-100);
    color: var(--dark);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.1);
    background: white;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 24px;
    border: 1px solid var(--gray-200);
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.ci-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.contact-info-card h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.contact-info-card p {
    font-size: 14px;
    color: var(--gray-500);
}

.contact-info-card a {
    color: var(--primary);
    font-weight: 500;
}

/* ---------- Legal Pages ---------- */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 24px 80px;
}

.legal-content h2 {
    font-size: 24px;
    margin: 40px 0 12px;
    color: var(--dark);
}

.legal-content h3 {
    font-size: 20px;
    margin: 28px 0 8px;
    color: var(--dark);
}

.legal-content p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-content ul {
    margin: 12px 0 20px 20px;
}

.legal-content li {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 8px;
}

.legal-content .last-updated {
    font-size: 14px;
    color: var(--gray-400);
    margin-bottom: 32px;
    font-style: italic;
}

/* ---------- Responsive - Inner Pages ---------- */
@media (max-width: 768px) {
    .page-hero {
        padding: 130px 0 60px;
    }

    .step-detail {
        grid-template-columns: 1fr;
    }

    .step-detail:nth-child(even) {
        direction: ltr;
    }

    .step-detail-visual {
        max-height: 200px;
        font-size: 60px;
    }

    .driver-hero-split {
        grid-template-columns: 1fr;
        padding: 130px 0 40px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .cities-page-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    }

    .job-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .stats-row {
        grid-template-columns: repeat(2, 1fr);
    }
}
