/* GLOOMOV Premium Light-Blue Stylesheet */

:root {
    --bg-primary: #f3f7fa;
    --bg-secondary: #ffffff;
    --text-primary: #0a1528;
    --text-secondary: #64748b;
    --accent: #1d4ed8;
    --accent-hover: #1e40af;
    --accent-light: rgba(29, 78, 216, 0.08);
    --accent-glow: rgba(29, 78, 216, 0.25);
    
    /* Card Styles matching user request */
    --card-bg: #ffffff;
    --card-text-primary: #0f172a;
    --card-text-secondary: #475569;
    
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

/* Full Width Desktop Shell */
.app-shell {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* App Container (Mobile viewport emulation or centered panel) */
.app-container {
    max-width: 100%;
    width: 100%;
    background-color: var(--bg-primary);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Responsive Desktop Wrapper */
@media (min-width: 992px) {
    .desktop-only {
        display: block !important;
    }
    .mobile-only {
        display: none !important;
    }
    
    .desktop-header {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        padding: 20px 8%;
        background-color: var(--bg-secondary);
        box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    }
    
    .desktop-nav-links {
        display: flex;
        gap: 30px;
    }
    
    .desktop-nav-links a {
        color: var(--text-primary);
        text-decoration: none;
        font-weight: 600;
        font-size: 14px;
        transition: color 0.2s;
    }
    
    .desktop-nav-links a:hover {
        color: var(--accent);
    }

    .desktop-hero {
        text-align: center;
        padding: 50px 20px 30px 20px;
    }
    
    .desktop-hero h1 {
        font-size: 36px;
        font-weight: 800;
        color: var(--text-primary);
        margin-bottom: 12px;
    }
    
    .desktop-hero p {
        font-size: 16px;
        color: var(--text-secondary);
        margin-bottom: 25px;
    }

    /* Core Desktop Row layout matching user's desktop mockup */
    .desktop-dashboard {
        display: flex;
        flex-direction: column;
        gap: 30px;
        padding: 0 4%;
        max-width: 100%;
        margin: 0 auto 50px auto;
        width: 100%;
    }
    
    .desktop-cards-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 25px;
        width: 100%;
    }
    
    .desktop-column {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .desktop-map-col {
        height: 500px;
        position: relative;
        background-color: var(--bg-secondary);
        border-radius: 24px;
        padding: 10px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        border: 1px solid rgba(0,0,0,0.03);
        display: flex;
        flex-direction: column;
        width: 100%;
    }
    
    .desktop-map-col #desktop-map {
        flex: 1;
        border-radius: 18px;
        height: 100% !important;
        margin: 0 !important;
    }

    /* Driver Dashboard Desktop Grid Layout */
    .driver-dashboard-wrapper {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .driver-sidebar-col {
        display: flex;
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }

    .driver-main-col {
        display: flex;
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }

    @media (min-width: 992px) {
        .driver-dashboard-wrapper {
            display: grid;
            grid-template-columns: 350px 1fr;
            gap: 30px;
            padding: 0 4%;
            width: 100%;
            max-width: 100%;
            margin: 30px auto;
            align-items: start;
        }
        
        .driver-sidebar-col {
            width: 100%;
        }
        
        .driver-main-col {
            background-color: var(--bg-secondary);
            border-radius: 24px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.02);
            border: 1px solid rgba(0,0,0,0.03);
            width: 100%;
        }
    }
}

/* Defaults for elements hidden in various breakpoints */
.desktop-only {
    display: none;
}
.mobile-only {
    display: block;
}

/* Header Styles matching screenshot */
.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: var(--bg-secondary);
    border-bottom: 1px solid rgba(0,0,0,0.03);
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

.app-header .logo {
    font-size: 22px;
    font-weight: 800;
    color: var(--accent);
    text-decoration: none;
}

.app-header .icon-btn {
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 20px;
    cursor: pointer;
    position: relative;
    padding: 5px;
}

/* Location Search bar */
.location-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    background-color: var(--bg-secondary);
    border-bottom: 1px solid rgba(0,0,0,0.03);
}

.location-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.location-info i {
    color: var(--accent);
    font-size: 18px;
}

.location-details {
    display: flex;
    flex-direction: column;
}

.location-details span:first-child {
    font-size: 10px;
    color: var(--text-secondary);
    text-transform: uppercase;
    font-weight: 700;
}

.location-details span:last-child {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
}

.location-action {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 16px;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    background-color: var(--bg-primary);
    transition: color 0.2s;
}
.location-action:hover {
    color: var(--accent);
}

/* Main Tagline */
.tagline-section {
    padding: 20px 20px 10px 20px;
    text-align: center;
}

.tagline-section h1 {
    font-size: 22px;
    font-weight: 800;
    line-height: 1.3;
    color: var(--text-primary);
}
.tagline-section p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 4px;
}

