        .process-section {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            color: #333;
            margin-bottom: 60px;
            font-weight: 300;
        }

        /* Process Cards Container */
        .cards-container {
            display: flex;
            gap: 30px;
            margin-bottom: 40px;
			position: relative;  /* Bu satırı ekleyin */
        }

        /* Sol Taraf - Process Cards */
        .process-cards {
            flex: 1;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-template-rows: repeat(2, 1fr);
            gap: 20px;
        }

        .process-card {
            background: #e8e9ea;
            border-radius: 8px;
            padding: 25px 15px;
            text-align: center;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            position: relative;
            min-height: 160px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
		
        .red-card {
            
			background: linear-gradient(135deg, #be1623 0%, #8b1018 100%);
            border-radius: 8px;
            padding: 25px 15px;
            text-align: center;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            position: relative;
            min-height: 160px;
			height: calc(100% + 640px); /* Bu satırı ekleyin */
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
		

        .process-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }

        /* 7. kart - 2. satırın 4. kolonu boş bırakılacak */
        .process-card:nth-child(7) {
            grid-column: 3;
            grid-row: 2;
        }

        .process-icon {
            width: 50px;
            height: 50px;
            margin: 0 auto 15px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .process-icon svg {
            width: 100%;
            height: 100%;
            fill: #be1623;
        }

        .process-card h3 {
            font-size: 13px;
            font-weight: 700;
            color: #333;
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            line-height: 1.2;
        }

        .process-card p {
            font-size: 11px;
            color: #666;
            line-height: 1.4;
        }

        /* Sağ Taraf - Kırmızı Dikey Bant 
        .red-stripe {
            width: 120px;
            background: linear-gradient(135deg, #be1623 0%, #8b1018 100%);
            border-radius: 10px;
            position: relative;
        }*/

        /* Alt Kısım - Vehicle Display */
        .vehicle-display {
            position: relative;
            /*background: linear-gradient(135deg, #be1623 0%, #8b1018 100%);*/
            border-radius: 15px;
            padding: 30px;
            min-height: 500px;
            display: flex;
            flex-direction: column;
            margin-top: 20px;
        }

        /* Tab Navigation */
        .tab-navigation {
            display: flex;
            gap: 10px;
            margin-bottom: 30px;
        }

        .tab-btn {
            background: rgba(255,255,255,0.2);
            color: #333333;
            border: none;
            padding: 12px 25px;
            border-radius: 25px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 14px;
            font-weight: 600;
            backdrop-filter: blur(10px);
        }

        .tab-btn.active {
            background: white;
            color: #be1623;
        }

        .tab-btn:hover {
            background: rgba(255,255,255,0.3);
        }

        .tab-btn.active:hover {
            background: white;
        }

        /* Vehicle Container */
        .vehicle-container {
            position: relative;
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .vehicle-tab {
            display: none;
            width: 100%;
            height: 100%;
            position: relative;
        }

        .vehicle-tab.active {
            display: block;
        }

        .vehicle-image {
            width: 100%;
            height: 600px;
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            position: relative;
        }

        /* Van Image */
        .van-image {
            background-image: url('../img/van.png');
        }

        /* Pickup Image */
        .pickup-image {
            background-image: url('../img/pickup.png');
        }

        /* Hotspots */
        .hotspot {
            position: absolute;
            width: 18px;
            height: 18px;
            background: white;
            border: 3px solid #be1623;
            border-radius: 50%;
            cursor: pointer;
            animation: pulse 2s infinite;
            transition: all 0.3s ease;
            z-index: 10;
        }

        .hotspot:hover {
            transform: scale(1.3);
            animation: none;
            box-shadow: 0 0 15px rgba(190, 22, 35, 0.8);
        }

        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(190, 22, 35, 0.7); }
            70% { box-shadow: 0 0 0 10px rgba(190, 22, 35, 0); }
            100% { box-shadow: 0 0 0 0 rgba(190, 22, 35, 0); }
        }

        /* Van Hotspots */
        .hotspot-1 { top: 52%; left: 22%; }
        .hotspot-2 { top: 58%; left: 21.5%; }
        .hotspot-3 { top: 59%; left: 32%; }
        .hotspot-4 { bottom: 27%; left: 33%; }
        .hotspot-5 { top: 58%; right: 53.5%; }
        .hotspot-6 { bottom: 18%; right: 53.7%; }
        .hotspot-7 { top: 14%; right: 58%; }
        .hotspot-8 { top: 13%; right: 48%;  }
        .hotspot-9 { top: 11%; right: 42%; }
        .hotspot-10 { top: 20%; right: 43%; }
        .hotspot-11 { top: 48%; right: 32%; }
        .hotspot-12 { top: 53%; right: 28%; }
        .hotspot-13 { bottom: 34%; right: 28%;}
        .hotspot-14 { top: 29%; left: 33%; }

        /* Pickup Hotspots */
        .hotspot-21 { top: 50%; left: 12%; }
        .hotspot-22 { top: 26%; left: 17%; }
        .hotspot-23 { top: 25%; left: 23.6%; }
        .hotspot-24 { bottom: 37%; left: 33%; }
        .hotspot-25 { bottom: 27.3%; left: 30%; }
        .hotspot-26 { bottom: 48%; right: 55%; }
        .hotspot-27 { bottom: 20%; right: 55%; }
        .hotspot-28 { top: 13.5%; right: 57%;  }
        .hotspot-29 { top: 13%; right: 50%; }
        .hotspot-30 { top: 12%; right: 43%; }
        .hotspot-31 { top: 43%; right: 28%; }
        .hotspot-32 { top: 54%; right: 25%; }
        .hotspot-33 { bottom: 35%; right: 20%;}
        .hotspot-34 { top: 29%; left: 29%; }

        /* Tooltip */
        .tooltip {
            position: absolute;
            background: white;
            padding: 15px;
            border-radius: 8px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.25);
            max-width: 220px;
            z-index: 100;
            opacity: 0;
            pointer-events: none;
            transition: all 0.3s ease;
            transform: translateY(10px);
            border: 2px solid #be1623;
        }

        .tooltip.show {
            opacity: 1;
            transform: translateY(0);
            pointer-events: auto;
        }

        .tooltip h4 {
            font-size: 14px;
            color: #be1623;
            margin-bottom: 8px;
            font-weight: 700;
        }

        .tooltip p {
            font-size: 12px;
            color: #666;
            line-height: 1.5;
        }

        .tooltip::before {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 25px;
            width: 0;
            height: 0;
            border-left: 10px solid transparent;
            border-right: 10px solid transparent;
            border-top: 10px solid white;
        }

        .tooltip::after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 23px;
            width: 0;
            height: 0;
            border-left: 12px solid transparent;
            border-right: 12px solid transparent;
            border-top: 12px solid #be1623;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .cards-container {
                flex-direction: column;
            }

            .process-cards {
                grid-template-columns: repeat(2, 1fr);
                grid-template-rows: repeat(4, 1fr);
            }

            .process-card:nth-child(7) {
                grid-column: 1;
                grid-row: 4;
            }

            .red-stripe {
                width: 100%;
                height: 80px;
                margin-top: 20px;
            }
        }

        @media (max-width: 768px) {
            .process-cards {
                grid-template-columns: 1fr;
            }

            .section-title {
                font-size: 2rem;
            }

            .vehicle-display {
                padding: 20px;
                min-height: 350px;
            }

            .vehicle-image {
                height: 250px;
            }
        }