/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand Colors */
    --primary-color: #b01f2f;
    --secondary-color: #ffffff;
    --text-color: #111111;
    --neutral-color: #f5f5f5;
    --light-gray: #f8f9fa;
    --dark-gray: #6c757d;
    
    /* Typography */
    --font-headline: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing - Kompakter */
    --container-padding: 1rem;
    --section-padding: 2.5rem 0;
    --border-radius: 6px;
    
    /* Transitions */
    --transition: all 0.3s ease-out;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--secondary-color);
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}


/* Header */
.header {
    background-color: transparent;
    position: fixed;
    top: 20px;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
    margin: 0 20px;
}

.header-content {
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    transition: var(--transition);
}

.header-content:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}


.logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-svg {
    width: 120px;
    height: 50px;
}

.logo-ho {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    fill: var(--primary-color);
    letter-spacing: -2px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.logo-sanierung {
    font-family: 'Playfair Display', serif;
    font-size: 12px;
    font-weight: 500;
    fill: var(--text-color);
    letter-spacing: 0.5px;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.nav {
    display: flex;
}

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

.nav-link {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1000;
    position: relative;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    transition: var(--transition);
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--neutral-color) 0%, var(--light-gray) 100%);
    overflow: hidden;
    margin-top: 0;
    padding-top: 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://i.postimg.cc/0Nnn5zbK/bernd-dittrich-Lrg-Ca-Ggf-Tt-M-unsplash.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding-top: 100px;
}

.hero-logo {
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
}

.hero-logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.hero-logo-image {
    width: 400px;
    height: auto;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.6));
}

.hero-logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 500;
    color: var(--secondary-color);
    letter-spacing: 3px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.hero-title {
    font-family: var(--font-headline);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Buttons - Dezenter */
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: 1px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: rgba(176, 31, 47, 0.9);
    transform: translateY(-1px);
    box-shadow: 0 3px 12px rgba(176, 31, 47, 0.2);
}

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

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-1px);
    box-shadow: 0 3px 12px rgba(176, 31, 47, 0.15);
}

/* Section Styles */
.section-title {
    font-family: var(--font-headline);
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-color);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

/* Services Section - New Card Design */
:root {
    --surface-color: #fff;
    --curve: 40;
}

.services {
    padding: var(--section-padding);
    background-color: var(--secondary-color);
    overflow: visible;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
    padding: 0;
    list-style-type: none;
}

.service-card {
    position: relative;
    display: block;
    height: 100%;  
    border-radius: calc(var(--curve) * 1px);
    overflow: hidden;
    text-decoration: none;
    background: linear-gradient(135deg, var(--primary-color), #ff6b6b);
    min-height: 250px;
}

.service-card__overlay {
    position: static;
    transform: none;
    background-color: transparent;
    border-radius: 0;
}

/* Hover effects removed for better layout */

.service-card__header {
    position: static;
    display: flex;
    align-items: center;
    gap: 1em;
    padding: 1.5em;
    border-radius: 0;    
    background-color: transparent;
    transform: none;
}

.service-card__arc {
    width: 80px;
    height: 80px;
    position: absolute;
    bottom: 100%;
    right: 0;      
    z-index: 1;
}

.service-card__arc path {
    fill: var(--surface-color);
    d: path("M 40 80 c 22 0 40 -22 40 -40 v 40 Z");
}       

/* Header hover effects removed */

.service-card__icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;      
    border-radius: 50%;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
}

.service-card__title {
    font-size: 1em;
    margin: 0 0 .2em;
    color: var(--text-color);
    font-family: var(--font-body);
    font-weight: 500;
}

