/* Dienstleistungen Rodriguez - Professional House & Garden Services */

:root {
    --primary-color: #FFFFFF;
    --primary-dark: #F5F5F5;
    --primary-light: #FFFFFF;
    --accent-color: #4c6941;
    --accent-light: #5d7a51;
    --accent-dark: #3d5434;
    --background: #FFFFFF;
    --surface: #FFFFFF;
    --surface-dark: #F5F5F5;
    --text-primary: #000000;
    --text-secondary: #333333;
    --text-light: #000000;
    --border: #DDDDDD;
    --gradient-primary: linear-gradient(135deg, #FFFFFF 0%, #F5F5F5 100%);
    --gradient-accent: linear-gradient(135deg, #4c6941 0%, #5d7a51 100%);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 12px 24px rgba(0, 0, 0, 0.18);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
}

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--background);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

html {
    scroll-behavior: smooth;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: #FFFFFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.4);
}

.whatsapp-float i {
    margin-top: 0;
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }
}

/* Header Styles */
header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 3px solid #4c6941;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: 0;
    margin: 0;
}

.logo-image {
    width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: 8px;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.1));
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: #000000;
    background: #4c6941;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: #4c6941;
    transition: all 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Main Content */
main {
    margin-top: 100px;
    overflow-x: hidden;
    width: 100%;
}

/* Common Elements */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.8rem;
    }
}

.section-title {
    text-align: center;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 800;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    font-weight: 500;
}

/* Hero Section - Professional Garden Service Style */
.hero {
    background: linear-gradient(135deg, rgba(76, 105, 65, 0.2), rgba(160, 160, 160, 0.15)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23FFFFFF" width="1200" height="600"/><circle fill="%23FFFF00" opacity="0.1" cx="200" cy="100" r="150"/><circle fill="%23FFFF66" opacity="0.1" cx="900" cy="400" r="200"/></svg>');
    background-size: cover;
    background-position: center;
    color: #000000;
    padding: 8rem 0 5rem;
    position: relative;
    overflow: hidden;
    border-bottom: 5px solid #4c6941;
    width: 100%;
    max-width: 100vw;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
}

@media (max-width: 768px) {
    .hero-content {
        padding: 0 1rem;
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.hero-text h1 {
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    margin-bottom: 1.5rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1px;
    color: #000000;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    opacity: 1;
    line-height: 1.4;
    font-weight: 700;
    color: #000000;
}

.hero-description {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    color: #000000;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-logo {
    text-align: center;
}

.hero-logo-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 8px 32px rgba(255,255,255,0.3));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Key Features Section */
.key-features {
    padding: 4rem 0;
    background: #F5F5F5;
    border-top: 5px solid #4c6941;
    border-bottom: 5px solid #4c6941;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-item {
    text-align: center;
    padding: 2rem 1rem;
}

.feature-icon {
    width: 90px;
    height: 90px;
    background: white;
    border-radius: 20px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #000000;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    border: 3px solid #DDDDDD;
}

.feature-item:hover .feature-icon {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    background: #4c6941;
    border-color: #4c6941;
}

.feature-item h3 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.feature-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Services Section - Professional Style */
.services {
    padding: 6rem 0;
    background: white;
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0;
    background: transparent;
}

.services-grid-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
    width: 100%;
    max-width: 100%;
}

@media (max-width: 768px) {
    .services-grid-main {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 580px) {
    .services-grid-main {
        grid-template-columns: 1fr;
    }
}

.service-main-card {
    background: white;
    border-radius: 16px;
    overflow: visible;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
    border: 2px solid #E0E0E0;
    position: relative;
}

.service-main-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #4c6941;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 16px 16px 0 0;
}

.service-main-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border-color: #4c6941;
}

.service-main-card:hover::before {
    opacity: 1;
}

