/* ===========================
   Bilservice experten - Emergency/Action Design
   Color Palette: Orange/Yellow Alert, Dark Background
   =========================== */

:root {
    --color-primary: #FF8C00;
    --color-primary-dark: #E67E00;
    --color-accent: #FFB800;
    --color-dark: #1A1A1A;
    --color-dark-bg: #0D0D0D;
    --color-light: #FFFFFF;
    --color-gray: #666666;
    --color-gray-light: #F5F5F5;

    --font-main: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--color-dark);
    background: var(--color-light);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===========================
   Emergency Bar
   =========================== */
.emergency-bar {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(255, 140, 0, 0.4);
}

.emergency-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.emergency-text {
    font-weight: 700;
    color: var(--color-dark);
    font-size: 1.1rem;
}

.emergency-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--color-dark);
    color: var(--color-primary);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.emergency-phone:hover {
    background: var(--color-light);
    transform: scale(1.1);
}

/* ===========================
   Hero Section
   =========================== */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--color-dark-bg) 0%, var(--color-dark) 100%);
    padding: 4rem 0;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('workshop.png') center/cover no-repeat;
    opacity: 0.15;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 184, 0, 0.2);
    border: 2px solid var(--color-accent);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    color: var(--color-accent);
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    color: var(--color-light);
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: #CCCCCC;
    margin-bottom: 3rem;
    font-weight: 300;
    max-width: 700px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    border: 3px solid transparent;
}

.btn-cta {
    background: var(--color-primary);
    color: var(--color-dark);
    border-color: var(--color-primary);
}

.btn-cta:hover {
    background: var(--color-accent);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 140, 0, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--color-light);
    border-color: var(--color-light);
}

.btn-secondary:hover {
    background: var(--color-light);
    color: var(--color-dark);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 700px;
}

.stat {
    text-align: center;
}

.stat-value {
    font-size: 3rem;
    font-weight: 900;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

/* ===========================
   Services Section
   =========================== */
.services {
    padding: 6rem 0;
    background: var(--color-gray-light);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--color-gray);
}

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

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid var(--color-primary);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 140, 0, 0.2);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon svg {
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--color-dark);
}

.service-card p {
    color: var(--color-gray);
    line-height: 1.7;
}

/* ===========================
   Trust Section
   =========================== */
.trust {
    padding: 6rem 0;
    background: white;
}

.trust-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.trust-text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--color-dark);
}

.trust-text p {
    font-size: 1.2rem;
    color: var(--color-gray);
    margin-bottom: 4rem;
}

.trust-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.trust-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    text-align: left;
}

.trust-feature svg {
    color: var(--color-primary);
    flex-shrink: 0;
}

.trust-feature h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--color-dark);
}

.trust-feature p {
    color: var(--color-gray);
    font-size: 0.95rem;
}

/* ===========================
   Location Section
   =========================== */
.location {
    padding: 6rem 0;
    background: var(--color-gray-light);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.location-info h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--color-dark);
}

.location-lead {
    font-size: 1.2rem;
    color: var(--color-gray);
    margin-bottom: 3rem;
}

.info-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.info-card {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: var(--color-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon svg {
    color: white;
}

.info-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: var(--color-dark);
}

.info-card p,
.info-card a {
    color: var(--color-gray);
    text-decoration: none;
    font-size: 1rem;
}

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

.cta-box {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
}

.cta-box h3 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    color: var(--color-dark);
}

.cta-box p {
    color: var(--color-dark);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.btn-cta-large {
    background: var(--color-dark);
    color: var(--color-primary);
    padding: 1.5rem 3rem;
    font-size: 1.5rem;
    font-weight: 900;
    text-decoration: none;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.btn-cta-large:hover {
    background: white;
    transform: scale(1.1);
}

.location-map {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.location-map iframe {
    width: 100%;
    height: 100%;
    min-height: 500px;
}

/* ===========================
   Footer
   =========================== */
.footer {
    background: var(--color-dark);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.footer-col h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.footer-col p {
    color: #CCC;
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 700;
}

.footer-col a:hover {
    text-decoration: underline;
}

.footer-rating {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stars {
    display: flex;
    gap: 0.2rem;
}

.stars svg {
    color: var(--color-accent);
}

.footer-rating span {
    color: #999;
    font-size: 0.9rem;
}

.footer-bottom {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 768px) {
    .emergency-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
}