﻿/* ===================================
   ALLROUNDER SCHMIDT
   Komplett neues modernes Design
   =================================== */

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

:root {
    --primary: #1E4D8B;
    --primary-light: #2563B8;
    --primary-dark: #0F2744;
    --secondary: #F8F9FB;
    --accent: #4A90E2;
    --accent-dark: #2563B8;
    --text-dark: #2D2D2D;
    --text-light: #5A5A5A;
    --white: #FFFFFF;
    --border: #D4E1F0;
    --shadow: rgba(30, 77, 139, 0.15);
    --shadow-lg: rgba(30, 77, 139, 0.25);
}

html { 
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100vw;
}

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

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

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    background: var(--secondary);
    font-size: 17px;
    overflow-x: hidden;
    max-width: 100vw;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: all 0.3s ease; }

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--primary-dark);
    margin-bottom: 1.2rem;
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 800; letter-spacing: -1px; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.4rem, 3vw, 1.9rem); }
p { margin-bottom: 1.2rem; color: var(--text-light); }

.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
section { padding: 5rem 0; }

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 2px 20px var(--shadow);
    z-index: 1000;
    padding: 1.5rem 0;
}

.header-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo { text-align: center; }

.logo a {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
    transition: transform 0.3s ease;
}

.logo img {
    height: 60px;
    width: auto;
    display: block;
}

.logo a:hover {
    transform: scale(1.05);
}

.header-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-call,
.btn-contact {
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-call {
    background: var(--accent);
    color: var(--white);
    box-shadow: 0 3px 10px rgba(74, 144, 226, 0.3);
}

.btn-call:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.4);
}

.btn-contact {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 3px 10px rgba(30, 77, 139, 0.3);
}

.btn-contact:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30, 77, 139, 0.4);
}

.nav {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
}

.nav a {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.05rem;
    padding: 0.5rem 0;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav a:hover::after,
.nav a.active::after { width: 100%; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, rgba(15, 39, 68, 0.92) 0%, rgba(30, 77, 139, 0.88) 50%, rgba(37, 99, 184, 0.92) 100%), url('../img/Hero.jpg') center/cover no-repeat;
    color: var(--white);
    padding: 120px 2rem 60px 2rem;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-subpage {
    min-height: 50vh;
    padding: 120px 2rem 50px 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, rgba(15, 39, 68, 0.92) 0%, rgba(30, 77, 139, 0.88) 50%, rgba(37, 99, 184, 0.92) 100%), url('../img/Hero.jpg') center/cover no-repeat;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero h1 {
    color: var(--white);
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero p {
    color: rgba(255,255,255,0.95);
    font-size: 1.3rem;
    margin-bottom: 3rem;
    line-height: 1.8;
}

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

.btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.3);
}

.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.4);
}

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

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-3px);
}

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

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
    z-index: 999;
    transition: all 0.3s ease;
}

.whatsapp-button:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.7);
}

.whatsapp-button svg {
    width: 35px;
    height: 35px;
    fill: white;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.15);
    padding: 1.5rem;
    z-index: 1001;
    transform: translateY(100%);
    transition: transform 0.4s ease-out;
    border-top: 3px solid var(--accent);
}

.cookie-banner.show {
    transform: translateY(0);
}

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

.cookie-text h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.cookie-text p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.cookie-text a {
    color: var(--accent);
    text-decoration: underline;
    font-weight: 600;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.8rem 2rem;
    font-size: 0.95rem;
    white-space: nowrap;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.15rem;
    color: var(--text-light);
}

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

@media (max-width: 768px) {
    .cards-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.card {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    box-shadow: 0 5px 25px var(--shadow);
    transition: all 0.4s ease;
    text-align: center;
    border: 1px solid var(--border);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--shadow-lg);
    border-color: var(--accent);
}

.card-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 2rem;
    color: var(--white);
    box-shadow: 0 8px 20px var(--shadow);
    position: relative;
}