.service-card__description {
    padding: 0 1.5em 1.5em;
    margin: 0;
    color: var(--dark-gray);
    line-height: 1.5;
    font-size: 0.85em;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

/* Fassaden Card - Dezentes Design mit Bild */
.service-card--facade {
    background: var(--secondary-color);
    border: 1px solid var(--neutral-color);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.service-card--facade .service-card__overlay {
    position: static;
    transform: none;
    background: transparent;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card--facade .service-card__header {
    position: static;
    transform: none;
    background: transparent;
    padding: 0;
    border-radius: 0;
    flex-direction: column;
    align-items: stretch;
    height: auto;
    gap: 0;
}

.service-card--facade .service-card__image {
    width: 100%;
    height: 180px;
    background-image: url('https://i.postimg.cc/50YMmQjH/apricot-tart-24zkybuo-Ys-unsplash.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: calc(var(--curve) * 1px) calc(var(--curve) * 1px) 0 0;
}

/* Sanierungs Card - Dezentes Design mit Bild */
.service-card--sanierung {
    background: var(--secondary-color);
    border: 1px solid var(--neutral-color);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.service-card--sanierung .service-card__overlay {
    position: static;
    transform: none;
    background: transparent;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card--sanierung .service-card__header {
    position: static;
    transform: none;
    background: transparent;
    padding: 0;
    border-radius: 0;
    flex-direction: column;
    align-items: stretch;
    height: auto;
    gap: 0;
}

.service-card--sanierung .service-card__image {
    width: 100%;
    height: 180px;
    background-image: url('https://i.postimg.cc/d19bYQK5/chastity-cortijo-6-TY-Wr-JTw-SI-unsplash.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: calc(var(--curve) * 1px) calc(var(--curve) * 1px) 0 0;
}

.service-card--sanierung .service-card__content {
    padding: 0.8rem;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    min-height: 80px;
}

.service-card--sanierung .service-card__icon {
    width: 35px;
    height: 35px;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.service-card--sanierung .service-card__title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
}

.service-card--sanierung .service-card__description {
    padding: 0;
    margin: 0;
    color: var(--dark-gray);
    font-size: 0.85rem;
    line-height: 1.4;
    display: block;
    -webkit-line-clamp: none;
    overflow: visible;
    white-space: normal;
}

/* Pflasterarbeiten Card - Dezentes Design mit Bild */
.service-card--pflaster {
    background: var(--secondary-color);
    border: 1px solid var(--neutral-color);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.service-card--pflaster .service-card__overlay {
    position: static;
    transform: none;
    background: transparent;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card--pflaster .service-card__header {
    position: static;
    transform: none;
    background: transparent;
    padding: 0;
    border-radius: 0;
    flex-direction: column;
    align-items: stretch;
    height: auto;
    gap: 0;
}

.service-card--pflaster .service-card__image {
    width: 100%;
    height: 180px;
    background-image: url('https://i.postimg.cc/vHTpJd2v/dylan-mcleod-ZPrr7b58jv-I-unsplash.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: calc(var(--curve) * 1px) calc(var(--curve) * 1px) 0 0;
}

.service-card--pflaster .service-card__content {
    padding: 0.8rem;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    min-height: 80px;
}

.service-card--pflaster .service-card__icon {
    width: 35px;
    height: 35px;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.service-card--pflaster .service-card__title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
}

.service-card--pflaster .service-card__description {
    padding: 0;
    margin: 0;
    color: var(--dark-gray);
    font-size: 0.85rem;
    line-height: 1.4;
    display: block;
    -webkit-line-clamp: none;
    overflow: visible;
    white-space: normal;
}

/* Rückbau Card - Dezentes Design mit Bild */
.service-card--rueckbau {
    background: var(--secondary-color);
    border: 1px solid var(--neutral-color);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.service-card--rueckbau .service-card__overlay {
    position: static;
    transform: none;
    background: transparent;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card--rueckbau .service-card__header {
    position: static;
    transform: none;
    background: transparent;
    padding: 0;
    border-radius: 0;
    flex-direction: column;
    align-items: stretch;
    height: auto;
    gap: 0;
}

.service-card--rueckbau .service-card__image {
    width: 100%;
    height: 180px;
    background-image: url('https://i.postimg.cc/X7PT3DT6/gene-gallin-E6-KM98-Q-d4o-unsplash.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: calc(var(--curve) * 1px) calc(var(--curve) * 1px) 0 0;
}

.service-card--rueckbau .service-card__content {
    padding: 0.8rem;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    min-height: 80px;
}

.service-card--rueckbau .service-card__icon {
    width: 35px;
    height: 35px;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.service-card--rueckbau .service-card__title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
}

.service-card--rueckbau .service-card__description {
    padding: 0;
    margin: 0;
    color: var(--dark-gray);
    font-size: 0.85rem;
    line-height: 1.4;
    display: block;
    -webkit-line-clamp: none;
    overflow: visible;
    white-space: normal;
}

/* Trockenbau Card - Dezentes Design mit Bild */
.service-card--trockenbau {
    background: var(--secondary-color);
    border: 1px solid var(--neutral-color);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.service-card--trockenbau .service-card__overlay {
    position: static;
    transform: none;
    background: transparent;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card--trockenbau .service-card__header {
    position: static;
    transform: none;
    background: transparent;
    padding: 0;
    border-radius: 0;
    flex-direction: column;
    align-items: stretch;
    height: auto;
    gap: 0;
}

.service-card--trockenbau .service-card__image {
    width: 100%;
    height: 180px;
    background-image: url('https://i.postimg.cc/Zn7XWfn3/ricardo-gomez-angel-iw-NLm-Dl-Wng-unsplash.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: calc(var(--curve) * 1px) calc(var(--curve) * 1px) 0 0;
}

.service-card--trockenbau .service-card__content {
    padding: 0.8rem;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    min-height: 80px;
}

.service-card--trockenbau .service-card__icon {
    width: 35px;
    height: 35px;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.service-card--trockenbau .service-card__title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
}

.service-card--trockenbau .service-card__description {
    padding: 0;
    margin: 0;
    color: var(--dark-gray);
    font-size: 0.85rem;
    line-height: 1.4;
    display: block;
    -webkit-line-clamp: none;
    overflow: visible;
    white-space: normal;
}

.service-card--facade .service-card__content {
    padding: 0.8rem;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    min-height: 80px;
}

.service-card--facade .service-card__icon {
    width: 35px;
    height: 35px;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.service-card--facade .service-card__title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
}

.service-card--facade .service-card__description {
    padding: 0;
    margin: 0;
    color: var(--dark-gray);
    font-size: 0.85rem;
    line-height: 1.4;
    display: block;
    -webkit-line-clamp: none;
    overflow: visible;
    white-space: normal;
}

/* Section Dividers */
.services::after,
.faq::after,
.reviews::after,
.contact::after {
    content: '';
    display: block;
    width: 80%;
    height: 2px;
    background-color: var(--primary-color);
    margin: 2rem auto 0;
}

/* Parallax Elements */
.parallax-element {
    will-change: transform;
}

/* Services section already defined above - removing duplicate */

/* FAQ Section */
.faq {
    padding: var(--section-padding);
    background: linear-gradient(rgba(248, 249, 250, 0.85), rgba(248, 249, 250, 0.85)), url('https://i.postimg.cc/fLPZSTJB/peter-burdon-Sd-UQYsb-Met-I-unsplash.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.faq-search {
    max-width: 500px;
    margin: 0 auto 3rem;
}

.faq-search input {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--neutral-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
}

.faq-search input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--secondary-color);
    margin-bottom: 1rem;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

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

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
}

.faq-question i {
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: var(--dark-gray);
    line-height: 1.6;
}

/* Reviews Section - Google Style */
.reviews {
    padding: var(--section-padding);
    background-color: var(--secondary-color);
}

.reviews-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.review-card {
    background-color: var(--secondary-color);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #e8eaed;
    position: relative;
    transition: var(--transition);
}

.review-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), #ff6b6b);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.review-info {
    flex: 1;
}

.review-name {
    font-weight: 600;
    color: var(--text-color);
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.review-date {
    color: var(--dark-gray);
    font-size: 0.8rem;
}

.review-stars {
    color: #ffc107;
    font-size: 1rem;
    margin-bottom: 0.75rem;
    display: flex;
    gap: 1px;
}

.review-stars i {
    font-size: 0.9rem;
}

.review-text {
    color: var(--text-color);
    line-height: 1.5;
    font-size: 0.9rem;
    margin-bottom: 0;
    position: relative;
}

.review-text::before {
    content: '"';
    font-size: 2rem;
    color: var(--primary-color);
    position: absolute;
    top: -0.5rem;
    left: -0.5rem;
    font-family: serif;
    opacity: 0.3;
}

.review-location {
    display: flex;
    align-items: center;
    margin-top: 0.75rem;
    color: var(--dark-gray);
    font-size: 0.8rem;
}

.review-location i {
    margin-right: 0.25rem;
    font-size: 0.7rem;
}

.reviews-cta {
    text-align: center;
}

/* Contact Section */
.contact {
    padding: var(--section-padding);
    background-color: var(--neutral-color);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-form {
    background-color: var(--secondary-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--neutral-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    font-family: var(--font-body);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
}

.checkbox-group label {
    margin-bottom: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-group a {
    color: var(--primary-color);
    text-decoration: none;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 0.25rem;
}

.contact-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.contact-item p {
    color: var(--dark-gray);
    line-height: 1.6;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
}

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

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 2rem 0 0.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-section h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--secondary-color);
}

.footer-section p {
    margin-bottom: 0.4rem;
    line-height: 1.5;
    font-size: 0.9rem;
}

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

.footer-section ul li {
    margin-bottom: 0.4rem;
    font-size: 0.9rem;
}

.footer-section ul li a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    text-decoration: underline;
}

.footer-section i {
    margin-right: 0.5rem;
    color: var(--secondary-color);
}

.footer-logo {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.footer-logo-svg {
    width: 100px;
    height: 40px;
}

.footer-logo-ho {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    fill: var(--secondary-color);
    letter-spacing: -1px;
}

.footer-logo-sanierung {
    font-family: 'Playfair Display', serif;
    font-size: 10px;
    font-weight: 500;
    fill: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 0.75rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
}

/* Responsive Design */

/* Tablet Portrait */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .reviews-carousel {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

/* Mobile Landscape */
@media (max-width: 768px) {
    :root {
        --container-padding: 1rem;
        --section-padding: 2rem 0;
    }
    
    /* Header Mobile */
    .header {
        margin: 0 10px;
        top: 10px;
    }
    
    .header-content {
        padding: 0.8rem 1.2rem;
        border-radius: 25px;
    }
    
    .logo-svg {
        width: 100px;
        height: 42px;
    }
    
    .logo-ho {
        font-size: 24px;
    }
    
    .logo-sanierung {
        font-size: 10px;
    }
    
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--secondary-color);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        padding: 1rem;
        border-radius: 20px;
        margin-top: 10px;
        z-index: 999;
    }
    
    .nav.active {
        display: block !important;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .nav-link {
        font-size: 0.95rem;
        padding: 0.5rem 0;
        color: #333333 !important;
        text-shadow: none !important;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
        z-index: 1000;
    }
    
    /* Hero Mobile */
    .hero {
        min-height: 50vh;
        padding: 2rem 0;
    }
    
    .hero-logo-image {
        width: 250px;
    }
    
    .hero-logo-text {
        font-size: 32px;
    }
    
    .hero-content {
        padding-top: 80px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        padding: 0.9rem 1.5rem;
        font-size: 0.9rem;
    }
    
    /* Sections Mobile */
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    /* Services Mobile - Dezenter */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 1.5rem 0;
    }
    
    .service-card {
        min-height: 120px;
        background: var(--secondary-color);
        border: 1px solid var(--neutral-color);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }
    
    .service-card__overlay {
        position: static;
        transform: none;
        background: transparent;
        border-radius: 0;
    }
    
    .service-card:hover .service-card__overlay {
        transform: none;
    }
    
    .service-card:hover .service-card__header {
        transform: none;
    }
    
    .service-card__header {
        position: static;
        transform: none;
        background: transparent;
        padding: 1rem;
        gap: 0.8rem;
        border-radius: 0;
        flex-direction: row;
        align-items: center;
        height: 90px; /* 3/4 der Card-Höhe */
    }
    
    .service-card__icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
        background: linear-gradient(135deg, var(--primary-color), #ff6b6b);
    }
    
    .service-card__title {
        font-size: 1rem;
        font-weight: 600;
        color: var(--text-color);
        margin: 0;
    }
    
    .service-card__description {
        display: none !important; /* Beschreibung auf Mobile ausblenden */
    }
    
    /* Fassaden Card Mobile - Viel größere Bilder */
    .service-card--facade .service-card__image {
        height: 200px;
    }
    
    /* Sanierungs Card Mobile - Viel größere Bilder */
    .service-card--sanierung .service-card__image {
        height: 200px;
    }
    
    /* Pflasterarbeiten Card Mobile - Viel größere Bilder */
    .service-card--pflaster .service-card__image {
        height: 200px;
    }
    
    /* Rückbau Card Mobile - Viel größere Bilder */
    .service-card--rueckbau .service-card__image {
        height: 200px;
    }
    
    /* Trockenbau Card Mobile - Viel größere Bilder */
    .service-card--trockenbau .service-card__image {
        height: 200px;
    }
    
    .service-card--facade .service-card__content {
        padding: 1.4rem 1.2rem 1rem 1.2rem;
        gap: 0.8rem;
        min-height: 140px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .service-card--facade .service-card__icon {
        width: 45px;
        height: 45px;
        font-size: 1.4rem;
        margin-bottom: 0.6rem;
    }
    
    .service-card--facade .service-card__title {
        font-size: 1.2rem;
        font-weight: 700;
        color: var(--text-color);
        margin-bottom: 0.4rem;
        line-height: 1.2;
    }
    
    .service-card--facade .service-card__description {
        display: none !important; /* Beschreibung auf Mobile ausblenden */
    }
    
    .service-card--sanierung .service-card__content {
        padding: 1.4rem 1rem 1rem 1rem;
        gap: 0.8rem;
        min-height: 140px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .service-card--sanierung .service-card__icon {
        width: 45px;
        height: 45px;
        font-size: 1.4rem;
        margin-bottom: 0.6rem;
    }
    
    .service-card--sanierung .service-card__title {
        font-size: 1.2rem;
        font-weight: 700;
        color: var(--text-color);
        margin-bottom: 0.4rem;
        line-height: 1.2;
    }
    
    .service-card--sanierung .service-card__description {
        display: none !important; /* Beschreibung auf Mobile ausblenden */
    }
    
    .service-card--pflaster .service-card__content {
        padding: 1.4rem 1rem 1rem 1rem;
        gap: 0.8rem;
        min-height: 140px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .service-card--pflaster .service-card__icon {
        width: 45px;
        height: 45px;
        font-size: 1.4rem;
        margin-bottom: 0.6rem;
    }
    
    .service-card--pflaster .service-card__title {
        font-size: 1.2rem;
        font-weight: 700;
        color: var(--text-color);
        margin-bottom: 0.4rem;
        line-height: 1.2;
    }
    
    .service-card--pflaster .service-card__description {
        display: none !important; /* Beschreibung auf Mobile ausblenden */
    }
    
    .service-card--rueckbau .service-card__content {
        padding: 1.4rem 1rem 1rem 1rem;
        gap: 0.8rem;
        min-height: 140px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .service-card--rueckbau .service-card__icon {
        width: 45px;
        height: 45px;
        font-size: 1.4rem;
        margin-bottom: 0.6rem;
    }
    
    .service-card--rueckbau .service-card__title {
        font-size: 1.2rem;
        font-weight: 700;
        color: var(--text-color);
        margin-bottom: 0.4rem;
        line-height: 1.2;
    }
    
    .service-card--rueckbau .service-card__description {
        display: none !important; /* Beschreibung auf Mobile ausblenden */
    }
    
    .service-card--trockenbau .service-card__content {
        padding: 1.4rem 1rem 1rem 1rem;
        gap: 0.8rem;
        min-height: 140px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .service-card--trockenbau .service-card__icon {
        width: 45px;
        height: 45px;
        font-size: 1.4rem;
        margin-bottom: 0.6rem;
    }
    
    .service-card--trockenbau .service-card__title {
        font-size: 1.2rem;
        font-weight: 700;
        color: var(--text-color);
        margin-bottom: 0.4rem;
        line-height: 1.2;
    }
    
    .service-card--trockenbau .service-card__description {
        display: none !important; /* Beschreibung auf Mobile ausblenden */
    }
    
    /* FAQ Mobile */
    .faq-search {
        margin-bottom: 2rem;
    }
    
    .faq-search input {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    .faq-question {
        padding: 1.2rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.2rem 1.2rem;
    }
    
    .faq-answer p {
        font-size: 0.9rem;
    }
    
    /* Reviews Mobile */
    .reviews-carousel {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .review-card {
        padding: 1.2rem;
    }
    
    .review-header {
        margin-bottom: 0.8rem;
    }
    
    .review-avatar {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .review-name {
        font-size: 0.9rem;
    }
    
    .review-date {
        font-size: 0.75rem;
    }
    
    .review-stars {
        margin-bottom: 0.6rem;
    }
    
    .review-text {
        font-size: 0.85rem;
    }
    
    .review-location {
        margin-top: 0.6rem;
        font-size: 0.75rem;
    }
    
    /* Contact Mobile */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .form-group {
        margin-bottom: 1.2rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    .contact-item {
        gap: 0.8rem;
    }
    
    .contact-item i {
        font-size: 1.2rem;
    }
    
    .contact-item h3 {
        font-size: 1rem;
    }
    
    .contact-item p {
        font-size: 0.9rem;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 1.5rem 0 0.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        text-align: center;
    }
    
    .footer-section h3 {
        font-size: 0.95rem;
        margin-bottom: 0.6rem;
    }
    
    .footer-section p,
    .footer-section ul li {
        font-size: 0.85rem;
        margin-bottom: 0.3rem;
    }
    
    .footer-bottom {
        padding-top: 0.6rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    :root {
        --container-padding: 0.8rem;
        --section-padding: 1.5rem 0;
    }
    
    /* Header Small Mobile */
    .header {
        margin: 0 5px;
        top: 5px;
    }
    
    .header-content {
        padding: 0.6rem 1rem;
        border-radius: 20px;
    }
    
    .logo-svg {
        width: 90px;
        height: 38px;
    }
    
    .logo-ho {
        font-size: 22px;
    }
    
    .logo-sanierung {
        font-size: 9px;
    }
    
    /* Hero Small Mobile */
    .hero {
        min-height: 45vh;
        padding: 1.5rem 0;
    }
    
    .hero-logo-image {
        width: 200px;
    }
    
    .hero-logo-text {
        font-size: 24px;
    }
    
    .hero-content {
        padding-top: 60px;
    }
    
    .btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.85rem;
        max-width: 260px;
    }
    
    /* Sections Small Mobile */
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 1.2rem;
    }
    
    /* Services Small Mobile - Noch dezenter */
    .services-grid {
        gap: 0.8rem;
        margin: 1.2rem 0;
    }
    
    .service-card {
        min-height: 120px; /* Höhe reduziert da Beschreibung weg ist */
    }
    
    .service-card__header {
        padding: 1.2rem 1rem 1rem 1rem;
        gap: 0.6rem;
        height: 120px; /* Volle Card-Höhe da nur Header */
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .service-card__icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        margin-bottom: 0.4rem;
    }
    
    .service-card__title {
        font-size: 1.1rem;
        font-weight: 600;
        margin-bottom: 0.3rem;
        line-height: 1.2;
    }
    
    .service-card__description {
        display: none !important; /* Beschreibung auf Mobile ausblenden */
    }
    
    /* Fassaden Card Small Mobile - Große Bilder */
    .service-card--facade .service-card__image {
        height: 180px;
    }
    
    /* Sanierungs Card Small Mobile - Große Bilder */
    .service-card--sanierung .service-card__image {
        height: 180px;
    }
    
    /* Pflasterarbeiten Card Small Mobile - Große Bilder */
    .service-card--pflaster .service-card__image {
        height: 180px;
    }
    
    /* Rückbau Card Small Mobile - Große Bilder */
    .service-card--rueckbau .service-card__image {
        height: 180px;
    }
    
    /* Trockenbau Card Small Mobile - Große Bilder */
    .service-card--trockenbau .service-card__image {
        height: 180px;
    }
    
    .service-card--facade .service-card__content {
        padding: 0.8rem;
        gap: 0.4rem;
        min-height: 140px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
    }
    
    .service-card--facade .service-card__icon {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
        margin-bottom: 0.4rem;
    }
    
    .service-card--facade .service-card__title {
        font-size: 1rem;
        font-weight: 700;
        color: var(--text-color);
    }
    
    .service-card--facade .service-card__description {
        display: none !important; /* Beschreibung auf Mobile ausblenden */
    }
    
    .service-card--sanierung .service-card__content {
        padding: 0.8rem;
        gap: 0.4rem;
        min-height: 140px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
    }
    
    .service-card--sanierung .service-card__icon {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
        margin-bottom: 0.4rem;
    }
    
    .service-card--sanierung .service-card__title {
        font-size: 1rem;
        font-weight: 700;
        color: var(--text-color);
    }
    
    .service-card--sanierung .service-card__description {
        display: none !important; /* Beschreibung auf Mobile ausblenden */
    }
    
    .service-card--pflaster .service-card__content {
        padding: 0.8rem;
        gap: 0.4rem;
        min-height: 140px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
    }
    
    .service-card--pflaster .service-card__icon {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
        margin-bottom: 0.4rem;
    }
    
    .service-card--pflaster .service-card__title {
        font-size: 1rem;
        font-weight: 700;
        color: var(--text-color);
    }
    
    .service-card--pflaster .service-card__description {
        display: none !important; /* Beschreibung auf Mobile ausblenden */
    }
    
    .service-card--rueckbau .service-card__content {
        padding: 0.8rem;
        gap: 0.4rem;
        min-height: 140px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
    }
    
    .service-card--rueckbau .service-card__icon {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
        margin-bottom: 0.4rem;
    }
    
    .service-card--rueckbau .service-card__title {
        font-size: 1rem;
        font-weight: 700;
        color: var(--text-color);
    }
    
    .service-card--rueckbau .service-card__description {
        display: none !important; /* Beschreibung auf Mobile ausblenden */
    }
    
    .service-card--trockenbau .service-card__content {
        padding: 0.8rem;
        gap: 0.4rem;
        min-height: 140px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
    }
    
    .service-card--trockenbau .service-card__icon {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
        margin-bottom: 0.4rem;
    }
    
    .service-card--trockenbau .service-card__title {
        font-size: 1rem;
        font-weight: 700;
        color: var(--text-color);
    }
    
    .service-card--trockenbau .service-card__description {
        display: none !important; /* Beschreibung auf Mobile ausblenden */
    }
    
    /* FAQ Small Mobile */
    .faq-search input {
        padding: 0.7rem;
        font-size: 0.85rem;
    }
    
    .faq-question {
        padding: 1rem;
    }
    
    .faq-question h3 {
        font-size: 0.95rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1rem 1rem;
    }
    
    .faq-answer p {
        font-size: 0.85rem;
    }
    
    /* Reviews Small Mobile */
    .review-card {
        padding: 1rem;
    }
    
    .review-avatar {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
    
    .review-name {
        font-size: 0.85rem;
    }
    
    .review-date {
        font-size: 0.7rem;
    }
    
    .review-text {
        font-size: 0.8rem;
    }
    
    .review-location {
        font-size: 0.7rem;
    }
    
    /* Contact Small Mobile */
    .contact-form {
        padding: 1.2rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.7rem;
        font-size: 0.85rem;
    }
    
    .contact-item i {
        font-size: 1rem;
    }
    
    .contact-item h3 {
        font-size: 0.95rem;
    }
    
    .contact-item p {
        font-size: 0.85rem;
    }
    
    /* Footer Small Mobile */
    .footer {
        padding: 1.2rem 0 0.4rem;
    }
    
    .footer-section h3 {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .footer-section p,
    .footer-section ul li {
        font-size: 0.8rem;
        margin-bottom: 0.25rem;
    }
    
    .footer-bottom {
        font-size: 0.75rem;
    }
}

/* Scroll Reveal Animations - Service cards excluded */
.faq-item,
.review-card,
.contact-form {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease-out;
}

.faq-item.revealed,
.review-card.revealed,
.contact-form.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .service-card,
    .faq-item,
    .review-card,
    .contact-form {
        opacity: 1;
        transform: none;
    }
}

/* Focus styles for keyboard navigation */
.nav-link:focus,
.btn:focus,
input:focus,
textarea:focus,
.faq-question:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Touch Optimizations */
@media (hover: none) and (pointer: coarse) {
    .service-card:hover .service-card__overlay {
        transform: translateY(0);
    }
    
    .service-card:hover .service-card__header {
        transform: translateY(0);
    }
    
    .service-card__overlay {
        transform: translateY(0);
    }
    
    .service-card__header {
        transform: translateY(0);
    }
    
    .btn:hover {
        transform: none;
    }
    
    .nav-link:hover::after {
        width: 0;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #000000;
        --text-color: #000000;
        --secondary-color: #ffffff;
        --neutral-color: #f0f0f0;
    }
}
