/**
 * Site chrome — extracted from includes/head.php inline styles.
 */

:root {
            --primary-color: #8BC34A;
            --secondary-color: #4CAF50;
            --accent-color: #FF9800;
            --text-dark: #333;
            --text-light: #666;
            --bg-light: #f8f9fa;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            overflow-x: clip;
            max-width: 100vw;
        }

        html {
            overflow-x: clip;
            max-width: 100vw;
        }

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

        .header-top {
            background: var(--primary-color);
            color: white;
            padding: 8px 0;
            font-size: 14px;
        }

        .header-main {
            padding: 15px 0;
        }

        /* iOS Switch Style */
        .service-switch {
            display: flex;
            background: #f0f0f0;
            border-radius: 25px;
            padding: 4px;
            border: 2px solid #ddd;
            max-width: 300px;
            margin: 0 auto;
        }

        .service-switch--triple {
            max-width: 100%;
            width: 100%;
            gap: 2px;
        }

        .service-switch button {
            flex: 1;
            background: transparent;
            border: none;
            padding: 12px 20px;
            border-radius: 20px;
            font-weight: 600;
            transition: all 0.3s ease;
            color: #666;
            position: relative;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
        }

        .service-switch--triple button {
            padding: 10px 12px;
            font-size: 0.82rem;
        }
        
        .service-switch button span {
            white-space: nowrap;
        }

        .service-switch button.active {
            background: #fff;
            color: var(--primary-color);
            box-shadow: 0 2px 8px rgba(0,0,0,0.15);
            /* no layout-shift hover */
        }

        .service-switch button:hover:not(.active) {
            color: var(--primary-color);
        }

        /* Yeni özellik badge */
        .nav-feature-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 2px 7px;
            border-radius: 999px;
            background: var(--accent-color, #FF9800);
            color: #fff;
            font-size: 0.65rem;
            font-weight: 800;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            line-height: 1.2;
            vertical-align: middle;
            box-shadow: 0 1px 4px rgba(255, 152, 0, 0.35);
        }

        .service-switch .nav-feature-badge {
            padding: 1px 5px;
            font-size: 0.58rem;
        }

        .main-nav .nav-item > a {
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .main-nav .nav-item > a.is-active {
            color: var(--primary-color);
            font-weight: 700;
        }

        .mobile-nav-links a,
        .footer-section a {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            flex-wrap: wrap;
        }

        .mobile-menu-list .nav-feature-badge,
        .mobile-nav-links .nav-feature-badge {
            margin-left: 4px;
        }

        /* User Area */
        .user-area {
            display: flex;
            align-items: center;
            gap: 15px;
            justify-content: flex-end;
        }

        /* KPU User Area (Search olmadığında) */
        .kpu-user-area {
            justify-content: center;
        }

        .search-box {
            position: relative;
            display: flex;
            align-items: center;
            background: #f8f9fa;
            border-radius: 25px;
            border: 2px solid #e9ecef;
            transition: all 0.3s ease;
            overflow: hidden;
        }

        .search-box:focus-within {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
            background: white;
        }

        .search-box input {
            border: none;
            background: transparent;
            padding: 12px 15px;
            width: 200px;
            outline: none;
            font-size: 0.95rem;
        }

        .search-box input::placeholder {
            color: #999;
        }

        .search-box i {
            padding: 12px 15px;
            color: #999;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .search-box:focus-within i {
            color: var(--primary-color);
        }

        /* User Dropdown */
        .user-dropdown {
            position: relative;
        }

        .user-dropdown-trigger {
            background: white;
            border: 2px solid #e0e0e0;
            border-radius: 25px;
            padding: 8px 15px;
            display: flex;
            align-items: center;
            gap: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            min-width: 180px;
        }

        .user-dropdown-trigger:hover {
            border-color: var(--primary-color);
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        .user-info {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            flex: 1;
        }

        .user-greeting {
            font-size: 0.75rem;
            color: #666;
            padding: 2px 6px;
            border-radius: 8px;
            margin-bottom: 2px;
            font-weight: 500;
        }

        .user-name {
            font-size: 0.85rem;
            font-weight: 600;
            color: #333;
            background: #f0f0f0;
            padding: 2px 6px;
            border-radius: 8px;
        }

        .user-icon {
            width: 28px;
            height: 28px;
            background: #333;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 0.7rem;
            flex-shrink: 0;
        }

        .user-dropdown-menu {
            position: absolute;
            top: 100%;
            right: 0;
            background: white;
            border: 2px solid #e0e0e0;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            min-width: 220px;
            display: none;
            z-index: 1000;
            margin-top: 5px;
        }

        .user-dropdown:hover .user-dropdown-menu,
        .user-dropdown.active .user-dropdown-menu {
            display: block;
        }

        .user-dropdown-menu {
            transition: all 0.3s ease;
        }

        .dropdown-item {
            padding: 12px 20px;
            border-bottom: 1px solid #f0f0f0;
            text-decoration: none;
            color: #333;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
        }

        .dropdown-item:hover {
            background: #f8f9fa;
            color: var(--primary-color);
        }

        .dropdown-item:last-child {
            border-bottom: none;
        }

        .dropdown-item i {
            width: 20px;
            text-align: center;
        }

        .dropdown-divider {
            height: 1px;
            background: #e0e0e0;
            margin: 5px 0;
        }

        /* Navigation */
        .main-nav {
            background: #fff;
            border-top: 1px solid #e0e0e0;
            padding: 15px 0;
        }

        .nav-items {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .nav-left {
            display: flex;
            align-items: center;
            gap: 20px;
        }

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

        .nav-item {
            position: relative;
        }

        .nav-item a {
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 500;
            padding: 8px 12px;
            border-radius: 6px;
            transition: all 0.3s ease;
            font-size: 0.95rem;
        }

        .nav-item a:hover {
            background: var(--bg-light);
            color: var(--primary-color);
        }

        .nav-item .btn {
            color: white !important;
            background: var(--primary-color) !important;
            border: none !important;
            padding: 8px 16px !important;
            font-size: 0.9rem !important;
        }

        .nav-item .btn:hover {
            background: var(--secondary-color) !important;
        }

        .nav-item.dropdown:hover .dropdown-menu {
            display: block !important;
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            border-radius: 12px;
            padding: 20px;
            min-width: min(1080px, 96vw);
            max-width: 96vw;
            display: none !important;
            z-index: 1000;
        }

        .mega-menu {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 26px;
            min-width: min(1080px, 96vw);
        }

        .dropdown-menu.mega-menu.mega-menu--mains-only {
            min-width: 280px;
            max-width: min(360px, 92vw);
            padding: 12px;
            display: none !important;
        }

        .mega-menu.mega-menu--mains-only {
            display: block;
            grid-template-columns: none;
            gap: 0;
            min-width: 0;
        }

        .mega-menu-mains {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .mega-menu-mains li {
            margin: 0;
        }

        .mega-menu-mains a {
            display: block;
            padding: 12px 14px;
            border-radius: 10px;
            color: var(--primary-color);
            font-weight: 700;
            text-decoration: none;
            border-bottom: 1px solid rgba(139, 195, 74, 0.2);
            transition: background-color 0.15s ease, color 0.15s ease;
        }

        .mega-menu-mains li:last-child a {
            border-bottom: none;
        }

        .mega-menu-mains a:hover {
            background: var(--bg-light);
            color: var(--secondary-color, #4caf50);
        }

        .mega-menu-mains__all a {
            color: var(--text-dark) !important;
            font-weight: 600 !important;
            font-size: 0.9rem;
        }

        @media (min-width: 1920px) {
            .dropdown-menu.mega-menu {
                min-width: min(920px, 94vw);
                max-width: min(1040px, 96vw);
            }

            .dropdown-menu.mega-menu.mega-menu--mains-only {
                min-width: 280px;
                max-width: min(360px, 92vw);
            }

            .mega-menu {
                grid-template-columns: repeat(3, 1fr);
                gap: 28px;
                min-width: 0;
            }

            .mega-menu.mega-menu--mains-only {
                grid-template-columns: none;
            }
        }

        .mega-menu h6 {
            color: var(--primary-color);
            font-weight: 600;
            margin-bottom: 8px;
            border-bottom: 2px solid var(--primary-color);
            padding-bottom: 5px;
        }

        .mega-menu h6 .mega-menu-title-wrap {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            width: 100%;
        }

        .mega-menu a.mega-menu-cat-title {
            color: inherit;
            text-decoration: none;
            padding: 0 !important;
            display: inline !important;
            flex: 1;
            min-width: 0;
        }

        .mega-menu a.mega-menu-cat-title:hover {
            color: var(--secondary-color);
        }

        .mega-menu-heading {
            margin-bottom: 10px;
        }

        .mega-menu-title-wrap {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
            width: 100%;
        }

        .mega-menu a.mega-teklif-inline {
            flex-shrink: 0;
            display: inline !important;
            font-size: 0.7rem;
            font-weight: 700;
            color: var(--secondary-color) !important;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            padding: 2px 0 !important;
            white-space: nowrap;
            text-decoration: none;
            transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
        }

        .mega-menu a.mega-teklif-inline:hover {
            color: #2e7d32 !important;
        }

        /* Always show Teklif actions (touch + keyboard); no hover-only primary CTA */
        .mega-menu a.mega-teklif-inline {
            opacity: 1;
            visibility: visible;
            transform: none;
        }

        .mega-menu-subblock {
            margin-top: 12px;
        }

        .mega-menu-subtitle {
            font-size: 0.86rem;
            font-weight: 600;
            line-height: 1.45;
            padding: 2px 0;
        }

        .mega-menu-services {
            list-style: none;
            padding: 0 0 0 10px !important;
            margin: 6px 0 0 0 !important;
            border-left: 2px solid rgba(139, 195, 74, 0.35);
        }

        .mega-menu-svc-line {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
            width: 100%;
        }

        .mega-menu-svc-name {
            flex: 1;
            min-width: 0;
        }

        .mega-menu-svc-name a {
            padding: 2px 0 !important;
            color: var(--text-light);
            display: inline !important;
        }

        .mega-menu-svc-name a:hover {
            color: var(--primary-color);
        }

        .mega-svc-hint {
            font-size: 0.72rem;
            color: #999;
            font-weight: 400;
        }

        .mega-menu ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .mega-menu li {
            margin-bottom: 8px;
        }

        .mega-menu ul.mega-menu-services > li.mega-menu-svc-li {
            margin-bottom: 6px;
            font-size: 0.82rem;
        }

        .mega-menu a {
            color: var(--text-light);
            text-decoration: none;
            padding: 5px 0;
            display: block;
            transition: color 0.3s ease;
        }

        .mega-menu a:hover {
            color: var(--primary-color);
        }

        /* Logo Container */
        .logo-container {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .logo-link {
            display: flex;
            align-items: center;
        }

        /* Hamburger Menu */
        .hamburger-menu {
            display: none;
            background: none;
            border: none;
            color: var(--text-dark);
            font-size: 1.3rem;
            cursor: pointer;
            padding: 8px;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .hamburger-menu:hover {
            background: var(--bg-light);
            color: var(--primary-color);
        }

        /* Hero Section */
        .hero-section {
            background: var(--bg-light);
            padding: 40px 0;
            margin-top: 20px;
        }

        .hero-container {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            color: white;
            border-radius: 30px;
            padding: 0;
            position: relative;
            overflow: hidden;
        }

        .hero-row {
            min-height: 360px;
        }

        .hero-text-col {
            padding: 36px 32px;
            display: flex;
            align-items: center;
        }

        .hero-image-col {
            padding: 0 !important;
            display: flex;
            min-height: 100%;
        }

        .hero-image-full {
            width: 100%;
            height: 100%;
            min-height: 100%;
            object-fit: cover;
            object-position: center;
            display: block;
            border-radius: 0 30px 30px 0;
        }

        .hero-title-accent {
            color: var(--color-primary-text, #2E7D32);
        }

        /* Section Containers */
        .section-container {
            background: transparent;
            border-radius: 0;
            padding: 0;
            box-shadow: none;
            position: relative;
        }

        .categories-container {
            background: transparent;
            border-radius: 0;
            padding: 0;
            box-shadow: none;
        }

        .hero-container::before {
            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"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
            opacity: 0.3;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 10px;
            line-height: 1.2;
        }

        .hero-subtitle {
            font-size: 0.9375rem;
            margin-bottom: 20px;
            opacity: 0.92;
            max-width: 28rem;
        }

        .hero-features {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 30px;
        }

        .feature-item {
            display: flex;
            align-items: center;
            font-size: 1rem;
            font-weight: 500;
        }

        .popular-searches a {
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .popular-searches a:hover {
            background: var(--primary-color) !important;
            color: white !important;
        }

        .hero-search-container {
            max-width: 100%;
            margin: 0;
        }

        .hero-search-box {
            display: flex;
            align-items: center;
            background: white;
            border-radius: 25px;
            padding: 8px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
        }

        .hero-search-box:focus-within {
            box-shadow: 0 15px 40px rgba(0,0,0,0.3);
            /* no layout-shift hover */
        }

        .hero-search-box input {
            border: none;
            background: transparent;
            padding: 15px 20px;
            flex: 1;
            outline: none;
            font-size: 1.1rem;
        }

        .hero-search-box input::placeholder {
            color: #999;
        }

        .hero-search-box button {
            background: #FFD700;
            color: #333;
            border: none;
            padding: 15px 30px;
            border-radius: 20px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-left: 10px;
        }

        .hero-search-box button:hover {
            background: #FFC107;
            /* no layout-shift hover */
            box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
        }

        /* Standard Search Box (for other pages) */
        .standard-search-box {
            display: flex;
            align-items: center;
            background: white;
            border-radius: 15px;
            border: 2px solid #e9ecef;
            transition: all 0.3s ease;
            overflow: hidden;
            max-width: 500px;
            margin: 0 auto;
        }

        .standard-search-box:focus-within {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
        }

        .standard-search-box input {
            border: none;
            background: transparent;
            padding: 15px 20px;
            flex: 1;
            outline: none;
            font-size: 1rem;
        }

        .standard-search-box input::placeholder {
            color: #999;
        }

        .standard-search-box button {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            border: none;
            padding: 15px 25px;
            border-radius: 12px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin: 3px;
        }

        .standard-search-box button:hover {
            /* no layout-shift hover */
            box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
        }

        /* Stats Section */
        .stats-section {
            background: transparent;
            padding: 48px 0;
            border-radius: 0;
            margin: 0;
        }

        .stat-item {
            text-align: center;
            padding: 30px 20px;
        }

        .stat-number {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 10px;
        }

        .stat-label {
            color: var(--text-light);
            font-size: 0.875rem;
        }

        /* Gradient istatistik panelleri — sayı ve etiketler beyaz kalsın */
        .community-stats .stat-number,
        .community-stats .stat-label,
        .support-stats .stat-number,
        .support-stats .stat-label,
        .earnings-section .stat-amount,
        .earnings-section .stat-label {
            color: #fff !important;
        }

        /* Categories Section */
        .categories-section {
            background: var(--bg-light);
            padding: 48px 0;
            border-radius: 0;
            margin: 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .section-title h2 {
            font-size: 1.625rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 10px;
            line-height: 1.3;
            word-wrap: break-word;
        }

        .section-title p {
            color: var(--text-light);
            font-size: 0.9375rem;
            line-height: 1.5;
        }

        .category-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            height: 100%;
            border: 2px solid transparent;
        }

        .category-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
            border-color: var(--primary-color);
        }

        /* Armut Style Category Cards */
        .category-card-armut {
            background: transparent;
            border-radius: 0;
            padding: 20px 15px;
            text-align: center;
            box-shadow: none;
            transition: none;
            cursor: pointer;
            border: none;
        }

        .category-card-armut:hover {
            transform: none;
            box-shadow: none;
            border-color: transparent;
        }

        .category-icon-armut {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            color: white;
            font-size: 1.2rem;
        }

        .category-icon-armut .ts-category-icon-img,
        .category-icon .ts-category-icon-img {
            max-width: 60%;
            max-height: 60%;
            width: auto;
            height: auto;
            object-fit: contain;
        }

        .category-card-armut h6 {
            font-weight: 600;
            margin-bottom: 5px;
            color: var(--text-dark);
            font-size: 0.9rem;
        }

        .category-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: white;
            font-size: 2rem;
        }

        .category-card h4 {
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--text-dark);
        }

        .category-card p {
            color: var(--text-light);
            margin-bottom: 20px;
        }

        .category-stats {
            display: flex;
            justify-content: space-around;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid #eee;
        }

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

        .category-stat .number {
            font-weight: 600;
            color: var(--primary-color);
            font-size: 1.2rem;
        }

        .category-stat .label {
            font-size: 0.9rem;
            color: var(--text-light);
        }

        /* How It Works Section */
        .how-it-works {
            background: white;
            padding: 48px 0;
            border-radius: 0;
            margin: 0;
        }

        .step-card {
            text-align: center;
            padding: 40px 20px;
            position: relative;
        }

        .step-number {
            width: 60px;
            height: 60px;
            background: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0 auto 20px;
        }

        .step-card h4 {
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--text-dark);
        }

        .step-card p {
            color: var(--text-light);
        }

        /* Armut Style Step Cards */
        .step-card-armut {
            text-align: center;
            padding: 24px 16px;
            background: transparent;
            border-radius: 0;
            box-shadow: none;
            transition: none;
            height: 100%;
        }

        .step-card-armut:hover {
            transform: none;
            box-shadow: none;
        }

        .step-icon-armut {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            color: white;
            font-size: 2rem;
        }

        .step-card-armut h4 {
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--text-dark);
            font-size: 1.2rem;
        }

        .step-card-armut p {
            color: var(--text-light);
            line-height: 1.6;
        }

        /* Recent Requests Section */
        .recent-requests {
            background: var(--bg-light);
            padding: 48px 0;
            border-radius: 0;
            margin: 0;
        }

        /* Recent Offers Section */
        .recent-offers-section {
            background: white;
            padding: 48px 0;
            border-radius: 0;
            margin: 0;
        }

        /* Premium Mechanics Section */
        .premium-mechanics-section {
            background: var(--bg-light);
            padding: 48px 0;
            border-radius: 0;
            margin: 0;
        }

        /* Customer Reviews Section */
        .customer-reviews-section {
            background: white;
            padding: 48px 0;
            border-radius: 0;
            margin: 0;
        }

        /* Trust Indicators Section */
        .trust-indicators-section {
            background: var(--bg-light);
            padding: 48px 0;
            border-radius: 0;
            margin: 0;
        }

        .request-card {
            background: white;
            border-radius: 15px;
            padding: 25px;
            margin-bottom: 20px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
        }

        .request-card:hover {
            /* no layout-shift hover */
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .request-header {
            display: flex;
            justify-content: between;
            align-items: center;
            margin-bottom: 15px;
        }

        .request-category {
            background: var(--primary-color);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 500;
        }

        .request-id {
            color: var(--text-light);
            font-size: 0.9rem;
        }

        .request-location {
            color: var(--text-light);
            font-size: 0.9rem;
            margin-bottom: 10px;
        }

        .request-date {
            color: var(--text-light);
            font-size: 0.9rem;
        }

        .request-description {
            margin-bottom: 15px;
        }

        .request-description p {
            margin-bottom: 10px;
            line-height: 1.5;
        }

        .request-budget {
            color: var(--primary-color);
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 15px;
        }

        /* Standard Breadcrumb */
        .breadcrumb-section {
            background: transparent;
            border-radius: 0;
            padding: 0 0 12px;
            box-shadow: none;
            margin-bottom: 16px;
        }

        .breadcrumb-nav {
            background: none;
            padding: 0;
            margin: 0;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.95rem;
        }

        .breadcrumb-nav a {
            color: var(--text-light);
            text-decoration: none;
            transition: color 0.3s ease;
            font-weight: 500;
        }

        .breadcrumb-nav a:hover {
            color: var(--primary-color);
        }

        .breadcrumb-separator {
            color: #ddd;
            margin: 0 5px;
        }

        .breadcrumb-current {
            color: var(--primary-color);
            font-weight: 600;
        }

        /* Footer */
        .main-footer {
            background: var(--text-dark);
            color: white;
            padding: 60px 0 30px;
        }

        .footer-section h5 {
            color: var(--primary-color);
            margin-bottom: 20px;
            font-weight: 600;
        }

        .footer-section ul {
            list-style: none;
            padding: 0;
        }

        .footer-section li {
            margin-bottom: 10px;
        }

        .footer-section a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: var(--primary-color);
        }

        /* Tablet Responsive */
        @media (max-width: 1024px) and (min-width: 769px) {
            .search-box input {
                display: none;
            }
            
            .search-box {
                min-width: auto;
                width: 50px;
                height: 50px;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                cursor: pointer;
            }
            
            .search-box i {
                position: static;
                font-size: 1.2rem;
            }
            
            .nav-right .btn {
                padding: 12px;
                min-width: auto;
            }
            
            .nav-right .btn .me-2 {
                margin-right: 0 !important;
            }
            
            .nav-right .btn span {
                display: none;
            }
            
            .user-greeting {
                display: none;
            }
            
            .user-dropdown-trigger {
                min-width: auto;
                padding: 12px;
            }
            
            /* Hamburger Menu */
            .nav-left {
                display: none;
            }
            
            .hamburger-menu {
                display: flex !important;
                align-items: center;
                justify-content: center;
                background: none;
                border: none;
                color: var(--text-dark);
                font-size: 1.5rem;
                cursor: pointer;
                padding: 10px;
                margin-right: 20px;
            }
        }

        /* Mobile Bottom Navigation - New Grid Layout */
        .mobile-bottom-nav {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(30px);
            border-top: 1px solid rgba(0,0,0,0.08);
            padding: 10px 5px;
            z-index: 1000;
            display: none;
            box-shadow: 0 -8px 40px rgba(0,0,0,0.12);
        }

        .bottom-nav-grid {
            display: grid;
            grid-template-columns: 1fr 3fr 1fr;
            align-items: center;
            max-width: 100%;
            margin: 0 auto;
            padding: 0 20px;
            gap: 10px;
        }

        .nav-section {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .nav-section-btn {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-decoration: none;
            color: var(--text-light);
            transition: all 0.3s ease;
            padding: 12px 16px;
            border-radius: 15px;
            width: 100%;
            max-width: 80px;
        }

        .nav-section-btn:hover,
        .nav-section-btn.active {
            color: var(--primary-color);
            background: rgba(76, 175, 80, 0.1);
            /* no layout-shift hover */
            text-decoration: none;
        }

        .nav-section-btn i {
            font-size: 1.4rem;
            margin-bottom: 4px;
        }

        .nav-section-btn span {
            font-size: 0.75rem;
            font-weight: 600;
        }

        /* iPhone-Style Module Swipe Area */
        .center-section {
            position: relative;
            height: 70px;
        }

        .module-swipe-area {
            position: relative;
            width: 100%;
            height: 55px;
            background: #f8f9fa;
            border-radius: 28px;
            border: 1px solid #e9ecef;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 15px;
            touch-action: pan-x;
            overflow: hidden;
        }

        /* Fixed Side Icons */
        .swipe-side-icon {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: #e9ecef;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #999;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            cursor: pointer;
            z-index: 1000;
        }

        .swipe-side-icon.left {
            color: var(--primary-color);
        }

        .swipe-side-icon.right {
            color: #FF6B35;
        }

        .swipe-side-icon:hover {
            background: white;
            transform: scale(1.05);
            box-shadow: 0 3px 15px rgba(0,0,0,0.1);
        }

        /* iPhone-style shimmer effect */
        .swipe-side-icon::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, 
                transparent 0%, 
                rgba(255,255,255,0.6) 50%, 
                transparent 100%);
            transition: left 0.5s ease;
        }

        .swipe-side-icon:hover::before {
            left: 100%;
        }

        /* Center Handle Container */
        .center-handle-container {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Center Handle (Fixed Position) */
        .module-switch-handle {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: grab;
            transition: background 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 4px 15px rgba(76, 175, 80, 0.25);
            border: 2px solid white;
            overflow: hidden;
            user-select: none;
            touch-action: none;
            z-index: 1003;
        }

        .module-switch-handle:active {
            cursor: grabbing;
        }

        .module-switch-handle.swiping {
            cursor: grabbing;
            transition: none;
        }

        .module-switch-handle.swiping {
            cursor: grabbing;
            box-shadow: 0 6px 20px rgba(0,0,0,0.2);
        }

        .module-switch-handle.kpu {
            background: linear-gradient(135deg, #FF6B35, #F7931E);
            box-shadow: 0 4px 15px rgba(255, 107, 53, 0.25);
        }

        .module-switch-handle.swiping {
            box-shadow: 0 6px 20px rgba(0,0,0,0.2);
        }

        /* iPhone-style shine effect on handle */
        .module-switch-handle::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, 
                transparent 30%, 
                rgba(255,255,255,0.4) 50%, 
                transparent 70%);
            transform: translateX(-100%) translateY(-100%) rotate(45deg);
            transition: transform 0.8s ease;
        }

        .module-switch-handle:hover::before,
        .module-switch-handle.swiping::before {
            transform: translateX(100%) translateY(100%) rotate(45deg);
        }

        .module-switch-handle i {
            font-size: 1.2rem;
            color: white;
            z-index: 2;
            position: relative;
            transition: transform 0.3s ease;
        }

        /* Swipe Arrows (Around Handle) */
        .swipe-arrows {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            display: flex;
            align-items: center;
            gap: 80px;
            pointer-events: none;
            z-index: 999;
        }

        .swipe-arrow {
            font-size: 1rem;
            color: #ccc;
            font-weight: 900;
            animation: arrowPulse 2.5s ease-in-out infinite;
            text-shadow: 0 1px 3px rgba(0,0,0,0.1);
        }

        .swipe-arrow.left {
            animation-delay: 0s;
            color: var(--primary-color);
        }

        .swipe-arrow.right {
            animation-delay: 1.25s;
            color: #FF6B35;
        }

        @keyframes arrowPulse {
            0%, 100% {
                opacity: 0.5;
                transform: scale(1);
            }
            50% {
                opacity: 0.9;
                transform: scale(1.1);
            }
        }



        @keyframes slideUpFade {
            from {
                opacity: 0;
                transform: translateX(-50%) translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateX(-50%) translateY(0);
            }
        }

        /* Responsive Design System */
        
        /* Large Desktop */
        @media (min-width: 1200px) {
            .container {
                max-width: 1140px;
            }
        }

        /* Desktop */
        @media (max-width: 1199px) and (min-width: 992px) {
            .premium-mechanic-card {
                margin-bottom: 20px;
            }
        }

        /* Tablet & Mobile Navigation — desktop header fallback (when header-detect serves header.php) */
        @media (max-width: 1024px) {
            .mobile-bottom-nav {
                display: flex !important;
                flex-direction: row;
                align-items: stretch;
                justify-content: space-around;
            }
            
            body {
                padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
            }

            .header-top {
                display: none;
            }

            .main-header {
                position: sticky;
                top: 0;
                z-index: 1100;
                background: #fff;
                width: 100%;
                max-width: 100vw;
                overflow-x: clip;
            }

            .header-main {
                padding: 8px 0;
            }

            .header-main > .container {
                max-width: 100%;
                padding-left: 12px;
                padding-right: 12px;
            }

            /* Prevent Bootstrap column stack that breaks the bar on phones */
            .header-main .row {
                display: flex !important;
                flex-wrap: nowrap !important;
                align-items: center;
                justify-content: space-between;
                margin-left: 0;
                margin-right: 0;
                gap: 8px;
            }

            .header-main .row > [class*="col-"] {
                flex: 0 0 auto;
                width: auto !important;
                max-width: none !important;
                padding-left: 4px;
                padding-right: 4px;
            }

            .header-main .row > .col-md-2,
            .header-main .row > .col-lg-2,
            .header-main .row > .col-auto {
                flex: 1 1 auto;
                min-width: 0;
            }

            .header-main .row > .col-md-4,
            .header-main .row > .col-md-5,
            .header-main .row > .col-lg-5 {
                display: none !important;
            }

            .header-main .row > .col-md-6,
            .header-main .row > .col-md-4.col,
            .header-main .row > .col-lg-5.col,
            .header-main .row > .col {
                flex: 0 0 auto;
                margin-left: auto;
            }

            .logo-container {
                gap: 8px;
                min-width: 0;
            }

            .logo-link img {
                height: 36px !important;
                max-width: min(140px, 40vw);
                width: auto !important;
                object-fit: contain;
            }
            
            .main-nav {
                display: none;
            }
            
            .service-switch {
                display: none !important;
            }
            
            .search-box input {
                display: none;
            }
            
            .search-box {
                min-width: 44px;
                width: 44px;
                height: 44px;
                border-radius: 12px;
                display: flex;
                align-items: center;
                justify-content: center;
                cursor: pointer;
                background: var(--bg-light);
                border: 1px solid #e9ecef;
            }
            
            .search-box i {
                font-size: 1.1rem;
                color: var(--primary-color);
            }
            
            .user-greeting {
                display: none;
            }

            .user-area {
                gap: 8px;
                justify-content: flex-end !important;
            }
            
            .user-dropdown-trigger {
                min-width: 44px;
                min-height: 44px;
                padding: 8px;
            }
            
            .hamburger-menu {
                display: flex !important;
                width: 44px;
                height: 44px;
                align-items: center;
                justify-content: center;
            }
            
            .main-header .mobile-menu {
                position: fixed;
                top: 0;
                left: 0;
                width: min(300px, 88vw);
                height: 100%;
                background: white;
                box-shadow: 8px 0 24px rgba(0,0,0,0.15);
                transform: translateX(-105%);
                transition: transform 0.25s ease, visibility 0.25s ease;
                z-index: 1200;
                padding: 20px;
                visibility: hidden;
                overflow-y: auto;
            }
            
            .main-header .mobile-menu.open,
            .main-header .mobile-menu.active,
            .main-header .mobile-menu.is-open {
                transform: translateX(0);
                visibility: visible;
            }
            
            .main-header .mobile-overlay,
            .main-header .mobile-menu-overlay {
                position: fixed;
                inset: 0;
                background: rgba(0,0,0,0.45);
                z-index: 1190;
                opacity: 0;
                visibility: hidden;
                pointer-events: none;
                transition: opacity 0.2s ease, visibility 0.2s ease;
            }
            
            .main-header .mobile-overlay.open,
            .main-header .mobile-overlay.active,
            .main-header .mobile-overlay.is-open,
            .main-header .mobile-menu-overlay.open,
            .main-header .mobile-menu-overlay.active,
            .main-header .mobile-menu-overlay.is-open {
                opacity: 1;
                visibility: visible;
                pointer-events: auto;
                display: block;
            }
        }

        /* Tablet */
        @media (max-width: 991px) and (min-width: 769px) {
            .hero-row {
                min-height: 0;
            }

            .hero-text-col {
                padding: 36px 32px;
            }

            .hero-image-full {
                min-height: 280px;
                border-radius: 0 0 30px 30px;
            }

            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.2rem;
            }
            
            .section-title h2 {
                font-size: 2.5rem;
            }
            
            .premium-mechanic-card {
                margin-bottom: 25px;
            }
            
            .stats-section .row {
                text-align: center;
            }
            
            .categories-section .row {
                justify-content: center;
            }
            
            .col-lg-2 {
                flex: 0 0 auto;
                width: 33.333333%;
            }
        }

        /* Mobile */
        @media (max-width: 768px) {
            .hero-section {
                padding: 24px 0;
            }

            .hero-text-col {
                padding: 28px 20px;
            }

            .hero-image-full {
                min-height: 220px;
                border-radius: 0 0 30px 30px;
            }

            .hero-title {
                font-size: 2rem;
                line-height: 1.2;
            }
            
            .hero-subtitle {
                font-size: 1rem;
                margin-bottom: 20px;
            }
            
            .hero-search-box {
                flex-direction: column;
                gap: 10px;
                padding: 12px;
            }
            
            .hero-search-box input {
                width: 100%;
                margin: 0;
                font-size: 1rem;
            }
            
            .hero-search-box button {
                width: 100%;
                margin: 0;
            }
            
            .section-title {
                max-width: 100%;
                padding: 0 20px;
            }
            
            .section-title h2 {
                font-size: 2rem;
                line-height: 1.2;
            }
            
            .section-title p {
                font-size: 1rem;
            }
            
            .premium-mechanic-card {
                margin-bottom: 20px;
            }
            
            .col-lg-2,
            .col-md-4 {
                flex: 0 0 auto;
                width: 50%;
            }
            
            .category-card-armut {
                padding: 20px 15px;
            }
            
            .category-icon-armut {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }
            
            .offer-card,
            .review-card {
                margin-bottom: 20px;
            }
            
            .stats-section .col-md-3 {
                margin-bottom: 20px;
            }
            
            .trust-section .col-lg-3 {
                margin-bottom: 25px;
            }
            
            .requests-carousel {
                padding: 0 10px;
            }
            
            .service-switch {
                max-width: 280px;
                margin: 0 auto;
            }

            .service-switch--triple {
                max-width: 360px;
            }
            
            .service-switch button {
                padding: 10px 12px;
                font-size: 0.85rem;
            }

            .service-switch--triple button {
                padding: 8px 8px;
                font-size: 0.72rem;
            }
        }

        /* Small Mobile */
        @media (max-width: 576px) {
            .hero-title {
                font-size: 2rem;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .col-lg-2,
            .col-md-4,
            .col-sm-6 {
                flex: 0 0 auto;
                width: 100%;
            }
            
            .premium-mechanic-card {
                max-width: 300px;
                margin: 0 auto 20px;
            }
            
            .service-switch {
                max-width: 250px;
            }
            
            .service-switch button {
                padding: 8px 10px;
                font-size: 0.8rem;
            }
            
            .hero-search-box {
                padding: 12px;
            }
            
            .hero-search-box button {
                padding: 12px 20px;
                font-size: 0.95rem;
            }
        }

        @media (max-width: 576px) {
            .hero-title {
                font-size: 2rem;
            }
            
            .service-switch button {
                padding: 10px 15px;
                font-size: 0.9rem;
            }
            
            .search-box input {
                width: 150px;
            }
            
            .mega-menu {
                grid-template-columns: 1fr;
            }
        }

        /* Offer Cards */
        .offer-card {
            background: white;
            border-radius: 15px;
            padding: 20px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            height: 100%;
        }

        .offer-card:hover {
            /* no layout-shift hover */
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }

        .offer-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 15px;
        }

        .mechanic-info {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .mechanic-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            border: 2px solid var(--primary-color);
        }

        .mechanic-name {
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 5px;
        }

        .offer-price {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--primary-color);
        }

        .offer-details h6 {
            font-weight: 600;
            margin-bottom: 10px;
        }

        .offer-meta {
            display: flex;
            justify-content: space-between;
            margin-top: 15px;
        }

        .offer-meta small {
            color: var(--text-light);
        }

        /* Premium Mechanic Cards */
        .premium-mechanic-card {
            background: white;
            border-radius: 20px;
            padding: 30px 20px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            position: relative;
            height: 100%;
            border: 3px solid transparent;
            cursor: pointer;
        }

        .premium-mechanic-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.2);
            border-color: var(--accent-color);
        }

        .premium-badge {
            position: absolute;
            top: -10px;
            right: -10px;
            background: var(--accent-color);
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
        }

        .mechanic-avatar-large {
            margin-bottom: 20px;
        }

        .mechanic-avatar-large img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            border: 3px solid var(--primary-color);
        }

        .mechanic-details h5 {
            font-weight: 700;
            margin-bottom: 5px;
            color: var(--text-dark);
        }

        .mechanic-stats {
            display: flex;
            justify-content: space-around;
            margin: 20px 0;
            padding: 15px 0;
            border: 1px solid #eee;
            border-left: none;
            border-right: none;
        }

        .stat {
            text-align: center;
        }

        .stat strong {
            display: block;
            font-size: 1.2rem;
            color: var(--primary-color);
        }

        .stat small {
            color: var(--text-light);
            font-size: 0.8rem;
        }

        .specialties {
            margin: 15px 0;
        }

        .specialty-tag {
            background: var(--bg-light);
            color: var(--text-dark);
            padding: 5px 12px;
            border-radius: 15px;
            font-size: 0.8rem;
            margin: 0 5px;
            display: inline-block;
            margin-bottom: 5px;
        }

        .location {
            color: var(--text-light);
            font-size: 0.9rem;
            margin: 0;
        }

        /* Review Cards */
        .review-card {
            background: white;
            border-radius: 15px;
            padding: 20px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            height: 100%;
        }

        .review-card:hover {
            /* no layout-shift hover */
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }

        .review-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 15px;
        }

        .customer-info {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .customer-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            border: 2px solid var(--primary-color);
        }

        .customer-info h6 {
            font-weight: 600;
            margin-bottom: 5px;
        }

        .review-content p {
            font-style: italic;
            margin-bottom: 15px;
            line-height: 1.6;
        }

        .review-service {
            padding-top: 15px;
            border-top: 1px solid #eee;
        }

        /* Trust Indicators */
        .trust-item {
            padding: 40px 20px;
            text-align: center;
        }

        .trust-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: white;
            font-size: 2rem;
        }

        .trust-item h4 {
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--text-dark);
        }

        .trust-item p {
            color: var(--text-light);
            margin: 0;
        }

        /* Rating Stars */
        .rating {
            display: flex;
            align-items: center;
            gap: 2px;
        }

        .rating i {
            font-size: 0.9rem;
        }

        .rating span {
            font-size: 0.9rem;
            color: var(--text-light);
        }

        /* Swiper Carousel */
        .requests-swiper-container {
            position: relative;
            margin: 40px 0;
        }

        .requests-swiper {
            padding: 20px 0 60px;
        }

        .requests-swiper .swiper-slide {
            height: auto;
            display: flex;
            justify-content: center;
            width: auto !important;
        }

        /* Custom Swiper Navigation */
        .requests-swiper .swiper-button-next,
        .requests-swiper .swiper-button-prev {
            background: var(--primary-color);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-top: -25px;
            box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
            transition: all 0.3s ease;
        }

        .requests-swiper .swiper-button-next:hover,
        .requests-swiper .swiper-button-prev:hover {
            background: var(--secondary-color);
            transform: scale(1.1);
            box-shadow: 0 8px 20px rgba(76, 175, 80, 0.4);
        }

        .requests-swiper .swiper-button-next::after,
        .requests-swiper .swiper-button-prev::after {
            font-size: 18px;
            color: white;
            font-weight: 700;
        }

        /* Custom Swiper Pagination */
        .requests-swiper .swiper-pagination {
            bottom: 10px;
        }

        .requests-swiper .swiper-pagination-bullet {
            background: var(--primary-color);
            opacity: 0.3;
            width: 12px;
            height: 12px;
            margin: 0 6px;
        }

        .requests-swiper .swiper-pagination-bullet-active {
            opacity: 1;
            transform: scale(1.2);
        }

        /* Request Cards */
        .request-card {
            background: white;
            border-radius: 20px;
            padding: 25px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            height: 100%;
            max-width: 350px;
            margin: 0 auto;
        }

        .request-card:hover {
            /* no layout-shift hover */
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: var(--primary-color);
            color: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }

        .carousel-btn:hover {
            background: var(--secondary-color);
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-btn-prev {
            left: 15px;
        }

        .carousel-btn-next {
            right: 15px;
        }

        @media (max-width: 768px) {
            .request-slide {
                min-width: 300px;
            }
            
            .requests-carousel {
                padding: 0 40px;
            }
            
            .carousel-btn {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }
        }

/* --- Mobile menu (legacy desktop header) --- */

.hamburger-menu {
            background: none;
            border: none;
            color: var(--text-dark);
            font-size: 1.3rem;
            cursor: pointer;
            padding: 8px;
            border-radius: 8px;
            transition: all 0.3s ease;
            margin-right: 15px;
        }

        .hamburger-menu:hover {
            background: var(--bg-light);
            color: var(--primary-color);
        }

        /* KPU Mobile Menu */
        .mobile-menu {
            position: fixed;
            top: 0;
            left: -300px;
            width: 300px;
            height: 100vh;
            background: white;
            box-shadow: 2px 0 10px rgba(0,0,0,0.1);
            transition: left 0.3s ease;
            z-index: 9999;
            padding: 20px;
            overflow-y: auto;
        }

        .mobile-menu.active {
            left: 0;
        }

        .mobile-menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            z-index: 9998;
            display: none;
        }

        .mobile-menu-overlay.active {
            display: block;
        }

        .mobile-nav-links {
            padding: 20px 0;
        }

        .mobile-nav-links a {
            display: block;
            padding: 15px;
            color: var(--text-dark);
            text-decoration: none;
            border-bottom: 1px solid #eee;
            transition: all 0.3s ease;
        }

        .mobile-nav-links a:hover {
            color: var(--primary-color);
            padding-left: 10px;
        }

        .mobile-nav-links a:last-child {
            border-bottom: none;
        }

        .mobile-menu-header {
            padding: 20px 0;
            border-bottom: 2px solid #eee;
            margin-bottom: 10px;
        }

        .mobile-menu-header h5 {
            margin: 0;
            color: var(--text-dark);
            font-weight: 600;
        }

        @media (max-width: 768px) {
            .nav-left, .nav-right {
                display: none !important;
            }
        }