.card-icon::before {
    content: '✓';
    font-size: 3rem;
    font-weight: 900;
    color: var(--white);
}

.card h3 { margin-bottom: 1.2rem; color: var(--primary); }
.card p { line-height: 1.8; font-size: 1rem; }

.card ul {
    list-style: none;
    text-align: left;
    margin-top: 1.5rem;
}

.card ul li {
    padding: 0.8rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 2rem;
    border-bottom: 1px solid var(--border);
}

.card ul li:last-child { border-bottom: none; }

.card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 900;
    font-size: 1.2rem;
}

.section-alt { background: var(--white); }

.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.split-content h2 { margin-bottom: 1.5rem; }
.split-content p { font-size: 1.1rem; margin-bottom: 1.5rem; }

.split-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px var(--shadow-lg);
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.feature-box {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--white);
    border-radius: 15px;
    border: 2px solid var(--border);
    transition: all 0.3s ease;
}

.feature-box:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
}

.feature-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent);
    margin-bottom: 1rem;
    line-height: 1;
}

.feature-box h3 { font-size: 1.3rem; margin-bottom: 1rem; }

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

.testimonial {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 5px 25px var(--shadow);
    position: relative;
    border-left: 5px solid var(--accent);
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: 1.5rem;
    left: 2rem;
    font-size: 5rem;
    color: var(--accent);
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.testimonial-info h4 { margin-bottom: 0.3rem; font-size: 1.1rem; }
.testimonial-info p { color: var(--text-light); margin: 0; font-size: 0.95rem; }

.service-area-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-top: 3rem;
}

.service-area-map {
    position: relative;
}

.service-area-map iframe {
    width: 100%;
    height: 500px;
    border: 0;
    border-radius: 15px;
    box-shadow: 0 5px 25px var(--shadow);
}

.service-area-info {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    border: 1px solid var(--border);
}

.service-area-info h3 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.service-area-list {
    list-style: none;
    margin: 2rem 0;
}

.service-area-list li {
    padding: 0.8rem 0;
    color: var(--text-dark);
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border-bottom: 1px solid var(--border);
}

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

.area-marker {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.service-area-note {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent) 100%);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 2rem;
    text-align: center;
    font-size: 1rem;
    line-height: 1.6;
}

.service-area-note strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.pricing-section {
    margin-top: 3rem;
}

.pricing-title {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

.pricing-tables {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.pricing-table {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px var(--shadow);
    border: 2px solid var(--border);
}

.pricing-table.single {
    max-width: 600px;
    margin: 0 auto;
}

.pricing-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    padding: 1.5rem;
    text-align: center;
}

.pricing-header.business {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
}

.pricing-header h4 {
    margin: 0;
    font-size: 1.5rem;
}

.pricing-body {
    padding: 2rem;
}

.price-category {
    color: var(--primary);
    font-size: 1.1rem;
    margin: 1.5rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent);
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border);
}

.price-item:last-of-type {
    border-bottom: none;
}

.price-item.highlight {
    background: var(--secondary);
    padding: 1rem;
    margin: 0 -1rem 1rem;
    border-radius: 8px;
    border: none;
}

.price-label {
    font-weight: 500;
    color: var(--text-dark);
}

.price-value {
    font-weight: 700;
    color: var(--accent);
    font-size: 1.1rem;
    white-space: nowrap;
}

.price-note {
    background: linear-gradient(135deg, rgba(30, 77, 139, 0.05) 0%, rgba(74, 144, 226, 0.05) 100%);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
    border-left: 4px solid var(--accent);
}

.pricing-disclaimer {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 2rem;
    font-style: italic;
}

.pricing-subtitle {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--accent);
}

.pricing-category-section {
    margin-top: 3rem;
}

.price-detail {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.price-desc {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 400;
}

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

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    border: 2px solid var(--border);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--shadow);
}