/* Map placeholder */
.map-container {
    height: 220px;
    width: 100%;
    background-color: #e2e8f0;
    border-radius: 20px;
    margin-bottom: 20px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

/* Services layout matching screenshot details */
.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 0 20px 20px 20px;
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr; /* Stack on small mobile screen */
    }
}

.service-card {
    background-color: var(--card-bg);
    border-radius: 20px;
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Left aligned content to fit bullet details! */
    text-align: left;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.02);
    width: 100%;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(29, 78, 216, 0.1);
    border-color: rgba(29, 78, 216, 0.1);
}

.service-img-wrapper {
    height: 70px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.service-img-wrapper img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.service-card h2 {
    color: var(--card-text-primary);
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Bullet details lists matching screenshot */
.service-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.service-bullets li {
    font-size: 11px;
    color: var(--text-secondary);
    line-height: 1.5;
    position: relative;
    padding-left: 12px;
    margin-bottom: 3px;
}

.service-bullets li::before {
    content: "•";
    color: var(--accent);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

/* Call Button inside card for Desktop Layout */
.card-call-btn {
    margin-top: 15px;
    width: 100%;
    display: none;
}

@media (min-width: 992px) {
    .card-call-btn {
        display: flex;
    }
    .service-card {
        padding: 25px 20px;
    }
}

/* Recent Activity section matching mobile mockup */
.recent-activity-section {
    padding: 0 20px 20px 20px;
}

.recent-activity-card {
    background-color: var(--bg-secondary);
    border-radius: 16px;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    text-decoration: none;
    color: inherit;
    border: 1px solid rgba(0,0,0,0.02);
}

.recent-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.recent-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-primary);
}

.recent-time {
    font-size: 11px;
    color: var(--text-secondary);
}

/* Sticky Bottom Mobile Bar matching mockup */
.mobile-profile-bar {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 480px;
    background-color: var(--bg-secondary);
    border-top: 1px solid rgba(0,0,0,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    z-index: 1000;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.04);
}

.mobile-profile-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--accent-light);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    border: 1.5px solid var(--accent);
}

.mobile-user-details {
    display: flex;
    flex-direction: column;
}

.mobile-user-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-primary);
}

.mobile-user-rating {
    font-size: 11px;
    color: #eab308;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 3px;
}

.mobile-profile-actions {
    display: flex;
    gap: 15px;
}

.mobile-profile-actions a {
    color: var(--text-secondary);
    font-size: 18px;
    padding: 8px;
    border-radius: 50%;
    transition: color 0.2s, background-color 0.2s;
}

.mobile-profile-actions a:hover, .mobile-profile-actions a.active {
    color: var(--accent);
    background-color: var(--bg-primary);
}

/* Form inputs & Glassmorphism card layouts */
.auth-container {
    padding: 40px 25px;
    background-color: var(--bg-secondary);
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.03);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
}

.form-group label {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-control {
    background-color: var(--bg-primary);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    padding: 12px 16px;
    color: var(--text-primary);
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s, background-color 0.2s;
}

.form-control:focus {
    border-color: var(--accent);
    background-color: #ffffff;
    box-shadow: 0 0 0 3px var(--accent-light);
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
}

.form-control-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

/* Checkboxes Grid for Mechanic options */
.checkbox-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 5px;
}
@media (min-width: 480px) {
    .checkbox-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background-color: var(--bg-primary);
    border: 1px solid rgba(0,0,0,0.03);
    border-radius: 10px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    transition: background-color 0.2s, border-color 0.2s;
}

