/* ===== SERVICES PAGE SPECIFIC STYLES ===== */

/* ===== SERVICES HEADER ===== */
.services-header {
    background: linear-gradient(135deg, var(--vintage-cream) 0%, var(--vintage-white) 100%);
    padding: 120px 0 80px;
}

/* ===== SERVICES OVERVIEW ===== */
.services-overview {
    padding: 100px 0;
    background: var(--vintage-cream);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

/* ===== SERVICE CARDS ===== */
.service-card {
    background: var(--vintage-cream);
    border: 2px solid var(--vintage-gray-light);
    border-radius: var(--border-radius);
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: var(--vintage-red);
    transition: left 0.3s ease;
}

.service-card:hover::before {
    left: 0;
}

.service-card:hover {
    border-color: var(--vintage-red);
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

/* Service Badge - DISABLED */
.service-badge {
    display: none;
}

/* Service Icons */
.service-icon.retro-frame {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    border: 3px solid var(--vintage-red);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--vintage-white);
    position: relative;
    transition: all 0.3s ease;
}

.service-icon.retro-frame::after {
    content: '';
    position: absolute;
    top: 5px;
    right: 5px;
    width: 15px;
    height: 15px;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.8) 50%, transparent 70%);
    border-radius: 2px;
    transform: rotate(15deg);
}

.service-icon.retro-frame.emergency {
    border-color: #d32f2f;
    animation: emergencyPulse 2s ease infinite;
}

@keyframes emergencyPulse {
    0%, 100% { 
        box-shadow: 0 0 0 0 rgba(211, 47, 47, 0.4);
    }
    50% { 
        box-shadow: 0 0 0 20px rgba(211, 47, 47, 0);
    }
}

.service-icon i {
    font-size: 2.5rem;
    color: var(--vintage-red);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon i {
    transform: scale(1.2) rotate(10deg);
}

/* Service Content */
.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--vintage-black);
    margin-bottom: 0.8rem;
    letter-spacing: 2px;
}

.service-tagline {
    color: var(--vintage-red);
    font-style: italic;
    margin-bottom: 2rem;
    font-size: 1rem;
}

/* Service Features */
.service-features {
    text-align: left;
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.8rem;
    background: rgba(211, 47, 47, 0.05);
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(211, 47, 47, 0.1);
    transform: translateX(5px);
}

.feature-item i {
    color: var(--vintage-red);
    font-size: 1.1rem;
    min-width: 20px;
}

.feature-item span {
    color: var(--vintage-gray);
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Service CTA */
.service-cta {
    text-align: center;
}

.btn-vintage.emergency {
    background: #d32f2f;
    border-color: #d32f2f;
    color: var(--vintage-white);
    animation: emergencyGlow 1.5s ease infinite;
}

@keyframes emergencyGlow {
    0%, 100% { 
        box-shadow: 0 0 5px rgba(211, 47, 47, 0.5);
    }
    50% { 
        box-shadow: 0 0 20px rgba(211, 47, 47, 0.8);
    }
}

.btn-vintage.emergency:hover {
    background: #b71c1c;
    border-color: #b71c1c;
    transform: translateY(-3px);
}

/* ===== PREMIUM CARD VARIATIONS ===== */
.service-card.premium {
    background: linear-gradient(135deg, var(--vintage-cream) 0%, var(--vintage-white) 100%);
    border-color: var(--vintage-red);
    position: relative;
}

.service-card.premium::after {
    content: 'PREMIUM';
    position: absolute;
    top: 15px;
    left: -25px;
    background: var(--vintage-red);
    color: var(--vintage-white);
    padding: 4px 30px;
    font-family: var(--font-body);
    font-size: 0.7rem;
    transform: rotate(-45deg);
    letter-spacing: 1px;
}

.service-card.emergency {
    background: linear-gradient(135deg, rgba(211, 47, 47, 0.05) 0%, var(--vintage-cream) 100%);
}

.service-card.consultation {
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.05) 0%, var(--vintage-cream) 100%);
}

.service-card.exchange {
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.05) 0%, var(--vintage-cream) 100%);
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: var(--vintage-black);
    color: var(--vintage-white);
    padding: 80px 0;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-text h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--vintage-white);
}