.service-card.highlight-service {
    border-color: var(--accent);
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.05) 0%, rgba(30, 77, 139, 0.05) 100%);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h5 {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.service-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.service-note {
    display: inline-block;
    background: var(--secondary);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 600;
}

.equipment-section {
    margin-top: 3rem;
}

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

.equipment-item {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.equipment-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px var(--shadow-lg);
}

.equipment-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.equipment-info {
    padding: 2rem;
}

.equipment-info h3 {
    color: var(--primary);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.equipment-info p {
    color: var(--text-dark);
    line-height: 1.7;
}

.equipment-video {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px var(--shadow);
    text-align: center;
}

.equipment-video h3 {
    color: var(--primary);
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
}

.cleaning-video {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 5px 20px var(--shadow);
    margin: 0 auto;
    display: block;
}

.video-caption {
    margin-top: 1.5rem;
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: var(--white);
    text-align: center;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section h2 { color: var(--white); margin-bottom: 1.5rem; }
.cta-section p { color: rgba(255,255,255,0.95); font-size: 1.3rem; margin-bottom: 2.5rem; }

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

.contact-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 5px 20px var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px var(--shadow-lg);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 1.5rem;
    font-weight: 700;
}

.contact-card h3 { margin-bottom: 1rem; }
.contact-card a { color: var(--accent); font-weight: 600; font-size: 1.1rem; }
.contact-card a:hover { color: var(--accent-dark); }

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--shadow);
}

.contact-form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
    align-items: start;
}

.contact-form-container,
.contact-map-container {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 25px var(--shadow);
    border: 1px solid var(--border);
}

.contact-form-container h3,
.contact-map-container h3 {
    color: var(--primary);
    margin-bottom: 2rem;
    font-size: 1.6rem;
}

.contact-form-container .contact-form {
    padding: 0;
    box-shadow: none;
    border-radius: 0;
}

.map-wrapper {
    margin-bottom: 1.5rem;
}

.map-wrapper iframe {
    width: 100%;
    height: 400px;
    border: 0;
    border-radius: 12px;
    box-shadow: 0 3px 15px var(--shadow);
}

.route-info {
    background: var(--secondary);
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 1.5rem;
}

.route-info h4 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.route-info p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.form-group { margin-bottom: 2rem; }

.form-group label {
    display: block;
    margin-bottom: 0.7rem;
    font-weight: 600;
    color: var(--primary);
    font-size: 1.05rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1.2rem 1.5rem;
    border: 2px solid var(--border);
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--secondary);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(74, 144, 226, 0.1);
}

.form-group textarea { resize: vertical; min-height: 180px; }

.checkbox-group {
    margin-bottom: 1.5rem;
}