.checkbox-label input {
    width: 16px;
    height: 16px;
    accent-color: var(--accent);
}

.checkbox-label:hover {
    background-color: rgba(29, 78, 216, 0.03);
}

/* File Upload Field */
.file-upload-wrapper {
    position: relative;
    overflow: hidden;
    display: inline-block;
    width: 100%;
}

.file-upload-btn {
    border: 1.5px dashed var(--accent);
    color: var(--accent);
    background-color: var(--accent-light);
    padding: 15px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.2s;
}

.file-upload-btn:hover {
    background-color: rgba(29, 78, 216, 0.12);
}

.file-upload-wrapper input[type=file] {
    font-size: 100px;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    cursor: pointer;
}

/* Buttons */
.btn {
    background: linear-gradient(135deg, var(--accent) 0%, #1d4ed8 100%);
    color: white;
    border: none;
    padding: 14px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.1s, box-shadow 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    box-shadow: 0 4px 10px var(--accent-glow);
}

.btn:hover {
    opacity: 0.95;
    box-shadow: 0 6px 15px var(--accent-glow);
}

.btn:active {
    transform: scale(0.98);
}

.btn-secondary {
    background: #e2e8f0;
    border: 1px solid rgba(0,0,0,0.05);
    color: var(--text-primary);
    box-shadow: none;
}

.btn-secondary:hover {
    background: #cbd5e1;
    box-shadow: none;
}

.btn-danger {
    background: var(--danger);
    box-shadow: 0 4px 10px rgba(239, 68, 68, 0.2);
}

.btn-danger:hover {
    box-shadow: 0 6px 15px rgba(239, 68, 68, 0.3);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 12px;
    border-radius: 8px;
}

/* Alert Boxes */
.alert {
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 13px;
    margin-bottom: 15px;
    border: 1px solid transparent;
}

.alert-success {
    background-color: rgba(16, 185, 129, 0.08);
    border-color: rgba(16, 185, 129, 0.15);
    color: #065f46;
}

.alert-danger {
    background-color: rgba(239, 68, 68, 0.08);
    border-color: rgba(239, 68, 68, 0.15);
    color: #991b1b;
}

.alert-warning {
    background-color: rgba(245, 158, 11, 0.08);
    border-color: rgba(245, 158, 11, 0.15);
    color: #92400e;
}

/* Bottom Navigation Bar for profile/wallet subpages */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 480px;
    background-color: var(--bg-secondary);
    border-top: 1px solid rgba(0,0,0,0.05);
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    z-index: 1000;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 10px;
    font-weight: 500;
    width: 20%;
    transition: color 0.2s;
}

.nav-item i {
    font-size: 18px;
}

.nav-item.active {
    color: var(--accent);
}

/* Modals */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 21, 40, 0.4);
    display: none;
    align-items: flex-end;
    justify-content: center;
    z-index: 2000;
    backdrop-filter: blur(4px);
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background-color: var(--bg-secondary);
    border-top-left-radius: 28px;
    border-top-right-radius: 28px;
    width: 100%;
    max-width: 480px;
    padding: 24px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.05);
    animation: slideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(0,0,0,0.03);
    padding-bottom: 10px;
}

.modal-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-primary);
}

.close-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 20px;
    cursor: pointer;
}

/* Progress bar details */
.progress-bar-container {
    background-color: rgba(0,0,0,0.05);
    height: 10px;
    border-radius: 5px;
    width: 100%;
    margin: 10px 0;
    overflow: hidden;
}

