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

:root {
    --primary-red: #c41e3a;
    --primary-red-dark: #a01830;
    --light-gray: #f5f5f5;
    --medium-gray: #e0e0e0;
    --dark-gray: #333;
    --text-gray: #666;
    --white: #ffffff;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--light-gray);
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--dark-gray) 0%, #1a1a1a 100%);
    color: var(--white);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    display: none;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.logo-img-header {
    max-width: 130px;
    max-height: 130px;
    border-radius: 10px;
    object-fit: contain;
}

.logo-img {
    max-width: 80px;
    max-height: 80px;
    border-radius: 10px;
    object-fit: contain;
}

.logo-icon {
    background: var(--primary-red);
    color: var(--white);
    width: 80px;
    height: 80px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.logo-text h1 {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.logo-text p {
    font-size: 16px;
    opacity: 0.9;
}

.hero h2 {
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 15px;
}

.tagline {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.btn-primary {
    background: var(--primary-red);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.4);
}

.btn-primary:hover {
    background: var(--primary-red-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 30, 58, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

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

/* Services Section */
.services {
    padding: 80px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: url('logosk.jpeg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    opacity: 0.05;
    pointer-events: none;
}

.services h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--dark-gray);
    position: relative;
}

.services h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary-red);
    margin: 15px auto 0;
    border-radius: 2px;
}

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

.service-card {
    background: var(--white);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--medium-gray);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-color: var(--primary-red);
}

.service-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--dark-gray);
}

.service-card p {
    color: var(--text-gray);
    font-size: 15px;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: var(--light-gray);
}

.contact h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--dark-gray);
}

.contact h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary-red);
    margin: 15px auto 0;
    border-radius: 2px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item .icon {
    font-size: 24px;
    width: 40px;
    height: 40px;
    background: var(--primary-red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--dark-gray);
}

.contact-item p {
    color: var(--text-gray);
    font-size: 16px;
}

.contact-item a {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
}

.contact-item a:hover {
    text-decoration: underline;
}

.mobile {
    font-size: 16px !important;
    margin-top: 5px;
}

.opening-hours {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.opening-hours h3 {
    font-size: 24px;
    margin-bottom: 25px;
    color: var(--dark-gray);
    display: flex;
    align-items: center;
    gap: 10px;
}

.opening-hours h3::before {
    content: '🕐';
    font-size: 28px;
}

.opening-hours table {
    width: 100%;
    border-collapse: collapse;
}

.opening-hours td {
    padding: 12px 0;
    border-bottom: 1px solid var(--medium-gray);
}

.opening-hours tr:last-child td {
    border-bottom: none;
}

.opening-hours td:first-child {
    font-weight: 500;
    color: var(--dark-gray);
}

.opening-hours td:last-child {
    text-align: right;
    color: var(--primary-red);
    font-weight: 700;
}

.closed {
    color: #999 !important;
    font-weight: 400 !important;
}

/* Footer */
footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 40px 0;
    text-align: center;
}

footer p {
    margin-bottom: 10px;
    opacity: 0.9;
}

.footer-links {
    margin-top: 20px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 60px 0;
    }
    
    .logo {
        flex-direction: column;
    }
    
    .hero h2 {
        font-size: 24px;
    }
    
    .tagline {
        font-size: 16px;
    }
    
    .btn {
        padding: 12px 30px;
        font-size: 13px;
    }
    
    .services h2,
    .contact h2 {
        font-size: 28px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-info,
    .opening-hours {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .logo-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .logo-text h1 {
        font-size: 22px;
    }
}