.service-image {
    height: 200px;
    overflow: hidden;
    position: relative;
    background: var(--background-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-content {
    padding: 2.5rem 2rem 2rem 2rem;
}

.service-content h3 {
    color: var(--text-primary);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.3;
}

.service-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.feature-tag {
    background: var(--primary-light);
    color: var(--primary-dark);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.service-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.services-cta {
    text-align: center;
    margin-top: 4rem;
}

/* Calculator Section - RiQ Style */
.calculator {
    padding: 6rem 0;
    background: var(--surface);
}

.calculator-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.calc-benefit {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--background);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.calc-benefit i {
    color: var(--primary-color);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.calc-benefit span {
    color: var(--text-secondary);
    font-weight: 500;
}

.calculator-form {
    max-width: 800px;
    margin: 0 auto;
    background: var(--surface);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

/* Form Elements */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1rem;
}

.form-group select,
.form-group input {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid #E0E0E0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #FAFAFA;
}

.form-group select:focus,
.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 4px rgba(46, 125, 50, 0.1);
}

.price-result {
    margin-top: 2rem;
    padding: 2rem;
    background: var(--gradient-accent);
    color: white;
    border-radius: 16px;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 600;
    display: none;
    box-shadow: var(--shadow-lg);
    animation: slideIn 0.5s ease;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button.primary {
    background: var(--gradient-accent);
    color: #FFFFFF;
    box-shadow: 0 6px 20px rgba(76, 105, 65, 0.4);
    font-weight: 700;
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(76, 105, 65, 0.5);
}

.cta-button.secondary {
    background: white;
    color: #4c6941;
    border: 3px solid #4c6941;
    font-weight: 700;
}

.cta-button.secondary:hover {
    background: #4c6941;
    color: #FFFFFF;
    border-color: #4c6941;
}

.btn-outline {
    padding: 0.8rem 1.5rem;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
    font-size: 0.9rem;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

.btn-primary {
    padding: 0.8rem 1.5rem;
    background: var(--gradient-accent);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
    font-size: 0.9rem;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-large {
    padding: 1.2rem 3rem;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.btn-large:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.calculate-btn {
    width: 100%;
    background: var(--gradient-primary);
    color: white;
    padding: 1.5rem;
    border: none;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    margin-top: 1rem;
}

.calculate-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.calculate-btn i {
    margin-right: 0.5rem;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: #F5F5F5;
    position: relative;
}

@media (max-width: 768px) {
    .contact {
        padding: 3rem 0;
    }
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    width: 100%;
    max-width: 100%;
}

@media (max-width: 968px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.contact-info {
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(76, 105, 65, 0.3);
    color: #000000;
    width: 100%;
    box-sizing: border-box;
}

.contact-info h3 {
    color: #000000;
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
    opacity: 0;
    height: 0;
    overflow: hidden;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: translateX(8px);
}

.contact-icon {
    width: 55px;
    height: 55px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    color: #000000;
    font-size: 1.4rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    transform: scale(1.1);
    background: rgba(0, 0, 0, 0.15);
}

.contact-item strong {
    color: #000000;
    display: block;
    margin-bottom: 0.3rem;
    font-size: 1.05rem;
}

.contact-item div {
    color: #000000;
    line-height: 1.6;
}

.contact-item a {
    color: #000000;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #333333;
    text-decoration: underline;
}

.contact-form {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(76, 105, 65, 0.15);
    border: 3px solid #4c6941;
    width: 100%;
    box-sizing: border-box;
}

.contact-form h3 {
    color: #000000;
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.contact-form textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid #E0E0E0;
    border-radius: 10px;
    font-size: 1rem;
    resize: vertical;
    min-height: 150px;
    transition: all 0.3s ease;
    background: #FAFAFA;
    font-family: inherit;
}

.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 4px rgba(46, 125, 50, 0.1);
}

.submit-btn {
    background: var(--gradient-accent);
    color: #000000;
    padding: 1.3rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(76, 105, 65, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(76, 105, 65, 0.4);
}

.submit-btn i {
    font-size: 1.2rem;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #F5F5F5 0%, #FFFFFF 100%);
    color: #000000;
    padding: 4rem 0 2rem;
    position: relative;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    border-top: 4px solid #4c6941;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0;
    background: transparent;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    color: #000000;
    font-weight: 700;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section a {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.footer-section a:hover {
    color: #666666;
    transform: translateX(8px);
}

.footer-section p a {
    color: #000000;
    text-decoration: underline;
}

.footer-section p a:hover {
    color: #666666;
}

/* Social Media Links */
.social-media-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-media-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: #4c6941;
    color: #000000;
    border-radius: 50%;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-media-links a:hover {
    background: #8caa66;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 20px rgba(76, 105, 65, 0.4);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    text-align: center;
    color: var(--text-light);
}

/* Why Choose Us Section */
.why-choose {
    padding: 6rem 0;
    background: var(--background);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--surface);
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.benefit-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon {
    background: var(--gradient-accent);
    transform: scale(1.1);
}

.benefit-content h3 {
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.benefit-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 100px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 100px);
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 2rem 0;
        transition: left 0.3s ease;
        z-index: 999;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        border-top: 3px solid #4c6941;
        display: flex !important;
        overflow-y: auto;
        gap: 0;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        margin: 0.8rem 0;
        list-style: none;
        width: 90%;
        text-align: center;
        display: block;
    }
    
    .nav-links a {
        font-size: 1.3rem;
        color: #000000;
        text-decoration: none;
        padding: 1.2rem 2rem;
        border-radius: 8px;
        transition: all 0.3s ease;
        display: block;
        text-align: center;
        width: 100%;
        font-weight: 600;
        background: rgba(76, 105, 65, 0.1);
    }
    
    .nav-links a::after {
        display: none;
    }
    
    .nav-links a:hover,
    .nav-links a.active {
        background: #4c6941;
        color: #000000;
        transform: translateY(-2px);
    }
    
    .mobile-menu {
        display: flex;
    }
    
    .mobile-menu.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .mobile-menu.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-logo {
        order: -1;
    }
    
    .hero-logo-image {
        width: 150px;
        height: 150px;
    }
    
    .services-grid-main {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .calculator-benefits {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .service-actions {
        justify-content: center;
    }
    
    nav {
        padding: 0 1rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .calculator-form,
    .service-content,
    .contact-info,
    .contact-form {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 4rem 0 3rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .benefit-item {
        padding: 1.5rem;
    }
    
    .cta-button {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .service-actions {
        flex-direction: column;
    }
}


    
    .mobile-menu.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .mobile-menu.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }


/* Hide old styles */
.logo-text,
.logo-icon {
    display: none;
}

/* Legal Pages */
.legal-page {
    padding: 2rem 0 4rem;
    background: var(--background);
    min-height: calc(100vh - 160px);
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--surface);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    line-height: 1.8;
}

.legal-content h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    border-bottom: 3px solid #4c6941;
    padding-bottom: 1rem;
}

.legal-content h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin: 2.5rem 0 1rem 0;
    border-left: 4px solid var(--accent-color);
    padding-left: 1rem;
}

.legal-content h3 {
    color: var(--primary-dark);
    font-size: 1.3rem;
    margin: 2rem 0 1rem 0;
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
    color: var(--primary-dark);
}

.legal-note {
    background: var(--accent-color);
    color: white;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    font-style: italic;
}

.widerruf-box {
    background: #F5F5F5;
    border: 2px solid #4c6941;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.legal-page .contact-info {
    background: #F5F5F5;
    border: 2px solid #4c6941;
    color: #000000;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.legal-page .contact-info h3 {
    color: #000000;
    margin-bottom: 1rem;
}

.legal-page .contact-info a {
    color: #000000;
    font-weight: 600;
}

.footer-section a.active {
    color: var(--accent-color);
    font-weight: bold;
}

/* Services Page Styles */
.services-hero {
    background: linear-gradient(135deg, #4c5755, #4c6941);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.services-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.services-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    opacity: 0.95;
}

.services-hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.hero-feature i {
    color: var(--accent-color);
}

/* Service Detail Cards */
.main-services {
    padding: 80px 0;
}

.service-detail-card {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 6rem;
    padding: 3rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-detail-card.reverse {
    grid-template-columns: 2fr 1fr;
}

.service-detail-card.reverse .service-detail-content {
    order: -1;
}

.service-detail-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--background-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.service-detail-card:hover .service-detail-image img {
    transform: scale(1.05);
}

.service-detail-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.service-detail-content h3 i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.service-detail-content > p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Service Detail Features */
.service-detail-features,
.service-detail-equipment,
.service-detail-expertise {
    margin-bottom: 2rem;
}

.service-detail-features h4,
.service-detail-equipment h4,
.service-detail-expertise h4,
.service-detail-situations h4,
.service-detail-challenges h4,
.service-security h4,
.service-tip h4,
.service-note h4 {
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.service-detail-features ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.5rem;
}

.service-detail-features li {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
    color: var(--text-muted);
}

.service-detail-features li::before {
    content: "✓";
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 0.75rem;
    font-size: 1.1rem;
}

/* Service Situations & Equipment */
.situations-list,
.equipment-list,
.expertise-list,
.challenges-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.situations-list span,
.equipment-list span,
.expertise-list span,
.challenges-list span {
    background: var(--background-light);
    color: var(--text-muted);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    border: 1px solid var(--border-color);
}

/* Service Tips & Notes */
.service-tip,
.service-note,
.service-security {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    margin: 1.5rem 0;
}

.service-tip p,
.service-note p,
.service-security p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Price Examples */
.price-examples {
    background: linear-gradient(135deg, #f5f5f5, #e0e0e0);
    padding: 1.5rem;
    border-radius: 12px;
    margin: 1.5rem 0;
    border-left: 4px solid var(--accent-color);
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1rem 0;
}

.price-item {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    color: var(--text-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.price-note {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 1rem 0 0 0;
    font-style: italic;
}

.service-price-highlight {
    background: linear-gradient(135deg, var(--primary-color), #4c6941);
    color: white;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    margin: 1.5rem 0;
}

.service-price-highlight h4 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.service-price-highlight p {
    margin: 0;
    opacity: 0.9;
}

.service-price-individual {
    background: linear-gradient(135deg, #f3e8ff, #e9d5ff);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    margin: 1.5rem 0;
    border-left: 4px solid #8b5cf6;
}

.service-price-individual h4 {
    color: #6b21a8;
    margin-bottom: 0.5rem;
}

.service-price-individual p {
    color: var(--text-muted);
    margin: 0;
}

/* Service Actions */
.service-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* Additional Services */
.additional-services {
    background: var(--background-light);
    padding: 80px 0;
}

.additional-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.additional-service {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.additional-service:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.additional-service i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.additional-service h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.additional-service p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.service-price {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Process Section */
.process-section {
    padding: 80px 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.process-step {
    text-align: center;
    padding: 2rem;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #4c6941);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.process-step h4 {
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.process-step p {
    color: var(--text-muted);
    line-height: 1.6;
}

.process-cta {
    text-align: center;
    margin-top: 3rem;
}

/* FAQ Section */
.faq-section {
    background: var(--background-light);
    padding: 80px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.faq-item h4 {
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.faq-item p {
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for Services */
@media (max-width: 768px) {
    .service-detail-card,
    .service-detail-card.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
        margin-bottom: 3rem;
    }
    
    .service-detail-card.reverse .service-detail-content {
        order: 0;
    }
    
    .services-hero h1 {
        font-size: 2.5rem;
    }
    
    .services-hero-features {
        gap: 1rem;
    }
    
    .hero-feature {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .additional-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .price-grid {
        grid-template-columns: 1fr;
    }
    
    .service-actions {
        flex-direction: column;
    }
}

/* Advanced Calculator Styles */
.advanced-calculator-section {
    padding: 80px 0;
    background: var(--background-light);
}

.advanced-calculator-form {
    max-width: 1000px;
    margin: 0 auto;
}

.calculator-advanced {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.advanced-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #4c6941;
}

.advanced-section:last-child {
    border-bottom: none;
    margin-bottom: 2rem;
}

.advanced-section h4 {
    color: var(--text-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.advanced-section h4 i {
    color: var(--primary-color);
    font-size: 1.3rem;
}

.advanced-section h5 {
    color: var(--text-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.checkbox-group {
    margin-top: 1.5rem;
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.checkbox-grid label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: var(--background-light);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.checkbox-grid label:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.checkbox-grid input[type="checkbox"] {
    margin: 0;
    transform: scale(1.2);
}

.checkbox-grid input[type="checkbox"]:checked + * {
    font-weight: 600;
}

.checkbox-grid label:has(input:checked) {
    background: linear-gradient(135deg, var(--primary-color), #4c6941);
    color: white;
    border-color: var(--primary-color);
}

.calculate-btn.advanced {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-color), #4c6941);
    color: white;
    padding: 1.5rem;
    border: none;
    border-radius: 12px;
    font-size: 1.3rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(45, 212, 191, 0.3);
    margin-top: 2rem;
}

.calculate-btn.advanced:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(45, 212, 191, 0.4);
}

.calculate-btn.advanced i {
    margin-right: 0.75rem;
    font-size: 1.2rem;
}

/* Advanced Results */
.advanced-price-result {
    background: white;
    margin-top: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: none;
}

.price-breakdown {
    padding: 3rem;
}

.price-breakdown h4 {
    color: var(--text-color);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

.breakdown-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--background-light);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.breakdown-description {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.breakdown-title {
    font-weight: 600;
    color: var(--text-color);
}

.breakdown-explanation {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.breakdown-price {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-color);
    min-width: 80px;
    text-align: right;
}

.total-price {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), #4c6941);
    color: white;
    border-radius: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 1rem;
}

.total-price-right {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.price-actions {
    background: var(--background-light);
    padding: 2rem 3rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.price-actions button {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    border: none;
    font-size: 1rem;
}

.price-actions .btn-primary {
    background: linear-gradient(135deg, var(--accent-color), #f59e0b);
    color: white;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.price-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

.price-actions .btn-outline {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.price-actions .btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Responsive Design for Advanced Calculator */
@media (max-width: 768px) {
    .calculator-advanced {
        padding: 2rem;
    }
    
    .advanced-section {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }
    
    .advanced-section h4 {
        font-size: 1.3rem;
    }
    
    .checkbox-grid {
        grid-template-columns: 1fr;
    }
    
    .breakdown-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .breakdown-price {
        align-self: flex-end;
        font-size: 1.2rem;
    }
    
    .total-price {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .price-actions {
        flex-direction: column;
        padding: 1.5rem;
    }
    
    .price-breakdown {
        padding: 2rem;
    }
    
    .calculate-btn.advanced {
        font-size: 1.1rem;
        padding: 1.2rem;
    }
}

/* Calculator Toast Notifications */
.calculator-toast {
    position: fixed;
    bottom: 20px;
    right: -400px;
    background: white;
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    z-index: 10003;
    transition: right 0.4s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 380px;
    min-width: 300px;
    border-left: 4px solid var(--primary-color);
}

.calculator-toast.show {
    right: 20px;
}

.calculator-toast-success {
    border-left-color: #4c6941;
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
}

.calculator-toast-success i {
    color: #4c6941;
    font-size: 1.2rem;
}

.calculator-toast-error {
    border-left-color: #4c6941;
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
}

.calculator-toast-error i {
    color: #4c6941;
    font-size: 1.2rem;
}

.calculator-toast-info {
    border-left-color: var(--primary-color);
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
}

.calculator-toast-info i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.calculator-toast span {
    color: var(--text-color);
    font-size: 0.95rem;
    font-weight: 500;
    flex: 1;
    line-height: 1.4;
}

.toast-close {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 1rem;
    padding: 4px;
    transition: color 0.3s ease;
    border-radius: 50%;
}

.toast-close:hover {
    color: var(--text-color);
    background: rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
    .calculator-toast {
        right: -350px;
        left: 20px;
        max-width: none;
        min-width: auto;
    }
    
    .calculator-toast.show {
        right: 20px;
    }
}

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    transition: bottom 0.3s ease;
    border-top: 3px solid #4c6941;
}

.cookie-banner.show {
    bottom: 0;
}

.cookie-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
}

.cookie-banner-text {
    flex: 1;
}

.cookie-banner-text h4 {
    color: var(--text-color);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cookie-banner-text h4 i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.cookie-banner-text p {
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
    font-size: 0.95rem;
}

.cookie-banner-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    white-space: nowrap;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, var(--primary-color), #4c6941);
    color: white;
    box-shadow: 0 4px 12px rgba(45, 212, 191, 0.3);
}

.cookie-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(45, 212, 191, 0.4);
}

.cookie-btn-decline {
    background: #f3f4f6;
    color: var(--text-color);
    border: 1px solid #d1d5db;
}

.cookie-btn-decline:hover {
    background: #e5e7eb;
    transform: translateY(-1px);
}

.cookie-btn-settings {
    background: linear-gradient(135deg, var(--accent-color), #f59e0b);
    color: white;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.cookie-btn-settings:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(245, 158, 11, 0.4);
}

.cookie-banner-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 1.2rem;
    padding: 5px;
    transition: color 0.3s ease;
}

.cookie-banner-close:hover {
    color: var(--text-color);
}

/* Cookie Settings Modal */
.cookie-settings-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cookie-settings-content {
    background: white;
    border-radius: 16px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.cookie-settings-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 1px solid #4c6941;
    background: linear-gradient(135deg, var(--primary-color), #4c6941);
    color: white;
    border-radius: 16px 16px 0 0;
}

.cookie-settings-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.close-settings {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 1.3rem;
    padding: 5px;
    transition: opacity 0.3s ease;
}

.close-settings:hover {
    opacity: 0.8;
}

.cookie-settings-body {
    padding: 30px;
}

.cookie-category {
    margin-bottom: 30px;
    padding: 20px;
    background: var(--background-light);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.cookie-category:last-child {
    margin-bottom: 0;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.cookie-category-header h4 {
    margin: 0;
    color: var(--text-color);
    font-weight: 600;
}

.cookie-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 26px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--primary-color);
}

input:checked + .slider:before {
    transform: translateX(24px);
}

input:disabled + .slider {
    background-color: #4CAF50;
    cursor: not-allowed;
}

.cookie-category p {
    color: var(--text-muted);
    margin: 12px 0;
    line-height: 1.5;
}

.cookie-details {
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
}

.cookie-details li {
    padding: 6px 0;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.cookie-details strong {
    color: var(--text-color);
}

.cookie-settings-footer {
    padding: 25px 30px;
    border-top: 1px solid #4c6941;
    background: var(--background-light);
    border-radius: 0 0 16px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-btn-save {
    background: linear-gradient(135deg, var(--primary-color), #4c6941);
    color: white;
    box-shadow: 0 4px 12px rgba(45, 212, 191, 0.3);
    padding: 12px 24px;
}

.cookie-btn-save:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(45, 212, 191, 0.4);
}

.cookie-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
}

.cookie-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Cookie Toast */
.cookie-toast {
    position: fixed;
    bottom: 20px;
    right: -400px;
    background: white;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 10002;
    transition: right 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 350px;
    border-left: 4px solid var(--primary-color);
}

.cookie-toast.show {
    right: 20px;
}

.cookie-toast-success {
    border-left-color: #4c6941;
}

.cookie-toast-success i {
    color: #4c6941;
}

.cookie-toast-info i {
    color: var(--primary-color);
}

.cookie-toast span {
    color: var(--text-color);
    font-size: 0.9rem;
}

/* Responsive Design for Cookie Banner */
@media (max-width: 768px) {
    .cookie-banner-content {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
        text-align: center;
    }
    
    .cookie-banner-actions {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .cookie-btn {
        flex: 1;
        min-width: 120px;
        justify-content: center;
    }
    
    .cookie-settings-content {
        margin: 10px;
        max-height: 95vh;
    }
    
    .cookie-settings-header,
    .cookie-settings-body,
    .cookie-settings-footer {
        padding: 20px;
    }
    
    .cookie-category {
        padding: 15px;
    }
    
    .cookie-settings-footer {
        flex-direction: column;
        gap: 15px;
    }
    
    .cookie-toast {
        right: -350px;
        left: 20px;
        max-width: none;
    }
    
    .cookie-toast.show {
        right: 20px;
    }
}

/* Contact Page Styles */
.contact-page {
    padding: 80px 0;
    background: var(--background-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info-detailed {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-info-detailed h2 {
    color: var(--text-color);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.contact-info-detailed .subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.contact-methods {
    margin-bottom: 3rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--background-light);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.contact-method .contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #4c6941);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-details h3 {
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-details p {
    margin-bottom: 0.5rem;
}

.contact-details a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.contact-details a:hover {
    text-decoration: underline;
}

.contact-details small {
    color: var(--text-muted);
    line-height: 1.4;
}

/* Service Area */
.service-area {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    padding: 2rem;
    border-radius: 16px;
    border-left: 4px solid var(--primary-color);
}

.service-area h3 {
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-area h3 i {
    color: var(--primary-color);
}

.area-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.area-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
}

.area-list li:before {
    content: "📍";
    margin-right: 0.75rem;
}

/* Contact Form Detailed */
.contact-form-detailed {
    background: rgb(221, 219, 219);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form-detailed h2 {
    color: var(--text-color);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

.detailed-form .form-group {
    margin-bottom: 1.5rem;
}

.detailed-form label {
    display: block;
    color: var(--text-color);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.detailed-form input,
.detailed-form select,
.detailed-form textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    font-family: inherit;
}

.detailed-form input:focus,
.detailed-form select:focus,
.detailed-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(45, 212, 191, 0.1);
}

.detailed-form textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    margin: 2rem 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
    transform: scale(1.2);
}

.submit-btn.large {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-color), #4c6941);
    color: white;
    padding: 1.5rem;
    border: none;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(45, 212, 191, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.submit-btn.large:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(45, 212, 191, 0.4);
}

.form-note {
    margin-top: 1rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-note i {
    color: var(--primary-color);
}

/* Quick Contact */
.quick-contact {
    background: linear-gradient(135deg, var(--primary-color), #4c6941);
    color: white;
    padding: 4rem 0;
}

.quick-contact-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.quick-contact-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.quick-contact-info p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.phone-button {
    background: white;
    color: var(--primary-color);
    padding: 1.5rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.phone-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.4);
}

.phone-button i {
    font-size: 1.3rem;
}

/* Contact Page Responsive */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info-detailed,
    .contact-form-detailed {
        padding: 2rem;
    }
    
    .contact-method {
        padding: 1rem;
        gap: 1rem;
    }
    
    .contact-method .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .quick-contact-content {
        flex-direction: column;
        text-align: center;
    }
    
    .quick-contact-info h2 {
        font-size: 2rem;
    }
    
    .phone-button {
        font-size: 1.2rem;
        padding: 1.2rem 2rem;
    }
    
    .service-area {
        padding: 1.5rem;
    }
}

/* Service Icon Large for new service cards */
.service-icon-large {
    width: 100px;
    height: 100px;
    background: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.8rem;
    color: #000000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    position: relative;
    border: 3px solid #E0E0E0;
}

.service-icon-large::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 23px;
    background: var(--accent-color);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* Service Areas Section */
.service-areas {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.05), rgba(56, 142, 60, 0.08));
    position: relative;
}

.service-areas::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
    width: 100%;
    max-width: 100%;
}

@media (max-width: 768px) {
    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .areas-grid {
        grid-template-columns: 1fr;
    }
}

.area-item {
    background: white;
    padding: 1.2rem 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    font-weight: 600;
    color: var(--text-primary);
    position: relative;
    overflow: hidden;
}

.area-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.area-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(46, 125, 50, 0.2);
    border-color: var(--primary-light);
}

.area-item:hover::before {
    transform: scaleX(1);
}

.area-item i {
    color: var(--accent-color);
    margin-right: 0.6rem;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.area-item:hover i {
    transform: scale(1.2);
}

.areas-note {
    text-align: center;
    margin-top: 2.5rem;
    font-size: 1.2rem;
    color: #4c6941;
    font-weight: 700;
    font-style: italic;
}

/* Image Gallery Section */
.gallery-section {
    padding: 6rem 0;
    background: white;
    position: relative;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.image-gallery {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 1rem;
}

.image-gallery::-webkit-scrollbar {
    height: 8px;
}

.image-gallery::-webkit-scrollbar-track {
    background: #F5F5F5;
    border-radius: 10px;
}

.image-gallery::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 10px;
}

.image-gallery::-webkit-scrollbar-thumb:hover {
    background: var(--accent-dark);
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    min-width: 350px;
    width: 350px;
    height: 280px;
    background: var(--background);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid transparent;
    flex-shrink: 0;
    scroll-snap-align: start;
}

@media (max-width: 768px) {
    .gallery-item {
        min-width: 280px;
        width: 280px;
        height: 220px;
    }
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(76, 105, 65, 0.3), rgba(160, 160, 160, 0.3));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(76, 105, 65, 0.3);
    border-color: var(--accent-color);
}

.gallery-item:hover::after {
    opacity: 0.3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-placeholder {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-radius: 16px;
    border: 2px dashed var(--primary-color);
}

.gallery-placeholder i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.gallery-placeholder h3 {
    color: var(--text-primary);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.gallery-placeholder p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.gallery-placeholder code {
    background: white;
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
    color: var(--primary-color);
    font-weight: 600;
}

.gallery-hint {
    font-style: italic;
    margin-top: 1rem;
}

/* Lightbox Styles */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-primary);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    background: var(--accent-color);
    color: white;
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-primary);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.lightbox-prev {
    left: -70px;
}

.lightbox-next {
    right: -70px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.lightbox-counter {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    color: var(--text-primary);
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Updated color scheme */
:root {
    --primary-color: #16A34A;
    --primary-dark: #15803D;
    --primary-light: #4ADE80;
    --accent-color: #4c6941;
    --accent-light: #4c6941;
    --accent-dark: #4c6941;
}

/* Hero description */
.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.6;
}

/* Responsive Gallery */
@media (max-width: 1024px) {
    /* Tablet Optimierungen */
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-logo {
        order: -1;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .services-grid-main {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }
    
    .contact-content {
        gap: 2rem;
    }
    
    .areas-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
}

@media (max-width: 768px) {
    /* Mobile Optimierungen */
    
    /* Header */
    header {
        padding: 0.5rem 0;
    }
    
    nav {
        padding: 0 0.5rem;
        justify-content: space-between;
    }
    
    .logo {
        margin: 0;
        padding: 0;
        margin-left: 0.5rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .logo-image {
        width: 110px;
        height: 110px;
    }
    
    /* Hero Section */
    main {
        margin-top: 80px;
    }
    
    .hero {
        padding: 4rem 0 3rem;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .hero-text h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-logo-image {
        width: 100%;
        max-width: 250px;
        height: auto;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    /* Sections */
    .services,
    .service-areas,
    .gallery-section,
    .contact {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .section-title::after {
        width: 60px;
        bottom: -8px;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2.5rem;
        padding: 0 1rem;
    }
    
    /* Features */
    .key-features {
        padding: 2rem 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    /* Services */
    .services-grid-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-main-card {
        margin: 0 1rem;
    }
    
    .service-icon-large {
        width: 80px;
        height: 80px;
        font-size: 2.2rem;
        margin-bottom: 1.2rem;
    }
    
    .service-content {
        padding: 2rem 1.5rem 1.5rem;
    }
    
    .service-content h3 {
        font-size: 1.2rem;
        line-height: 1.4;
    }
    
    .service-content p {
        font-size: 0.95rem;
    }
    
    /* Service Areas */
    .areas-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 0.8rem;
    }
    
    .area-item {
        padding: 0.9rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .area-item i {
        font-size: 1rem;
        margin-right: 0.4rem;
    }
    
    .areas-note {
        font-size: 1rem;
        margin-top: 2rem;
        padding: 0 1rem;
    }
    
    /* Contact */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0;
    }
    
    .contact-info {
        padding: 1.5rem 1rem;
        margin: 0;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }
    
    .contact-item {
        padding: 1rem 0.8rem;
        margin-bottom: 1.5rem;
        width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        margin-right: 0.8rem;
        flex-shrink: 0;
    }
    
    .contact-item strong {
        font-size: 0.9rem;
        word-wrap: break-word;
    }
    
    .contact-item div {
        font-size: 0.85rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
    }
    
    .contact-item a {
        word-wrap: break-word;
        overflow-wrap: break-word;
        display: inline-block;
        max-width: 100%;
    }
    
    .contact-form {
        padding: 1.5rem 1rem;
        margin: 0;
        border-width: 2px;
        width: 100%;
        max-width: 100%;
    }
    
    .contact-form h3 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
    
    .form-group {
        margin-bottom: 1.3rem;
    }
    
    .contact-form label {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 0.9rem 1rem;
        font-size: 0.95rem;
    }
    
    .contact-form textarea {
        min-height: 120px;
    }
    
    .submit-btn {
        padding: 1.1rem 1.5rem;
        font-size: 1rem;
    }
    
    /* Gallery */
    .image-gallery {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .gallery-placeholder {
        padding: 2rem 1rem;
    }
    
    .gallery-placeholder i {
        font-size: 3rem;
    }
    
    .gallery-placeholder h3 {
        font-size: 1.5rem;
    }
    
    /* Lightbox */
    .lightbox-prev {
        left: 10px;
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .lightbox-next {
        right: 10px;
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .lightbox-close {
        top: 10px;
        right: 10px;
        width: 35px;
        height: 35px;
        font-size: 1.3rem;
    }
    
    .lightbox-counter {
        bottom: 10px;
        padding: 0.4rem 1rem;
        font-size: 0.9rem;
    }
    
    /* Footer */
    footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .footer-section {
        padding: 0 1rem;
    }
    
    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .footer-section a {
        display: block;
        padding: 0.5rem 0;
    }
    
    .footer-section a:hover {
        transform: translateX(0);
    }
    
    .footer-bottom {
        padding-top: 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    /* Extra kleine Handys */
    
    .hero-text h1 {
        font-size: 1.6rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    .service-icon-large {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .service-content h3 {
        font-size: 1.1rem;
    }
    
    .areas-grid {
        grid-template-columns: 1fr;
    }
    
    .area-item {
        text-align: left;
    }
    
    .contact-info,
    .contact-form {
        padding: 1.5rem 1rem;
    }
    
    .contact-form h3 {
        font-size: 1.4rem;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    /* Legal Pages Mobile */
    .legal-page {
        padding: 1rem 0 2rem;
        overflow-x: hidden;
        width: 100%;
    }
    
    .legal-content {
        padding: 1.5rem 1rem;
        margin: 0 0.5rem;
        border-radius: 10px;
        max-width: 100%;
        overflow-x: hidden;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .legal-content h1 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
        padding-bottom: 0.8rem;
        word-wrap: break-word;
    }
    
    .legal-content h2 {
        font-size: 1.3rem;
        margin: 2rem 0 0.8rem 0;
        padding-left: 0.8rem;
        word-wrap: break-word;
    }
    
    .legal-content h3 {
        font-size: 1.1rem;
        margin: 1.5rem 0 0.8rem 0;
        word-wrap: break-word;
    }
    
    .legal-content h4 {
        font-size: 1rem;
        margin: 1.2rem 0 0.6rem 0;
        word-wrap: break-word;
    }
    
    .legal-content p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
        line-height: 1.6;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .legal-content ul,
    .legal-content ol {
        padding-left: 1.2rem;
        margin-bottom: 1rem;
        max-width: 100%;
    }
    
    .legal-content li {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
        line-height: 1.6;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .legal-content a {
        word-wrap: break-word;
        overflow-wrap: break-word;
        display: inline-block;
        max-width: 100%;
    }
    
    .widerruf-box {
        padding: 1.2rem;
        margin: 1.5rem 0.5rem;
        font-size: 0.95rem;
        max-width: calc(100% - 1rem);
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .widerruf-box h3,
    .widerruf-box h4 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
        word-wrap: break-word;
    }
    
    .legal-page .contact-info {
        padding: 1.2rem;
        margin: 1.5rem 0.5rem;
        font-size: 0.95rem;
        max-width: calc(100% - 1rem);
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .legal-page .contact-info h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .legal-page .contact-info p,
    .legal-page .contact-info a {
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
    }
    
    .legal-note {
        padding: 1rem;
        margin: 1.5rem 0.5rem;
        font-size: 0.9rem;
        max-width: calc(100% - 1rem);
        word-wrap: break-word;
    }
    
    .image-gallery {
        grid-template-columns: 1fr;
    }
    
    .cta-button {
        font-size: 0.95rem;
        padding: 0.9rem 1.5rem;
    }
}