.progress-bar {
    background: linear-gradient(90deg, var(--accent) 0%, #10b981 100%);
    height: 100%;
    border-radius: 5px;
    transition: width 0.3s;
}

/* Grid & List components */
.list-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.list-item {
    background-color: var(--bg-secondary);
    border: 1px solid rgba(0,0,0,0.03);
    border-radius: 16px;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.list-item-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.list-item-title {
    font-weight: 700;
    font-size: 14px;
}

.list-item-subtitle {
    font-size: 12px;
    color: var(--text-secondary);
}

.list-item-price {
    font-weight: 800;
    font-size: 16px;
    color: var(--accent);
}

/* Chat Styles */
.chat-container {
    display: flex;
    flex-direction: column;
    height: 280px;
    background-color: var(--bg-primary);
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.03);
    padding: 12px;
    margin-bottom: 15px;
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 10px;
}

.message-bubble {
    max-width: 85%;
    padding: 10px 14px;
    border-radius: 16px;
    font-size: 13px;
    line-height: 1.4;
    word-break: break-word;
}

.message-bubble.sent {
    background-color: var(--accent);
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.message-bubble.received {
    background-color: var(--bg-secondary);
    color: var(--text-primary);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
    border: 1px solid rgba(0,0,0,0.03);
}

.chat-input-row {
    display: flex;
    gap: 8px;
}

.chat-input-row input {
    flex: 1;
}

/* Admin Dashboard layout tweaks */
.admin-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .admin-stats-grid {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}

.admin-stat-card {
    background-color: var(--bg-secondary);
    border: 1px solid rgba(0,0,0,0.03);
    border-radius: 18px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.admin-stat-card .value {
    font-size: 24px;
    font-weight: 800;
    color: var(--accent);
}

.admin-stat-card .label {
    font-size: 10px;
    color: var(--text-secondary);
    text-transform: uppercase;
    font-weight: 700;
}

.badge {
    padding: 5px 10px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    display: inline-block;
}

.badge-pending { background-color: rgba(245, 158, 11, 0.08); color: var(--warning); }
.badge-accepted { background-color: rgba(29, 78, 216, 0.08); color: var(--accent); }
.badge-completed { background-color: rgba(16, 185, 129, 0.08); color: var(--success); }
.badge-cancelled { background-color: rgba(239, 68, 68, 0.08); color: var(--danger); }
.badge-suspended { background-color: rgba(239, 68, 68, 0.08); color: var(--danger); }
.badge-active { background-color: rgba(16, 185, 129, 0.08); color: var(--success); }

/* Online Toggle Switch */
.toggle-switch-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--bg-secondary);
    padding: 16px 20px;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.03);
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.switch-label {
    font-weight: 700;
    font-size: 14px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.switch input { 
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #cbd5e1;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--success);
}

input:checked + .slider:before {
    -webkit-transform: translateX(24px);
    -ms-transform: translateX(24px);
    transform: translateX(24px);
}

/* Auth Page Centered Wrapper for PC View */
.auth-page-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    width: 100%;
    padding: 30px 15px;
    background-color: var(--bg-primary);
}

.auth-page-wrapper .app-container {
    max-width: 480px;
    width: 100%;
    min-height: auto;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    background-color: var(--bg-secondary);
    border: 1px solid rgba(0,0,0,0.03);
    padding-bottom: 20px;
}

/* Landing Page Styles */
.landing-shell {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.landing-header {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.04);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.landing-logo {
    font-size: 24px;
    font-weight: 800;
    color: var(--accent);
    text-decoration: none;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.landing-nav {
    display: flex;
    align-items: center;
    gap: 25px;
}

.landing-nav a:not(.btn) {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.2s;
}

.landing-nav a:not(.btn):hover {
    color: var(--accent);
}

.landing-hero {
    background: linear-gradient(135deg, rgba(10, 21, 40, 0.95) 0%, rgba(10, 21, 40, 0.8) 100%), url('images/background.png') no-repeat center center;
    background-size: cover;
    padding: 80px 6%;
    text-align: center;
    max-width: 1300px;
    margin: 30px auto;
    border-radius: 28px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    color: #ffffff;
    overflow: hidden;
    position: relative;
}

.landing-hero h1 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -1px;
    color: #ffffff;
    margin-bottom: 20px;
}

.landing-hero h1 span {
    color: #38bdf8;
    background: linear-gradient(135deg, #38bdf8 0%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.landing-hero p {
    font-size: 17px;
    color: #cbd5e1;
    max-width: 650px;
    margin: 0 auto 35px auto;
    line-height: 1.6;
}

.landing-hero-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
}

@media (max-width: 576px) {
    .landing-hero h1 {
        font-size: 32px;
    }
    .landing-hero p {
        font-size: 15px;
    }
    .landing-hero-actions {
        flex-direction: column;
        gap: 10px;
    }
    .landing-hero-actions .btn {
        width: 100%;
    }
    .landing-header {
        padding: 15px 20px;
    }
    .landing-nav {
        gap: 12px;
    }
    .landing-nav a:not(.btn) {
        display: none; /* Hide standard links on mobile header, keep CTAs */
    }
}

.landing-section {
    padding: 60px 5%;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.landing-section-title {
    text-align: center;
    margin-bottom: 50px;
}

.landing-section-title h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-primary);
}

.landing-section-title p {
    font-size: 15px;
    color: var(--text-secondary);
    margin-top: 10px;
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.sector-card {
    background-color: var(--bg-secondary);
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    border: 1px solid rgba(0,0,0,0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.sector-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(29, 78, 216, 0.08);
    border-color: rgba(29, 78, 216, 0.1);
}

.sector-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: var(--accent-light);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.sector-card h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.sector-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.sector-bullets-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sector-bullets-list li {
    font-size: 13px;
    color: var(--text-primary);
    padding-left: 20px;
    position: relative;
    margin-bottom: 8px;
    font-weight: 600;
}

.sector-bullets-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--success);
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 11px;
}

.how-it-works-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.how-tab-btn {
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    background: var(--bg-secondary);
    border: 1px solid rgba(0,0,0,0.05);
    color: var(--text-secondary);
    transition: all 0.2s;
}

.how-tab-btn.active {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
    box-shadow: 0 4px 15px var(--accent-glow);
}

.how-steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.how-step-card {
    background: var(--bg-secondary);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(0,0,0,0.02);
    box-shadow: 0 8px 25px rgba(0,0,0,0.01);
    position: relative;
}

.how-step-num {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 36px;
    font-weight: 800;
    color: rgba(29, 78, 216, 0.1);
}

.how-step-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.how-step-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Premium Split Landing Hero with Banner Background */
@media (min-width: 992px) {
    .landing-hero {
        display: grid !important;
        grid-template-columns: 1.2fr 1fr;
        gap: 60px;
        align-items: center;
        text-align: left;
        max-width: 1300px;
        padding: 120px 8% 120px 8%;
        margin: 30px auto;
        background: linear-gradient(135deg, rgba(10, 21, 40, 0.95) 0%, rgba(10, 21, 40, 0.8) 100%), url('images/background.png') no-repeat center center;
        background-size: cover;
    }
    
    .landing-hero h1 {
        text-align: left;
        font-size: 52px;
        line-height: 1.15;
    }
    
    .landing-hero p {
        text-align: left;
        margin-left: 0;
        margin-right: 0;
    }
    
    .landing-hero-actions {
        justify-content: flex-start;
    }
    
    .landing-hero-image-wrapper {
        display: block !important;
        position: relative;
        height: 300px;
    }
    
    .landing-badge-floating {
        position: absolute;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-radius: 18px;
        padding: 15px 22px;
        display: flex;
        align-items: center;
        gap: 12px;
        box-shadow: 0 15px 35px rgba(0,0,0,0.12);
        border: 1px solid rgba(255,255,255,0.5);
    }
    
    .landing-badge-1 {
        top: 20px;
        left: 20px;
        animation: floatImg 5s ease-in-out infinite;
    }
    
    .landing-badge-2 {
        bottom: 20px;
        right: 20px;
        animation: floatImg 7s ease-in-out infinite;
    }

    /* 2 Alt 2 Üst Sektör Kart Yerleşimi */
    .sectors-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 35px !important;
    }
}

.landing-hero-image-wrapper {
    display: none;
}

@keyframes floatImg {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-12px) rotate(1deg);
    }
}

@media (max-width: 991px) {
    .app-container {
        padding-bottom: 85px !important;
    }
}