.checkbox-group label {
    font-size: 0.9rem;
    line-height: 1.6;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    cursor: pointer;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.form-success {
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-submit { text-align: center; margin-top: 2rem; }

.faq-container { max-width: 900px; margin: 3rem auto; }

.faq-item {
    background: var(--white);
    border-radius: 15px;
    margin-bottom: 1.5rem;
    box-shadow: 0 3px 15px var(--shadow);
    overflow: hidden;
    border: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    padding: 2rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 600;
}

.faq-question:hover { 
    background: var(--secondary); 
}

.faq-icon {
    font-size: 2rem;
    color: var(--accent);
    transition: transform 0.3s ease;
    font-weight: 700;
    line-height: 1;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.active .faq-icon { 
    transform: rotate(45deg); 
}

.faq-answer { 
    max-height: 0; 
    overflow: hidden; 
    transition: max-height 0.4s ease, padding 0.4s ease; 
}

.faq-answer-content {
    padding: 0 2rem 2rem;
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
}

.faq-item.active .faq-answer { 
    max-height: 500px; 
    padding-top: 0;
}

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

.gallery-item {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px var(--shadow);
    transition: all 0.4s ease;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px var(--shadow-lg);
}

.comparison-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 350px;
}

.before-container,
.after-container { position: relative; overflow: hidden; }

.comparison-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-label {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(30, 77, 139, 0.95);
    color: var(--white);
    padding: 0.7rem 1.5rem;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.footer {
    background: linear-gradient(135deg, #0F2744 0%, #1E4D8B 100%);
    color: #FFFFFF;
    padding: 5rem 0 2rem;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-section h3 { 
    color: var(--accent); 
    margin-bottom: 1.5rem; 
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-section p {
    color: rgba(255,255,255,0.95);
    margin-bottom: 1rem;
    display: block;
    line-height: 1.9;
    font-size: 1.05rem;
}

.footer-section a {
    color: rgba(255,255,255,0.9);
    margin-bottom: 0.8rem;
    display: block;
    line-height: 1.8;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.footer-section a:hover { 
    color: var(--accent); 
    padding-left: 8px; 
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.8rem; }
.footer-links a { font-weight: 500; }

.footer-social { display: flex; gap: 1rem; margin-top: 1.5rem; }

.footer-social a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(74, 144, 226, 0.2);
    border: 2px solid rgba(74, 144, 226, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social a:hover { 
    background: var(--accent); 
    border-color: var(--accent);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 5px 20px rgba(74, 144, 226, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    padding-bottom: 0.5rem;
    border-top: 2px solid rgba(74, 144, 226, 0.2);
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
    font-weight: 500;
}

.footer-bottom p {
    color: rgba(255,255,255,0.9);
    margin: 0;
}

.footer-copyright {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    padding-bottom: 2rem;
    text-align: center;
    border-top: 1px solid rgba(74, 144, 226, 0.15);
}

.copyright-text {
    color: rgba(255,255,255,0.75);
    font-size: 0.95rem;
    font-weight: 400;
    margin: 0;
}

.copyright-link {
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.copyright-link:hover { 
    color: #FFFFFF;
    text-decoration: underline;
}

.it-v { 
    font-weight: 800;
}

.it-text { 
    font-weight: 600;
}

@media (max-width: 1024px) {
    .split-section { grid-template-columns: 1fr; gap: 3rem; }
    .footer-content { grid-template-columns: 1fr; gap: 3rem; }
    .service-area-content { grid-template-columns: 1fr; gap: 2rem; }
    .contact-form-wrapper { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
    .header-wrapper { gap: 1rem; }
    .header-top { flex-direction: column; gap: 1rem; }
    .header-actions { flex-direction: column; width: 100%; }
    .btn-call, .btn-contact { 
        width: 100%; 
        justify-content: center;
        padding: 0.9rem 1.5rem;
        font-size: 0.9rem;
    }
    .logo a { font-size: 1.8rem; }
    .logo img { height: 50px; }
    
    .nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        transition: left 0.3s ease;
        box-shadow: 2px 0 20px var(--shadow);
        z-index: 999;
    }
    
    .nav.active { left: 0; }
    .nav a { font-size: 1.3rem; padding: 1rem 0; }
    .nav-toggle { display: flex; }
    
    .nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(9px, 9px); }
    .nav-toggle.active span:nth-child(2) { opacity: 0; }
    .nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(8px, -8px); }
    
    .header { padding: 0.8rem 0; }
    
    .hero { 
        min-height: 100vh;
        padding: 100px 1.5rem 60px 1.5rem;
    }
    .hero-subpage {
        min-height: 50vh;
        padding: 100px 1.5rem 40px 1.5rem;
    }
    .hero h1 { 
        font-size: 2rem; 
        line-height: 1.2; 
        margin-bottom: 1rem;
    }
    .hero-subpage h1 {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 0.8rem;
    }
    .hero p { 
        font-size: 1rem; 
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }
    .hero-content {
        width: 100%;
        max-width: 100%;
    }
    .hero h1 { 
        font-size: 1.8rem; 
        line-height: 1.3; 
        margin-bottom: 1rem;
    }
    .hero p { 
        font-size: 1rem; 
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    .hero-buttons { flex-direction: column; align-items: center; gap: 1rem; }
    .btn { width: 100%; max-width: 280px; padding: 1rem 2rem; font-size: 0.95rem; }
    
    section { padding: 3rem 0; }
    .section-header h2 { font-size: 1.8rem; }
    .section-header p { font-size: 1rem; }
    
    .cards-grid { gap: 1.5rem; }
    .card { padding: 2rem 1.5rem; }
    .card h3 { font-size: 1.3rem; }
    .card-icon { width: 70px; height: 70px; margin-bottom: 1.5rem; }
    .card-icon::before { font-size: 2.5rem; }
    
    .feature-boxes { gap: 1.5rem; }
    .feature-box { padding: 2rem 1.5rem; }
    .feature-number { font-size: 2.5rem; }
    .testimonials-grid,
    .contact-grid,
    .gallery-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    
    .service-area-map iframe { height: 350px; }
    
    .footer-content { padding: 0 1rem; }
    .footer-section h3 { font-size: 1.3rem; }
}

@media (max-width: 480px) {
    .container { padding: 0 1rem; }
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.2rem; }
    
    .header { 
        padding: 0.5rem 0;
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 1000;
    }
    
    .hero { 
        min-height: 100svh;
        height: 100svh;
        padding: calc(60px + 5vh) 1rem 5vh 1rem;
    }
    .hero-subpage {
        min-height: 70vh;
        height: auto;
        padding: calc(60px + 3vh) 1rem 3vh 1rem;
    }
    .hero-content {
        width: 100%;
        max-width: 100%;
    }
    .hero h1 { 
        font-size: clamp(1.5rem, 5vw, 2rem);
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    .hero-subpage h1 {
        font-size: clamp(1.3rem, 4.5vw, 1.7rem);
        line-height: 1.2;
        margin-bottom: 0.8rem;
    }
    .hero p { 
        font-size: clamp(0.85rem, 3vw, 1rem);
        line-height: 1.5; 
        margin-bottom: 1.2rem;
    }
    
    .hero-buttons {
        margin-top: 1.5rem;
        
        margin-bottom: 1rem;
    }
    
    .card,
    .testimonial,
    .contact-card { padding: 1.5rem 1rem; }
    
    .card-icon { width: 60px; height: 60px; }
    .card-icon::before { font-size: 2rem; }
    
    .btn { 
        padding: 0.9rem 1.5rem; 
        font-size: 0.9rem;
    }
    
    .comparison-container { height: 200px; }
    .gallery-grid { gap: 1.5rem; }
    
    .feature-number { font-size: 2rem; }
    .feature-box h3 { font-size: 1.1rem; }
    
    .faq-answer-content { padding: 0 1.5rem 1.5rem; font-size: 0.95rem; }
    .service-area-map iframe { height: 300px; }
    .service-area-info { padding: 2rem 1.5rem; }
    
    .pricing-tables { 
        grid-template-columns: 1fr; 
        gap: 1.5rem; 
    }
    
    .additional-services {
        grid-template-columns: 1fr;
    }
    
    .equipment-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .equipment-image {
        height: 250px;
    }
    
    .equipment-video {
        padding: 2rem 1.5rem;
    }
    
    .pricing-table { 
        margin: 0; 
    }
    
    .price-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .price-value {
        font-size: 1rem;
    }
    
    .map-wrapper iframe { height: 300px; }
    .contact-form-container,
    .contact-map-container { padding: 2rem 1.5rem; }
    
    .footer { padding: 3rem 0 1.5rem; }
    .footer { padding: 3rem 0 1.5rem; }
    .footer-content { gap: 2.5rem; }
    .footer { padding: 3rem 0 1.5rem; }
    .footer-content { gap: 2.5rem; }
    .footer-section h3 { font-size: 1.2rem; }
    .footer-section p,
    .footer-section a { font-size: 0.95rem; }
    
    .whatsapp-button {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-button svg { width: 26px; height: 26px; }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
    }
}

.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mt-4 { margin-top: 4rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mb-4 { margin-bottom: 4rem; }
.pt-0 { padding-top: 0 !important; }
.pb-0 { padding-bottom: 0 !important; }
