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

:root {
    /* Brand Colors - From Brand Guidelines */
    --angel-red: #C8102E;
    --angel-green: #6FA573;
    --light-green: #B2D8C3;
    --dark-gray: #424949;
    --gold: #D4AC0D;
    --white: #FDFEFE;
    --text-gray: #666666;
    
    /* Typography */
    --font-primary: 'Arial', 'Helvetica Neue', sans-serif;
    --font-alt: 'Roboto', sans-serif;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
}

/* Header */
header {
    background: linear-gradient(135deg, var(--angel-red) 0%, #A00D24 100%);
    color: var(--white);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(200, 16, 46, 0.3);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo-text {
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 1px;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.logo-subtitle {
    font-size: 0.9rem;
    color: var(--light-green);
    font-weight: 300;
    margin-top: -5px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

nav a:hover {
    background: rgba(255,255,255,0.2);
    color: var(--light-green);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.8rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    margin-top: 70px;
    background: linear-gradient(135deg, rgba(200, 16, 46, 0.95) 0%, rgba(111, 165, 115, 0.9) 100%), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23424949" width="1200" height="600"/></svg>');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 8rem 2rem;
    text-align: center;
    position: relative;
}

.hero::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" width="100" height="100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

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

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.4);
    color: var(--white);
    font-weight: bold;
}

.hero-tagline {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--light-green);
    font-weight: 500;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

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

.btn {
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--gold);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(212, 172, 13, 0.4);
}

.btn-primary:hover {
    background: #FFBF00;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 172, 13, 0.6);
}

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

.btn-secondary:hover {
    background: var(--white);
    color: var(--angel-red);
}

/* Trust Badges */
.trust-badges {
    background: var(--light-green);
    padding: 3rem 2rem;
    text-align: center;
}

.badges-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.badge {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.badge-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: var(--angel-red);
}

.badge h3 {
    color: var(--angel-red);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

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

/* Sections */
section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--angel-red);
    font-weight: bold;
    position: relative;
    padding-bottom: 1.5rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, var(--angel-red), var(--angel-green));
    border-radius: 5px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border: 3px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(200, 16, 46, 0.15);
    border-color: var(--light-green);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--angel-red);
}

.service-card h3 {
    color: var(--angel-red);
    margin-bottom: 1rem;
    font-size: 1.6rem;
    font-weight: bold;
}

.service-card p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-card ul {
    list-style: none;
    padding-left: 0;
}

.service-card li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--dark-gray);
}

.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--angel-green);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Special Offers Section */
.special-offers {
    background: linear-gradient(135deg, var(--light-green) 0%, rgba(178, 216, 195, 0.5) 100%);
}

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

.offer-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    border-left: 6px solid var(--angel-red);
    position: relative;
    overflow: hidden;
}

.offer-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--gold);
    color: var(--white);
    padding: 0.5rem 3rem;
    transform: rotate(45deg);
    font-weight: bold;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.offer-card h3 {
    color: var(--angel-red);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.offer-card .offer-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--angel-green);
}

/* Features Section */
.features-section {
    background: var(--white);
}

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

.feature {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(178, 216, 195, 0.1) 0%, rgba(255,255,255,0.5) 100%);
    border-radius: 15px;
    transition: all 0.3s;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(111, 165, 115, 0.2);
}

.feature-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: var(--angel-green);
}

.feature h3 {
    color: var(--angel-red);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: bold;
}

.feature p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* Contact Section */
#kontakt {
    background: linear-gradient(135deg, var(--angel-red) 0%, #A00D24 100%);
    color: var(--white);
}

#kontakt .section-title {
    color: var(--white);
}

#kontakt .section-subtitle {
    color: var(--light-green);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.contact-info {
    background: rgba(255,255,255,0.1);
    padding: 2.5rem;
    border-radius: 15px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.contact-item {
    display: flex;
    align-items: start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    transition: all 0.3s;
}

.contact-item:hover {
    background: rgba(255,255,255,0.15);
    transform: translateX(10px);
}

.contact-icon {
    font-size: 2rem;
    color: var(--gold);
    margin-top: 0.2rem;
}

.contact-details h3 {
    color: var(--light-green);
    margin-bottom: 0.7rem;
    font-size: 1.3rem;
}

.contact-details p {
    line-height: 1.8;
}

.contact-details a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-details a:hover {
    color: var(--gold);
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
}

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

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    color: var(--gold);
    font-size: 1.3rem;
}

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

.footer-section li {
    padding: 0.6rem 0;
}

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

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

.social-links {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: var(--angel-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s;
    text-decoration: none;
    color: var(--white);
}

.social-icon:hover {
    background: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(212, 172, 13, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    color: var(--light-green);
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, var(--gold) 0%, #FFBF00 100%);
    padding: 3rem 2rem;
    text-align: center;
    margin: 4rem 0;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(212, 172, 13, 0.3);
}

.cta-banner h2 {
    color: var(--white);
    font-size: 2.2rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.cta-banner p {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    nav {
        display: none;
        width: 100%;
    }
    
    nav.active {
        display: block;
    }
    
    nav ul {
        flex-direction: column;
        gap: 0.5rem;
        padding-top: 1rem;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero-tagline {
        font-size: 1.3rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid,
    .offers-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Scroll Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