.cta-text p {
    font-size: 1.2rem;
    color: var(--vintage-gray-light);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== ANIMATED ELEMENTS ===== */
.service-card {
    animation: serviceCardFloat 6s ease-in-out infinite;
}

.service-card:nth-child(1) { animation-delay: 0s; }
.service-card:nth-child(2) { animation-delay: 1.5s; }
.service-card:nth-child(3) { animation-delay: 3s; }
.service-card:nth-child(4) { animation-delay: 4.5s; }

@keyframes serviceCardFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

/* Hover animations stop floating */
.service-card:hover {
    animation-play-state: paused;
}

/* ===== LOCATIONS SECTION ===== */
.locations-section {
    padding: 100px 0;
    background: var(--vintage-white);
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--vintage-gray);
    margin-bottom: 3rem;
    font-family: 'Courier Prime', monospace;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.location-card {
    background: var(--vintage-cream);
    border: 2px solid var(--vintage-gray-light);
    border-radius: var(--border-radius);
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
    isolation: isolate;
}

.location-card.main-location {
    border-color: var(--vintage-red);
    background: linear-gradient(135deg, #fff8f0 0%, var(--vintage-cream) 100%);
}

.location-card.delivery-location {
    border-color: var(--vintage-gray);
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.location-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: var(--vintage-red);
    color: var(--vintage-white);
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(211, 47, 47, 0.3);
    letter-spacing: 0.5px;
    position: relative;
    z-index: 10;
    width: fit-content;
}

.location-badge i {
    font-size: 1rem;
    flex-shrink: 0;
}

.location-badge.secondary {
    background: var(--vintage-gray);
    box-shadow: 0 2px 8px rgba(102, 102, 102, 0.3);
}

.location-card h3 {
    font-family: 'Righteous', cursive;
    font-size: 1.6rem;
    color: var(--vintage-black);
    margin-bottom: 1.5rem;
}

.location-details {
    margin-bottom: 1.5rem;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    font-family: 'Courier Prime', monospace;
    font-size: 0.95rem;
    color: var(--vintage-gray);
}

.detail-item i {
    color: var(--vintage-red);
    margin-top: 3px;
    flex-shrink: 0;
}

.location-services {
    display: none; /* Labels komplett entfernt */
}

/* ===== LOCATIONS NOTE ===== */
.locations-note {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 2px solid var(--vintage-gray-light);
}

.note-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: rgba(211, 47, 47, 0.05);
    border-left: 4px solid var(--vintage-red);
    border-radius: var(--border-radius);
}

.note-content i {
    font-size: 1.5rem;
    color: var(--vintage-red);
    flex-shrink: 0;
}

.note-content p {
    font-family: 'Courier Prime', monospace;
    font-size: 0.95rem;
    color: var(--vintage-gray);
    line-height: 1.6;
    margin: 0;
}

/* ===== GASTANK SERVICE ===== */
.gastank-service {
    padding: 100px 0;
    background: var(--vintage-cream);
}

.service-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-detail-card {
    background: var(--vintage-white);
    border: 2px solid var(--vintage-gray-light);
    border-radius: var(--border-radius);
    padding: 2.5rem 2rem;
    transition: all 0.3s ease;
}

.service-detail-card:hover {
    border-color: var(--vintage-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
}

.service-detail-card h3 {
    font-family: 'Righteous', cursive;
    font-size: 1.6rem;
    color: var(--vintage-black);
    margin: 1.5rem 0 1rem;
}

.service-detail-card > p {
    font-family: 'Courier Prime', monospace;
    font-size: 1rem;
    color: var(--vintage-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 0.7rem 0;
    font-family: 'Courier Prime', monospace;
    font-size: 0.95rem;
    color: var(--vintage-gray);
    border-bottom: 1px solid var(--vintage-gray-light);
}

.service-checklist li:last-child {
    border-bottom: none;
}

.service-checklist i {
    color: var(--vintage-gold);
    margin-top: 3px;
    flex-shrink: 0;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .services-header {
        padding: 100px 0 60px;
    }
    
    .services-overview {
        padding: 60px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .service-icon.retro-frame {
        width: 80px;
        height: 80px;
        margin-bottom: 1.5rem;
    }
    
    .service-icon i {
        font-size: 2rem;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .cta-text h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-vintage {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .service-card {
        padding: 1.5rem 1rem;
    }
    
    .service-card.premium::after {
        left: -20px;
        padding: 3px 25px;
        font-size: 0.6rem;
    }
    
    .feature-item {
        padding: 0.6rem;
        margin-bottom: 0.8rem;
    }
    
    .service-badge {
        display: none;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .service-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #333;
    }
    
    .service-icon.retro-frame {
        border-color: #333;
    }
    
    .btn-vintage {
        border: 1px solid #333;
        background: none !important;
        color: #333 !important;
    }
}